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