OSDN Git Service

Happy new year 2015 !!!
[mutilities/MUtilities.git] / include / MUtils / IPCChannel.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // MuldeR's Utilities for Qt
3 // Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18 //
19 // http://www.gnu.org/licenses/lgpl-2.1.txt
20 //////////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 //MUtils
25 #include <MUtils/Global.h>
26
27 //Qt
28 #include <QtGlobal>
29
30 namespace MUtils
31 {
32         class MUTILS_API IPCChannel_Private;
33
34         class MUTILS_API IPCChannel
35         {
36         public:
37                 static const size_t MAX_MESSAGE_LEN = 4096;
38
39                 typedef enum
40                 {
41                         RET_SUCCESS_MASTER = 0,
42                         RET_SUCCESS_SLAVE = 1,
43                         RET_ALREADY_INITIALIZED = 2,
44                         RET_FAILURE = 3
45                 }
46                 ipc_result_t;
47
48                 IPCChannel(const QString &applicationId, const quint32 &versionNo, const QString &channelId);
49                 ~IPCChannel(void);
50
51                 int initialize(void);
52
53                 bool send(const quint32 &command, const quint32 &flags, const char *const message);
54                 bool read(quint32 &command, quint32 &flags, char *const message, const size_t &buffSize);
55
56         private:
57                 IPCChannel(const IPCChannel&) : p(NULL), m_appVersionNo(-1) { throw "Constructor is disabled!"; }
58                 IPCChannel &operator=(const IPCChannel&) { throw "Assignment operator is disabled!"; return *this; }
59
60                 const QString m_applicationId;
61                 const QString m_channelId;
62                 const unsigned int m_appVersionNo;
63                 const QByteArray m_headerStr;
64
65                 IPCChannel_Private *const p;
66         };
67 }