summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/messaging/Message.cpp
blob: 1d844b3027373029e53f13621232b2a02af5bc1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */
#include "qpid/messaging/Message.h"
#include "qpid/messaging/MessageImpl.h"

namespace qpid {
namespace messaging {

Message::Message(const std::string& bytes) : impl(new MessageImpl(bytes)) {}
Message::Message(const char* bytes, size_t count) : impl(new MessageImpl(bytes, count)) {}

Message::Message(const Message& m) : impl(new MessageImpl(m.getBytes())) {}
Message::~Message() { delete impl; }

Message& Message::operator=(const Message& m) { *impl = *m.impl; return *this; }

void Message::setReplyTo(const Address& d) { impl->setReplyTo(d); }
const Address& Message::getReplyTo() const { return impl->getReplyTo(); }

void Message::setSubject(const std::string& s) { impl->setSubject(s); }
const std::string& Message::getSubject() const { return impl->getSubject(); }

void Message::setContentType(const std::string& s) { impl->setContentType(s); }
const std::string& Message::getContentType() const { return impl->getContentType(); }

const VariantMap& Message::getHeaders() const { return impl->getHeaders(); }
VariantMap& Message::getHeaders() { return impl->getHeaders(); }

void Message::setBytes(const std::string& c) { impl->setBytes(c); }
void Message::setBytes(const char* chars, size_t count) { impl->setBytes(chars, count); }
const std::string& Message::getBytes() const { return impl->getBytes(); }
std::string& Message::getBytes() { return impl->getBytes(); }

const char* Message::getRawContent() const { return impl->getBytes().data(); }
size_t Message::getContentSize() const { return impl->getBytes().size(); }

MessageContent& Message::getContent() { return *impl; }
const MessageContent& Message::getContent() const { return *impl; }
void Message::setContent(const std::string& s) { *impl = s; }
void Message::setContent(const Variant::Map& m) { *impl = m; }
void Message::setContent(const Variant::List& l) { *impl = l; }

void Message::encode(Codec& codec) { impl->encode(codec); }

void Message::decode(Codec& codec) { impl->decode(codec); }

std::ostream& operator<<(std::ostream& out, const MessageContent& content)
{
    return content.print(out);
}

}} // namespace qpid::messaging