Update contrib.
1 // Copyright (c) 1998-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.
19 #include "D32Assert.h"
21 #if defined(_ASSERTIONS) || defined(_NOTIFY) || defined(_TRACE)
22 TPtrC Util::Filename(const TText* aFile)
25 TInt ix=p.LocateReverse('\\'); // MSVC uses \ as path separator, GCC uses /
27 ix=p.LocateReverse('/');
32 #endif//defined(_ASSERTIONS) || defined(_NOTIFY) || defined(_TRACE)
34 #if defined(_ASSERTIONS)
35 void Util::Assert(const TText* aFile,TInt aLine)
37 TBuf<32> b=_S("dbms:");
41 #endif//defined(_ASSERTIONS)
44 #pragma message(__FILE__ " : Leave Notification is enabled")
46 void Util::Leave(const TText* aFile,TInt aLine,TInt aError)
48 TPtrC f(Filename(aFile));
50 _LIT(KFormat,"***Error=%d at %S(%d)");
51 buf.Format(KFormat,aError,&f,aLine);
55 if (notify.Connect()==KErrNone)
59 _LIT(KNotify,"DBMS Leave");
60 _LIT(KContinue,"Continue");
61 notify.Notify(KNotify,buf,KContinue,KNullDesC,but,stat);
62 User::WaitForRequest(stat);
66 _LIT(KNotify,"DBMS Leave ");
67 buf.Insert(0,KNotify);
68 // User::InfoPrint(buf);
74 TInt Util::LeaveIfError(const TText* aFile,TInt aLine,TInt aError)
77 Leave(aFile,aLine,aError);
80 #endif//defined(_NOTIFY)
83 #pragma message(__FILE__ " : Tracing is enabled")
85 void Util::Trace(const TText* aFile,TInt aLine)
87 TPtrC f(Filename(aFile));
88 _LIT(KFormat,"%S(%d)\n");
89 RDebug::Print(KFormat,&f,aLine);
92 void Util::Trace(const TText* aFile,TInt aLine,const TText* aString)
94 TPtrC f(Filename(aFile));
95 _LIT(KFormat,"%S(%d) : %s\n");
96 RDebug::Print(KFormat,&f,aLine,aString);
98 void Util::Trace(const TText* aFile,TInt aLine,const TText* aExp,const TDesC& aDes)
100 TPtrC f(Filename(aFile));
101 _LIT(KFormat,"%S(%d) : %s = \"%S\"\n");
102 RDebug::Print(KFormat,&f,aLine,aExp,&aDes);
105 void Util::Trace(const TText* aFile,TInt aLine,const TText* aExp,const TAny* aPtr)
107 TPtrC f(Filename(aFile));
108 _LIT(KFormat,"%S(%d) : %s = %08x\n");
109 RDebug::Print(KFormat,&f,aLine,aExp,TUint(aPtr));
112 void Util::Trace(const TText* aFile,TInt aLine,const TText* aExp,TInt aVal)
114 TPtrC f(Filename(aFile));
115 _LIT(KFormat,"%S(%d) : %s = %d (0x%x)\n");
116 RDebug::Print(KFormat,&f,aLine,aExp,aVal,aVal);
118 #endif//defined(_TRACE)
120 #ifdef __DBINVARIANT__
121 void Util::Invariant(TBool aExprVal)
128 #endif//__DBINVARIANT__