Move non-template functions to timeout.cpp file
[platform/core/test/security-tests.git] / src / common / dbus_connection.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_connection.h
18  * @author      Marcin Niesluchowski (m.niesluchow@samsung.com)
19  * @version     1.0
20  * @brief       DBus connection wrapper class header
21  */
22
23 #ifndef COMMON_DBUS_CONNECTION_H
24 #define COMMON_DBUS_CONNECTION_H
25
26 #include <dbus/dbus.h>
27
28 #include <dbus_message_in.h>
29 #include <dbus_message_out.h>
30 #include <memory.h>
31
32 #include <string>
33
34 namespace DBus
35 {
36
37 DEFINE_SMARTPTR(dbus_error_free, DBusError, ErrorPtr);
38
39 class Connection
40 {
41 public:
42     Connection(DBusBusType busType, bool privateGet);
43     Connection(const Connection &other) = delete;
44     ~Connection();
45
46     Connection& operator=(const Connection &other) = delete;
47
48     void addMatch(const std::string &rule);
49     void addFilter(DBusHandleMessageFunction handleMessageFunction,
50                    void *userData,
51                    DBusFreeFunction freeDataFunction = nullptr);
52     void readWriteDispatch();
53     void flush();
54     void requestName(const std::string &name);
55     MessageIn sendWithReplyAndBlock(const MessageOut &messageOut);
56
57 private:
58     DBusConnection *m_connection;
59     bool m_busPrivate;
60 };
61
62 } // namespace DBus
63
64 #endif // COMMON_DBUS_CONNECTION_H