eapol/eapol_framework/eapol_common/include/eap_general_settings_client_message_if.h
branchRCL_3
changeset 18 bad0cc58d154
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eapol/eapol_framework/eapol_common/include/eap_general_settings_client_message_if.h	Tue Aug 31 15:16:37 2010 +0300
@@ -0,0 +1,150 @@
+/*
+* 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:  Class creates and reads the messages used in EAP-general settings interface on the client side.
+*
+*/
+
+/*
+* %version: 8 %
+*/
+
+#if !defined(_EAP_GENERAL_SETTINGS_CLIENT_MESSAGE_IF_H_)
+#define _EAP_GENERAL_SETTINGS_CLIENT_MESSAGE_IF_H_
+
+#include "eap_tools.h"
+#include "eap_am_export.h"
+#include "eap_plugin_message_base.h"
+#include "abs_eap_am_message_if.h"
+#include "eap_array.h"
+#include "eap_process_tlv_message_data.h"
+#include "eap_general_settings_message.h"
+
+class eap_method_settings_c;
+class eap_am_message_if_c;
+class abs_eap_general_settings_message_c;
+class eap_tlv_header_c;
+
+/// Class creates and reads the messages used in EAP-general settings interface on the client side.
+class EAP_EXPORT eap_general_settings_client_message_if_c
+: public abs_eap_am_message_if_c
+, public eap_general_settings_message_c
+{
+private:
+	//--------------------------------------------------
+
+	/// This is pointer to the tools class.
+	abs_eap_am_tools_c * const m_am_tools;
+
+	/// eap_general_settings_client_message_if_c deletes m_client_if in destructor.
+	eap_am_message_if_c * m_client_if;
+
+	/// This is back pointer to object which created this object.
+	/// Packets are sent to the partner.
+	abs_eap_general_settings_message_c * const m_partner;
+
+	/// This indicates whether this object was generated successfully.
+	bool m_is_valid;
+
+	eap_status_e m_error_code;
+
+	eap_tlv_message_type_function_e m_error_function;
+
+
+	eap_status_e complete_set_eap_methods(
+		EAP_TEMPLATE_CONST eap_array_c<eap_tlv_header_c> * const parameters);
+
+	eap_status_e complete_get_eap_methods(
+		EAP_TEMPLATE_CONST eap_array_c<eap_tlv_header_c> * const parameters);
+
+	eap_status_e complete_get_certificate_lists(
+		EAP_TEMPLATE_CONST eap_array_c<eap_tlv_header_c> * const parameters);
+
+	eap_status_e complete_delete_all_eap_settings(
+		EAP_TEMPLATE_CONST eap_array_c<eap_tlv_header_c> * const parameters);
+
+	eap_status_e complete_copy_all_eap_settings(
+		EAP_TEMPLATE_CONST eap_array_c<eap_tlv_header_c> * const parameters);
+
+
+	eap_status_e process_message_type_error(
+		EAP_TEMPLATE_CONST eap_array_c<eap_tlv_header_c> * const parameters);
+
+	eap_status_e process_message(eap_process_tlv_message_data_c * const message);
+
+	//--------------------------------------------------
+protected:
+	//--------------------------------------------------
+
+	//--------------------------------------------------
+public:
+	//--------------------------------------------------
+
+	/**
+	 * The destructor of the eap_core class does nothing special.
+	 */
+	EAP_FUNC_IMPORT virtual ~eap_general_settings_client_message_if_c();
+
+	/**
+	 * The constructor initializes member attributes using parameters passed to it.
+	 * @param tools is pointer to the tools class. @see abs_eap_am_tools_c.
+	 * @param client_if is pointer to object which forwards message to the server.
+	 * @param partner is back pointer to the user of EAP-general settings.
+	 */
+	EAP_FUNC_IMPORT eap_general_settings_client_message_if_c(
+		abs_eap_am_tools_c * const tools,
+		eap_am_message_if_c * const client_if,
+		abs_eap_general_settings_message_c * const partner);
+
+	/**
+	 * This function must reset the state of object to same as 
+	 * state was after the configure() function call.
+	 * If object reset succeeds this function must return eap_status_ok.
+	 * If object reset fails this function must return corresponding error status.
+	 * @return This function returns the status of reset operation.
+	 */
+	EAP_FUNC_IMPORT eap_status_e reset();
+
+	// This is documented in abs_eap_stack_interface_c::configure().
+	EAP_FUNC_IMPORT eap_status_e configure();
+
+	// This is documented in abs_eap_stack_interface_c::shutdown().
+	EAP_FUNC_IMPORT eap_status_e shutdown();
+
+	// This is documented in abs_eap_stack_interface_c::get_is_valid().
+	EAP_FUNC_IMPORT bool get_is_valid();
+
+	EAP_FUNC_IMPORT eap_status_e get_eap_methods(const eap_method_settings_c * const internal_settings);
+
+	EAP_FUNC_IMPORT eap_status_e set_eap_methods(const eap_method_settings_c * const internal_settings);
+
+	EAP_FUNC_IMPORT eap_status_e get_certificate_lists(const eap_method_settings_c * const internal_settings);
+
+	EAP_FUNC_IMPORT eap_status_e delete_all_eap_settings(const eap_method_settings_c * const internal_settings);
+
+	EAP_FUNC_IMPORT eap_status_e copy_all_eap_settings(const eap_method_settings_c * const internal_settings);
+
+	EAP_FUNC_IMPORT eap_status_e send_data(const void * const data, const u32_t length);
+
+	//--------------------------------------------------
+}; // class eap_general_settings_client_message_if_c
+
+//--------------------------------------------------
+
+#endif //#if !defined(_EAP_GENERAL_SETTINGS_CLIENT_MESSAGE_IF_H_)
+
+//--------------------------------------------------
+
+
+
+// End.