sl@0: /** sl@0: * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: */ sl@0: sl@0: #ifndef __FLOGSTD_H__ sl@0: #define __FLOGSTD_H__ sl@0: sl@0: #include "FLOGSVR.H" sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: const TInt KFLogSrvMajorVersionNumber=1; sl@0: sl@0: /** sl@0: Log Server Minor Version Number. sl@0: */ sl@0: const TInt KFLogSrvMinorVersionNumber=0; sl@0: sl@0: /** sl@0: Log Server Build Version Number. sl@0: */ sl@0: const TInt KFLogSrvBuildVersionNumber=20; sl@0: sl@0: /** sl@0: Shut down pause time 5secs. sl@0: @internalComponent sl@0: */ sl@0: const TInt KShutdownPause=5000000; sl@0: sl@0: /** sl@0: FullStop character. sl@0: @internalComponent sl@0: */ sl@0: const TText KFullStopChar='.'; sl@0: sl@0: /** sl@0: File logger server name in EKA2. sl@0: @internalComponent sl@0: */ sl@0: _LIT(KFLoggerServerName,"!FLogger server"); sl@0: sl@0: sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: enum TFileLoggerOperations sl@0: { sl@0: /** const to create a new log file. */ sl@0: ECreateLog, sl@0: sl@0: /** const to write the log file. */ sl@0: EWriteLog, sl@0: sl@0: /** const to close the log file. */ sl@0: ECloseLog, sl@0: sl@0: /** const for create,write and to close the log file. */ sl@0: ECreateWriteAndCloseLog sl@0: sl@0: }; sl@0: sl@0: NONSHARABLE_CLASS(CFLoggerScheduler) : public CActiveScheduler sl@0: /** sl@0: File Logger Scheduler sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: static void NewL(); sl@0: ~CFLoggerScheduler(); sl@0: private: sl@0: inline CFLoggerScheduler() {} sl@0: sl@0: /** sl@0: from CActiveScheduler sl@0: */ sl@0: void Error(TInt aError) const; sl@0: sl@0: private: sl@0: CFileLoggerServer* iServer; sl@0: }; sl@0: sl@0: #endif // __FLOGSTD_H__ sl@0: