os/persistentdata/loggingservices/filelogger/INC/FLOGGER.INL
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/filelogger/INC/FLOGGER.INL	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,106 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 +@file
    1.21 +@publishedAll
    1.22 +@deprecated Migrate to Open System Trace Instrumentation API instead
    1.23 +*/
    1.24 +
    1.25 +#ifndef __FLOGGER_INL__
    1.26 +#define __FLOGGER_INL__
    1.27 +
    1.28 +#include <flogger.h>
    1.29 +
    1.30 +/**
    1.31 +TSignal inline functions
    1.32 +*/
    1.33 +
    1.34 +inline FLogger::TSignal::TSignal(TRequestStatus& aStatus)
    1.35 +	:iStatus(&aStatus),iId(RThread().Id())
    1.36 +/**
    1.37 +Sets aStatus with the value KRequestPending.
    1.38 +
    1.39 +*/
    1.40 +	{
    1.41 +	aStatus=KRequestPending;
    1.42 +	}
    1.43 +
    1.44 +inline TPtrC FLogger::TSignal::Command() const
    1.45 +/**
    1.46 +*/
    1.47 +	{
    1.48 +	return TPtrC((const TText*)this,sizeof(*this)/sizeof(TText));
    1.49 +	}
    1.50 +
    1.51 +inline TInt FLogger::TSignal::Set(const TDesC& aCommand)
    1.52 +/**
    1.53 +Sets aCommand with "this" pointer value.
    1.54 +
    1.55 +@return KErrNone, if successful.
    1.56 +*/
    1.57 +	{
    1.58 +	if (aCommand.Size()!=sizeof(*this))
    1.59 +		return KErrGeneral;
    1.60 +	
    1.61 +	return (Mem::Copy(this,aCommand.Ptr(),sizeof(*this)),KErrNone);
    1.62 +	}
    1.63 +
    1.64 +/**
    1.65 +TLogFile inline functions
    1.66 +*/
    1.67 +
    1.68 +inline TBool TLogFile::Valid() const
    1.69 +/**
    1.70 +@return EFalse for invalid file name.
    1.71 +*/
    1.72 +	{
    1.73 +	return iValid;
    1.74 +	}
    1.75 +
    1.76 +inline TFileName TLogFile::Directory() const
    1.77 +/**
    1.78 +@return iDirectory the full path of the folder.
    1.79 +*/
    1.80 +	{
    1.81 +	return iDirectory;
    1.82 +	}
    1.83 +	
    1.84 +inline TFileName TLogFile::Name() const
    1.85 +/**
    1.86 +@return iName the file name of the log.
    1.87 +*/
    1.88 +	{
    1.89 +	return iName;
    1.90 +	}
    1.91 +
    1.92 +inline TFileLoggingMode TLogFile::Mode() const
    1.93 +/**
    1.94 +@return iMode the mode of the log file.
    1.95 +*/
    1.96 +	{
    1.97 +	return iMode;
    1.98 +	}	
    1.99 +
   1.100 +inline void TLogFile::SetValid(TBool aValid)
   1.101 +/**
   1.102 +Sets iValid with the value aValid.
   1.103 +*/
   1.104 +	{
   1.105 +	iValid=aValid;
   1.106 +	}
   1.107 +
   1.108 +#endif // __FLOGGER_INL__
   1.109 +