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 |
// Client observer class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "UD_STD.H"
|
sl@0
|
19 |
|
sl@0
|
20 |
// Class RDbNotifier
|
sl@0
|
21 |
|
sl@0
|
22 |
EXPORT_C TInt RDbNotifier::Open(RDbDatabase& aDatabase)
|
sl@0
|
23 |
/** Opens a DBMS change notifier on a database.
|
sl@0
|
24 |
|
sl@0
|
25 |
Note that a notifier cannot be opened on a client side database.
|
sl@0
|
26 |
|
sl@0
|
27 |
@param aDatabase The database to be observed.
|
sl@0
|
28 |
@return KErrNone if successful, otherwise another of the system-wide error
|
sl@0
|
29 |
codes. */
|
sl@0
|
30 |
{
|
sl@0
|
31 |
TRAPD(r,iNotifier=aDatabase.iDatabase->NotifierL());
|
sl@0
|
32 |
return r;
|
sl@0
|
33 |
}
|
sl@0
|
34 |
|
sl@0
|
35 |
EXPORT_C void RDbNotifier::Close()
|
sl@0
|
36 |
/** Closes a DBMS change notifier. Any outstanding notification request is automatically
|
sl@0
|
37 |
cancelled.
|
sl@0
|
38 |
|
sl@0
|
39 |
Note that this function can be called on a DBMS change notifier that has already
|
sl@0
|
40 |
been closed. */
|
sl@0
|
41 |
{
|
sl@0
|
42 |
iNotifier.Close();
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
LOCAL_C void Notify(RDbHandle<CDbNotifier>& aNotifier,TRequestStatus& aStatus,CDbNotifier::TType aType)
|
sl@0
|
46 |
{
|
sl@0
|
47 |
aNotifier->Notify(aType,aStatus);
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
EXPORT_C void RDbNotifier::NotifyUnlock(TRequestStatus& aStatus)
|
sl@0
|
51 |
/** Makes an asynchronous request for notification of a database event. All events,
|
sl@0
|
52 |
including the release of all read locks, are reported.
|
sl@0
|
53 |
|
sl@0
|
54 |
When a database event occurs, the request completes and the TRequestStatus
|
sl@0
|
55 |
objectcontains one of the enumerators defined by the TEvent enumeration member.
|
sl@0
|
56 |
|
sl@0
|
57 |
Alternatively, if an outstanding request is cancelled by a call to the Cancel()
|
sl@0
|
58 |
member function of this class, then the request completes with KErrCancel.
|
sl@0
|
59 |
|
sl@0
|
60 |
Only one notification request can be outstanding on this notifier at any one
|
sl@0
|
61 |
time.
|
sl@0
|
62 |
|
sl@0
|
63 |
Note that if further database events occur while a client is handling a request
|
sl@0
|
64 |
completion, the notifier records the most significant database event and this
|
sl@0
|
65 |
is signalled as soon as the client issues the next NotifyUnlock() or NotifyChange()
|
sl@0
|
66 |
request.
|
sl@0
|
67 |
|
sl@0
|
68 |
@param aStatus The request status object. If the request is cancelled, this
|
sl@0
|
69 |
is set to KErrCancel. If the request completes normally, this is set to one
|
sl@0
|
70 |
of the enumerator values defined by the TEvent enumeration member. */
|
sl@0
|
71 |
{
|
sl@0
|
72 |
::Notify(iNotifier,aStatus,CDbNotifier::EUnlock);
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
EXPORT_C void RDbNotifier::NotifyChange(TRequestStatus& aStatus)
|
sl@0
|
76 |
/** Makes an asynchronous request for notification of changes to the database.
|
sl@0
|
77 |
|
sl@0
|
78 |
All events which indicate a change to the database are reported; in practice,
|
sl@0
|
79 |
this means all database events except RDbNotifier::EUnlock.
|
sl@0
|
80 |
|
sl@0
|
81 |
When a change event occurs, the request completes and the TRequestStatus object
|
sl@0
|
82 |
contains one of the appropriate enumerators defined by the TEvent enumeration
|
sl@0
|
83 |
member.
|
sl@0
|
84 |
|
sl@0
|
85 |
Alternatively, if an outstanding request is cancelled by a call to the Cancel()
|
sl@0
|
86 |
member function of this class, then the request completes with KErrCancel.
|
sl@0
|
87 |
|
sl@0
|
88 |
Only one notification request can be outstanding on this notifier at any one
|
sl@0
|
89 |
time.
|
sl@0
|
90 |
|
sl@0
|
91 |
Note that if further database events occur while a client is handling a request
|
sl@0
|
92 |
completion, the notifier records the most significant database event and this
|
sl@0
|
93 |
is signalled as soon as the client issues the next NotifyUnlock() or NotifyChange()
|
sl@0
|
94 |
request.
|
sl@0
|
95 |
|
sl@0
|
96 |
@param aStatus The request status object. If the request is cancelled, this
|
sl@0
|
97 |
is set to KErrCancel. If the request completes normally, this is set to one
|
sl@0
|
98 |
of the enumerator values defined by the TEvent enumeration member. */
|
sl@0
|
99 |
{
|
sl@0
|
100 |
::Notify(iNotifier,aStatus,CDbNotifier::EChange);
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
EXPORT_C void RDbNotifier::Cancel()
|
sl@0
|
104 |
/** Cancels any outstanding notification request to this DBMS notifier.
|
sl@0
|
105 |
|
sl@0
|
106 |
The outstanding request completes with a KErrCancel. */
|
sl@0
|
107 |
{
|
sl@0
|
108 |
iNotifier->Cancel();
|
sl@0
|
109 |
}
|