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 |
// DBMS server: data source management and sharing classes
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "SD_STD.H"
|
sl@0
|
19 |
|
sl@0
|
20 |
extern const TDbDriver KBuiltinDriver;
|
sl@0
|
21 |
|
sl@0
|
22 |
// Class CDbsObserver::HObserver
|
sl@0
|
23 |
|
sl@0
|
24 |
// The server side of a RDbNotifier object
|
sl@0
|
25 |
// All "observers" on the same database are held in a list on the
|
sl@0
|
26 |
// primary CDbsObserver, which tracks the single notifier object
|
sl@0
|
27 |
// on the data source.
|
sl@0
|
28 |
|
sl@0
|
29 |
inline CDbsObserver::HObserver::HObserver()
|
sl@0
|
30 |
:iPending(0)
|
sl@0
|
31 |
{}
|
sl@0
|
32 |
|
sl@0
|
33 |
//
|
sl@0
|
34 |
// Complete the outstanding request, and reset the observer status
|
sl@0
|
35 |
//
|
sl@0
|
36 |
void CDbsObserver::HObserver::Complete(TInt aStatus)
|
sl@0
|
37 |
{
|
sl@0
|
38 |
iPending=0;
|
sl@0
|
39 |
iMessage.Complete(aStatus);
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
//
|
sl@0
|
43 |
// Notification request from the client
|
sl@0
|
44 |
// Int0() has the notification type (CDbNotifier::TType)
|
sl@0
|
45 |
//
|
sl@0
|
46 |
void CDbsObserver::HObserver::Notify(const RMessage2& aMessage)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
__ASSERT_ALWAYS(iPending>=0,Panic(EDbsObserverRequestPending));
|
sl@0
|
49 |
iMessage=aMessage;
|
sl@0
|
50 |
if (iPending>RDbNotifier::EUnlock)
|
sl@0
|
51 |
Complete(iPending); // report any missed event first
|
sl@0
|
52 |
else if (iLink.iNext==&iLink)
|
sl@0
|
53 |
Complete(RDbNotifier::EClose); // report a "closed" event
|
sl@0
|
54 |
else
|
sl@0
|
55 |
iPending=aMessage.Int0(); // wait for an event
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
//
|
sl@0
|
59 |
// Cancel the notification request (if pending)
|
sl@0
|
60 |
//
|
sl@0
|
61 |
void CDbsObserver::HObserver::Cancel()
|
sl@0
|
62 |
{
|
sl@0
|
63 |
if (iPending<0)
|
sl@0
|
64 |
Complete(KErrCancel);
|
sl@0
|
65 |
}
|
sl@0
|
66 |
|
sl@0
|
67 |
//
|
sl@0
|
68 |
// An event occurs on the database
|
sl@0
|
69 |
//
|
sl@0
|
70 |
void CDbsObserver::HObserver::Event(TInt aEvent)
|
sl@0
|
71 |
{
|
sl@0
|
72 |
if (aEvent==RDbNotifier::EClose)
|
sl@0
|
73 |
{ // detach the observer when closed
|
sl@0
|
74 |
iLink.Deque();
|
sl@0
|
75 |
iLink.iPrev=iLink.iNext=&iLink;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
TInt pending=iPending;
|
sl@0
|
78 |
if (pending<0)
|
sl@0
|
79 |
{ // request is pending
|
sl@0
|
80 |
if (aEvent==RDbNotifier::EUnlock && pending==CDbNotifier::EChange)
|
sl@0
|
81 |
; // don't report unlock events to "change" requests
|
sl@0
|
82 |
else
|
sl@0
|
83 |
Complete(aEvent);
|
sl@0
|
84 |
}
|
sl@0
|
85 |
else if (aEvent>pending)
|
sl@0
|
86 |
iPending=aEvent; // store more significant event
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
//
|
sl@0
|
90 |
// Client notifer is closed
|
sl@0
|
91 |
//
|
sl@0
|
92 |
CDbsObserver::HObserver::~HObserver()
|
sl@0
|
93 |
{
|
sl@0
|
94 |
Cancel();
|
sl@0
|
95 |
iLink.Deque();
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
// Class CDbsObserver
|
sl@0
|
99 |
|
sl@0
|
100 |
// The central server-side observer active object for the database notifiers
|
sl@0
|
101 |
// This maintains a list of all notifiers, and propogates events from the
|
sl@0
|
102 |
// database source.
|
sl@0
|
103 |
|
sl@0
|
104 |
inline CDbsObserver::CDbsObserver(CDbsSource& aSource)
|
sl@0
|
105 |
:CActive(10),iSource(aSource),iQueue(_FOFF(HObserver,iLink))
|
sl@0
|
106 |
{}
|
sl@0
|
107 |
|
sl@0
|
108 |
CDbsObserver* CDbsObserver::NewL(CDbsSource& aSource)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
CDbsObserver* self=new(ELeave) CDbsObserver(aSource);
|
sl@0
|
111 |
CleanupStack::PushL(self);
|
sl@0
|
112 |
self->iNotifier=aSource.Source().NotifierL();
|
sl@0
|
113 |
CActiveScheduler::Add(self);
|
sl@0
|
114 |
CleanupStack::Pop(); // self
|
sl@0
|
115 |
return self;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
//
|
sl@0
|
119 |
// Used by the source to destroy the observer only when all client
|
sl@0
|
120 |
// notifiers have been closed
|
sl@0
|
121 |
//
|
sl@0
|
122 |
CDbsObserver* CDbsObserver::Collect(CDbsObserver* aObserver)
|
sl@0
|
123 |
{
|
sl@0
|
124 |
if (!aObserver)
|
sl@0
|
125 |
return aObserver;
|
sl@0
|
126 |
if (!aObserver->iQueue.IsEmpty())
|
sl@0
|
127 |
return aObserver;
|
sl@0
|
128 |
delete aObserver;
|
sl@0
|
129 |
return 0;
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
CDbsObserver::~CDbsObserver()
|
sl@0
|
133 |
{
|
sl@0
|
134 |
__ASSERT(iQueue.IsEmpty());
|
sl@0
|
135 |
CDbObject::Destroy(iNotifier); // will cancel any request
|
sl@0
|
136 |
Cancel();
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
//
|
sl@0
|
140 |
// Create and initialise a new client-observer object
|
sl@0
|
141 |
//
|
sl@0
|
142 |
CDbsObserver::HObserver* CDbsObserver::ObserverL()
|
sl@0
|
143 |
{
|
sl@0
|
144 |
HObserver* observer=new(ELeave) HObserver;
|
sl@0
|
145 |
iQueue.AddLast(*observer);
|
sl@0
|
146 |
if (!IsActive())
|
sl@0
|
147 |
Queue(); // start receiving events
|
sl@0
|
148 |
return observer;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
//
|
sl@0
|
152 |
// Request an event from the database
|
sl@0
|
153 |
//
|
sl@0
|
154 |
void CDbsObserver::Queue()
|
sl@0
|
155 |
{
|
sl@0
|
156 |
SetActive();
|
sl@0
|
157 |
iNotifier->Notify(CDbNotifier::EUnlock,iStatus);
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
//
|
sl@0
|
161 |
// Dispatch the event to all observers and re-queue
|
sl@0
|
162 |
//
|
sl@0
|
163 |
void CDbsObserver::RunL()
|
sl@0
|
164 |
{
|
sl@0
|
165 |
TDblQueIter<HObserver> iter(iQueue);
|
sl@0
|
166 |
for (HObserver* ob;(ob=iter++)!=0;)
|
sl@0
|
167 |
ob->Event(iStatus.Int());
|
sl@0
|
168 |
if (!iQueue.IsEmpty())
|
sl@0
|
169 |
Queue();
|
sl@0
|
170 |
else if (iStatus.Int()==RDbNotifier::EClose)
|
sl@0
|
171 |
iSource.Closed(); // disconnect and destroy on a close event
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
//
|
sl@0
|
175 |
// Provided fo CActive: should never have to do anything as called only
|
sl@0
|
176 |
// via the d'tor which destroys the notifier first, completing the message
|
sl@0
|
177 |
//
|
sl@0
|
178 |
void CDbsObserver::DoCancel()
|
sl@0
|
179 |
{
|
sl@0
|
180 |
__ASSERT(iStatus!=KRequestPending);
|
sl@0
|
181 |
}
|
sl@0
|
182 |
|
sl@0
|
183 |
// Class CDbsDatabaseStub
|
sl@0
|
184 |
|
sl@0
|
185 |
// This class is used as a stub object between the two phases of
|
sl@0
|
186 |
// authentication on a secure database
|
sl@0
|
187 |
|
sl@0
|
188 |
CDbsDatabaseStub* CDbsDatabaseStub::NewL()
|
sl@0
|
189 |
{
|
sl@0
|
190 |
return new(ELeave) CDbsDatabaseStub;
|
sl@0
|
191 |
}
|
sl@0
|
192 |
|
sl@0
|
193 |
//
|
sl@0
|
194 |
// Authenticate the access, on success destroy this object and return the
|
sl@0
|
195 |
// real database interface object
|
sl@0
|
196 |
//
|
sl@0
|
197 |
CDbDatabase* CDbsDatabaseStub::AuthenticateL()
|
sl@0
|
198 |
{
|
sl@0
|
199 |
CDbSource& src=CDbsConnection::Source(*this).Source();
|
sl@0
|
200 |
CDbDatabase* db=src.AuthenticateL();
|
sl@0
|
201 |
Attach(db);
|
sl@0
|
202 |
Destroy(this);
|
sl@0
|
203 |
return db;
|
sl@0
|
204 |
}
|
sl@0
|
205 |
|
sl@0
|
206 |
// Class CDbsConnection
|
sl@0
|
207 |
|
sl@0
|
208 |
// The context for all interface objects residing in the server, which
|
sl@0
|
209 |
// owns a reference on the data source.
|
sl@0
|
210 |
|
sl@0
|
211 |
CDbsConnection::~CDbsConnection()
|
sl@0
|
212 |
{
|
sl@0
|
213 |
if (iSource)
|
sl@0
|
214 |
iSource->Close();
|
sl@0
|
215 |
}
|
sl@0
|
216 |
|
sl@0
|
217 |
|
sl@0
|
218 |
// Class CDbsSource
|
sl@0
|
219 |
|
sl@0
|
220 |
// The sharing point for databases in the server, this maintains access
|
sl@0
|
221 |
// to the CDbSource interface object, allowing multiple connections to the
|
sl@0
|
222 |
// same database.
|
sl@0
|
223 |
|
sl@0
|
224 |
//
|
sl@0
|
225 |
// Something has closed. Check if we are still needed, and delete if not
|
sl@0
|
226 |
//
|
sl@0
|
227 |
void CDbsSource::Closed()
|
sl@0
|
228 |
{
|
sl@0
|
229 |
__ASSERT(iConnections==0);
|
sl@0
|
230 |
iObserver=CDbsObserver::Collect(iObserver);
|
sl@0
|
231 |
if (!iObserver)
|
sl@0
|
232 |
delete this;
|
sl@0
|
233 |
}
|
sl@0
|
234 |
|
sl@0
|
235 |
//
|
sl@0
|
236 |
// A connection has been removed
|
sl@0
|
237 |
//
|
sl@0
|
238 |
void CDbsSource::Close()
|
sl@0
|
239 |
{
|
sl@0
|
240 |
__ASSERT(iConnections>0);
|
sl@0
|
241 |
__ASSERT(iSource);
|
sl@0
|
242 |
if (--iConnections==0)
|
sl@0
|
243 |
{ // last connection is closed
|
sl@0
|
244 |
CDbSource* s=iSource;
|
sl@0
|
245 |
iSource=0;
|
sl@0
|
246 |
CDbObject::Destroy(s);
|
sl@0
|
247 |
iLink.Deque(); // cannot connect this source again
|
sl@0
|
248 |
Closed();
|
sl@0
|
249 |
}
|
sl@0
|
250 |
}
|
sl@0
|
251 |
|
sl@0
|
252 |
CDbsSource::~CDbsSource()
|
sl@0
|
253 |
{
|
sl@0
|
254 |
__ASSERT(!iSource);
|
sl@0
|
255 |
__ASSERT(!iObserver);
|
sl@0
|
256 |
delete iName;
|
sl@0
|
257 |
}
|
sl@0
|
258 |
|
sl@0
|
259 |
//
|
sl@0
|
260 |
// Construct a new source object from a database using the driver discovery
|
sl@0
|
261 |
//
|
sl@0
|
262 |
CDbsSource* CDbsSource::NewL(RFs& aFs,const TDesC& aSource)
|
sl@0
|
263 |
{
|
sl@0
|
264 |
//The following two statements are here to check the file path and raise (if have to)
|
sl@0
|
265 |
//the same errors as they were raised before by the previous (DbDriver related) source code.
|
sl@0
|
266 |
::TEntry fileEntry;
|
sl@0
|
267 |
__LEAVE_IF_ERROR(aFs.Entry(aSource, fileEntry));
|
sl@0
|
268 |
|
sl@0
|
269 |
const TDbFormat& fmt=KBuiltinDriver.iFormats[0];
|
sl@0
|
270 |
|
sl@0
|
271 |
CDbsSource* self=new(ELeave) CDbsSource(fmt);
|
sl@0
|
272 |
CleanupStack::PushL(self);
|
sl@0
|
273 |
self->iName=aSource.AllocL();
|
sl@0
|
274 |
self->iSource=fmt.OpenL(aFs,aSource,TDbFormat::EReadWrite);
|
sl@0
|
275 |
CleanupStack::Pop(); // self
|
sl@0
|
276 |
return self;
|
sl@0
|
277 |
}
|
sl@0
|
278 |
|
sl@0
|
279 |
//
|
sl@0
|
280 |
// [Create and] return the active observer of the data source
|
sl@0
|
281 |
//
|
sl@0
|
282 |
CDbsObserver::HObserver* CDbsSource::ObserverL()
|
sl@0
|
283 |
{
|
sl@0
|
284 |
__ASSERT(iSource);
|
sl@0
|
285 |
CDbsObserver* observer=iObserver;
|
sl@0
|
286 |
if (!observer)
|
sl@0
|
287 |
iObserver=observer=CDbsObserver::NewL(*this);
|
sl@0
|
288 |
return observer->ObserverL();
|
sl@0
|
289 |
}
|
sl@0
|
290 |
|
sl@0
|
291 |
//
|
sl@0
|
292 |
// Test to find an identical source, in order to share it
|
sl@0
|
293 |
//
|
sl@0
|
294 |
TBool CDbsSource::Is(const TDesC& aSource) const
|
sl@0
|
295 |
{
|
sl@0
|
296 |
if (iName->CompareF(aSource)!=0)
|
sl@0
|
297 |
return EFalse;
|
sl@0
|
298 |
|
sl@0
|
299 |
return ETrue;
|
sl@0
|
300 |
}
|
sl@0
|
301 |
|
sl@0
|
302 |
|
sl@0
|
303 |
// Class RDbsSources
|
sl@0
|
304 |
|
sl@0
|
305 |
// The collection of all shared sources in the server
|
sl@0
|
306 |
|
sl@0
|
307 |
//
|
sl@0
|
308 |
// Open a source for sharing
|
sl@0
|
309 |
//
|
sl@0
|
310 |
CDbsConnection* RDbsSources::OpenLC(RFs& aFs,const TDesC& aSource,const TDesC& /*aFormat*/)
|
sl@0
|
311 |
{
|
sl@0
|
312 |
CDbsConnection* connect=new(ELeave) CDbsConnection;
|
sl@0
|
313 |
CleanupStack::PushL(connect);
|
sl@0
|
314 |
|
sl@0
|
315 |
// try and find the source already open
|
sl@0
|
316 |
TIter iter(iSources);
|
sl@0
|
317 |
CDbsSource* src;
|
sl@0
|
318 |
for (;;)
|
sl@0
|
319 |
{
|
sl@0
|
320 |
src=iter++;
|
sl@0
|
321 |
if (src==0)
|
sl@0
|
322 |
{ // not already open, have to open a new source
|
sl@0
|
323 |
src=CDbsSource::NewL(aFs,aSource);
|
sl@0
|
324 |
iSources.AddFirst(*src);
|
sl@0
|
325 |
break;
|
sl@0
|
326 |
}
|
sl@0
|
327 |
if (src->Is(aSource))
|
sl@0
|
328 |
break; // share this source
|
sl@0
|
329 |
}
|
sl@0
|
330 |
// we have a source
|
sl@0
|
331 |
connect->Set(*src);
|
sl@0
|
332 |
return connect;
|
sl@0
|
333 |
}
|
sl@0
|
334 |
|