sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2007-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 the License "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 |
* Defines the client-side classes which other client-side handles
|
sl@0
|
16 |
* derive from to use the SCS functionality.
|
sl@0
|
17 |
*
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
|
sl@0
|
21 |
/**
|
sl@0
|
22 |
@file
|
sl@0
|
23 |
@publishedAll
|
sl@0
|
24 |
@released
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
|
sl@0
|
27 |
#ifndef SCSCLIENT_H
|
sl@0
|
28 |
#define SCSCLIENT_H
|
sl@0
|
29 |
|
sl@0
|
30 |
#include <e32std.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
|
sl@0
|
33 |
class RScsClientBase : public RSessionBase
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
Provides functionality to connect to the server, starting
|
sl@0
|
36 |
the server process if necessary. This class cannot be used
|
sl@0
|
37 |
directly - the SCS implementor must define a subclass.
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
{
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
IMPORT_C void Close();
|
sl@0
|
42 |
IMPORT_C TInt SetServerHeapFail(TInt aRate);
|
sl@0
|
43 |
IMPORT_C TInt ResetServerHeapFail();
|
sl@0
|
44 |
|
sl@0
|
45 |
IMPORT_C TInt ShutdownServer();
|
sl@0
|
46 |
|
sl@0
|
47 |
protected:
|
sl@0
|
48 |
IMPORT_C RScsClientBase();
|
sl@0
|
49 |
IMPORT_C TInt Connect(
|
sl@0
|
50 |
const TDesC& aSvrName, const TVersion& aReqVer, const TDesC& aExeName, const TUidType& aFullExeUid);
|
sl@0
|
51 |
|
sl@0
|
52 |
IMPORT_C TInt CallSessionFunction(TInt aFunction) const;
|
sl@0
|
53 |
IMPORT_C TInt CallSessionFunction(TInt aFunction, const TIpcArgs& aArgs) const;
|
sl@0
|
54 |
IMPORT_C void CallSessionFunction(TInt aFunction, const TIpcArgs& aArgs, TRequestStatus& aStatus) const;
|
sl@0
|
55 |
IMPORT_C void CancelSessionFunction(TInt aFunction) const;
|
sl@0
|
56 |
|
sl@0
|
57 |
private:
|
sl@0
|
58 |
TInt StartServerProcess(const TDesC& aExeName, const TUidType& aFullExeUid);
|
sl@0
|
59 |
};
|
sl@0
|
60 |
|
sl@0
|
61 |
class RScsClientSubsessionBase : public RSubSessionBase
|
sl@0
|
62 |
/**
|
sl@0
|
63 |
This class is used to send messages to server-side SCS subsessions.
|
sl@0
|
64 |
This class cannot be used directly - the implementor must define a
|
sl@0
|
65 |
subclass.
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
{
|
sl@0
|
68 |
public:
|
sl@0
|
69 |
IMPORT_C void Close();
|
sl@0
|
70 |
|
sl@0
|
71 |
protected:
|
sl@0
|
72 |
IMPORT_C RScsClientSubsessionBase();
|
sl@0
|
73 |
IMPORT_C TInt CreateSubsession(const RScsClientBase& aSession, TInt aFunction, const TIpcArgs& aArgs);
|
sl@0
|
74 |
|
sl@0
|
75 |
IMPORT_C TInt CallSubsessionFunction(TInt aFunction) const;
|
sl@0
|
76 |
IMPORT_C TInt CallSubsessionFunction(TInt aFunction, const TIpcArgs& aArgs) const;
|
sl@0
|
77 |
IMPORT_C void CallSubsessionFunction(TInt aFunction, const TIpcArgs& aArgs, TRequestStatus& aStatus) const;
|
sl@0
|
78 |
IMPORT_C void CancelSubsessionFunction(TInt aFunction) const;
|
sl@0
|
79 |
};
|
sl@0
|
80 |
|
sl@0
|
81 |
#endif // #ifndef SCSCLIENT_H
|
sl@0
|
82 |
|