- Start rosapps rearrange and cleanup process.
[reactos.git] / rosapps / applications / sysutils / regexpl / ShellCommandValue.cpp
1 /* $Id$
2 *
3 * regexpl - Console Registry Explorer
4 *
5 * Copyright (C) 2000-2005 Nedko Arnaudov <nedko@users.sourceforge.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; see the file COPYING. If not, write to
19 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
21 */
22
23 // ShellCommandValue.cpp: implementation of the CShellCommandValue class.
24 //
25 //////////////////////////////////////////////////////////////////////
26
27 #include "ph.h"
28 #include "RegistryExplorer.h"
29 #include "ShellCommandValue.h"
30 #include "RegistryTree.h"
31 #include "RegistryKey.h"
32
33 #define VALUE_CMD _T("VV")
34 #define VALUE_CMD_LENGTH COMMAND_LENGTH(VALUE_CMD)
35 #define VALUE_CMD_SHORT_DESC VALUE_CMD _T(" command is used to view value.\n")
36
37 //////////////////////////////////////////////////////////////////////
38 // Construction/Destruction
39 //////////////////////////////////////////////////////////////////////
40
41 CShellCommandValue::CShellCommandValue(CRegistryTree& rTree):m_rTree(rTree)
42 {
43 }
44
45 CShellCommandValue::~CShellCommandValue()
46 {
47 }
48
49 BOOL CShellCommandValue::Match(const TCHAR *pchCommand)
50 {
51 if (_tcsicmp(pchCommand,VALUE_CMD) == 0)
52 return TRUE;
53 if (_tcsnicmp(pchCommand,VALUE_CMD _T(".."),VALUE_CMD_LENGTH+2*sizeof(TCHAR)) == 0)
54 return TRUE;
55 if (_tcsnicmp(pchCommand,VALUE_CMD _T("/"),VALUE_CMD_LENGTH+1*sizeof(TCHAR)) == 0)
56 return TRUE;
57 if (_tcsnicmp(pchCommand,VALUE_CMD _T("\\"),VALUE_CMD_LENGTH+1*sizeof(TCHAR)) == 0)
58 return TRUE;
59 return FALSE;
60 }
61
62 int CShellCommandValue::Execute(CConsole &rConsole, CArgumentParser& rArguments)
63 {
64 rArguments.ResetArgumentIteration();
65 TCHAR *pchCommandItself = rArguments.GetNextArgument();
66
67 TCHAR *pchParameter;
68 TCHAR *pchValueFull = NULL;
69 BOOL blnUnicodeDump = FALSE;
70 BOOL blnBadParameter = FALSE;
71 BOOL blnHelp = FALSE;
72 LONG nError;
73 DWORD dwValueSize;
74 DWORD dwType = REG_NONE;
75 BYTE *pDataBuffer = NULL;
76 TCHAR *pchFilename = NULL;
77
78 if ((_tcsnicmp(pchCommandItself,VALUE_CMD _T(".."),VALUE_CMD_LENGTH+2*sizeof(TCHAR)) == 0)||
79 (_tcsnicmp(pchCommandItself,VALUE_CMD _T("\\"),VALUE_CMD_LENGTH+1*sizeof(TCHAR)) == 0))
80 {
81 pchValueFull = pchCommandItself + VALUE_CMD_LENGTH;
82 }
83 else if (_tcsnicmp(pchCommandItself,VALUE_CMD _T("/"),VALUE_CMD_LENGTH+1*sizeof(TCHAR)) == 0)
84 {
85 pchParameter = pchCommandItself + VALUE_CMD_LENGTH;
86 goto CheckValueArgument;
87 }
88
89 while((pchParameter = rArguments.GetNextArgument()) != NULL)
90 {
91 CheckValueArgument:
92 blnBadParameter = FALSE;
93 if ((_tcsicmp(pchParameter,_T("/?")) == 0)
94 ||(_tcsicmp(pchParameter,_T("-?")) == 0))
95 {
96 blnHelp = TRUE;
97 break;
98 }
99 else if (_tcsicmp(pchParameter,_T("/u")) == 0)
100 {
101 blnUnicodeDump = TRUE;
102 }
103 else if ((*pchParameter == _T('/'))&&(*(pchParameter+1) == _T('f')))
104 {
105 pchFilename = pchParameter+2;
106 }
107 else if (!pchValueFull)
108 {
109 pchValueFull = pchParameter;
110 }
111 else
112 {
113 blnBadParameter = TRUE;
114 }
115 if (blnBadParameter)
116 {
117 rConsole.Write(_T("Bad parameter: "));
118 rConsole.Write(pchParameter);
119 rConsole.Write(_T("\n"));
120 }
121 }
122
123 CRegistryKey Key;
124 TCHAR *pchValueName;
125 const TCHAR *pszPath;
126
127 if (blnHelp)
128 {
129 rConsole.Write(GetHelpString());
130
131 if (pDataBuffer)
132 delete pDataBuffer;
133
134 return 0;
135 }
136
137 if (pchValueFull)
138 {
139 if (_tcscmp(pchValueFull,_T("\\")) == 0)
140 goto ValueCommandNAonRoot;
141
142 TCHAR *pchSep = _tcsrchr(pchValueFull,_T('\\'));
143 pchValueName = pchSep?(pchSep+1):(pchValueFull);
144 pszPath = pchSep?pchValueFull:_T(".");
145
146 //if (_tcsrchr(pchValueName,_T('.')))
147 //{
148 // pchValueName = _T("");
149 // pchPath = pchValueFull;
150 //}
151 //else
152 if (pchSep)
153 *pchSep = 0;
154 }
155 else
156 {
157 pchValueName = _T("");
158 pszPath = _T(".");
159 }
160
161 if (!m_rTree.GetKey(pszPath,KEY_READ,Key))
162 {
163 rConsole.Write(m_rTree.GetLastErrorDescription());
164 goto SkipValueCommand;
165 }
166
167 if (Key.IsRoot())
168 goto ValueCommandNAonRoot;
169
170 {
171 rConsole.Write(_T("Value name : \""));
172 rConsole.Write(_T("\\"));
173 rConsole.Write(Key.GetKeyName());
174 size_t l = _tcslen(pchValueName);
175 if (l&&
176 (*pchValueName == _T('\"'))&&
177 (pchValueName[l-1] == _T('\"')))
178 {
179 pchValueName[l-1] = 0;
180 pchValueName++;
181 }
182 rConsole.Write(pchValueName);
183 rConsole.Write(_T("\"\n"));
184
185 nError = Key.GetValue(pchValueName,NULL,NULL,&dwValueSize);
186 if (nError == ERROR_SUCCESS)
187 {
188 pDataBuffer = new BYTE [dwValueSize];
189 Key.GetValue(pchValueName,&dwType,pDataBuffer,&dwValueSize);
190 rConsole.Write(_T("Value type : "));
191 rConsole.Write(CRegistryKey::GetValueTypeName(dwType));
192 rConsole.Write(_T("\nValue data : "));
193 switch(dwType)
194 {
195 case REG_DWORD_LITTLE_ENDIAN:
196 {
197 TCHAR Buffer[3];
198 rConsole.Write(_T("0x"));
199 for (unsigned int i = 0 ; i < dwValueSize ; i++)
200 {
201 _stprintf(Buffer,_T("%02X"),*(pDataBuffer+((dwValueSize-1)-i)));
202 rConsole.Write(Buffer);
203 }
204 }
205 rConsole.Write(_T("\n"));
206 break;
207 case REG_DWORD_BIG_ENDIAN:
208 {
209 TCHAR Buffer[3];
210 rConsole.Write(_T("0x"));
211 for (unsigned int i = 0 ; i < dwValueSize ; i++)
212 {
213 _stprintf(Buffer,_T("%02X"),*(pDataBuffer+i));
214 rConsole.Write(Buffer);
215 }
216 }
217 rConsole.Write(_T("\n"));
218 break;
219 case REG_LINK:
220 break;
221 case REG_MULTI_SZ:
222 {
223 TCHAR *pchCurrentString = (TCHAR *)pDataBuffer;
224 rConsole.Write(_T("\n"));
225 while(*pchCurrentString)
226 {
227 rConsole.Write(_T("\""));
228 rConsole.Write(pchCurrentString);
229 rConsole.Write(_T("\"\n"));
230 pchCurrentString += _tcslen(pchCurrentString)+1;
231 }
232 }
233 break;
234 case REG_RESOURCE_LIST:
235 break;
236 case REG_SZ:
237 case REG_EXPAND_SZ:
238 rConsole.Write(_T("\""));
239 rConsole.Write((TCHAR *)pDataBuffer);
240 rConsole.Write(_T("\"\n"));
241 break;
242 case REG_BINARY:
243 default:
244 {
245 TCHAR Buffer[256];
246 DWORD i, j;
247 for (i = 0 ; i < dwValueSize ; i++)
248 {
249 if (i%16 == 0)
250 { // ok this is begining of line
251 rConsole.Write(_T("\n"));
252 // print offset
253 _stprintf(Buffer,_T("0x%08X "),(unsigned int)i);
254 rConsole.Write(Buffer);
255 }
256 else if (i%8 == 0)
257 { // this is the additional space between 7th and 8th byte in current line
258 rConsole.Write(_T(" "));
259 }
260
261 // print current byte
262 unsigned int n = *(pDataBuffer+i);
263 _stprintf(Buffer,_T("%02X "),n);
264 rConsole.Write(Buffer);
265
266 if (i && (i%16 == 15))
267 { // if this is the last byte in line
268 // Dump text representation
269 for (j = i-15; j <= i; j += blnUnicodeDump?2:1)\
270 {
271 if ((j%8 == 0)&&(j%16 != 0))
272 { // this is the additional space between 7th and 8th byte in current line
273 rConsole.Write(_T(" "));
274 }
275 ASSERT(i-j < 16);
276 // write current char representation
277 if (blnUnicodeDump)
278 {
279 ASSERT(j%2 == 0);
280 wchar_t ch = *(TCHAR *)(pDataBuffer+j);
281
282 _stprintf(Buffer,
283 #ifdef _UNICODE
284 _T("%c"),
285 #else
286 // g++ may print warnings here (warning: __wchar_t format, different type arg (arg 3))
287 // %C in format string is a Microsoft extension.
288 _T("%C"),
289 #endif
290 iswprint(ch)?ch:L'.');
291 }
292 else
293 {
294 unsigned char ch = *(pDataBuffer+j);
295
296 _stprintf(Buffer,
297 #ifdef _UNICODE
298 // g++ may print warnings here (warning: __wchar_t format, different type arg (arg 3))
299 // %C in format string is a Microsoft extension.
300 _T("%C"),
301 #else
302 _T("%c"),
303 #endif
304 isprint(ch)?ch:'.');
305 }
306 rConsole.Write(Buffer);
307 } // for
308 } // if
309 } // for
310
311 // print text representation of last line if it is not full (it have less than 16 bytes)
312 // k is pseudo offset
313 for (DWORD k = i; k%16 != 0; k++)
314 {
315 if (k%8 == 0)
316 { // this is the additional space between 7th and 8th byte in current line
317 rConsole.Write(_T(" "));
318 }
319 _tcscpy(Buffer,_T(" ")); // the replacement of two digit of current byte + spacing
320 rConsole.Write(Buffer);
321 if (k && (k%16 == 15))
322 { // if this is the last byte in line
323 ASSERT((k-15)%16 == 0); // k-15 must point at begin of last line
324 for (j = k-15; j < i; j += blnUnicodeDump?2:1)
325 {
326 if (blnUnicodeDump&&(j+1 >= i))
327 { // ok, buffer size is odd number, so we don't display last byte.
328 ASSERT(j+1 == i);
329 break;
330 }
331 if ((j%8 == 0)&&(j%16 != 0))
332 { // this is the additional space between 7th and 8th byte in current line
333 rConsole.Write(_T(" "));
334 }
335
336 // write current char representation
337 if (blnUnicodeDump)
338 {
339 ASSERT(j%2 == 0);
340 wchar_t ch = *(TCHAR *)(pDataBuffer+j);
341
342 _stprintf(Buffer,
343 #ifdef _UNICODE
344 _T("%c"),
345 #else
346 // g++ may print warnings here (warning: __wchar_t format, different type arg (arg 3))
347 // %C in format string is a Microsoft extension.
348 _T("%C"),
349 #endif
350 iswprint(ch)?ch:L'.');
351 }
352 else
353 {
354 unsigned char ch = *(pDataBuffer+j);
355
356 _stprintf(Buffer,
357 #ifdef _UNICODE
358 // g++ may print warnings here (warning: __wchar_t format, different type arg (arg 3))
359 // %C in format string is a Microsoft extension.
360 _T("%C"),
361 #else
362 _T("%c"),
363 #endif
364 isprint(ch)?ch:'.');
365 }
366 rConsole.Write(Buffer);
367 } // for
368 } // if
369 } // for
370 } // default:
371 rConsole.Write(_T("\n"));
372 } // switch
373 rConsole.Write(_T("\n"));
374
375 if (pchFilename)
376 {
377 rConsole.Write(_T("Exporting value data to "));
378 rConsole.Write(pchFilename);
379 rConsole.Write(_T(" ...\n"));
380
381 HANDLE hFile = CreateFile(pchFilename,GENERIC_WRITE,0,NULL,CREATE_NEW,FILE_ATTRIBUTE_NORMAL,NULL);
382 if (hFile == INVALID_HANDLE_VALUE)
383 {
384 rConsole.Write(_T("Cannot create new file "));
385 rConsole.Write(pchFilename);
386 rConsole.Write(_T("\n"));
387 goto SkipValueCommand;
388 }
389
390 DWORD dwBytesWritten;
391 if (!WriteFile(hFile,pDataBuffer,dwValueSize,&dwBytesWritten,NULL))
392 {
393 rConsole.Write(_T("Error writting file.\n"));
394 VERIFY(CloseHandle(hFile));
395 goto SkipValueCommand;
396 }
397
398 ASSERT(dwBytesWritten == dwValueSize);
399 VERIFY(CloseHandle(hFile));
400 }
401 }
402 else
403 {
404 rConsole.Write(_T("Error "));
405 TCHAR Buffer[256];
406 rConsole.Write(_itoa(nError,Buffer,10));
407 rConsole.Write(_T("\n"));
408 if (nError == ERROR_FILE_NOT_FOUND)
409 {
410 rConsole.Write(_T("(System cannot find the value specified)\n"));
411 }
412 }
413 }
414
415 SkipValueCommand:
416 if (pDataBuffer)
417 delete pDataBuffer;
418 return 0;
419 ValueCommandNAonRoot:
420 rConsole.Write(VALUE_CMD COMMAND_NA_ON_ROOT);
421 return 0;
422 }
423
424 const TCHAR * CShellCommandValue::GetHelpString()
425 {
426 return VALUE_CMD_SHORT_DESC
427 _T("Syntax: ") VALUE_CMD _T(" [<PATH>][<VALUE_NAME>] [/u] [/?]\n\n")
428 _T(" <PATH> - Optional relative path of key which value will be processed.\n")
429 _T(" <VALUE_NAME> - Name of key's value. Default is key's default value.\n")
430 _T(" /u - On binary dump view as Unicode.\n")
431 _T(" /fFILE - Export value data to FILE.\n")
432 _T(" /? - This help.\n\n")
433 _T("Without parameters, command displays default value of current key.\n");
434 }
435
436 const TCHAR * CShellCommandValue::GetHelpShortDescriptionString()
437 {
438 return VALUE_CMD_SHORT_DESC;
439 }