1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/SPConv/cn_cmdparse.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,138 @@
1.4 +// Copyright (c) 2004-2009 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 +// DBMS - security policy file tool
1.18 +//
1.19 +//
1.20 +
1.21 +#include "cn_cmdparse.h"
1.22 +
1.23 +/**
1.24 +*/
1.25 +inline CCommandLineArguments::CCommandLineArguments()
1.26 + {
1.27 + }
1.28 +
1.29 +/** Allocates and constructs a command line arguments parser, putting the returned
1.30 +pointer onto the cleanup stack. The function leaves if there is insufficient
1.31 +memory.
1.32 +@return The command line arguments parser. */
1.33 +CCommandLineArguments* CCommandLineArguments::NewLC()
1.34 + {
1.35 + CCommandLineArguments* self=new (ELeave) CCommandLineArguments;
1.36 + CleanupStack::PushL(self);
1.37 + self->ConstructL();
1.38 + return self;
1.39 + }
1.40 +
1.41 +/** Allocates and constructs a command line arguments parser. The function leaves
1.42 +if there is insufficient memory.
1.43 +
1.44 +@return The command line arguments parser. */
1.45 +CCommandLineArguments* CCommandLineArguments::NewL()
1.46 + {
1.47 + CCommandLineArguments* self=CCommandLineArguments::NewLC();
1.48 + CleanupStack::Pop();
1.49 + return self;
1.50 + }
1.51 +
1.52 +/** Frees resources prior to destruction. */
1.53 +CCommandLineArguments::~CCommandLineArguments()
1.54 + {
1.55 + delete iArgs;
1.56 + delete iCommandLine;
1.57 + }
1.58 +
1.59 +/**
1.60 +Standard two-phase construction method.
1.61 +*/
1.62 +void CCommandLineArguments::ConstructL()
1.63 + {
1.64 + // allocate args array
1.65 + iArgs=new (ELeave) CArrayFixFlat<TPtrC> (10);
1.66 + // get raw command line
1.67 + RProcess me;
1.68 + iCommandLine=HBufC::NewL(User::CommandLineLength());
1.69 + TPtr commandLine(iCommandLine->Des());
1.70 + User::CommandLine(commandLine);
1.71 + iFileName=me.FileName();
1.72 + // scan for each argument
1.73 + TText* out=CONST_CAST(TText*,iCommandLine->Ptr());
1.74 + const TText* scan=out;
1.75 + const TText* end=scan+iCommandLine->Length();
1.76 + while (scan < end) // scan one argument
1.77 + {
1.78 + while (scan < end && *scan==' ') // skip leading space
1.79 + scan++;
1.80 + if (scan == end) // ignore if blank
1.81 + break;
1.82 + TBool quoted=*scan=='\"'; // note leading quote
1.83 + if (quoted)
1.84 + scan++;
1.85 + TText* start=out; // note start in output
1.86 + if (!quoted) // if not quoted, scan for blank
1.87 + {
1.88 + while (scan < end && *scan!=' ')
1.89 + *out++ = *scan++;
1.90 + }
1.91 + else // quoted, scan for quote
1.92 + {
1.93 + for (;;) // one quote-or-double sequence
1.94 + {
1.95 + while (scan < end && *scan!='\"') // all up to quote
1.96 + *out++ = *scan++;
1.97 + if (scan < end) // skip quote
1.98 + scan++;
1.99 + if (scan < end && *scan=='\"') // transfer if quote is doubled
1.100 + *out++ = *scan++;
1.101 + else // finished this arg
1.102 + break;
1.103 + }
1.104 + }
1.105 + TPtr arg(start, out-start, out-start);
1.106 + arg.UpperCase();
1.107 + iArgs->AppendL(arg);
1.108 + }
1.109 + }
1.110 +
1.111 +
1.112 +/** Returns a non-modifiable pointer descriptor representing the specified command-line
1.113 +argument.
1.114 +
1.115 +Arg(0) is the file name as specified on the command line. Arg(1), Arg(2) etc.
1.116 +are the arguments specified to the command.
1.117 +
1.118 +The pointer descriptor is valid throughout the lifetime of the CCommandLineArguments
1.119 +object. If you wish to retain argument values after the CCommandLineArguments
1.120 +object is destroyed, you should copy the argument data into a different object.
1.121 +
1.122 +@param aArg The index of the desired argument. This number must be less than
1.123 +Count(). Specify 0 for the name used to invoke the process. Specify 1, 2 etc.
1.124 +for the arguments.
1.125 +@return Non-modifiable pointer descriptor to the specified argument text. */
1.126 +TPtrC CCommandLineArguments::Arg(TInt aArg) const
1.127 + {
1.128 + if (aArg > 0 ) // a normal argument
1.129 + return iArgs->operator[](aArg-1);
1.130 + else // process name
1.131 + return TPtrC(iFileName);
1.132 + }
1.133 +
1.134 +/** Returns the number of command line arguments, including the program name.
1.135 +
1.136 +@return The number of command line arguments, plus one for the program name.
1.137 +Returns 1, if no arguments are specified. */
1.138 +TInt CCommandLineArguments::Count() const
1.139 + {
1.140 + return iArgs->Count()+1;
1.141 + }