Update contrib.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
19 #include "t_bacline.h"
22 CCommandLineArguments* CCommandLineArguments::NewLC()
23 /** Allocates and constructs a command line arguments parser, putting the returned
24 pointer onto the cleanup stack. The function leaves if there is insufficient
27 @return The command line arguments parser. */
29 CCommandLineArguments* self=new (ELeave) CCommandLineArguments;
30 CleanupStack::PushL(self);
35 CCommandLineArguments* CCommandLineArguments::NewL()
36 /** Allocates and constructs a command line arguments parser. The function leaves
37 if there is insufficient memory.
39 @return The command line arguments parser. */
41 CCommandLineArguments* self=CCommandLineArguments::NewLC();
46 CCommandLineArguments::~CCommandLineArguments()
47 /** Frees resources prior to destruction. */
52 CCommandLineArguments::CCommandLineArguments()
56 void CCommandLineArguments::ConstructL()
58 // allocate args array
59 iArgs=new (ELeave) CArrayFixFlat<TPtrC> (10);
61 // get raw command line
62 User::CommandLine(iCommandLine);
63 iFileName=me.FileName();
64 // scan for each argument
65 TText* out=(TText*) iCommandLine.Ptr();
66 const TText* scan=iCommandLine.Ptr();
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 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 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;