stif/Logger/src/DataLogger.cpp
branchRCL_3
changeset 40 07b41fa8d1dd
parent 39 3406c99bc375
child 43 ca8a1b6995f6
--- a/stif/Logger/src/DataLogger.cpp	Thu Jul 15 20:25:38 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,270 +0,0 @@
-/*
-* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "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: This module contains implementation of CDataLogger 
-* class member functions.
-*
-*/
-
-// INCLUDE FILES
-#include <e32std.h>
-#include "DataLogger.h"
-#include "Output.h"
-
-// EXTERNAL DATA STRUCTURES
-// None
-
-// EXTERNAL FUNCTION PROTOTYPES  
-// None
-
-// CONSTANTS
-// None
-
-// MACROS
-// None
-
-// LOCAL CONSTANTS AND MACROS
-// None
-
-// MODULE DATA STRUCTURES
-// None
-
-// LOCAL FUNCTION PROTOTYPES
-// None
-
-// FORWARD DECLARATIONS
-// None
-
-// ==================== LOCAL FUNCTIONS =======================================
-// None
-
-
-// ================= MEMBER FUNCTIONS =========================================
-
-/*
--------------------------------------------------------------------------------
-
-    Class: CDataLogger
-
-    Method: CDataLogger
-
-    Description: Default constructor
-
-    C++ default constructor can NOT contain any code, that
-    might leave.
-
-    Parameters: COutput* output: in: Output source
-
-    Return Values: None
-
-    Errors/Exceptions: None
-
-    Status: Approved
-
--------------------------------------------------------------------------------
-*/
-CDataLogger::CDataLogger( COutput* output )
-    {
-    	iOutput = output;
-    }
-
-/*
--------------------------------------------------------------------------------
-
-    Class: CDataLogger
-
-    Method: ConstructL
-
-    Description: Symbian OS second phase constructor
-
-    Symbian OS default constructor can leave.
-
-    Parameters: None
-
-    Return Values: None
-
-    Errors/Exceptions: None
-
-    Status: Approved
-
--------------------------------------------------------------------------------
-*/
-void CDataLogger::ConstructL()
-    {
-    
-    }
-
-/*
--------------------------------------------------------------------------------
-
-    Class: CDataLogger
-
-    Method: NewL
-
-    Description: Two-phased constructor.
-
-    Parameters: const TDesC& aTestPath: in: Log path
-                const TDesC& aTestFile: in: Log filename
-                TLoggerType aLoggerType: in: File type
-                TOutput aOutput: in: Output source
-                TBool aOverWrite: in: For file overwrite
-                TBool aWithTimeStamp: in: For timestamp
-                TBool aWithLineBreak: in: For line break
-                TBool aWithEventRanking: in: For events ranking to file
-                TBool aThreadIdToLogFile: in: Indicator to thread id adding to
-                                              end of the log file
-                TBool aCreateLogDir: in: Indicator to directory creation
-                TInt  aStaticBufferSize
-                TBool aUnicode: not used: Indicator if file has to be in unicode format.
-
-    Return Values: CDataLogger*: pointer to CDataLogger object
-
-    Errors/Exceptions: Leaves if called COutput::NewL method fails
-
-    Status: Proposal
-
--------------------------------------------------------------------------------
-*/
-CDataLogger* CDataLogger::NewL( const TDesC& aTestPath,
-                                const TDesC& aTestFile,
-                                TLoggerType aLoggerType,
-                                TOutput aOutput,
-                                TBool aOverWrite,
-                                TBool aWithTimeStamp,
-                                TBool aWithLineBreak,
-                                TBool aWithEventRanking,
-                                TBool aThreadIdToLogFile,
-                                TBool aCreateLogDir,
-                                TInt aStaticBufferSize,
-                                TBool /*aUnicode*/ )
-    {
-    __TRACE( KInfo, ( _L( "STIFLOGGER: Creating data logger" ) ) );
-
-    aWithTimeStamp = EFalse;    // Time stamp not allowed in data logging
-    aWithLineBreak = EFalse;    // Line break not allowed in data logging
-    aWithEventRanking = EFalse; // Event ranking not allowed in data logging
-
-    TBool aUnicode(EFalse); //For data type unicode is not allowed
-    // Create COutput object output
-    COutput* output = COutput::NewL( aTestPath,
-                                        aTestFile,
-                                        aLoggerType,
-                                        aOutput,
-                                        aOverWrite,
-                                        aWithTimeStamp,
-                                        aWithLineBreak,
-                                        aWithEventRanking,
-                                        aThreadIdToLogFile,
-                                        aCreateLogDir,
-                                        aStaticBufferSize,
-                                        aUnicode );
-                                        
-    CleanupStack::PushL( output ); 
-
-	__ASSERT_ALWAYS( output != NULL, User::Leave( KErrNotFound ) );
-    // Create CDataLogger object dataLogger and bind to COutput
-    CDataLogger* dataLogger = new (ELeave) CDataLogger( output );
-    // DATA logger owns output object and it will be destroyed in STIFLogger
-    // destructor.
-    CleanupStack::Pop( output ); 
-
-    CleanupStack::PushL( dataLogger );
-    dataLogger->ConstructL();
-    CleanupStack::Pop( dataLogger );
-    
-    
-    return dataLogger;
-
-    }
-
-/*
--------------------------------------------------------------------------------
-
-    Class: CDataLogger
-
-    Method: ~CDataLogger
-
-    Description: Destructor
-
-    Parameters: None
-
-    Return Values: None
-
-    Errors/Exceptions: None
-
-    Status: Approved
-
--------------------------------------------------------------------------------
-*/
-CDataLogger::~CDataLogger()
-    {
-    }
-
-/*
--------------------------------------------------------------------------------
-
-    Class: CDataLogger
-
-    Method: Send
-
-    Description: Send style information and 16 bit data to the output module.
-
-    Parameters: TInt TStyle: in: Text forming
-                const TDesC& aData: in: Data to be logged
-
-    Return Values: TInt: Symbian error code.
-
-    Errors/Exceptions: None
-
-    Status: Approved
-
--------------------------------------------------------------------------------
-*/
-TInt CDataLogger::Send( TInt /*TStyle*/, const TDesC& aData )
-    {
-    // No text styling implemented
-    return iOutput->Write( EFalse, ETrue, EFalse, aData );
-
-    }
-
-/*
--------------------------------------------------------------------------------
-
-    Class: CDataLogger
-
-    Method: Send
-
-    Description: Send style information and 8 bit data to the output module.
-
-    Parameters: TInt TStyle: in: Text forming
-                const TDesC8& aData: in: Data to be logged
-
-    Return Values: TInt: Symbian error code.
-
-    Errors/Exceptions: None
-
-    Status: Approved
-
--------------------------------------------------------------------------------
-*/
-TInt CDataLogger::Send( TInt /*TStyle*/, const TDesC8& aData )
-    {
-    // No text styling implemented
-    return iOutput->Write( EFalse, ETrue, ETrue, aData );
-
-    }
-
-// ================= OTHER EXPORTED FUNCTIONS =================================
-// None
-
-// End of File