homescreensrv_plat/hs_widget_publisher_api/tsrc/src/TestHspApi.cpp
changeset 0 79c6a41cd166
equal deleted inserted replaced
-1:000000000000 0:79c6a41cd166
       
     1 /*
       
     2 * Copyright (c) 2002 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 "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:  ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include <Stiftestinterface.h>
       
    22 #include "TestHspApi.h"
       
    23 
       
    24 // EXTERNAL DATA STRUCTURES
       
    25 //extern  ?external_data;
       
    26 
       
    27 // EXTERNAL FUNCTION PROTOTYPES  
       
    28 //extern ?external_function( ?arg_type,?arg_type );
       
    29 
       
    30 // CONSTANTS
       
    31 //const ?type ?constant_var = ?constant;
       
    32 
       
    33 // MACROS
       
    34 //#define ?macro ?macro_def
       
    35 
       
    36 // LOCAL CONSTANTS AND MACROS
       
    37 //const ?type ?constant_var = ?constant;
       
    38 //#define ?macro_name ?macro_def
       
    39 
       
    40 // MODULE DATA STRUCTURES
       
    41 //enum ?declaration
       
    42 //typedef ?declaration
       
    43 
       
    44 // LOCAL FUNCTION PROTOTYPES
       
    45 //?type ?function_name( ?arg_type, ?arg_type );
       
    46 
       
    47 // FORWARD DECLARATIONS
       
    48 //class ?FORWARD_CLASSNAME;
       
    49 
       
    50 // ============================= LOCAL FUNCTIONS ===============================
       
    51 
       
    52 // -----------------------------------------------------------------------------
       
    53 // ?function_name ?description.
       
    54 // ?description
       
    55 // Returns: ?value_1: ?description
       
    56 //          ?value_n: ?description_line1
       
    57 //                    ?description_line2
       
    58 // -----------------------------------------------------------------------------
       
    59 //
       
    60 /*
       
    61 ?type ?function_name(
       
    62     ?arg_type arg,  // ?description
       
    63     ?arg_type arg)  // ?description
       
    64     {
       
    65 
       
    66     ?code  // ?comment
       
    67 
       
    68     // ?comment
       
    69     ?code
       
    70     }
       
    71 */
       
    72 
       
    73 // ============================ MEMBER FUNCTIONS ===============================
       
    74 
       
    75 // -----------------------------------------------------------------------------
       
    76 // CTestHspApi::CTestHspApi
       
    77 // C++ default constructor can NOT contain any code, that
       
    78 // might leave.
       
    79 // -----------------------------------------------------------------------------
       
    80 //
       
    81 CTestHspApi::CTestHspApi( 
       
    82     CTestModuleIf& aTestModuleIf ):
       
    83         CScriptBase( aTestModuleIf )
       
    84     {
       
    85     }
       
    86 
       
    87 // -----------------------------------------------------------------------------
       
    88 // CTestHspApi::ConstructL
       
    89 // Symbian 2nd phase constructor can leave.
       
    90 // -----------------------------------------------------------------------------
       
    91 //
       
    92 void CTestHspApi::ConstructL()
       
    93     {
       
    94     iLog = CStifLogger::NewL( KTestHspApiLogPath, 
       
    95                           KTestHspApiLogFile,
       
    96                           CStifLogger::ETxt,
       
    97                           CStifLogger::EFile,
       
    98                           EFalse );
       
    99 
       
   100     mServiceHandler = CLiwServiceHandler::NewL();
       
   101     mServiceInterface = GetServiceInterfaceL();
       
   102 	iItemActionStatus = KErrGeneral;
       
   103 	iActionStatus = KErrGeneral;
       
   104     }
       
   105 
       
   106 // -----------------------------------------------------------------------------
       
   107 // CTestHspApi::NewL
       
   108 // Two-phased constructor.
       
   109 // -----------------------------------------------------------------------------
       
   110 //
       
   111 CTestHspApi* CTestHspApi::NewL( 
       
   112     CTestModuleIf& aTestModuleIf )
       
   113     {
       
   114     CTestHspApi* self = new (ELeave) CTestHspApi( aTestModuleIf );
       
   115     
       
   116     CleanupStack::PushL( self );
       
   117     self->ConstructL();
       
   118     CleanupStack::Pop();
       
   119 
       
   120     return self;
       
   121     
       
   122     }
       
   123     
       
   124 // Destructor
       
   125 CTestHspApi::~CTestHspApi()
       
   126     { 
       
   127     
       
   128     // Delete resources allocated from test methods
       
   129     Delete();
       
   130     
       
   131     // Delete logger
       
   132     delete iLog;
       
   133     
       
   134     }
       
   135 
       
   136 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
   137 
       
   138 // -----------------------------------------------------------------------------
       
   139 // LibEntryL is a polymorphic Dll entry point.
       
   140 // Returns: CScriptBase: New CScriptBase derived object
       
   141 // -----------------------------------------------------------------------------
       
   142 //
       
   143 EXPORT_C CScriptBase* LibEntryL( 
       
   144     CTestModuleIf& aTestModuleIf ) // Backpointer to STIF Test Framework
       
   145     {
       
   146     
       
   147     return ( CScriptBase* ) CTestHspApi::NewL( aTestModuleIf );
       
   148         
       
   149     }
       
   150 
       
   151 // -----------------------------------------------------------------------------
       
   152 // E32Dll is a DLL entry point function.
       
   153 // Returns: KErrNone
       
   154 // -----------------------------------------------------------------------------
       
   155 //
       
   156 #ifndef EKA2 // Hide Dll entry point to EKA2
       
   157 GLDEF_C TInt E32Dll(
       
   158     TDllReason /*aReason*/) // Reason code
       
   159     {
       
   160     return(KErrNone);
       
   161     
       
   162     }
       
   163 #endif // EKA2
       
   164     
       
   165 //  End of File