os/persistentdata/loggingservices/filelogger/INC/FLOGSTD.H
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/**
sl@0
     2
* Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
/**
sl@0
    21
 @file
sl@0
    22
 @internalTechnology
sl@0
    23
*/
sl@0
    24
sl@0
    25
#ifndef __FLOGSTD_H__
sl@0
    26
#define __FLOGSTD_H__
sl@0
    27
sl@0
    28
#include "FLOGSVR.H"
sl@0
    29
sl@0
    30
/**
sl@0
    31
@internalComponent
sl@0
    32
*/
sl@0
    33
const TInt KFLogSrvMajorVersionNumber=1;
sl@0
    34
sl@0
    35
/**
sl@0
    36
Log Server Minor Version Number.
sl@0
    37
*/
sl@0
    38
const TInt KFLogSrvMinorVersionNumber=0;
sl@0
    39
sl@0
    40
/**
sl@0
    41
Log Server Build Version Number.
sl@0
    42
*/
sl@0
    43
const TInt KFLogSrvBuildVersionNumber=20;
sl@0
    44
sl@0
    45
/**
sl@0
    46
Shut down pause time 5secs.
sl@0
    47
@internalComponent
sl@0
    48
*/
sl@0
    49
const TInt KShutdownPause=5000000;
sl@0
    50
sl@0
    51
/**
sl@0
    52
FullStop character.
sl@0
    53
@internalComponent
sl@0
    54
*/
sl@0
    55
const TText KFullStopChar='.';
sl@0
    56
sl@0
    57
/**
sl@0
    58
File logger server name in EKA2.
sl@0
    59
@internalComponent
sl@0
    60
*/
sl@0
    61
_LIT(KFLoggerServerName,"!FLogger server");
sl@0
    62
sl@0
    63
sl@0
    64
/**
sl@0
    65
@internalComponent
sl@0
    66
*/
sl@0
    67
enum TFileLoggerOperations 
sl@0
    68
	{
sl@0
    69
	/** const to create a new log file. */
sl@0
    70
	ECreateLog,	
sl@0
    71
sl@0
    72
	/** const to write the log file. */
sl@0
    73
	EWriteLog,	
sl@0
    74
sl@0
    75
	/** const to close the log file. */
sl@0
    76
	ECloseLog,	
sl@0
    77
sl@0
    78
	/** const for create,write and to close the log file. */
sl@0
    79
	ECreateWriteAndCloseLog	
sl@0
    80
sl@0
    81
	};
sl@0
    82
sl@0
    83
NONSHARABLE_CLASS(CFLoggerScheduler) : public CActiveScheduler
sl@0
    84
/**
sl@0
    85
File Logger Scheduler
sl@0
    86
@internalComponent
sl@0
    87
*/
sl@0
    88
	{
sl@0
    89
public:
sl@0
    90
	static void NewL();
sl@0
    91
	~CFLoggerScheduler();
sl@0
    92
private:
sl@0
    93
	inline CFLoggerScheduler() {}
sl@0
    94
sl@0
    95
	/** 
sl@0
    96
	from CActiveScheduler 
sl@0
    97
	*/
sl@0
    98
	void Error(TInt aError) const;
sl@0
    99
sl@0
   100
private:
sl@0
   101
	CFileLoggerServer* iServer;
sl@0
   102
	};
sl@0
   103
sl@0
   104
#endif // __FLOGSTD_H__
sl@0
   105