os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/src/convertPathSlashes.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/src/convertPathSlashes.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,91 @@
     1.4 +// Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// This file converts a linux/tcl path to or from a windows path.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +/*
    1.22 + * convert to a windows path.  required because PIPS
    1.23 + * is mostly posix but uses Windows paths and tcl uses unix paths internally (see FsJoinPath())
    1.24 + *
    1.25 + * inspired by TclWinNoBackslash()
    1.26 + *
    1.27 + * July 30, 2007
    1.28 + */
    1.29 +
    1.30 +#include "convertPathSlashes.h"
    1.31 +  
    1.32 +/**  
    1.33 + * Switch the separator chars inside a given string. both pointers can point
    1.34 + *   to the same string or different strings.
    1.35 + *
    1.36 + * @param direction  direction to convert to.
    1.37 + * @param pTo        pointer of string to be converted.
    1.38 + * @param pFrom      pointer to string to be converted from.
    1.39 + *
    1.40 + * @ret   pTo        pointer to last char+1 of converted buffer.
    1.41 + */
    1.42 +char* tclSymbianPathSlashConversion(direction, pTo, pFrom)
    1.43 +	PathConversionDirection direction;   // TO_TCL - '\\' to '/', TO_SYMBIAN - '/' to '\\'
    1.44 +	char *pTo;       // string to be converted.
    1.45 +	const char *pFrom;     // string to be converted.
    1.46 +{
    1.47 +	char  toChar;
    1.48 +	char  fromChar;
    1.49 +	
    1.50 +	if (direction == TO_TCL) {
    1.51 +		fromChar = '\\';
    1.52 +		toChar = '/';
    1.53 +	}
    1.54 +	else {        // TO_SYMBIAN
    1.55 +		fromChar = '/';
    1.56 +		toChar = '\\';		
    1.57 +	}
    1.58 +	
    1.59 +   	for (; *pFrom != '\0'; pTo++, pFrom++) {
    1.60 +		if (*pFrom == fromChar) {
    1.61 +    		*pTo = toChar;
    1.62 +		}		
    1.63 +		else {
    1.64 +			*pTo = *pFrom;	
    1.65 +		}
    1.66 +	}//for
    1.67 +		
    1.68 +	return pTo;	
    1.69 +}
    1.70 +
    1.71 +/**  
    1.72 + * Copies the source path to the destination path and null 
    1.73 + *   terminates the destination string.
    1.74 + *
    1.75 + * @param direction  direction to convert to.
    1.76 + * @param pTo        pointer of string to be converted.
    1.77 + * @param pFrom      pointer to string to be converted from.
    1.78 + */
    1.79 +// copy from fromStrPtr into a buffer supplied by toStrPtr.
    1.80 +void tclCopySymbianPathSlashConversion(direction, toStrPtr, fromStrPtr)
    1.81 +	PathConversionDirection direction;   // TO_TCL - '\\' to '/', TO_SYMBIAN - '/' to '\\'
    1.82 +	char *toStrPtr;    // string to be converted.
    1.83 +	const char *fromStrPtr;// string to convert from.
    1.84 +{
    1.85 +	char* pTo;
    1.86 +	const char* pFrom;
    1.87 +
    1.88 +	
    1.89 +	pTo = toStrPtr;
    1.90 +	pFrom = fromStrPtr;
    1.91 +	pTo = tclSymbianPathSlashConversion(direction, pTo, pFrom);
    1.92 +	*pTo = '\0';		
    1.93 +}
    1.94 +