Update contrib.
1 // Copyright (c) 1997-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.
19 EXPORT_C CCommandLineArguments* CCommandLineArguments::NewLC()
20 /** Allocates and constructs a command line arguments parser, putting the returned
21 pointer onto the cleanup stack. The function leaves if there is insufficient
24 @return The command line arguments parser. */
26 CCommandLineArguments* self=new (ELeave) CCommandLineArguments;
27 CleanupStack::PushL(self);
32 EXPORT_C CCommandLineArguments* CCommandLineArguments::NewL()
33 /** Allocates and constructs a command line arguments parser. The function leaves
34 if there is insufficient memory.
36 @return The command line arguments parser. */
38 CCommandLineArguments* self=CCommandLineArguments::NewLC();
43 EXPORT_C CCommandLineArguments::~CCommandLineArguments()
44 /** Frees resources prior to destruction. */
50 CCommandLineArguments::CCommandLineArguments()
54 void CCommandLineArguments::ConstructL()
56 // allocate args array
57 iArgs=new (ELeave) CArrayFixFlat<TPtrC> (10);
58 // get raw command line
60 iCommandLine=HBufC::NewL(User::CommandLineLength());
61 TPtr commandLine(iCommandLine->Des());
62 User::CommandLine(commandLine);
63 iFileName=me.FileName();
64 // scan for each argument
65 TText* out=CONST_CAST(TText*,iCommandLine->Ptr());
66 const TText* scan=out;
67 const TText* end=scan+iCommandLine->Length();
68 while (scan < end) // scan one argument
70 while (scan < end && *scan==' ') // skip leading space
72 if (scan == end) // ignore if blank
74 TBool quoted=*scan=='\"'; // note leading quote
77 TText* start=out; // note start in output
78 if (!quoted) // if not quoted, scan for blank
80 while (scan < end && *scan!=' ')
83 else // quoted, scan for quote
85 for (;;) // one quote-or-double sequence
87 while (scan < end && *scan!='\"') // all up to quote
89 if (scan < end) // skip quote
91 if (scan < end && *scan=='\"') // transfer if quote is doubled
93 else // finished this arg
97 TPtrC arg(start, out-start);
103 EXPORT_C TPtrC CCommandLineArguments::Arg(TInt aArg) const
104 /** Returns a non-modifiable pointer descriptor representing the specified command-line
107 Arg(0) is the file name as specified on the command line. Arg(1), Arg(2) etc.
108 are the arguments specified to the command.
110 The pointer descriptor is valid throughout the lifetime of the CCommandLineArguments
111 object. If you wish to retain argument values after the CCommandLineArguments
112 object is destroyed, you should copy the argument data into a different object.
114 @param aArg The index of the desired argument. This number must be less than
115 Count(). Specify 0 for the name used to invoke the process. Specify 1, 2 etc.
117 @return Non-modifiable pointer descriptor to the specified argument text. */
119 if (aArg > 0 ) // a normal argument
120 return iArgs->operator[](aArg-1);
122 return TPtrC(iFileName);
125 EXPORT_C TInt CCommandLineArguments::Count() const
126 /** Returns the number of command line arguments, including the program name.
128 @return The number of command line arguments, plus one for the program name.
129 Returns 1, if no arguments are specified. */
131 return iArgs->Count()+1;