imgtools/romtools/rofsbuild/r_driveutl.cpp
author Mike Kinghan <mikek@symbian.org>
Thu, 25 Nov 2010 13:59:07 +0000
changeset 40 68f68128601f
parent 2 39c28ec933dd
permissions -rwxr-xr-x
1) Add the sbsv1 components from sftools/dev/build to make the linux_build package independent of the obsolete buildtools package. 2) Enhance romnibus.pl so that it generate the symbol file for the built rom when invoked by Raptor 3) Make the maksym.pl tool portable for Linux as well as Windows. 4) Remove the of armasm2as.pl from the e32tools component in favour of the copy now exported from sbsv1/e32util.

/*
* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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: 
* @internalComponent * @released
* Driveimage general utilities.
*
*/


#include <string.h>
#include <stdlib.h>
#include <time.h>

#include <e32err.h>
#include "h_utl.h"
#include "r_driveutl.h"

/**
Derive log file name from the given driveobey file name(it could be absolute path)
        and update with .log extn.
Checks the validity of driveobey file name before creating the log file name.

@param adriveobeyFileName - Drive obey file.
@param &apadlogfile       - Reference to log file name.
  
@return - returns 'ErrorNone' if log file created, otherwise returns Error.
*/ 
TInt Getlogfile(TText *aDriveObeyFileName,TText* &aPadLogFile)
	{

	if(!(*aDriveObeyFileName))
		return KErrGeneral;

	// Validate the user entered driveoby file name.
	char* logFile = (char*)aDriveObeyFileName;

#ifdef __LINUX__
	logFile = strrchr(logFile,'/');
#else
	while(*logFile)
		{
		if(*logFile == '/')
			*logFile = '\\';
		logFile++;
		}
	logFile = (char*)aDriveObeyFileName;
	logFile = strrchr(logFile,'\\');
#endif
	
	if(logFile)
		++logFile;
	else
		logFile = (char*)aDriveObeyFileName;

	TInt len = strlen(logFile);
	if(!len)
		return KErrGeneral;

	// Allocates the memory for log file name.
	aPadLogFile = new TText[(len)+5]; 
	if(!aPadLogFile)
		return KErrNoMemory;

	// Create the log file name.
	strcpy((char*)aPadLogFile,logFile);
	strcat((char*)aPadLogFile,".LOG");
				
	return  KErrNone;
	}

/**
Time Stamp for Log file.
*/ 
TAny GetLocalTime()
	{
	struct tm *aNewTime = NULL;
	time_t aTime = 0;

	time(&aTime);
	aNewTime = localtime(&aTime);

	/* Print the local time as a string */
	if(aNewTime)
		Print(ELog,"%s\n", asctime(aNewTime));
	else
		Print(ELog,"Error : Getting Local Time\n");
	}