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 |
// Ut_Assert.cpp
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <e32svr.h>
|
sl@0
|
19 |
#include "D32Assert.h"
|
sl@0
|
20 |
|
sl@0
|
21 |
#if defined(_ASSERTIONS) || defined(_NOTIFY) || defined(_TRACE)
|
sl@0
|
22 |
TPtrC Util::Filename(const TText* aFile)
|
sl@0
|
23 |
{
|
sl@0
|
24 |
TPtrC p(aFile);
|
sl@0
|
25 |
TInt ix=p.LocateReverse('\\'); // MSVC uses \ as path separator, GCC uses /
|
sl@0
|
26 |
if (ix<0)
|
sl@0
|
27 |
ix=p.LocateReverse('/');
|
sl@0
|
28 |
if (ix>=0)
|
sl@0
|
29 |
p.Set(p.Mid(1+ix));
|
sl@0
|
30 |
return p;
|
sl@0
|
31 |
}
|
sl@0
|
32 |
#endif//defined(_ASSERTIONS) || defined(_NOTIFY) || defined(_TRACE)
|
sl@0
|
33 |
|
sl@0
|
34 |
#if defined(_ASSERTIONS)
|
sl@0
|
35 |
void Util::Assert(const TText* aFile,TInt aLine)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
TBuf<32> b=_S("dbms:");
|
sl@0
|
38 |
b+=Filename(aFile);
|
sl@0
|
39 |
User::Panic(b,aLine);
|
sl@0
|
40 |
}
|
sl@0
|
41 |
#endif//defined(_ASSERTIONS)
|
sl@0
|
42 |
|
sl@0
|
43 |
#if defined(_NOTIFY)
|
sl@0
|
44 |
#pragma message(__FILE__ " : Leave Notification is enabled")
|
sl@0
|
45 |
|
sl@0
|
46 |
void Util::Leave(const TText* aFile,TInt aLine,TInt aError)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
TPtrC f(Filename(aFile));
|
sl@0
|
49 |
TBuf<60> buf;
|
sl@0
|
50 |
_LIT(KFormat,"***Error=%d at %S(%d)");
|
sl@0
|
51 |
buf.Format(KFormat,aError,&f,aLine);
|
sl@0
|
52 |
__TRACE(buf);
|
sl@0
|
53 |
#if _NOTIFY_WAIT
|
sl@0
|
54 |
RNotifier notify;
|
sl@0
|
55 |
if (notify.Connect()==KErrNone)
|
sl@0
|
56 |
{
|
sl@0
|
57 |
TRequestStatus stat;
|
sl@0
|
58 |
TInt but;
|
sl@0
|
59 |
_LIT(KNotify,"DBMS Leave");
|
sl@0
|
60 |
_LIT(KContinue,"Continue");
|
sl@0
|
61 |
notify.Notify(KNotify,buf,KContinue,KNullDesC,but,stat);
|
sl@0
|
62 |
User::WaitForRequest(stat);
|
sl@0
|
63 |
notify.Close();
|
sl@0
|
64 |
}
|
sl@0
|
65 |
#else
|
sl@0
|
66 |
_LIT(KNotify,"DBMS Leave ");
|
sl@0
|
67 |
buf.Insert(0,KNotify);
|
sl@0
|
68 |
// User::InfoPrint(buf);
|
sl@0
|
69 |
__TRACE(buf);
|
sl@0
|
70 |
#endif
|
sl@0
|
71 |
User::Leave(aError);
|
sl@0
|
72 |
}
|
sl@0
|
73 |
|
sl@0
|
74 |
TInt Util::LeaveIfError(const TText* aFile,TInt aLine,TInt aError)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
if (aError<0)
|
sl@0
|
77 |
Leave(aFile,aLine,aError);
|
sl@0
|
78 |
return aError;
|
sl@0
|
79 |
}
|
sl@0
|
80 |
#endif//defined(_NOTIFY)
|
sl@0
|
81 |
|
sl@0
|
82 |
#if defined(_TRACE)
|
sl@0
|
83 |
#pragma message(__FILE__ " : Tracing is enabled")
|
sl@0
|
84 |
|
sl@0
|
85 |
void Util::Trace(const TText* aFile,TInt aLine)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
TPtrC f(Filename(aFile));
|
sl@0
|
88 |
_LIT(KFormat,"%S(%d)\n");
|
sl@0
|
89 |
RDebug::Print(KFormat,&f,aLine);
|
sl@0
|
90 |
}
|
sl@0
|
91 |
|
sl@0
|
92 |
void Util::Trace(const TText* aFile,TInt aLine,const TText* aString)
|
sl@0
|
93 |
{
|
sl@0
|
94 |
TPtrC f(Filename(aFile));
|
sl@0
|
95 |
_LIT(KFormat,"%S(%d) : %s\n");
|
sl@0
|
96 |
RDebug::Print(KFormat,&f,aLine,aString);
|
sl@0
|
97 |
}
|
sl@0
|
98 |
void Util::Trace(const TText* aFile,TInt aLine,const TText* aExp,const TDesC& aDes)
|
sl@0
|
99 |
{
|
sl@0
|
100 |
TPtrC f(Filename(aFile));
|
sl@0
|
101 |
_LIT(KFormat,"%S(%d) : %s = \"%S\"\n");
|
sl@0
|
102 |
RDebug::Print(KFormat,&f,aLine,aExp,&aDes);
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
void Util::Trace(const TText* aFile,TInt aLine,const TText* aExp,const TAny* aPtr)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
TPtrC f(Filename(aFile));
|
sl@0
|
108 |
_LIT(KFormat,"%S(%d) : %s = %08x\n");
|
sl@0
|
109 |
RDebug::Print(KFormat,&f,aLine,aExp,TUint(aPtr));
|
sl@0
|
110 |
}
|
sl@0
|
111 |
|
sl@0
|
112 |
void Util::Trace(const TText* aFile,TInt aLine,const TText* aExp,TInt aVal)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
TPtrC f(Filename(aFile));
|
sl@0
|
115 |
_LIT(KFormat,"%S(%d) : %s = %d (0x%x)\n");
|
sl@0
|
116 |
RDebug::Print(KFormat,&f,aLine,aExp,aVal,aVal);
|
sl@0
|
117 |
}
|
sl@0
|
118 |
#endif//defined(_TRACE)
|
sl@0
|
119 |
|
sl@0
|
120 |
#ifdef __DBINVARIANT__
|
sl@0
|
121 |
void Util::Invariant(TBool aExprVal)
|
sl@0
|
122 |
{
|
sl@0
|
123 |
if(!aExprVal)
|
sl@0
|
124 |
{
|
sl@0
|
125 |
User::Invariant();
|
sl@0
|
126 |
}
|
sl@0
|
127 |
}
|
sl@0
|
128 |
#endif//__DBINVARIANT__
|
sl@0
|
129 |
|