Merge "Implemented the Handle assignment operators properly" into tizen
[platform/core/uifw/dali-adaptor.git] / adaptors / wayland / server-connection-wl.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
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
18 // CLASS HEADER
19 #include "server-connection.h"
20
21 // EXTERNAL INCLUDES
22 #include <Ecore.h>
23
24 #include <dali/integration-api/debug.h>
25
26 // INTERNAL INCLUDES
27
28 namespace Dali
29 {
30 namespace Internal
31 {
32 namespace Adaptor
33 {
34 #if defined(DEBUG_ENABLED)
35 extern Debug::Filter* gIndicatorLogFilter;
36 #endif
37
38
39 ServerConnection::ServerConnection(
40   const char*                 serviceName,
41   int                         serviceNumber,
42   bool                        isSystem,
43   ServerConnection::Observer* observer)
44
45 : mConnected(false),
46   mObserver(observer)
47 {
48   ecore_ipc_init();
49   mService.name = eina_stringshare_add(serviceName);
50   mService.num = serviceNumber;
51   mService.isSystem = isSystem;
52
53   DALI_LOG_INFO( gIndicatorLogFilter, Debug::General, "ServerConnection: Connecting to %s %d\n", mService.name, mService.num );
54
55   mIpcServer = NULL;
56
57   if( !mIpcServer )
58   {
59     ecore_ipc_shutdown();
60   }
61   else
62   {
63     mIpcHandlers.push_back( ecore_event_handler_add( ECORE_IPC_EVENT_SERVER_ADD,
64                                                      &ServerConnection::IpcServerAdd,
65                                                      this ) );
66
67     mIpcHandlers.push_back( ecore_event_handler_add( ECORE_IPC_EVENT_SERVER_DEL,
68                                                      &ServerConnection::IpcServerDel,
69                                                      this ) );
70
71     mIpcHandlers.push_back( ecore_event_handler_add( ECORE_IPC_EVENT_SERVER_DATA,
72                                                      &ServerConnection::IpcServerData,
73                                                      this));
74
75     mConnected = true;
76   }
77 }
78
79 } // Adaptor
80 } // Internal
81 } // Dali