activemq-cpp-3.8.2
MarshallingSupport.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 #ifndef _ACTIVENQ_UTIL_MARSHALLINGSUPPORT_H_
19 #define _ACTIVENQ_UTIL_MARSHALLINGSUPPORT_H_
20 
21 #include <activemq/util/Config.h>
22 
23 #include <decaf/io/IOException.h>
25 
28 
29 #include <string>
30 
31 namespace activemq {
32 namespace util {
33 
35  public:
36 
38  virtual ~MarshallingSupport();
39 
40  public: // Openwire Type Marshalling methods
41 
54  static void writeString(decaf::io::DataOutputStream& dataOut, const std::string& value);
55 
69  static void writeString16(decaf::io::DataOutputStream& dataOut, const std::string& value);
70 
84  static void writeString32(decaf::io::DataOutputStream& dataOut, const std::string& value);
85 
101  static std::string readString16(decaf::io::DataInputStream& dataIn);
102 
118  static std::string readString32(decaf::io::DataInputStream& dataIn);
119 
120  public:
121  // Static Utility Methods.
122 
137  static std::string asciiToModifiedUtf8(const std::string& asciiString);
138 
154  static std::string modifiedUtf8ToAscii(const std::string modifiedUtf8String);
155 
156  };
157 
158 }}
159 
160 #endif /* _ACTIVENQ_UTIL_MARSHALLINGSUPPORT_H_ */
Definition: MarshallingSupport.h:34
#define AMQCPP_API
Definition: Config.h:30
A data output stream lets an application write primitive Java data types to an output stream in a por...
Definition: DataOutputStream.h:34
A data input stream lets an application read primitive Java data types from an underlying input strea...
Definition: DataInputStream.h:46
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements...
Definition: CachedConsumer.h:24