8b34d06e61439c89ed668c882f4fad50d61caf0f
[platform/core/test/security-tests.git] / tests / common / dbus_message_out.h
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file        dbus_message_out.h
18  * @author      Marcin Niesluchowski (m.niesluchow@samsung.com)
19  * @version     1.0
20  * @brief       DBus outgoing message wrapper class header
21  */
22
23 #ifndef COMMON_DBUS_MESSAGE_OUT_H
24 #define COMMON_DBUS_MESSAGE_OUT_H
25
26 #include <dbus/dbus.h>
27
28 #include <string>
29 #include <vector>
30
31 namespace DBus
32 {
33
34 class MessageOut
35 {
36 public:
37     MessageOut(const std::string &destination,
38                const std::string &path,
39                const std::string &interface,
40                const std::string &method);
41     MessageOut(const MessageOut &other) = delete;
42     MessageOut(MessageOut &&other);
43     ~MessageOut();
44
45     MessageOut& operator=(const MessageOut &other) = delete;
46
47     DBusMessage* getMessage() const;
48
49     void append(bool b);
50     void append(const char *cstr);
51     void append(const std::string &str);
52     void append(const std::vector<std::string> &strs);
53
54 private:
55     DBusMessage *m_message;
56 };
57
58 } // namespace DBus
59
60 #endif // COMMON_DBUS_MESSAGE_OUT_H