fix: make sure host attribute is set rather than blank in logs on windows by using the env var 'COMPUTERNAME' instead of 'HOSTNAME'. Thus make it less difficult to order recipes in the log by time.
// 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:
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Symbian Foundation License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
// Initial Contributors:
// Nokia Corporation - initial contribution.
// Contributors:
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Symbian Foundation License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
// Initial Contributors:
// Nokia Corporation - initial contribution.
// Contributors:
//
#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__