activemq-cpp-3.9.5
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
22
25
28
29#include <string>
30
31namespace activemq {
32namespace util {
33
35 public:
36
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_ */
#define AMQCPP_API
Definition Config.h:30
static std::string modifiedUtf8ToAscii(const std::string modifiedUtf8String)
Given a string that contains bytes in the Java Modified UTF-8 format convert that string back into AS...
static std::string asciiToModifiedUtf8(const std::string &asciiString)
Given an ASCII String with byte values [0..255] convert the string to a string containing the modifie...
static std::string readString32(decaf::io::DataInputStream &dataIn)
Reads an Openwire encoded string from the provided DataInputStream.
static void writeString16(decaf::io::DataOutputStream &dataOut, const std::string &value)
Write the string object to the given DataOutputStream as Raw bytes, no string encoding is done on thi...
static std::string readString16(decaf::io::DataInputStream &dataIn)
Reads an Openwire encoded string from the provided DataInputStream.
static void writeString32(decaf::io::DataOutputStream &dataOut, const std::string &value)
Write the string object to the given DataOutputStream as Raw bytes, no string encoding is done on thi...
static void writeString(decaf::io::DataOutputStream &dataOut, const std::string &value)
Write the string object to the given DataOutputStream as Raw bytes, no string encoding is done on thi...
A data input stream lets an application read primitive Java data types from an underlying input strea...
Definition DataInputStream.h:46
A data output stream lets an application write primitive Java data types to an output stream in a por...
Definition DataOutputStream.h:34
Definition ActiveMQMessageTransformation.h:36
Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.
Definition CachedConsumer.h:24