First public contribution.
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __LOGCLISERVSHARED_H__
17 #define __LOGCLISERVSHARED_H__
29 typedef TUint32 TLogOperationId;
35 const TLogOperationId KLogNullOperationId = 0;
36 const TLogViewId KLogNullViewId = 0;
37 const TInt KLogMaxDateLength = 32;
47 ELogMakeTransient = 1, // Debug
48 ELogSetHeapFail = 2, // Debug
50 ELogOperationCancel = 3,
51 ELogOperationGetResult = 4,
52 ELogOperationInitiate = 5,
61 ELogViewOperationInitiate = 13,
62 ELogViewChangeNotificationsRequest = 14,
63 ELogViewChangeNotificationsCancel = 15,
64 ELogViewFetchChanges = 16,
65 ELogViewNotifyLockStatusChange = 17,
66 ELogViewNotifyLockStatusChangeCancel = 18,
68 ELogNotifyExtended = 30,
69 ELogNotifyExtendedCancel = 31,
71 ELogIsServerReady = 99, // Debug
79 enum TLogOperationType
81 ELogOperationEventAdd = 0,
82 ELogOperationEventGet,
83 ELogOperationEventChange,
84 ELogOperationEventDelete,
88 ELogOperationTypeChange,
89 ELogOperationTypeDelete,
91 ELogOperationClearLog,
92 ELogOperationClearRecent,
94 ELogOperationConfigGet,
95 ELogOperationConfigChange,
97 ELogOperationMaintain,
99 ELogOperationViewSetup,
100 ELogOperationViewRemoveEvent,
101 ELogOperationViewClearDuplicates,
102 ELogOperationViewSetFlags,
103 ELogOperationViewWindowFetch
111 ELogViewTypeEvent = 0,
113 ELogViewTypeDuplicate
121 ELogNavigateForwards = 0,
122 ELogNavigateBackwards,
130 enum TLogViewLockStatus
132 ELogViewWindowOpen = 0,
139 enum TLogFilterConstructionType
141 ELogFilterConstructFilterByFilterFieldByField = 0,
142 ELogFilterConstructFieldByFieldFilterByFilter
149 class TLogClientServerData
154 * The type of operation
156 TLogOperationType iOperationType;
161 TLogOperationId iOperationId;
164 * Other spare transfer data slots
176 IMPORT_C TLogWindow();
179 IMPORT_C TBool Contains(TInt aPosition) const;
180 IMPORT_C TInt Range() const;
181 IMPORT_C TInt WindowIndexFromCursorPosition(TInt aCursorPosition) const;
182 IMPORT_C void Reset();
193 class TLogWindowAndCursor : public TLogWindow
198 EWindowUnaffected = 0,
203 TLogWindowAndCursor();
204 TLogWindowAndCursor(const TLogWindow& aWindow, TInt aCursorPosition);
207 TAffected AdjustForItemDeletion(TInt aItemIndex);
208 TAffected AdjustForItemAddition(TInt aItemIndex);
209 TInt WindowIndexFromCursorPosition() const;
211 void NormalizeWindowAndCursor();
214 TInt iCursorPosition;
221 class TLogTransferWindow : public TLogWindow
224 IMPORT_C TLogTransferWindow();
225 IMPORT_C void Reset();
229 TInt iServerDataSize;//if iBufferSize is less than the length of the requested data from
230 //the server, the server will set iServerDataSize with the minimal
231 //size which the client side buffer should have.
234 //**********************************
236 //**********************************
239 Provide log engine system utilities.
246 IMPORT_C static const TDesC& DateFormatForLocale();