1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/loggingservices/filelogger/INC/FLOGSTD.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,105 @@
1.4 +/**
1.5 +* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +/**
1.24 + @file
1.25 + @internalTechnology
1.26 +*/
1.27 +
1.28 +#ifndef __FLOGSTD_H__
1.29 +#define __FLOGSTD_H__
1.30 +
1.31 +#include "FLOGSVR.H"
1.32 +
1.33 +/**
1.34 +@internalComponent
1.35 +*/
1.36 +const TInt KFLogSrvMajorVersionNumber=1;
1.37 +
1.38 +/**
1.39 +Log Server Minor Version Number.
1.40 +*/
1.41 +const TInt KFLogSrvMinorVersionNumber=0;
1.42 +
1.43 +/**
1.44 +Log Server Build Version Number.
1.45 +*/
1.46 +const TInt KFLogSrvBuildVersionNumber=20;
1.47 +
1.48 +/**
1.49 +Shut down pause time 5secs.
1.50 +@internalComponent
1.51 +*/
1.52 +const TInt KShutdownPause=5000000;
1.53 +
1.54 +/**
1.55 +FullStop character.
1.56 +@internalComponent
1.57 +*/
1.58 +const TText KFullStopChar='.';
1.59 +
1.60 +/**
1.61 +File logger server name in EKA2.
1.62 +@internalComponent
1.63 +*/
1.64 +_LIT(KFLoggerServerName,"!FLogger server");
1.65 +
1.66 +
1.67 +/**
1.68 +@internalComponent
1.69 +*/
1.70 +enum TFileLoggerOperations
1.71 + {
1.72 + /** const to create a new log file. */
1.73 + ECreateLog,
1.74 +
1.75 + /** const to write the log file. */
1.76 + EWriteLog,
1.77 +
1.78 + /** const to close the log file. */
1.79 + ECloseLog,
1.80 +
1.81 + /** const for create,write and to close the log file. */
1.82 + ECreateWriteAndCloseLog
1.83 +
1.84 + };
1.85 +
1.86 +NONSHARABLE_CLASS(CFLoggerScheduler) : public CActiveScheduler
1.87 +/**
1.88 +File Logger Scheduler
1.89 +@internalComponent
1.90 +*/
1.91 + {
1.92 +public:
1.93 + static void NewL();
1.94 + ~CFLoggerScheduler();
1.95 +private:
1.96 + inline CFLoggerScheduler() {}
1.97 +
1.98 + /**
1.99 + from CActiveScheduler
1.100 + */
1.101 + void Error(TInt aError) const;
1.102 +
1.103 +private:
1.104 + CFileLoggerServer* iServer;
1.105 + };
1.106 +
1.107 +#endif // __FLOGSTD_H__
1.108 +