Update contrib.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // FLogger Client side header
21 @deprecated Migrate to Open System Trace Instrumentation API instead
29 /** Maximum log buffer size.
31 @deprecated Migrate to Open System Trace Instrumentation API instead
33 const TInt KLogBufferSize=150;
35 // [All of this start up stuff copied from DBMS]
38 /** Controls the flogger server.
40 @deprecated Migrate to Open System Trace Instrumentation API instead
47 @deprecated Migrate to Open System Trace Instrumentation API instead
53 inline TInt Set(const TDesC& aCommand);
55 inline TSignal(TRequestStatus& aStatus);
57 inline TPtrC Command() const;
60 TRequestStatus* iStatus;
66 IMPORT_C static TInt Run(TSignal& aSignal);
73 /** The mode used to write to the log file.
75 @deprecated Migrate to Open System Trace Instrumentation API instead
79 /** Log file mode has not been explicitly set. */
80 EFileLoggingModeUnknown =0,
81 /** Open the log file in append mode. */
82 EFileLoggingModeAppend,
83 /** Open the log file in overwrite mode. */
84 EFileLoggingModeOverwrite,
85 EFileLoggingModeAppendRaw,
86 EFileLoggingModeOverwriteRaw
89 NONSHARABLE_CLASS(TLogFormatter16Overflow) :public TDes16Overflow
90 /** Unicode overflow handler.
92 @deprecated Migrate to Open System Trace Instrumentation API instead
96 virtual void Overflow(TDes16& aDes);
99 NONSHARABLE_CLASS(TLogFormatter8Overflow) :public TDes8Overflow
100 /** Overflow handler.
102 @deprecated Migrate to Open System Trace Instrumentation API instead
106 virtual void Overflow(TDes8& aDes);
110 /** Formatting methods for log file data.
112 @deprecated Migrate to Open System Trace Instrumentation API instead
117 void SetDateAndTime(TBool aUseDate,TBool aUseTime);
118 TInt FormatTextToWritableBuffer(TDes8& aBuf, const TDesC16& aText) const;
119 TInt FormatTextToWritableBuffer(TDes8& aBuf, const TDesC8& aText) const;
120 TInt ConvertToWritableBuffer(TDes8& aBuf, TRefByValue<const TDesC16> aFmt, VA_LIST& aList);
121 TInt ConvertToWritableBuffer(TDes8& aBuf, TRefByValue<const TDesC8> aFmt, VA_LIST& aList);
123 void GetDateAndTimeL(TDes& aDate, TDes& aTime) const;
124 void WriteL(TDes8& aTrg, const TDesC16& aSrc) const;
125 void WriteL(TDes8& aTrg, const TDesC8& aSrc) const;
129 TLogFormatter16Overflow iOverflow16;
130 TLogFormatter8Overflow iOverflow8;
134 /** General access to packaged log files.
136 @deprecated Migrate to Open System Trace Instrumentation API instead
141 TLogFile(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode);
142 TBool operator==(const TLogFile& aLogFile) const;
143 void Set(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode);
144 inline TBool Valid() const;
145 inline TFileName Directory() const;
146 inline TFileName Name() const;
147 inline TFileLoggingMode Mode() const;
148 inline void SetValid(TBool aValid);
151 TFileName iDirectory;
153 TFileLoggingMode iMode;
156 #include <flogger.inl>
158 class RFileLogger : public RSessionBase
159 /** Provides access methods to file logging.
161 The file logger API contains both static and non-static versions of access
162 functions to the file logging system.
164 @deprecated Migrate to Open System Trace Instrumentation API instead
168 IMPORT_C RFileLogger();
169 IMPORT_C ~RFileLogger();
170 IMPORT_C TVersion Version() const;
171 IMPORT_C TInt Connect();
172 IMPORT_C void SetDateAndTime(TBool aUseDate,TBool aUseTime);
173 IMPORT_C void CreateLog(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode);
174 IMPORT_C void CloseLog();
175 IMPORT_C void Write(const TDesC16& aText);
176 IMPORT_C void WriteFormat(TRefByValue<const TDesC16> aFmt,...);
177 IMPORT_C void WriteFormat(TRefByValue<const TDesC16> aFmt, VA_LIST& aList);
178 IMPORT_C void Write(const TDesC8& aText);
179 IMPORT_C void WriteFormat(TRefByValue<const TDesC8> aFmt,...);
180 IMPORT_C void WriteFormat(TRefByValue<const TDesC8> aFmt, VA_LIST& aList);
181 IMPORT_C void HexDump(const TText* aHeader, const TText* aMargin, const TUint8* aPtr, TInt aLen);
182 IMPORT_C static void Write(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, const TDesC16& aText);
183 IMPORT_C static void WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC16> aFmt,...);
184 IMPORT_C static void WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC16> aFmt, VA_LIST& aList);
185 IMPORT_C static void Write(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, const TDesC8& aText);
186 IMPORT_C static void WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt,...);
187 IMPORT_C static void WriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt, VA_LIST& aList);
188 IMPORT_C static void HexDump(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, const TText* aHeader, const TText* aMargin, const TUint8* aPtr, TInt aLen);
189 IMPORT_C TInt LastError() const;
190 IMPORT_C TBool LogValid() const;
191 IMPORT_C TBool LogSTI() const;
195 void DoWrite(const TDesC8& aBuf);
196 void DoStaticWrite(const TDesC8& aBuf);
197 void DoWriteFormat(TRefByValue<const TDesC16> aFmt, VA_LIST& aList);
198 void DoWriteFormat(TRefByValue<const TDesC8> aFmt, VA_LIST& aList);
199 static void DoStaticWriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC16> aFmt, VA_LIST& aList);
200 static void DoStaticWriteFormat(const TDesC& aDir, const TDesC& aName, TFileLoggingMode aMode, TRefByValue<const TDesC8> aFmt, VA_LIST& aList);
201 void DoHexDump(const TText* aHeader, const TText* aMargin, const TUint8* aPtr, TInt aLen);
203 TLogFormatter iFormatter;
206 TBool iLogSTI; /* CR1688 Flogger to use RDebug::Print */