os/persistentdata/persistentstorage/sqlite3api/TEST/TCL/src/convertPathSlashes.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// This file converts a linux/tcl path to or from a windows path.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/*
sl@0
    19
 * convert to a windows path.  required because PIPS
sl@0
    20
 * is mostly posix but uses Windows paths and tcl uses unix paths internally (see FsJoinPath())
sl@0
    21
 *
sl@0
    22
 * inspired by TclWinNoBackslash()
sl@0
    23
 *
sl@0
    24
 * July 30, 2007
sl@0
    25
 */
sl@0
    26
sl@0
    27
#include "convertPathSlashes.h"
sl@0
    28
  
sl@0
    29
/**  
sl@0
    30
 * Switch the separator chars inside a given string. both pointers can point
sl@0
    31
 *   to the same string or different strings.
sl@0
    32
 *
sl@0
    33
 * @param direction  direction to convert to.
sl@0
    34
 * @param pTo        pointer of string to be converted.
sl@0
    35
 * @param pFrom      pointer to string to be converted from.
sl@0
    36
 *
sl@0
    37
 * @ret   pTo        pointer to last char+1 of converted buffer.
sl@0
    38
 */
sl@0
    39
char* tclSymbianPathSlashConversion(direction, pTo, pFrom)
sl@0
    40
	PathConversionDirection direction;   // TO_TCL - '\\' to '/', TO_SYMBIAN - '/' to '\\'
sl@0
    41
	char *pTo;       // string to be converted.
sl@0
    42
	const char *pFrom;     // string to be converted.
sl@0
    43
{
sl@0
    44
	char  toChar;
sl@0
    45
	char  fromChar;
sl@0
    46
	
sl@0
    47
	if (direction == TO_TCL) {
sl@0
    48
		fromChar = '\\';
sl@0
    49
		toChar = '/';
sl@0
    50
	}
sl@0
    51
	else {        // TO_SYMBIAN
sl@0
    52
		fromChar = '/';
sl@0
    53
		toChar = '\\';		
sl@0
    54
	}
sl@0
    55
	
sl@0
    56
   	for (; *pFrom != '\0'; pTo++, pFrom++) {
sl@0
    57
		if (*pFrom == fromChar) {
sl@0
    58
    		*pTo = toChar;
sl@0
    59
		}		
sl@0
    60
		else {
sl@0
    61
			*pTo = *pFrom;	
sl@0
    62
		}
sl@0
    63
	}//for
sl@0
    64
		
sl@0
    65
	return pTo;	
sl@0
    66
}
sl@0
    67
sl@0
    68
/**  
sl@0
    69
 * Copies the source path to the destination path and null 
sl@0
    70
 *   terminates the destination string.
sl@0
    71
 *
sl@0
    72
 * @param direction  direction to convert to.
sl@0
    73
 * @param pTo        pointer of string to be converted.
sl@0
    74
 * @param pFrom      pointer to string to be converted from.
sl@0
    75
 */
sl@0
    76
// copy from fromStrPtr into a buffer supplied by toStrPtr.
sl@0
    77
void tclCopySymbianPathSlashConversion(direction, toStrPtr, fromStrPtr)
sl@0
    78
	PathConversionDirection direction;   // TO_TCL - '\\' to '/', TO_SYMBIAN - '/' to '\\'
sl@0
    79
	char *toStrPtr;    // string to be converted.
sl@0
    80
	const char *fromStrPtr;// string to convert from.
sl@0
    81
{
sl@0
    82
	char* pTo;
sl@0
    83
	const char* pFrom;
sl@0
    84
sl@0
    85
	
sl@0
    86
	pTo = toStrPtr;
sl@0
    87
	pFrom = fromStrPtr;
sl@0
    88
	pTo = tclSymbianPathSlashConversion(direction, pTo, pFrom);
sl@0
    89
	*pTo = '\0';		
sl@0
    90
}
sl@0
    91