2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * @author Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
23 #ifndef DPL_DBUS_SERVER_H
24 #define DPL_DBUS_SERVER_H
29 #include <dpl/generic_event.h>
30 #include <dpl/event/event_support.h>
31 #include <dpl/dbus/connection.h>
35 namespace ServerEvents {
37 * Emitted when new connection is accepted.
39 * Arg0 Accepted connection.
41 * @remarks If this event is processed on separate thread than that thread
42 * should run GLib main loop if one wants to e.g. register DBus
43 * objects during this event processing.
45 DECLARE_GENERIC_EVENT_1(NewConnectionEvent, ConnectionPtr)
49 typedef std::shared_ptr<Server> ServerPtr;
52 * Class acting as a server for peer to peer connections over DBus.
54 class Server : public DPL::Event::EventSupport<ServerEvents::NewConnectionEvent>
60 * @param address Address the server should listen on.
63 static ServerPtr create(const std::string& address);
78 explicit Server(GDBusServer* server);
81 static gboolean onNewConnection(GDBusServer* server,
82 GDBusConnection* connection,
85 GDBusServer* m_server;
90 #endif // DPL_DBUS_SERVER_H