os/persistentdata/loggingservices/filelogger/INC/FLOGGER.INL
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
@file
sl@0
    18
@publishedAll
sl@0
    19
@deprecated Migrate to Open System Trace Instrumentation API instead
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __FLOGGER_INL__
sl@0
    23
#define __FLOGGER_INL__
sl@0
    24
sl@0
    25
#include <flogger.h>
sl@0
    26
sl@0
    27
/**
sl@0
    28
TSignal inline functions
sl@0
    29
*/
sl@0
    30
sl@0
    31
inline FLogger::TSignal::TSignal(TRequestStatus& aStatus)
sl@0
    32
	:iStatus(&aStatus),iId(RThread().Id())
sl@0
    33
/**
sl@0
    34
Sets aStatus with the value KRequestPending.
sl@0
    35
sl@0
    36
*/
sl@0
    37
	{
sl@0
    38
	aStatus=KRequestPending;
sl@0
    39
	}
sl@0
    40
sl@0
    41
inline TPtrC FLogger::TSignal::Command() const
sl@0
    42
/**
sl@0
    43
*/
sl@0
    44
	{
sl@0
    45
	return TPtrC((const TText*)this,sizeof(*this)/sizeof(TText));
sl@0
    46
	}
sl@0
    47
sl@0
    48
inline TInt FLogger::TSignal::Set(const TDesC& aCommand)
sl@0
    49
/**
sl@0
    50
Sets aCommand with "this" pointer value.
sl@0
    51
sl@0
    52
@return KErrNone, if successful.
sl@0
    53
*/
sl@0
    54
	{
sl@0
    55
	if (aCommand.Size()!=sizeof(*this))
sl@0
    56
		return KErrGeneral;
sl@0
    57
	
sl@0
    58
	return (Mem::Copy(this,aCommand.Ptr(),sizeof(*this)),KErrNone);
sl@0
    59
	}
sl@0
    60
sl@0
    61
/**
sl@0
    62
TLogFile inline functions
sl@0
    63
*/
sl@0
    64
sl@0
    65
inline TBool TLogFile::Valid() const
sl@0
    66
/**
sl@0
    67
@return EFalse for invalid file name.
sl@0
    68
*/
sl@0
    69
	{
sl@0
    70
	return iValid;
sl@0
    71
	}
sl@0
    72
sl@0
    73
inline TFileName TLogFile::Directory() const
sl@0
    74
/**
sl@0
    75
@return iDirectory the full path of the folder.
sl@0
    76
*/
sl@0
    77
	{
sl@0
    78
	return iDirectory;
sl@0
    79
	}
sl@0
    80
	
sl@0
    81
inline TFileName TLogFile::Name() const
sl@0
    82
/**
sl@0
    83
@return iName the file name of the log.
sl@0
    84
*/
sl@0
    85
	{
sl@0
    86
	return iName;
sl@0
    87
	}
sl@0
    88
sl@0
    89
inline TFileLoggingMode TLogFile::Mode() const
sl@0
    90
/**
sl@0
    91
@return iMode the mode of the log file.
sl@0
    92
*/
sl@0
    93
	{
sl@0
    94
	return iMode;
sl@0
    95
	}	
sl@0
    96
sl@0
    97
inline void TLogFile::SetValid(TBool aValid)
sl@0
    98
/**
sl@0
    99
Sets iValid with the value aValid.
sl@0
   100
*/
sl@0
   101
	{
sl@0
   102
	iValid=aValid;
sl@0
   103
	}
sl@0
   104
sl@0
   105
#endif // __FLOGGER_INL__
sl@0
   106