os/ossrv/lowlevellibsandfws/apputils/inc/BaAssert.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/inc/BaAssert.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,55 @@
     1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef __BAASSERT_H__
    1.20 +#define __BAASSERT_H__
    1.21 +
    1.22 +#include <baflpan.h>
    1.23 +
    1.24 +/** TBaAssert class has two methods: AssertDebL and AssertRelL, which
    1.25 +can do a panic or leave depending on the iErrorAction value.
    1.26 +If the TBaAssert object is created with TBaAssert::ELeave
    1.27 +constant, then AssertDebL/AssertRelL methods will leave when called
    1.28 +(if aAssertExprVal argument is EFalse).
    1.29 +If the TBaAssert object is created with TBaAssert::EPanic
    1.30 +constant, then AssertDebL/AssertRelL methods will panic when called
    1.31 +(if aAssertExprVal argument is EFalse).
    1.32 +If the TBaAssert object is created using the default constructor - by default
    1.33 +the methods will panic.
    1.34 +The class size has to be exactly sizeof(enum), because objects of that class are
    1.35 +used in some legacy code - replacing an existing enum data member.
    1.36 +@internalComponent */
    1.37 +class TBaAssert
    1.38 +	{
    1.39 +public:
    1.40 +	enum TErrorAction
    1.41 +		{
    1.42 +		EPanic,
    1.43 +		ELeave
    1.44 +		};
    1.45 +public:
    1.46 +	TBaAssert();
    1.47 +	TBaAssert(TErrorAction aErrorAction);
    1.48 +	void AssertDebL(TBool aAssertExprVal, TBafPanic aPanic) const;
    1.49 +	void AssertRelL(TBool aAssertExprVal, TBafPanic aPanic) const;
    1.50 +private:
    1.51 +	void DoAssertL(TBool aAssertExprVal, TBool aDebug, TBafPanic aPanic) const;
    1.52 +	void DoLeaveL(TBafPanic aPanic) const;
    1.53 +	void DoAssert(TBool aDebug, TBafPanic aPanic) const;
    1.54 +private:
    1.55 +	TErrorAction iErrorAction;
    1.56 +	};
    1.57 +
    1.58 +#endif//__BAASSERT_H__