sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <bacline.h>
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
EXPORT_C CCommandLineArguments* CCommandLineArguments::NewLC()
|
sl@0
|
20 |
/** Allocates and constructs a command line arguments parser, putting the returned
|
sl@0
|
21 |
pointer onto the cleanup stack. The function leaves if there is insufficient
|
sl@0
|
22 |
memory.
|
sl@0
|
23 |
|
sl@0
|
24 |
@return The command line arguments parser. */
|
sl@0
|
25 |
{
|
sl@0
|
26 |
CCommandLineArguments* self=new (ELeave) CCommandLineArguments;
|
sl@0
|
27 |
CleanupStack::PushL(self);
|
sl@0
|
28 |
self->ConstructL();
|
sl@0
|
29 |
return self;
|
sl@0
|
30 |
}
|
sl@0
|
31 |
|
sl@0
|
32 |
EXPORT_C CCommandLineArguments* CCommandLineArguments::NewL()
|
sl@0
|
33 |
/** Allocates and constructs a command line arguments parser. The function leaves
|
sl@0
|
34 |
if there is insufficient memory.
|
sl@0
|
35 |
|
sl@0
|
36 |
@return The command line arguments parser. */
|
sl@0
|
37 |
{
|
sl@0
|
38 |
CCommandLineArguments* self=CCommandLineArguments::NewLC();
|
sl@0
|
39 |
CleanupStack::Pop();
|
sl@0
|
40 |
return self;
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
EXPORT_C CCommandLineArguments::~CCommandLineArguments()
|
sl@0
|
44 |
/** Frees resources prior to destruction. */
|
sl@0
|
45 |
{
|
sl@0
|
46 |
delete iArgs;
|
sl@0
|
47 |
delete iCommandLine;
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
CCommandLineArguments::CCommandLineArguments()
|
sl@0
|
51 |
{
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
void CCommandLineArguments::ConstructL()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
// allocate args array
|
sl@0
|
57 |
iArgs=new (ELeave) CArrayFixFlat<TPtrC> (10);
|
sl@0
|
58 |
// get raw command line
|
sl@0
|
59 |
RProcess me;
|
sl@0
|
60 |
iCommandLine=HBufC::NewL(User::CommandLineLength());
|
sl@0
|
61 |
TPtr commandLine(iCommandLine->Des());
|
sl@0
|
62 |
User::CommandLine(commandLine);
|
sl@0
|
63 |
iFileName=me.FileName();
|
sl@0
|
64 |
// scan for each argument
|
sl@0
|
65 |
TText* out=CONST_CAST(TText*,iCommandLine->Ptr());
|
sl@0
|
66 |
const TText* scan=out;
|
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 |
EXPORT_C 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 |
EXPORT_C 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 |
}
|