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 |
// Special build functions: ASSERTING, NOTIFY on Leave, TRACING
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __D32ASSERT_H__
|
sl@0
|
19 |
#define __D32ASSERT_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32std.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
#if defined(_DEBUG)
|
sl@0
|
24 |
#define __DEBUG(s) s
|
sl@0
|
25 |
#define _ASSERTIONS
|
sl@0
|
26 |
//#define _NOTIFY
|
sl@0
|
27 |
//#define _TRACE
|
sl@0
|
28 |
//#define __DBDUMP__
|
sl@0
|
29 |
#define __DBINVARIANT__
|
sl@0
|
30 |
#else
|
sl@0
|
31 |
#define __DEBUG(s)
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
|
sl@0
|
34 |
#ifdef __DBDUMP__
|
sl@0
|
35 |
#include <f32file.h> //RFile
|
sl@0
|
36 |
#endif
|
sl@0
|
37 |
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
DECLARE_DB_DUMP, DECLARE_DB_DUMP2, DECLARE_DB_DUMP3 macros can be used for printing out
|
sl@0
|
40 |
DBMS security policy data to a text file.
|
sl@0
|
41 |
__DBDUMP__ macro must be defined if you want to use them.
|
sl@0
|
42 |
Usage:
|
sl@0
|
43 |
Use DECLARE_DB_DUMP macro for declaring pure virtual Dump(RFile& aFile) method in a particular class.
|
sl@0
|
44 |
Use DECLARE_DB_DUMP2 macro for declaring virtual Dump(RFile& aFile) method in a particular class.
|
sl@0
|
45 |
Use DECLARE_DB_DUMP3 macro for declaring non-virtual Dump(RFile& aFile) method in a particular class.
|
sl@0
|
46 |
@internalComponent
|
sl@0
|
47 |
*/
|
sl@0
|
48 |
|
sl@0
|
49 |
#ifdef __DBDUMP__
|
sl@0
|
50 |
#define DECLARE_DB_DUMP(aFile) virtual void Dump(RFile& aFile) const = 0;
|
sl@0
|
51 |
#define DECLARE_DB_DUMP2(aFile) virtual void Dump(RFile& aFile) const;
|
sl@0
|
52 |
#define DECLARE_DB_DUMP3(aFile) void Dump(RFile& aFile) const;
|
sl@0
|
53 |
#else
|
sl@0
|
54 |
#define DECLARE_DB_DUMP(aFile)
|
sl@0
|
55 |
#define DECLARE_DB_DUMP2(aFile)
|
sl@0
|
56 |
#define DECLARE_DB_DUMP3(aFile)
|
sl@0
|
57 |
#endif
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
DECLARE_DB_INVARIANT, DECLARE_DB_INVARIANT2, DB_INVARIANT, DB_INVARIANT_ASSERT
|
sl@0
|
61 |
macros can be used for asserting the internal state of DBMS security policy classes.
|
sl@0
|
62 |
__DBINVARIANT__ macro must be defined if you want to use them.
|
sl@0
|
63 |
Usage:
|
sl@0
|
64 |
Use DECLARE_DB_INVARIANT macro for declaring virtual Invariant() method in a particular class.
|
sl@0
|
65 |
Use DECLARE_DB_INVARIANT2 macro for declaring non-virtual Invariant() method in a particular class.
|
sl@0
|
66 |
Use DB_INVARIANT macro to call Invariant() method somewhere in the code.
|
sl@0
|
67 |
Use DB_INVARIANT_ASSERT macro in places, where you want to use __ASSERT macro (it may not be defined).
|
sl@0
|
68 |
@internalComponent
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
|
sl@0
|
71 |
#ifdef __DBINVARIANT__
|
sl@0
|
72 |
#define DECLARE_DB_INVARIANT() virtual void Invariant() const;
|
sl@0
|
73 |
#define DECLARE_DB_INVARIANT2() void Invariant() const;
|
sl@0
|
74 |
#define DB_INVARIANT() Invariant()
|
sl@0
|
75 |
#define DB_INVARIANT_ASSERT(aExprVal) Util::Invariant(aExprVal)
|
sl@0
|
76 |
#else
|
sl@0
|
77 |
#define DECLARE_DB_INVARIANT()
|
sl@0
|
78 |
#define DECLARE_DB_INVARIANT2()
|
sl@0
|
79 |
#define DB_INVARIANT() void(0)
|
sl@0
|
80 |
#define DB_INVARIANT_ASSERT(aExprVal) void(0)
|
sl@0
|
81 |
#endif
|
sl@0
|
82 |
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
@internalComponent
|
sl@0
|
85 |
*/
|
sl@0
|
86 |
class Util
|
sl@0
|
87 |
{
|
sl@0
|
88 |
public:
|
sl@0
|
89 |
static void Assert(const TText* aFile,TInt aLine);
|
sl@0
|
90 |
//
|
sl@0
|
91 |
static void Leave(const TText* aFile,TInt aLine,TInt aError);
|
sl@0
|
92 |
static TInt LeaveIfError(const TText* aFile,TInt aLine,TInt aError);
|
sl@0
|
93 |
//
|
sl@0
|
94 |
static void Trace(const TText* aFile,TInt aLine);
|
sl@0
|
95 |
static void Trace(const TText* aFile,TInt aLine,const TText* aString);
|
sl@0
|
96 |
static void Trace(const TText* aFile,TInt aLine,const TText* aExp,const TDesC& aDes);
|
sl@0
|
97 |
static void Trace(const TText* aFile,TInt aLine,const TText* aExp,TInt aVal);
|
sl@0
|
98 |
static void Trace(const TText* aFile,TInt aLine,const TText* aExp,const TAny* aPtr);
|
sl@0
|
99 |
static void Invariant(TBool aExprVal);
|
sl@0
|
100 |
private:
|
sl@0
|
101 |
static TPtrC Filename(const TText* aFile);
|
sl@0
|
102 |
};
|
sl@0
|
103 |
|
sl@0
|
104 |
#define __STRING(s) _S(s)
|
sl@0
|
105 |
|
sl@0
|
106 |
#if defined(_ASSERTIONS)
|
sl@0
|
107 |
#undef __ASSERT
|
sl@0
|
108 |
#define __ASSERT(c) (void)((c)||(Util::Assert(__STRING(__FILE__),__LINE__),0))
|
sl@0
|
109 |
#else
|
sl@0
|
110 |
#undef __ASSERT
|
sl@0
|
111 |
#define __ASSERT(c) void(0)
|
sl@0
|
112 |
#endif
|
sl@0
|
113 |
|
sl@0
|
114 |
#if defined(_NOTIFY)
|
sl@0
|
115 |
#define __LEAVE(r) Util::Leave(__STRING(__FILE__),__LINE__,r)
|
sl@0
|
116 |
#define __LEAVE_IF_ERROR(r) Util::LeaveIfError(__STRING(__FILE__),__LINE__,r)
|
sl@0
|
117 |
#else
|
sl@0
|
118 |
#define __LEAVE(r) User::Leave(r)
|
sl@0
|
119 |
#define __LEAVE_IF_ERROR(r) User::LeaveIfError(r)
|
sl@0
|
120 |
#endif
|
sl@0
|
121 |
|
sl@0
|
122 |
#if defined(_TRACE)
|
sl@0
|
123 |
#define __TRACEP() Util::Trace(__STRING(__FILE__),__LINE__)
|
sl@0
|
124 |
#define __TRACES(string) Util::Trace(__STRING(__FILE__),__LINE__,_S(string))
|
sl@0
|
125 |
#define __TRACE(exp) Util::Trace(__STRING(__FILE__),__LINE__,__STRING(#exp),exp)
|
sl@0
|
126 |
#else
|
sl@0
|
127 |
#define __TRACEP() void(0)
|
sl@0
|
128 |
#define __TRACES(string) void(0)
|
sl@0
|
129 |
#define __TRACE(exp) void(0)
|
sl@0
|
130 |
#endif
|
sl@0
|
131 |
|
sl@0
|
132 |
#endif//__D32ASSERT_H__
|