e32tools/elf2e32/source/h_utl.h
author timothy.murphy@nokia.com
Fri, 30 Apr 2010 16:07:17 +0100
branchfix
changeset 511 7581d432643a
parent 0 044383f39525
child 590 360bd6b35136
permissions -rw-r--r--
fix: support new trace compiler features for preventing clashes. Automatically turn on OST_TRACE_COMPILER_IN_USE macro. Look for trace header in systemincludes. Make directories in makefile parse to prevent clashes during build. Correct path for autogen headers. Correct case issue with autogen headers on Linux.

// Copyright (c) 2004-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:
//


 #ifndef __H_UTL_H__
 #define __H_UTL_H__

#include "e32defwrap.h"
#include <e32err.h>
#include <iostream>

#ifdef __TOOLS2__
#include <sstream>
#include <fstream>
using namespace std;
#else
#include <strstream.h>
#endif

 /**
 Convert string to number.
 @internalComponent
 @released
 */
 template <class T>
 TInt Val(T& aVal, char* aStr)
 {
 
 
	T x;
	#ifdef __TOOLS2__
	istringstream val(aStr);
	#else
	istrstream val(aStr,strlen(aStr));
	#endif
	val >> x;
	if (!val.eof() || val.fail())
		return KErrGeneral;
	aVal=x;
	return KErrNone;
	
     /*T x;
     istrstream val(aStr,strlen(aStr));
     val >> x;
     if (!val.eof() || val.fail())
         return KErrGeneral;
     aVal=x;
     return KErrNone;*/
 }
 
 
 //enum for decompose flag
 enum TDecomposeFlag
 {
     EUidPresent=1,
     EVerPresent=2
 };
 
 /**
 class for FileNameInfo
 @internalComponent
 @released
 */
 class TFileNameInfo
 {
     public:
         TFileNameInfo(const char* aFileName, TBool aLookForUid);
     public:
         const char* iFileName;
         TInt iTotalLength;
         TInt iBaseLength;
         TInt iExtPos;
         TUint32 iUid3;
         TUint32 iModuleVersion;
         TUint32 iFlags;
 };
 
 extern char* NormaliseFileName(const char* aName);
 
 
 
 #ifdef __LINUX__ 
 // Case insensitive comparison functions are named differently on Linux
 #define stricmp strcasecmp 
 #define strnicmp strncasecmp 
 
 // Convert the provided string to Uppercase
 char* strupr(char *a);
 #endif // __LINUX__
 
 #endif // __H_UTL_H__