diff -r 3ff3fecb12fe -r 6a82cd05fb1e memana/analyzetoolclient/dynamicmemoryhook/src/analyzetoolfastlog.cpp --- a/memana/analyzetoolclient/dynamicmemoryhook/src/analyzetoolfastlog.cpp Thu Feb 11 15:52:57 2010 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,298 +0,0 @@ -/* -* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: -* -*/ - - -#include // RDebug -#include -#include "analyzetoolfastlog.h" -#include "atlog.h" - -// Local time function. -TInt64 CurrentTime() - { - LOGSTR1( "ATFL CurrentTime()" ); - TTime time; - time.UniversalTime(); - return time.Int64() - KMicroSecondsAt1970; - } - -TInt ATFastLogProcessStarted( const TDesC8& aProcessName, - TUint aProcessId, - TUint32 aIsDebug ) - { - LOGSTR1( "ATFL ATFastLogProcessStarted()" ); - // Convert process name to 16-bit descriptor. - TBuf processName; - processName.Copy( aProcessName ); - // Buffer to trace. - TBuf buffer; - // Format process name and id. - buffer.Format( KProcessStart16, &processName, aProcessId ); - // Timestamp. - buffer.AppendNum( CurrentTime(), EHex ) ; - // Append udeb/urel information to the process start. - buffer.Append( KSpaceXti ); - buffer.AppendNum( aIsDebug, EHex ); - // Append version number. - buffer.Append( KSpaceXti ); - buffer.AppendNum( KATTraceVersion, EHex ); - // Log to XTI. - RDebug::Print( KXtiMessage, aProcessId ,&buffer ); - return KErrNone; - } - -TInt ATFastLogProcessEnded( TUint aProcessId, - TUint aHandleLeakCount ) - { - LOGSTR1( "ATFL ATFastLogProcessEnded()" ); - // Handle leaks. - if ( aHandleLeakCount > 0 ) - { - // Buffer to trace. - TBuf buffer2; - buffer2.Format( KHandleLeak16, &KUnknownModule16, aHandleLeakCount ); - // Trace it. - RDebug::Print( KXtiMessage, aProcessId, &buffer2 ); - } - // Process end trace. - TBuf buffer; - buffer.Format( KProcessEnd16, aProcessId ); - buffer.AppendNum( CurrentTime(), EHex); - buffer.Append( KNewLineXti ); - RDebug::Print( KXtiMessage, aProcessId, &buffer ); - return KErrNone; - } - -TInt ATFastLogDllLoaded( TUint aProcessId, - const TDesC8& aDllName, - TUint32 aStartAddress, - TUint32 aEndAddress ) - { - LOGSTR1( "ATFL ATFastLogDllLoaded()" ); - // Timestamp. - TInt64 time = CurrentTime(); - // Convert dll name to 16-bit descriptor. - TBuf dll; - dll.Copy( aDllName ); - // Buffer to trace. - TBuf buffer; - buffer.Format( KDllLoad16, &dll, time, aStartAddress, aEndAddress ); - RDebug::Print( KXtiMessage, aProcessId, &buffer ); - return KErrNone; - } - -TInt ATFastLogDllUnloaded( TUint aProcessId, const TDesC8& aDllName, TUint32 aStartAddress, - TUint32 aEndAddress ) - { - LOGSTR1( "ATFL ATFastLogDllUnloaded()" ); - // Timestamp. - TInt64 time = CurrentTime(); - // Convert dll name to 16-bit descriptor. - TBuf dll; - dll.Copy( aDllName ); - // Buffer to trace. - TBuf buffer; - buffer.Format( KDllUnload16, &dll, time, aStartAddress, aEndAddress ); - RDebug::Print( KXtiMessage, aProcessId, &buffer ); - return KErrNone; - } - -TInt ATFastLogMemoryAllocated( TUint aProcessId, TUint32 aMemAddress, - TFixedArray& aCallstack, - TInt aSize ) - { - LOGSTR1( "ATFL ATFastLogMemoryAllocated()" ); - // ALLOCH