Update contrib.
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.
17 #include <e32capability.h>
19 #include "../LogWrap/inc/LOGWRAP.RH"
20 #include "../LogWrap/inc/LOGWRAP.HRH"
21 #include "../LogWrap/inc/LOGFILTERANDEVENTCONSTANTS.HRH"
23 #include "logwrap.rls"
25 // Initial configuration
26 RESOURCE CONFIG r_log_initial_config
28 size = 1000; // Maximum number of events
29 recent = 20; // Maximum size of recent lists
30 age = 2592000; // 30 days
33 RESOURCE ARRAY r_log_initial_events
37 ETYPE { uid = KLogCallEventType; description = LOG_CALL_EVENT_TYPE; },
38 ETYPE { uid = KLogDataEventType; description = LOG_DATA_EVENT_TYPE; },
39 ETYPE { uid = KLogFaxEventType; description = LOG_FAX_EVENT_TYPE; },
40 ETYPE { uid = KLogShortMessageEventType; description = LOG_SHORT_MESSAGE_EVENT_TYPE; },
41 ETYPE { uid = KLogTaskSchedulerEventType; description = LOG_TASK_SCHEDULER_EVENT_TYPE; },
42 ETYPE { uid = KLogPacketDataEventType; description = LOG_PACKET_DATA_EVENT_TYPE; },
45 ETYPE { uid = KLogLbsSelfLocateEventType; description = LOG_LBS_SELF_LOCATE_EVENT_TYPE; },
46 ETYPE { uid = KLogLbsExternalLocateEventType; description = LOG_LBS_EXTERNAL_LOCATE_EVENT_TYPE; },
47 ETYPE { uid = KLogLbsTransmitLocationEventType; description = LOG_LBS_TRANSMIT_LOCATION_EVENT_TYPE; },
48 ETYPE { uid = KLogLbsNetworkLocateEventType; description = LOG_LBS_NETWORK_LOCATE_EVENT_TYPE; },
49 ETYPE { uid = KLogLbsAssistanceDataEventType; description = LOG_LBS_ASSISTANCE_DATA_EVENT_TYPE; }
56 RESOURCE ARRAY r_log_security
58 // [See logwrap.rh for the definitions of SECURITY and CAPABILITY.]
60 // This structure defines settings for platform security in the Log engine.
61 // All event types defined above in 'r_log_initial_events' need to be policed.
62 // The server must always determine whether a client thread has the required
63 // capability to read/write a log event(s) of a built-in type. Each operation
64 // may have from one to seven capabilities defined for it. All operations on
65 // built in types _MUST_ have an associated security policy defined here. If no
66 // security is required, then use 'cap=ECapability_None'. The CAPABILITY values
67 // defined here will provide constructor arguments for TSecurityPolicy objects.
68 // The maximum number of CAPABILITY(s) for each read or write operation is 7.
69 // ( a read_caps or a write_caps { contains <= 7 CAPABILITY{} statements } )
70 // Note that SID-based security isn't supported in the Log Engine.
77 uid = KLogCallEventType;
80 CAPABILITY { cap=ECapabilityReadUserData; }
84 CAPABILITY { cap=ECapabilityWriteUserData; }
89 uid=KLogDataEventType;
92 CAPABILITY { cap=ECapabilityReadUserData; }
96 CAPABILITY { cap=ECapabilityWriteUserData; }
101 uid=KLogFaxEventType;
104 CAPABILITY { cap=ECapabilityReadUserData; }
108 CAPABILITY { cap=ECapabilityWriteUserData; }
113 uid=KLogShortMessageEventType;
116 CAPABILITY { cap=ECapabilityReadUserData; }
120 CAPABILITY { cap=ECapabilityWriteUserData; }
125 uid=KLogTaskSchedulerEventType;
128 CAPABILITY { cap=ECapabilityReadUserData; }
132 CAPABILITY { cap=ECapability_None; }
137 uid=KLogPacketDataEventType;
140 CAPABILITY { cap=ECapabilityReadUserData; }
144 CAPABILITY { cap=ECapabilityWriteUserData; }
149 uid=KLogLbsSelfLocateEventType;
152 CAPABILITY { cap=ECapabilityReadDeviceData; }
156 CAPABILITY { cap=ECapabilityWriteDeviceData; }
161 uid=KLogLbsExternalLocateEventType;
164 CAPABILITY { cap=ECapabilityReadDeviceData; }
168 CAPABILITY { cap=ECapabilityWriteDeviceData; }
173 uid=KLogLbsTransmitLocationEventType;
176 CAPABILITY { cap=ECapabilityReadDeviceData; }
180 CAPABILITY { cap=ECapabilityWriteDeviceData; }
185 uid=KLogLbsNetworkLocateEventType;
188 CAPABILITY { cap=ECapabilityReadDeviceData; }
192 CAPABILITY { cap=ECapabilityWriteDeviceData; }
197 uid=KLogLbsAssistanceDataEventType;
200 CAPABILITY { cap=ECapabilityReadDeviceData; }
204 CAPABILITY { cap=ECapabilityWriteDeviceData; }
212 RESOURCE ARRAY r_log_indexes
218 name = "Index1"; // do not translate
219 table = "Event"; // do not translate
222 KEY { col = "Id"; } // do not translate
227 name = "Index2"; // do not translate
228 table = "Event"; // do not translate
231 KEY { col = "ETime"; } // do not translate
236 name = "Index3"; // do not translate
237 table = "String"; // do not translate
240 KEY { col = "Id"; } // do not translate
247 RESOURCE ARRAY r_log_recent
253 id = KLogRecentIncomingCalls;
254 duplicate = ELogRemotePartyField|ELogContactField|ELogNumberField;
257 MATCH { field = ELogEventTypeField; value = KLogCallEventType; },
258 MATCH { field = ELogDirectionField; string = LOG_DIR_IN; },
259 MATCH { field = ELogDirectionField; string = LOG_DIR_IN_ALT; }
264 id = KLogRecentOutgoingCalls;
265 duplicate = ELogRemotePartyField|ELogContactField|ELogNumberField;
268 MATCH { field = ELogEventTypeField; value = KLogCallEventType; },
269 MATCH { field = ELogDirectionField; string = LOG_DIR_OUT; },
270 MATCH { field = ELogDirectionField; string = LOG_DIR_OUT_ALT; }
275 id = KLogRecentMissedCalls;
276 duplicate = ELogRemotePartyField|ELogContactField|ELogNumberField;
279 MATCH { field = ELogEventTypeField; value = KLogCallEventType; },
280 MATCH { field = ELogDirectionField; string = LOG_DIR_MISSED; },
281 MATCH { field = ELogDirectionField; string = LOG_DIR_MISSED_ALT; }
289 RESOURCE LBUF r_log_dir_in { txt = LOG_DIR_IN; }
290 RESOURCE LBUF r_log_dir_out { txt = LOG_DIR_OUT; }
291 RESOURCE LBUF r_log_dir_in_alt { txt = LOG_DIR_IN_ALT; }
292 RESOURCE LBUF r_log_dir_out_alt { txt = LOG_DIR_OUT_ALT; }
293 RESOURCE LBUF r_log_dir_fetched { txt = LOG_DIR_FETCHED; }
294 RESOURCE LBUF r_log_dir_missed { txt = LOG_DIR_MISSED; }
295 RESOURCE LBUF r_log_dir_missed_alt { txt = LOG_DIR_MISSED_ALT; }
299 RESOURCE LBUF r_log_del_pending { txt = LOG_DEL_PENDING; }
300 RESOURCE LBUF r_log_del_sent { txt = LOG_DEL_SENT; }
301 RESOURCE LBUF r_log_del_failed { txt = LOG_DEL_FAILED; }
302 RESOURCE LBUF r_log_del_none { txt = LOG_DEL_NONE; }
303 RESOURCE LBUF r_log_del_done { txt = LOG_DEL_DONE; }
304 RESOURCE LBUF r_log_del_not_sent { txt = LOG_DEL_NOT_SENT; }
305 RESOURCE LBUF r_log_del_scheduled { txt = LOG_DEL_SCHEDULED; }
308 RESOURCE LBUF r_log_remote_unknown { txt = LOG_REMOTE_UNKNOWN; }
309 RESOURCE LBUF r_log_remote_multiple { txt = LOG_REMOTE_MULTIPLE; }
310 RESOURCE LBUF r_log_subject_none { txt = LOG_SUBJECT_NONE; }
311 RESOURCE LBUF r_log_subject_data_message { txt = LOG_SUBJECT_DATA_MESSAGE; }
314 RESOURCE LBUF r_log_con_connected { txt = LOG_CON_CONNECTED; }
315 RESOURCE LBUF r_log_con_connecting { txt = LOG_CON_CONNECTING; }
316 RESOURCE LBUF r_log_con_disconnecting { txt = LOG_CON_DISCONNECTING; }
317 RESOURCE LBUF r_log_con_disconnected{ txt = LOG_CON_DISCONNECTED; }
318 RESOURCE LBUF r_log_con_suspended{ txt = LOG_CON_SUSPENDED; }
321 RESOURCE LBUF r_log_del_notified { txt = LOG_DEL_NOTIFIED; }
322 RESOURCE LBUF r_log_del_expired { txt = LOG_DEL_EXPIRED; }