sl@0
|
1 |
// Copyright (c) 1998-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "UD_STD.H"
|
sl@0
|
17 |
#include <f32file.h>
|
sl@0
|
18 |
#include <e32uid.h>
|
sl@0
|
19 |
|
sl@0
|
20 |
// Class CDbContext
|
sl@0
|
21 |
|
sl@0
|
22 |
inline void CDbContext::Open()
|
sl@0
|
23 |
{
|
sl@0
|
24 |
++iRef;
|
sl@0
|
25 |
}
|
sl@0
|
26 |
|
sl@0
|
27 |
//
|
sl@0
|
28 |
// Attach an object to this context
|
sl@0
|
29 |
//
|
sl@0
|
30 |
void CDbContext::Attach(CDbObject* aObject)
|
sl@0
|
31 |
{
|
sl@0
|
32 |
if (aObject && aObject->iContext!=this)
|
sl@0
|
33 |
{
|
sl@0
|
34 |
__ASSERT(!aObject->iContext);
|
sl@0
|
35 |
aObject->iContext=this;
|
sl@0
|
36 |
Open();
|
sl@0
|
37 |
}
|
sl@0
|
38 |
}
|
sl@0
|
39 |
|
sl@0
|
40 |
//
|
sl@0
|
41 |
// self destruct when we are no longer referenced
|
sl@0
|
42 |
//
|
sl@0
|
43 |
void CDbContext::Close()
|
sl@0
|
44 |
{
|
sl@0
|
45 |
__ASSERT(iRef>0);
|
sl@0
|
46 |
if (--iRef==0)
|
sl@0
|
47 |
Idle();
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
//
|
sl@0
|
51 |
// default implementation is to delete ourself
|
sl@0
|
52 |
//
|
sl@0
|
53 |
void CDbContext::Idle()
|
sl@0
|
54 |
{
|
sl@0
|
55 |
delete this;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
// Class CDbObject
|
sl@0
|
59 |
|
sl@0
|
60 |
//
|
sl@0
|
61 |
// Attach aObject to the same context as it's factory
|
sl@0
|
62 |
//
|
sl@0
|
63 |
CDbObject* CDbObject::Attach(CDbObject* aObject)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
CDbContext* context=iContext;
|
sl@0
|
66 |
if (context)
|
sl@0
|
67 |
context->Attach(aObject);
|
sl@0
|
68 |
return aObject;
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
//
|
sl@0
|
72 |
// Library safe destruction of a implementation object
|
sl@0
|
73 |
// This ensures that all objects from a Driver are deleted BEFORE the library is unloaded
|
sl@0
|
74 |
//
|
sl@0
|
75 |
void CDbObject::Destroy(CDbObject* aObject)
|
sl@0
|
76 |
{
|
sl@0
|
77 |
if (aObject)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
CDbContext* context=aObject->iContext;
|
sl@0
|
80 |
delete aObject;
|
sl@0
|
81 |
if (context)
|
sl@0
|
82 |
context->Close();
|
sl@0
|
83 |
}
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
//
|
sl@0
|
87 |
// Library safe cleanup-stack function
|
sl@0
|
88 |
//
|
sl@0
|
89 |
void CDbObject::PushL()
|
sl@0
|
90 |
{
|
sl@0
|
91 |
CleanupStack::PushL(TCleanupItem(TCleanupOperation(Destroy),this));
|
sl@0
|
92 |
}
|
sl@0
|
93 |
|
sl@0
|
94 |
|
sl@0
|
95 |
// Class CDbSource
|
sl@0
|
96 |
|
sl@0
|
97 |
//SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version of the method.
|
sl@0
|
98 |
// Encapsulate the 2-phase construction for client access
|
sl@0
|
99 |
//
|
sl@0
|
100 |
CDbDatabase* CDbSource::OpenL()
|
sl@0
|
101 |
{
|
sl@0
|
102 |
return AuthenticateL();
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
// Class RDbNamedDatabase
|
sl@0
|
106 |
|
sl@0
|
107 |
//SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version of the method.
|
sl@0
|
108 |
LOCAL_C CDbDatabase* OpenDatabaseL(TDbFormat::TOpen aMode, RFs& aFs, const TDesC& aSource,
|
sl@0
|
109 |
const TDesC& /*aFormat*/)
|
sl@0
|
110 |
{
|
sl@0
|
111 |
CDbSource* source=KBuiltinDriver.iFormats[0].OpenL(aFs,aSource,aMode);
|
sl@0
|
112 |
CleanupStack::PushL(source);
|
sl@0
|
113 |
CDbDatabase* db=source->OpenL();
|
sl@0
|
114 |
CleanupStack::PopAndDestroy(); // source (not needed)
|
sl@0
|
115 |
return db;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
//SYMBIAN_REMOVE_TRIVIAL_ENCRYPTION version of the method.
|
sl@0
|
119 |
//The method may be used in the other cpp files too
|
sl@0
|
120 |
CDbDatabase* CreateDatabaseL(TDbFormat::TCreate aMode, RFs& aFs, const TDesC& aSource,
|
sl@0
|
121 |
const TDesC& aFormat)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
const TDbFormat& fmt=KBuiltinDriver.iFormats[0];
|
sl@0
|
124 |
|
sl@0
|
125 |
TUid policyId = KNullUid;
|
sl@0
|
126 |
TPtrC uidName;
|
sl@0
|
127 |
|
sl@0
|
128 |
::ExtractUidAndName(aFormat, policyId, uidName);
|
sl@0
|
129 |
|
sl@0
|
130 |
CDbDatabase* db=fmt.CreateL(aFs,aSource,aMode,
|
sl@0
|
131 |
TUidType(TUid::Uid(fmt.iUid[0]),TUid::Uid(fmt.iUid[1]),policyId));
|
sl@0
|
132 |
|
sl@0
|
133 |
return db;
|
sl@0
|
134 |
}
|
sl@0
|
135 |
|
sl@0
|
136 |
|
sl@0
|
137 |
/**
|
sl@0
|
138 |
Creates a new non-secure database.
|
sl@0
|
139 |
|
sl@0
|
140 |
In this "single client" mode, the database cannot be shared with the other clients.
|
sl@0
|
141 |
The database server is not involved in the operations with the database, the client side
|
sl@0
|
142 |
database library (edbms.dll) will be used.
|
sl@0
|
143 |
If the database has to be shared, the following example shows how this may be accomplished:
|
sl@0
|
144 |
@code
|
sl@0
|
145 |
RFs fs;
|
sl@0
|
146 |
TInt err = fs.Connect();
|
sl@0
|
147 |
<process the error>
|
sl@0
|
148 |
_LIT(KDatabaseName, _L("C:\\A.DB"));
|
sl@0
|
149 |
RDbNamedDatabase db;
|
sl@0
|
150 |
err = db.Create(fs, KDatabaseName); //Step 1 - create the database using the RFs object
|
sl@0
|
151 |
<process the error>
|
sl@0
|
152 |
db.Close(); //Step 2 - close the database
|
sl@0
|
153 |
RDbs dbs;
|
sl@0
|
154 |
err = dbs.Connect();
|
sl@0
|
155 |
<process the error>
|
sl@0
|
156 |
err = db.Open(dbs, KDatabaseName); //Step 3 - reopen the database using the RDbs object
|
sl@0
|
157 |
<process the error>
|
sl@0
|
158 |
...
|
sl@0
|
159 |
@endcode
|
sl@0
|
160 |
|
sl@0
|
161 |
Max allowed database name length (with the extension) is KDbMaxName symbols.
|
sl@0
|
162 |
|
sl@0
|
163 |
For creating a new secure shared database, see RDbNamedDatabase::Create(), which first argument
|
sl@0
|
164 |
is a RDbs reference.
|
sl@0
|
165 |
|
sl@0
|
166 |
@param aFs Handle to a file server session.
|
sl@0
|
167 |
@param aSource Database file name.
|
sl@0
|
168 |
@param aFormat Database format string. It can be omitted in which case the default parameter
|
sl@0
|
169 |
value (TPtrC()) will be used.
|
sl@0
|
170 |
@return KErrNone if successful otherwise one of the system-wide error codes, including:
|
sl@0
|
171 |
KErrAlreadyExists - the database already exists;
|
sl@0
|
172 |
KErrArgument - bad argument, including null/invaluid uids, the database name includes a null;
|
sl@0
|
173 |
|
sl@0
|
174 |
@see RDbNamedDatabase::Create(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat)
|
sl@0
|
175 |
|
sl@0
|
176 |
@publishedAll
|
sl@0
|
177 |
@released
|
sl@0
|
178 |
*/
|
sl@0
|
179 |
EXPORT_C TInt RDbNamedDatabase::Create(RFs& aFs, const TDesC& aSource, const TDesC& aFormat)
|
sl@0
|
180 |
{
|
sl@0
|
181 |
TRAPD(r,iDatabase=CreateDatabaseL(TDbFormat::ECreate,aFs,aSource,aFormat));
|
sl@0
|
182 |
return r;
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
|
sl@0
|
186 |
/**
|
sl@0
|
187 |
Creates a new non-secure database.
|
sl@0
|
188 |
If a database with the same file name exists, it will be replased.
|
sl@0
|
189 |
|
sl@0
|
190 |
In this "single client" mode, the database cannot be shared with the other clients.
|
sl@0
|
191 |
The database server is not involved in the operations with the database, the client side
|
sl@0
|
192 |
database library (edbms.dll) will be used.
|
sl@0
|
193 |
If the database has to be shared, the following example shows how this may be accomplished:
|
sl@0
|
194 |
@code
|
sl@0
|
195 |
RFs fs;
|
sl@0
|
196 |
TInt err = fs.Connect();
|
sl@0
|
197 |
<process the error>
|
sl@0
|
198 |
_LIT(KDatabaseName, _L("C:\\A.DB"));
|
sl@0
|
199 |
RDbNamedDatabase db;
|
sl@0
|
200 |
err = db.Replace(fs, KDatabaseName); //Step 1 - create the database using the RFs object
|
sl@0
|
201 |
<process the error>
|
sl@0
|
202 |
db.Close(); //Step 2 - close the database
|
sl@0
|
203 |
RDbs dbs;
|
sl@0
|
204 |
err = dbs.Connect();
|
sl@0
|
205 |
<process the error>
|
sl@0
|
206 |
err = db.Open(dbs, KDatabaseName); //Step 3 - reopen the database using the RDbs object
|
sl@0
|
207 |
<process the error>
|
sl@0
|
208 |
...
|
sl@0
|
209 |
@endcode
|
sl@0
|
210 |
|
sl@0
|
211 |
Max allowed database name length (with the extension) is KDbMaxName symbols.
|
sl@0
|
212 |
|
sl@0
|
213 |
For creating a new secure shared database, see RDbNamedDatabase::Create(), which first argument
|
sl@0
|
214 |
is a RDbs reference.
|
sl@0
|
215 |
|
sl@0
|
216 |
@param aFs Handle to a file server session.
|
sl@0
|
217 |
@param aSource Database name. The name format is: <drive>:<path><name>.<ext>
|
sl@0
|
218 |
@param aFormat Database format string. It can be omitted in which case the default parameter
|
sl@0
|
219 |
value (TPtrC()) will be used.
|
sl@0
|
220 |
@return KErrNone if successful otherwise one of the system-wide error codes, including:
|
sl@0
|
221 |
KErrArgument - bad argument, including null/invaluid uids, the database name includes a null;
|
sl@0
|
222 |
|
sl@0
|
223 |
@see RDbNamedDatabase::Create(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat)
|
sl@0
|
224 |
|
sl@0
|
225 |
@publishedAll
|
sl@0
|
226 |
@released
|
sl@0
|
227 |
*/
|
sl@0
|
228 |
EXPORT_C TInt RDbNamedDatabase::Replace(RFs& aFs, const TDesC& aSource, const TDesC& aFormat)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
TRAPD(r,iDatabase=CreateDatabaseL(TDbFormat::EReplace,aFs,aSource,aFormat));
|
sl@0
|
231 |
return r;
|
sl@0
|
232 |
}
|
sl@0
|
233 |
|
sl@0
|
234 |
/**
|
sl@0
|
235 |
Opens an existing non-secure database.
|
sl@0
|
236 |
|
sl@0
|
237 |
In this "single client" mode, the database cannot be shared with the other clients.
|
sl@0
|
238 |
The database server is not involved in the operations with the database, the client side
|
sl@0
|
239 |
database library (edbms.dll) will be used.
|
sl@0
|
240 |
|
sl@0
|
241 |
For opening a new secure shared database, see RDbNamedDatabase::Open(), which first argument
|
sl@0
|
242 |
is a RDbs reference.
|
sl@0
|
243 |
|
sl@0
|
244 |
@param aFs Handle to a file server session.
|
sl@0
|
245 |
@param aSource Database name. The name format is: <drive>:<path><name>.<ext>
|
sl@0
|
246 |
@param aFormat Database format string. It can be omitted in which case the default parameter
|
sl@0
|
247 |
value (TPtrC()) will be used.
|
sl@0
|
248 |
@param aMode The mode in which the database is to be accessed. The mode is
|
sl@0
|
249 |
defined by the TAccess type.
|
sl@0
|
250 |
@return KErrNone if successful otherwise one of the system-wide error codes, including:
|
sl@0
|
251 |
KErrNotFound - the database is not found;
|
sl@0
|
252 |
KErrPathNotFound - the path of database is not found
|
sl@0
|
253 |
KErrNotSupported - the format is not supported.
|
sl@0
|
254 |
KErrArgument - bad argument,including null/invaluid uids,the database name is null;
|
sl@0
|
255 |
KErrPermissionDenied - the caller has not enough rights to do the operation;
|
sl@0
|
256 |
|
sl@0
|
257 |
@see RDbNamedDatabase::Open(RDbs& aDbs, const TDesC& aDatabase, const TDesC& aFormat)
|
sl@0
|
258 |
|
sl@0
|
259 |
@publishedAll
|
sl@0
|
260 |
@released
|
sl@0
|
261 |
*/
|
sl@0
|
262 |
EXPORT_C TInt RDbNamedDatabase::Open(RFs& aFs, const TDesC& aSource, const TDesC& aFormat,
|
sl@0
|
263 |
TAccess aMode)
|
sl@0
|
264 |
{
|
sl@0
|
265 |
TRAPD(r,iDatabase=OpenDatabaseL(TDbFormat::TOpen(aMode),aFs,aSource,aFormat));
|
sl@0
|
266 |
return r;
|
sl@0
|
267 |
}
|
sl@0
|
268 |
|
sl@0
|
269 |
|
sl@0
|
270 |
CDbNotifier* CDbSource::NotifierL()
|
sl@0
|
271 |
{
|
sl@0
|
272 |
return AttachContext(this,OpenNotifierL());
|
sl@0
|
273 |
}
|