sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef __RIPC_SESSION__
|
sl@0
|
21 |
#define __RIPC_SESSION__
|
sl@0
|
22 |
|
sl@0
|
23 |
#include<e32std.h> //RSessionBase
|
sl@0
|
24 |
#include<e32def.h> //Varargs
|
sl@0
|
25 |
#include<sys/types.h>
|
sl@0
|
26 |
#include<sys/sem.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
struct msqid_ds;
|
sl@0
|
29 |
struct shmid_ds;
|
sl@0
|
30 |
|
sl@0
|
31 |
class TChunk
|
sl@0
|
32 |
{
|
sl@0
|
33 |
public:
|
sl@0
|
34 |
TChunk(): iRef(0){}
|
sl@0
|
35 |
TChunk(TInt aShmID): iShmID(aShmID), iRef(0){}
|
sl@0
|
36 |
TInt iShmID;
|
sl@0
|
37 |
RChunk iChunk;
|
sl@0
|
38 |
TInt iRef;
|
sl@0
|
39 |
};
|
sl@0
|
40 |
|
sl@0
|
41 |
|
sl@0
|
42 |
//-----------------------------------------------------------------------
|
sl@0
|
43 |
//Class name: RIpcSession
|
sl@0
|
44 |
//Description: It represents the session to Ipc Server.
|
sl@0
|
45 |
//-----------------------------------------------------------------------
|
sl@0
|
46 |
|
sl@0
|
47 |
class RIpcSession : public RSessionBase
|
sl@0
|
48 |
{
|
sl@0
|
49 |
public:
|
sl@0
|
50 |
RIpcSession():iIsConnected(EFalse)
|
sl@0
|
51 |
{iLock.CreateLocal();}
|
sl@0
|
52 |
|
sl@0
|
53 |
//msgqueue functions
|
sl@0
|
54 |
int msgctl(int msqid, int cmd, struct msqid_ds *buf, int &aerrno);
|
sl@0
|
55 |
int msgget(key_t key, int msgflg, int& aerrno);
|
sl@0
|
56 |
ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg, int& aerrno);
|
sl@0
|
57 |
int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg, int& aerrno);
|
sl@0
|
58 |
|
sl@0
|
59 |
//msgqueue functions
|
sl@0
|
60 |
int shmctl(int shmid, int cmd, struct shmid_ds *buf, int &aerrno);
|
sl@0
|
61 |
int shmget(key_t key, size_t size, int shmflg, int& aerrno);
|
sl@0
|
62 |
void *shmat(int shmid, const void *shmaddr, int shmflg, int& aerrno);
|
sl@0
|
63 |
int shmdt(const void *shmaddr, int& aerrno);
|
sl@0
|
64 |
|
sl@0
|
65 |
//semqueue functions
|
sl@0
|
66 |
int semget(key_t key, int nsems, int semflags, int& aerrno);
|
sl@0
|
67 |
int semctl(int semid, int semnum, int cmd, union semun *arg, int& aerrno);
|
sl@0
|
68 |
int semop(int semid, struct sembuf *sops, size_t nsops, int& aerrno);
|
sl@0
|
69 |
|
sl@0
|
70 |
RFastLock iLock;
|
sl@0
|
71 |
private:
|
sl@0
|
72 |
TInt AddToList(const TInt& aKey, const TInt& aErr, TAny*& aRetPtr);
|
sl@0
|
73 |
TInt OnDemandConnection();
|
sl@0
|
74 |
void Lock()
|
sl@0
|
75 |
{
|
sl@0
|
76 |
iLock.Wait();
|
sl@0
|
77 |
}
|
sl@0
|
78 |
void UnLock()
|
sl@0
|
79 |
{
|
sl@0
|
80 |
iLock.Signal();
|
sl@0
|
81 |
}
|
sl@0
|
82 |
private:
|
sl@0
|
83 |
|
sl@0
|
84 |
TInt Connect();
|
sl@0
|
85 |
TInt iIsConnected;
|
sl@0
|
86 |
//todo put a lock around this list
|
sl@0
|
87 |
RArray<TChunk> iChunkList;
|
sl@0
|
88 |
};
|
sl@0
|
89 |
|
sl@0
|
90 |
#endif //__RIPC_SESSION__
|
sl@0
|
91 |
|
sl@0
|
92 |
|