Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // DBMS - security policy file tool
18 #include "cn_cmdparse.h"
22 inline CCommandLineArguments::CCommandLineArguments()
26 /** Allocates and constructs a command line arguments parser, putting the returned
27 pointer onto the cleanup stack. The function leaves if there is insufficient
29 @return The command line arguments parser. */
30 CCommandLineArguments* CCommandLineArguments::NewLC()
32 CCommandLineArguments* self=new (ELeave) CCommandLineArguments;
33 CleanupStack::PushL(self);
38 /** Allocates and constructs a command line arguments parser. The function leaves
39 if there is insufficient memory.
41 @return The command line arguments parser. */
42 CCommandLineArguments* CCommandLineArguments::NewL()
44 CCommandLineArguments* self=CCommandLineArguments::NewLC();
49 /** Frees resources prior to destruction. */
50 CCommandLineArguments::~CCommandLineArguments()
57 Standard two-phase construction method.
59 void CCommandLineArguments::ConstructL()
61 // allocate args array
62 iArgs=new (ELeave) CArrayFixFlat<TPtrC> (10);
63 // get raw command line
65 iCommandLine=HBufC::NewL(User::CommandLineLength());
66 TPtr commandLine(iCommandLine->Des());
67 User::CommandLine(commandLine);
68 iFileName=me.FileName();
69 // scan for each argument
70 TText* out=CONST_CAST(TText*,iCommandLine->Ptr());
71 const TText* scan=out;
72 const TText* end=scan+iCommandLine->Length();
73 while (scan < end) // scan one argument
75 while (scan < end && *scan==' ') // skip leading space
77 if (scan == end) // ignore if blank
79 TBool quoted=*scan=='\"'; // note leading quote
82 TText* start=out; // note start in output
83 if (!quoted) // if not quoted, scan for blank
85 while (scan < end && *scan!=' ')
88 else // quoted, scan for quote
90 for (;;) // one quote-or-double sequence
92 while (scan < end && *scan!='\"') // all up to quote
94 if (scan < end) // skip quote
96 if (scan < end && *scan=='\"') // transfer if quote is doubled
98 else // finished this arg
102 TPtr arg(start, out-start, out-start);
109 /** Returns a non-modifiable pointer descriptor representing the specified command-line
112 Arg(0) is the file name as specified on the command line. Arg(1), Arg(2) etc.
113 are the arguments specified to the command.
115 The pointer descriptor is valid throughout the lifetime of the CCommandLineArguments
116 object. If you wish to retain argument values after the CCommandLineArguments
117 object is destroyed, you should copy the argument data into a different object.
119 @param aArg The index of the desired argument. This number must be less than
120 Count(). Specify 0 for the name used to invoke the process. Specify 1, 2 etc.
122 @return Non-modifiable pointer descriptor to the specified argument text. */
123 TPtrC CCommandLineArguments::Arg(TInt aArg) const
125 if (aArg > 0 ) // a normal argument
126 return iArgs->operator[](aArg-1);
128 return TPtrC(iFileName);
131 /** Returns the number of command line arguments, including the program name.
133 @return The number of command line arguments, plus one for the program name.
134 Returns 1, if no arguments are specified. */
135 TInt CCommandLineArguments::Count() const
137 return iArgs->Count()+1;