[dali_1.0.4] Merge branch 'tizen'
[platform/core/uifw/dali-adaptor.git] / adaptors / x11 / server-connection-x.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_Type ipctype = ECORE_IPC_LOCAL_USER;
49
50   ecore_ipc_init();
51   mService.name = eina_stringshare_add(serviceName);
52   mService.num = serviceNumber;
53   mService.isSystem = isSystem;
54
55   if (mService.isSystem)
56   {
57     ipctype = ECORE_IPC_LOCAL_SYSTEM;
58   }
59
60   DALI_LOG_INFO( gIndicatorLogFilter, Debug::General, "ServerConnection: Connecting to %s %d\n", mService.name, mService.num );
61
62   mIpcServer = ecore_ipc_server_connect( ipctype, (char *)mService.name, mService.num, this );
63
64   if( !mIpcServer )
65   {
66     ecore_ipc_shutdown();
67   }
68   else
69   {
70     mIpcHandlers.push_back( ecore_event_handler_add( ECORE_IPC_EVENT_SERVER_ADD,
71                                                      &ServerConnection::IpcServerAdd,
72                                                      this ) );
73
74     mIpcHandlers.push_back( ecore_event_handler_add( ECORE_IPC_EVENT_SERVER_DEL,
75                                                      &ServerConnection::IpcServerDel,
76                                                      this ) );
77
78     mIpcHandlers.push_back( ecore_event_handler_add( ECORE_IPC_EVENT_SERVER_DATA,
79                                                      &ServerConnection::IpcServerData,
80                                                      this));
81
82     mConnected = true;
83   }
84 }
85
86 } // Adaptor
87 } // Internal
88 } // Dali