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 |
// Reserving/Accessing/Releasing drive space - CDriveSpace, RDriveSpaceCol, CDbsSessDriveSpace
|
sl@0
|
15 |
// classes declarations
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __SD_DRIVESPACE_H__
|
sl@0
|
20 |
#define __SD_DRIVESPACE_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#include <f32file.h>
|
sl@0
|
23 |
|
sl@0
|
24 |
//Forward declarations
|
sl@0
|
25 |
class RDriveSpaceCol;
|
sl@0
|
26 |
class CDbsSessDriveSpace;
|
sl@0
|
27 |
class CDbsServer;
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
This class describes an object, which is responsible for handling
|
sl@0
|
31 |
"reserve/get access/release" requests for a particular drive.
|
sl@0
|
32 |
Since the drive is shared between many DBMS sessions and there is only one RFs instance,
|
sl@0
|
33 |
the current solution is that CDriveSpace objects reserve some predefined amount of disk space
|
sl@0
|
34 |
at the time of their creation and then the access to the reserved disk space is reference counted.
|
sl@0
|
35 |
There is one obvious disadvantage of this solution: if a bad application "forgets" to release
|
sl@0
|
36 |
the access to the reserved disk space, it may be used by the DBMS file session and at the moment,
|
sl@0
|
37 |
when some client will really need it to complete its "delete" transaction, it may happen that
|
sl@0
|
38 |
there is no reserved disk space at all, because it is already used. But I don't think there
|
sl@0
|
39 |
is an acceptable solution for this case, if there is only one shared file session.
|
sl@0
|
40 |
The class shall not be used directly, that's the reason its constructor and NewLC() are private.
|
sl@0
|
41 |
The class functionality shall be used by the controlling collection object - RDriveSpaceCol.
|
sl@0
|
42 |
@internalComponent
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
NONSHARABLE_CLASS(CDriveSpace) : public CBase
|
sl@0
|
45 |
{
|
sl@0
|
46 |
friend class RDriveSpaceCol;
|
sl@0
|
47 |
|
sl@0
|
48 |
public:
|
sl@0
|
49 |
inline TDriveNumber Drive() const;
|
sl@0
|
50 |
void GrantAccessL();
|
sl@0
|
51 |
void ReleaseAccess();
|
sl@0
|
52 |
|
sl@0
|
53 |
private:
|
sl@0
|
54 |
static CDriveSpace* NewLC(RFs& aFs, TDriveNumber aDrive);
|
sl@0
|
55 |
CDriveSpace(RFs& aFs, TDriveNumber aDrive);
|
sl@0
|
56 |
virtual ~CDriveSpace();
|
sl@0
|
57 |
void ConstructL();
|
sl@0
|
58 |
|
sl@0
|
59 |
private:
|
sl@0
|
60 |
RFs& iFs; //File session reference
|
sl@0
|
61 |
TDriveNumber iDrive; //Drive number
|
sl@0
|
62 |
TInt iGrantAccessRefCnt;//"Get access" requests count
|
sl@0
|
63 |
|
sl@0
|
64 |
};
|
sl@0
|
65 |
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
@return The drive number, where the CDriveSpace object handles the reservation requests
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
inline TDriveNumber CDriveSpace::Drive() const
|
sl@0
|
70 |
{
|
sl@0
|
71 |
return iDrive;
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
/**
|
sl@0
|
75 |
This class describes a collection of CDriveSpace objects. Each CDriveSpace object in the
|
sl@0
|
76 |
collection is responsible for handling "reserve/get access/release" requests for a particular
|
sl@0
|
77 |
drive.
|
sl@0
|
78 |
Only one instace of RDriveSpaceCol class should be created and used in the DBMS server.
|
sl@0
|
79 |
An object of this class shall be created by the DBMS server, but the DBMS server is alloved only
|
sl@0
|
80 |
to close (destroy) it at the end. RDriveSpaceCol collection shall be used by CDbsSessDriveSpace
|
sl@0
|
81 |
instances, which shall be created/used/destroyed by the DBMS sessions.
|
sl@0
|
82 |
@see CDriveSpace
|
sl@0
|
83 |
@internalComponent
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
class RDriveSpaceCol
|
sl@0
|
86 |
{
|
sl@0
|
87 |
friend class CDbsServer;
|
sl@0
|
88 |
friend class CDbsSessDriveSpace;
|
sl@0
|
89 |
|
sl@0
|
90 |
private:
|
sl@0
|
91 |
RDriveSpaceCol(RFs& aFs);
|
sl@0
|
92 |
void Close();
|
sl@0
|
93 |
CDriveSpace* Find(TDriveNumber aDrive);
|
sl@0
|
94 |
CDriveSpace* CreateAddL(TDriveNumber aDrive);
|
sl@0
|
95 |
|
sl@0
|
96 |
private:
|
sl@0
|
97 |
RFs& iFs; //File session reference
|
sl@0
|
98 |
RPointerArray<CDriveSpace> iDriveSpaceCol; //Collection of CDriveSpace objects: one per drive
|
sl@0
|
99 |
|
sl@0
|
100 |
};
|
sl@0
|
101 |
|
sl@0
|
102 |
/**
|
sl@0
|
103 |
This structure describes an object, which handles all disk space related requests per
|
sl@0
|
104 |
DBMS session instance.
|
sl@0
|
105 |
Using it, the DBMS session can control the access to the reserved drive space for a
|
sl@0
|
106 |
particular drive(s).
|
sl@0
|
107 |
Although it seems a good idea to save some binary code space and use directly CDriveSpace and
|
sl@0
|
108 |
RDriveSpaceCol classes - no, it is not that good.
|
sl@0
|
109 |
If you use directly CDriveSpace and RDriveSpaceCol, you have to control that every "Reserve"
|
sl@0
|
110 |
call is matched by a "Free" call and every "Get/GrantAcces" call is matched by a "ReleaseAccess"
|
sl@0
|
111 |
call. Also you have to take care about checking that the appropriate CDriveSpace object has
|
sl@0
|
112 |
been created already or if not - you have to create and add it to the RDriveSpaceCol colelction.
|
sl@0
|
113 |
All that is done in CDbsSessDriveSpace class.
|
sl@0
|
114 |
@internalComponent
|
sl@0
|
115 |
*/
|
sl@0
|
116 |
NONSHARABLE_CLASS(CDbsSessDriveSpace) : public CBase
|
sl@0
|
117 |
{
|
sl@0
|
118 |
private:
|
sl@0
|
119 |
/**
|
sl@0
|
120 |
This structure describes the state of the disk space reservation requests, related to a
|
sl@0
|
121 |
particular drive. It holds an information like: drive number, was the disk space
|
sl@0
|
122 |
already reserved?, was an access to it already granted?
|
sl@0
|
123 |
Using the TDriveSpaceRq objects, the caller can ensure that every "Reserve" call is
|
sl@0
|
124 |
matched by a "Free" call, every "GetAccess" call is matched by a "ReleaseAccess" call.
|
sl@0
|
125 |
@internalComponent
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
struct TDriveSpaceRq
|
sl@0
|
128 |
{
|
sl@0
|
129 |
TDriveSpaceRq(CDriveSpace& aDriveSpace);
|
sl@0
|
130 |
CDriveSpace& iDriveSpace; //This object will handle the reservation requests
|
sl@0
|
131 |
TUint8 iReserved: 1; //If non-zero then the space was already reserved
|
sl@0
|
132 |
TUint8 iAccessGranted: 1; //If non-zero then an access to the space was already granted
|
sl@0
|
133 |
};
|
sl@0
|
134 |
|
sl@0
|
135 |
public:
|
sl@0
|
136 |
static CDbsSessDriveSpace* NewL(RDriveSpaceCol& aDriveSpaceCol);
|
sl@0
|
137 |
virtual ~CDbsSessDriveSpace();
|
sl@0
|
138 |
|
sl@0
|
139 |
void ReserveL(TDriveNumber aDrive);
|
sl@0
|
140 |
void Free(TDriveNumber aDrive);
|
sl@0
|
141 |
void GrantAccessL(TDriveNumber aDrive);
|
sl@0
|
142 |
void ReleaseAccess(TDriveNumber aDrive);
|
sl@0
|
143 |
|
sl@0
|
144 |
private:
|
sl@0
|
145 |
CDbsSessDriveSpace(RDriveSpaceCol& aDriveSpaceCol);
|
sl@0
|
146 |
TDriveSpaceRq* Find(TDriveNumber aDrive);
|
sl@0
|
147 |
TDriveSpaceRq& CreateAddL(TDriveNumber aDrive);
|
sl@0
|
148 |
TDriveSpaceRq& GetL(TDriveNumber aDrive);
|
sl@0
|
149 |
|
sl@0
|
150 |
private:
|
sl@0
|
151 |
RDriveSpaceCol& iDriveSpaceCol;//Reference to the RDriveSpaceCol colelction.
|
sl@0
|
152 |
RArray<TDriveSpaceRq> iDriveSpaceRqCol;//Collection of TDriveSpaceRq objects: one per drive
|
sl@0
|
153 |
|
sl@0
|
154 |
};
|
sl@0
|
155 |
|
sl@0
|
156 |
#endif//__SD_DRIVESPACE_H__
|