os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_bacline.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) 1997-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 the License "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 "t_bacline.h"
sl@0
    20
sl@0
    21
sl@0
    22
CCommandLineArguments* CCommandLineArguments::NewLC()
sl@0
    23
/** Allocates and constructs a command line arguments parser, putting the returned 
sl@0
    24
pointer onto the cleanup stack. The function leaves if there is insufficient 
sl@0
    25
memory.
sl@0
    26
sl@0
    27
@return The command line arguments parser. */
sl@0
    28
	{
sl@0
    29
	CCommandLineArguments* self=new (ELeave) CCommandLineArguments;
sl@0
    30
	CleanupStack::PushL(self);
sl@0
    31
	self->ConstructL();
sl@0
    32
	return self;
sl@0
    33
	}
sl@0
    34
sl@0
    35
CCommandLineArguments* CCommandLineArguments::NewL()
sl@0
    36
/** Allocates and constructs a command line arguments parser. The function leaves 
sl@0
    37
if there is insufficient memory.
sl@0
    38
sl@0
    39
@return The command line arguments parser. */
sl@0
    40
	{
sl@0
    41
	CCommandLineArguments* self=CCommandLineArguments::NewLC();
sl@0
    42
	CleanupStack::Pop();
sl@0
    43
	return self;
sl@0
    44
	}
sl@0
    45
sl@0
    46
CCommandLineArguments::~CCommandLineArguments()
sl@0
    47
/** Frees resources prior to destruction. */
sl@0
    48
	{
sl@0
    49
	delete iArgs;
sl@0
    50
	}
sl@0
    51
sl@0
    52
CCommandLineArguments::CCommandLineArguments()
sl@0
    53
	{
sl@0
    54
	}
sl@0
    55
sl@0
    56
void CCommandLineArguments::ConstructL()
sl@0
    57
	{
sl@0
    58
	// allocate args array
sl@0
    59
	iArgs=new (ELeave) CArrayFixFlat<TPtrC> (10);
sl@0
    60
	RProcess me;
sl@0
    61
	// get raw command line
sl@0
    62
	User::CommandLine(iCommandLine);
sl@0
    63
	iFileName=me.FileName();
sl@0
    64
	// scan for each argument
sl@0
    65
	TText* out=(TText*) iCommandLine.Ptr();
sl@0
    66
	const TText* scan=iCommandLine.Ptr();
sl@0
    67
	const TText* end=scan+iCommandLine.Length();
sl@0
    68
	while (scan < end) // scan one argument
sl@0
    69
		{
sl@0
    70
		while (scan < end && *scan==' ') // skip leading space
sl@0
    71
			scan++;
sl@0
    72
		if (scan == end) // ignore if blank
sl@0
    73
			break;
sl@0
    74
		TBool quoted=*scan=='\"'; // note leading quote
sl@0
    75
		if (quoted)
sl@0
    76
			scan++;
sl@0
    77
		TText* start=out; // note start in output
sl@0
    78
		if (!quoted) // if not quoted, scan for blank
sl@0
    79
			{
sl@0
    80
			while (scan < end && *scan!=' ')
sl@0
    81
				*out++ = *scan++;
sl@0
    82
			}
sl@0
    83
		else // quoted, scan for quote
sl@0
    84
			{
sl@0
    85
			for (;;) // one quote-or-double sequence
sl@0
    86
				{
sl@0
    87
				while (scan < end && *scan!='\"') // all up to quote
sl@0
    88
					*out++ = *scan++;
sl@0
    89
				if (scan < end) // skip quote
sl@0
    90
					scan++;
sl@0
    91
				if (scan < end && *scan=='\"') // transfer if quote is doubled
sl@0
    92
					*out++ = *scan++;
sl@0
    93
				else // finished this arg
sl@0
    94
					break;
sl@0
    95
				}
sl@0
    96
			}
sl@0
    97
		TPtrC arg(start, out-start);
sl@0
    98
		iArgs->AppendL(arg);
sl@0
    99
		}
sl@0
   100
	}
sl@0
   101
sl@0
   102
sl@0
   103
TPtrC CCommandLineArguments::Arg(TInt aArg) const
sl@0
   104
/** Returns a non-modifiable pointer descriptor representing the specified command-line 
sl@0
   105
argument.
sl@0
   106
sl@0
   107
Arg(0) is the file name as specified on the command line. Arg(1), Arg(2) etc. 
sl@0
   108
are the arguments specified to the command.
sl@0
   109
sl@0
   110
The pointer descriptor is valid throughout the lifetime of the CCommandLineArguments 
sl@0
   111
object. If you wish to retain argument values after the CCommandLineArguments 
sl@0
   112
object is destroyed, you should copy the argument data into a different object.
sl@0
   113
sl@0
   114
@param aArg The index of the desired argument. This number must be less than 
sl@0
   115
Count(). Specify 0 for the name used to invoke the process. Specify 1, 2 etc. 
sl@0
   116
for the arguments.
sl@0
   117
@return Non-modifiable pointer descriptor to the specified argument text. */
sl@0
   118
	{
sl@0
   119
	if (aArg > 0 ) // a normal argument
sl@0
   120
		return iArgs->operator[](aArg-1);
sl@0
   121
	else // process name
sl@0
   122
		return TPtrC(iFileName);
sl@0
   123
	}
sl@0
   124
sl@0
   125
TInt CCommandLineArguments::Count() const
sl@0
   126
/** Returns the number of command line arguments, including the program name.
sl@0
   127
sl@0
   128
@return The number of command line arguments, plus one for the program name. 
sl@0
   129
Returns 1, if no arguments are specified. */
sl@0
   130
	{
sl@0
   131
	return iArgs->Count()+1;
sl@0
   132
	}