sapi_sysinfo/tsrc/testing/tsysconnectivity/src/tsysconnectivity.cpp
changeset 0 14df0fbfcc4e
equal deleted inserted replaced
-1:000000000000 0:14df0fbfcc4e
       
     1 /*
       
     2 * Copyright (c) 2002 - 2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   Tests sysinfo connectivity information
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 #include <Stiftestinterface.h>
       
    23 #include "tsysconnectivity.h"
       
    24 
       
    25 // EXTERNAL DATA STRUCTURES
       
    26 //extern  ?external_data;
       
    27 
       
    28 // EXTERNAL FUNCTION PROTOTYPES  
       
    29 //extern ?external_function( ?arg_type,?arg_type );
       
    30 
       
    31 // CONSTANTS
       
    32 //const ?type ?constant_var = ?constant;
       
    33 
       
    34 // MACROS
       
    35 //#define ?macro ?macro_def
       
    36 
       
    37 // LOCAL CONSTANTS AND MACROS
       
    38 //const ?type ?constant_var = ?constant;
       
    39 //#define ?macro_name ?macro_def
       
    40 
       
    41 // MODULE DATA STRUCTURES
       
    42 //enum ?declaration
       
    43 //typedef ?declaration
       
    44 
       
    45 // LOCAL FUNCTION PROTOTYPES
       
    46 //?type ?function_name( ?arg_type, ?arg_type );
       
    47 
       
    48 // FORWARD DECLARATIONS
       
    49 //class ?FORWARD_CLASSNAME;
       
    50 
       
    51 // ============================= LOCAL FUNCTIONS ===============================
       
    52 
       
    53 // -----------------------------------------------------------------------------
       
    54 // ?function_name ?description.
       
    55 // ?description
       
    56 // Returns: ?value_1: ?description
       
    57 //          ?value_n: ?description_line1
       
    58 //                    ?description_line2
       
    59 // -----------------------------------------------------------------------------
       
    60 //
       
    61 /*
       
    62 ?type ?function_name(
       
    63     ?arg_type arg,  // ?description
       
    64     ?arg_type arg)  // ?description
       
    65     {
       
    66 
       
    67     ?code  // ?comment
       
    68 
       
    69     // ?comment
       
    70     ?code
       
    71     }
       
    72 */
       
    73 
       
    74 // ============================ MEMBER FUNCTIONS ===============================
       
    75 
       
    76 // -----------------------------------------------------------------------------
       
    77 // Ctsysconnectivity::Ctsysconnectivity
       
    78 // C++ default constructor can NOT contain any code, that
       
    79 // might leave.
       
    80 // -----------------------------------------------------------------------------
       
    81 //
       
    82 Ctsysconnectivity::Ctsysconnectivity( 
       
    83     CTestModuleIf& aTestModuleIf ):
       
    84         CScriptBase( aTestModuleIf )
       
    85     {
       
    86     }
       
    87 
       
    88 // -----------------------------------------------------------------------------
       
    89 // Ctsysconnectivity::ConstructL
       
    90 // Symbian 2nd phase constructor can leave.
       
    91 // -----------------------------------------------------------------------------
       
    92 //
       
    93 void Ctsysconnectivity::ConstructL()
       
    94     {
       
    95     iLog = CStifLogger::NewL( KtsysconnectivityLogPath, 
       
    96                           KtsysconnectivityLogFile,
       
    97                           CStifLogger::ETxt,
       
    98                           CStifLogger::EFile,
       
    99                           EFalse );
       
   100 
       
   101 	if (!iFeatureManagerInitialized)
       
   102 		{
       
   103 		FeatureManager::InitializeLibL();
       
   104 		iFeatureManagerInitialized = ETrue;
       
   105 		}
       
   106 
       
   107     }
       
   108 
       
   109 // -----------------------------------------------------------------------------
       
   110 // Ctsysconnectivity::NewL
       
   111 // Two-phased constructor.
       
   112 // -----------------------------------------------------------------------------
       
   113 //
       
   114 Ctsysconnectivity* Ctsysconnectivity::NewL( 
       
   115     CTestModuleIf& aTestModuleIf )
       
   116     {
       
   117     Ctsysconnectivity* self = new (ELeave) Ctsysconnectivity( aTestModuleIf );
       
   118 
       
   119     CleanupStack::PushL( self );
       
   120     self->ConstructL();
       
   121     CleanupStack::Pop();
       
   122 
       
   123     return self;
       
   124 
       
   125     }
       
   126 
       
   127 // Destructor
       
   128 Ctsysconnectivity::~Ctsysconnectivity()
       
   129     { 
       
   130 
       
   131     // Delete resources allocated from test methods
       
   132     Delete();
       
   133 	if(iFeatureManagerInitialized)
       
   134 		FeatureManager::UnInitializeLib();
       
   135 	
       
   136     // Delete logger
       
   137     delete iLog; 
       
   138 
       
   139     }
       
   140 
       
   141 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
   142 
       
   143 // -----------------------------------------------------------------------------
       
   144 // LibEntryL is a polymorphic Dll entry point.
       
   145 // Returns: CScriptBase: New CScriptBase derived object
       
   146 // -----------------------------------------------------------------------------
       
   147 //
       
   148 EXPORT_C CScriptBase* LibEntryL( 
       
   149     CTestModuleIf& aTestModuleIf ) // Backpointer to STIF Test Framework
       
   150     {
       
   151 
       
   152     return ( CScriptBase* ) Ctsysconnectivity::NewL( aTestModuleIf );
       
   153 
       
   154     }
       
   155 
       
   156 
       
   157 //  End of File