2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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 * @file FIo_IpcClient.h
19 * @brief This is the header file for the _IpcClient class.
21 * This file contains the declarations of _IpcClient.
25 #ifndef _FIO_INTERNAL_IPC_CLIENT_H_
26 #define _FIO_INTERNAL_IPC_CLIENT_H_
32 #include <ipc/ipc_message_macros.h>
33 #include <ipc/ipc_message_utils.h>
35 #include <FBaseResult.h>
36 #include <FBaseObject.h>
37 #include <FBaseString.h>
38 #include <FOspConfig.h>
41 namespace Tizen { namespace Base { namespace Runtime
45 namespace Tizen { namespace Io
48 class _IIpcClientEventListener;
52 * @brief This class provides methods for sending a message to an IPC server.
55 class _OSP_EXPORT_ _IpcClient
61 virtual ~_IpcClient(void);
64 * Constructs the instance of this class.
66 * @return An error code
67 * @param[in] serverName The name of the server
68 * @param[in] pListener Set if the client want to handle a message from the IPC server.
70 * @exception E_SUCCESS The method was successful.
71 * @exception E_OUT_OF_MEMORY Insufficient memory.
72 * @exception E_SYSTEM A system error occurred.
74 result Construct(const Tizen::Base::String& serverName, const _IIpcClientEventListener* pListener = null);
77 * Returns the name of the IPC server.
79 * @return The name of the IPC server.
81 Tizen::Base::String GetName(void) const;
84 * Sends a request message to an IPC server.
89 * CalculatorProxy::Add(int a , int b)
93 * My_sum mySum(a, b, &c);
95 * __pIpcClient->SendRequest(mySum);
101 * @return An error code
102 * @param[in] message The message to send
103 * @exception E_SUCCESS The method was successful.
104 * @exception E_RESOURCE_UNAVAILABLE The socket buffer is full.
105 * @exception E_INVALID_CONNECTION The socket connection is closed.
106 * @exception E_OUT_OF_MEMORY Insufficient memory.
107 * @exception E_SYSTEM A system error occurred.
110 result SendRequest(const IPC::Message& message);
112 result SendRequest(IPC::Message* pMessage);
115 _IpcClient(const _IpcClient& value);
117 _IpcClient& operator =(const _IpcClient& value);
119 result Send(IPC::Message* pMessage);
121 result SendAsync(IPC::Message* pMessage);
123 result SendSync(IPC::Message* pMessage);
125 result MakeConnection(bool forReverse = false);
129 void ReleaseFd(int fd);
131 static gboolean OnReadMessage(GIOChannel* source, GIOCondition condition, gpointer data);
133 gboolean HandleReceivedMessage(GIOChannel* source, GIOCondition condition);
136 GSource* __pReverseSource;
138 std::vector <int> __fds;
140 Tizen::Base::Runtime::Mutex* __pFdLock;
141 Tizen::Base::String __name;
142 _IIpcClientEventListener* __pListener;
144 static const int __MAX_MESSAGE_BUFFER_SIZE = 1024;
145 char __messageBuffer[__MAX_MESSAGE_BUFFER_SIZE];
146 std::string __pending;
151 #endif // _FIO_INTERNAL_IPC_CLIENT_H_