sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// class CClientProxy
|
sl@0
|
15 |
// -scheduler's representation of client
|
sl@0
|
16 |
// -contains info scheduler needs to start real client in its own process
|
sl@0
|
17 |
// -reference-counted: deleted when no tasks & no sessions reference it
|
sl@0
|
18 |
//
|
sl@0
|
19 |
//
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef __SCHCLI_H__
|
sl@0
|
22 |
#define __SCHCLI_H__
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <e32base.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
// Classes referenced
|
sl@0
|
27 |
class RFs;
|
sl@0
|
28 |
class CScheduledTask;
|
sl@0
|
29 |
class RWriteStream;
|
sl@0
|
30 |
class CFileStore;
|
sl@0
|
31 |
class CSchLogManager;
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
/**
|
sl@0
|
35 |
@internalComponent
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
NONSHARABLE_CLASS(CClientProxy) : public CBase
|
sl@0
|
38 |
{
|
sl@0
|
39 |
public:
|
sl@0
|
40 |
static CClientProxy* NewL(RFs& aFsSession,
|
sl@0
|
41 |
RReadStream& aStream,
|
sl@0
|
42 |
CSchLogManager& aLogManager);
|
sl@0
|
43 |
static CClientProxy* NewL(RFs& aFsSession,
|
sl@0
|
44 |
const TDesC& aFileName,
|
sl@0
|
45 |
TInt aPriority,
|
sl@0
|
46 |
CSchLogManager& aLogManager);
|
sl@0
|
47 |
~CClientProxy();
|
sl@0
|
48 |
|
sl@0
|
49 |
private:
|
sl@0
|
50 |
CClientProxy(RFs& aFsSession,CSchLogManager& aLogManager);
|
sl@0
|
51 |
CClientProxy(RFs& aFsSession, TInt aPriority,CSchLogManager& aLogManager);
|
sl@0
|
52 |
void ConstructL(const TDesC& aFileName);
|
sl@0
|
53 |
|
sl@0
|
54 |
public:
|
sl@0
|
55 |
TBool IsEqual(const TDesC& aFilename, TInt aPriority) const;
|
sl@0
|
56 |
void ExecuteTasks();
|
sl@0
|
57 |
void AddTask(CScheduledTask& aTask);
|
sl@0
|
58 |
void RemoveTask(CScheduledTask* aTask);
|
sl@0
|
59 |
void RemoveDueTasks();
|
sl@0
|
60 |
void TransferTasks(CClientProxy& aTargetClient);
|
sl@0
|
61 |
|
sl@0
|
62 |
// sharing stuff
|
sl@0
|
63 |
inline void DecUsers();
|
sl@0
|
64 |
inline void IncUsers();
|
sl@0
|
65 |
inline TInt Users() const;
|
sl@0
|
66 |
|
sl@0
|
67 |
// execution
|
sl@0
|
68 |
inline void ReadyToExecute();
|
sl@0
|
69 |
inline TBool IsReadyToExecute() const;
|
sl@0
|
70 |
|
sl@0
|
71 |
// list capability
|
sl@0
|
72 |
inline static TInt Offset();
|
sl@0
|
73 |
inline void Remove();// remove youself from que
|
sl@0
|
74 |
|
sl@0
|
75 |
inline const TDesC& ExecutorFileName() const { return *iFileName; }
|
sl@0
|
76 |
TDblQueIter<CScheduledTask> TaskIterator();
|
sl@0
|
77 |
TInt Priority() const;
|
sl@0
|
78 |
|
sl@0
|
79 |
public:
|
sl@0
|
80 |
void InternalizeL(RReadStream& aStream);
|
sl@0
|
81 |
void ExternalizeL(RWriteStream& aStream) const;
|
sl@0
|
82 |
|
sl@0
|
83 |
private: // internal functions
|
sl@0
|
84 |
void DoExecuteTasksL();
|
sl@0
|
85 |
CArrayPtr<CScheduledTask>* DueTasksL();// copy the due tasks into an array
|
sl@0
|
86 |
|
sl@0
|
87 |
// called before running the task
|
sl@0
|
88 |
TInt DoExecuteTasks(const CArrayPtr<CScheduledTask>& aTasks,
|
sl@0
|
89 |
const TDesC& aFileName);
|
sl@0
|
90 |
|
sl@0
|
91 |
void DoExecuteTasksL(const CArrayPtr<CScheduledTask>& aTasks,
|
sl@0
|
92 |
const TDesC& aFileName,
|
sl@0
|
93 |
const TDesC& aErrorMessage);
|
sl@0
|
94 |
|
sl@0
|
95 |
void SaveTasksToFileL(const CArrayPtr<CScheduledTask>& aTasks,
|
sl@0
|
96 |
const TDesC& aFileName);// save 'em to a new file
|
sl@0
|
97 |
void SaveTasksL(CFileStore& aStore, const CArrayPtr<CScheduledTask>& aTasks);
|
sl@0
|
98 |
CFileStore* CreateStoreL(const TDesC& aName, TUint aFileMode);// needed so we can call store->CreateLC() in a trap
|
sl@0
|
99 |
|
sl@0
|
100 |
private: // member data
|
sl@0
|
101 |
RFs& iFsSession;
|
sl@0
|
102 |
TBool iReadyToExecute;
|
sl@0
|
103 |
TInt iUsers;// for sharing
|
sl@0
|
104 |
HBufC* iFileName;// name of supplied ExeDll thingie
|
sl@0
|
105 |
//
|
sl@0
|
106 |
TPriQueLink iPriLink;// owned by scheduler & kept in priority que
|
sl@0
|
107 |
TPriQue<CScheduledTask> iTasks;
|
sl@0
|
108 |
CSchLogManager& iSchLogManager;
|
sl@0
|
109 |
};
|
sl@0
|
110 |
|
sl@0
|
111 |
#include "SCHCLI.INL"
|
sl@0
|
112 |
#endif
|