os/ossrv/glib/glibbackend/src/getProgPath.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#include "glibbackend.h"
sl@0
    20
#include <e32std.h>
sl@0
    21
#include <string.h>
sl@0
    22
#include <stdlib.h>
sl@0
    23
sl@0
    24
extern "C" EXPORT_C char *getProgPath(char *progName)
sl@0
    25
{
sl@0
    26
	TText16 iName16[KMaxFileName];
sl@0
    27
	char *progPath;
sl@0
    28
	int pathLength;
sl@0
    29
	RProcess iProcess;
sl@0
    30
	char replacePath[KMaxFileName];
sl@0
    31
	
sl@0
    32
	/* replace / with // */
sl@0
    33
	strcpy(replacePath,progName);
sl@0
    34
	char *temp = strchr(replacePath,'/');
sl@0
    35
	while (temp)
sl@0
    36
	{
sl@0
    37
		*temp = '\\';
sl@0
    38
		temp = strchr(replacePath,'/');
sl@0
    39
	} // end while
sl@0
    40
	
sl@0
    41
	//convert narrow chars to wide chars
sl@0
    42
	mbstowcs((wchar_t *)iName16, replacePath, strlen(replacePath)+1);
sl@0
    43
	
sl@0
    44
	//create TDesC to pass to RProcess.Create()
sl@0
    45
	TBuf16<KMaxFileName> iCmdName16(iName16);
sl@0
    46
	_LIT(KArg,"");
sl@0
    47
	
sl@0
    48
	// Check if Create if successful. If not successful
sl@0
    49
	// the executable by that name does not exits. Hence,
sl@0
    50
	// return NULL. 
sl@0
    51
	if(iProcess.Create(iCmdName16,KArg))
sl@0
    52
		progPath = NULL;
sl@0
    53
	else
sl@0
    54
	{
sl@0
    55
		// If successful, convert from TDesC to narrow chars and 
sl@0
    56
		// return.
sl@0
    57
		TFileName fileName = iProcess.FileName();
sl@0
    58
		iProcess.Kill(0);
sl@0
    59
		iProcess.Close();
sl@0
    60
		
sl@0
    61
		pathLength = fileName.Length();
sl@0
    62
		
sl@0
    63
		progPath = (char *)malloc(pathLength + 1);
sl@0
    64
		
sl@0
    65
		if(progPath == NULL)
sl@0
    66
			return NULL;
sl@0
    67
		
sl@0
    68
		for(int i=0;i < pathLength;i++)
sl@0
    69
		{
sl@0
    70
			progPath[i] = fileName[i];
sl@0
    71
		} // end for 
sl@0
    72
		
sl@0
    73
		progPath[pathLength] = '\0';
sl@0
    74
	
sl@0
    75
	} // end if
sl@0
    76
	return progPath;
sl@0
    77
}
sl@0
    78