eapol/eapol_framework/eapol_symbian/am/include/eap_am_mutex_symbian.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 18 Jan 2010 20:22:35 +0200
changeset 2 1c7bc153c08e
parent 0 c8830336c852
child 26 9abfd4f00d37
permissions -rw-r--r--
Revision: 201001 Kit: 201003

/*
* Copyright (c) 2001-2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  EAP and WLAN authentication protocols.
*
*/

/*
* %version: 4 %
*/

#if !defined( _EAP_AM_MUTEX_SYMBIAN_H_ )
#define _EAP_AM_MUTEX_SYMBIAN_H_

// INCLUDES
#include "eap_am_types.h"
#include "eap_variable_data.h"
#include "eap_am_export.h"
#include "abs_eap_am_mutex.h"

// CLASS DECLARATION
class EAP_EXPORT eap_am_mutex_symbian_c
: public abs_eap_am_mutex_c
, public eap_am_mutex_base_c
{
private:

	/// Object is Symbian implementation of the mutex.
	RMutex m_mutex;

	/// Object is Symbian implementation of the thread which is owner of the mutex.
	RThread m_owner_thread;

	bool m_is_valid;

	// On purpose unimplemented constructors.
	eap_am_mutex_symbian_c(eap_am_mutex_symbian_c &source);
	const eap_am_mutex_symbian_c & operator=(const eap_am_mutex_symbian_c& source);

public:

	EAP_FUNC_IMPORT virtual ~eap_am_mutex_symbian_c();

	EAP_FUNC_IMPORT eap_am_mutex_symbian_c();

	EAP_FUNC_IMPORT eap_am_mutex_symbian_c(const eap_am_mutex_symbian_c * const owner);

	/// Function returns pointer to Symbian mutex.
	EAP_FUNC_IMPORT const RMutex * get_mutex() const;

	/// Function returns pointer to owner thread of the mutex.
	EAP_FUNC_IMPORT const RThread * get_owner_thread() const;

	// See comments on abs_eap_am_mutex_c.
	EAP_FUNC_IMPORT eap_status_e mutex_enter();

	// See comments on abs_eap_am_mutex_c.
	EAP_FUNC_IMPORT eap_status_e mutex_leave(abs_eap_am_tools_c * const m_am_tools);

	// The mutex handle must be dublicated in Symbian operating system for each thread.
	// See comments on abs_eap_am_mutex_c.
	EAP_FUNC_IMPORT abs_eap_am_mutex_c * dublicate_mutex();

	// This is used in debug asserts. Those will check the mutex is really reserved when critical code is entered.
	// See comments on abs_eap_am_mutex_c.
	EAP_FUNC_IMPORT bool get_is_reserved() const;

	// See comments on abs_eap_am_mutex_c.
	EAP_FUNC_IMPORT bool get_is_valid() const;

	// - - - - - - - - - - - - - - - - - - - - - - - -

};

#endif //#if !defined( _EAP_AM_MUTEX_SYMBIAN_H_ )



// End of file