71756a10605e7c6985b074aba21b3de4fef1fd45
[reactos.git] / rosapps / sysutils / regexpl / ShellCommandDeleteKey.cpp
1 /* $Id: ShellCommandDeleteKey.cpp,v 1.2 2000/10/24 20:17:41 narnaoud Exp $
2 *
3 * regexpl - Console Registry Explorer
4 *
5 * Copyright (C) 2000 Nedko Arnaoudov <nedkohome@atia.com>
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 // ShellCommandDeleteKey.cpp: implementation of the CShellCommandDeleteKey class.
24 //
25 //////////////////////////////////////////////////////////////////////
26
27 #include "ph.h"
28 #include "ShellCommandDeleteKey.h"
29 #include "RegistryExplorer.h"
30
31 #define DK_CMD _T("DK")
32 #define DK_CMD_SHORT_DESC DK_CMD _T(" command is used to delete key(s).\n")
33
34 //////////////////////////////////////////////////////////////////////
35 // Construction/Destruction
36 //////////////////////////////////////////////////////////////////////
37
38 CShellCommandDeleteKey::CShellCommandDeleteKey(CRegistryTree& rTree):m_rTree(rTree)
39 {
40 }
41
42 CShellCommandDeleteKey::~CShellCommandDeleteKey()
43 {
44 }
45
46 BOOL CShellCommandDeleteKey::Match(const TCHAR *pchCommand)
47 {
48 return _tcsicmp(pchCommand,DK_CMD) == 0;
49 }
50
51 int CShellCommandDeleteKey::Execute(CConsole &rConsole, CArgumentParser& rArguments)
52 {
53 const TCHAR *pchKey = NULL, *pchArg;
54
55 BOOL blnHelp = FALSE;
56 BOOL blnExitAfterHelp = FALSE;
57 BOOL blnRecursive = FALSE;
58
59 while((pchArg = rArguments.GetNextArgument()) != NULL)
60 {
61 if ((_tcsicmp(pchArg,_T("/?")) == 0)
62 ||(_tcsicmp(pchArg,_T("-?")) == 0))
63 {
64 blnHelp = TRUE;
65 }
66 else if ((_tcsicmp(pchArg,_T("/s")) == 0)
67 ||(_tcsicmp(pchArg,_T("-s")) == 0))
68 {
69 blnRecursive = TRUE;
70 }
71 else
72 {
73 if (pchKey)
74 {
75 rConsole.Write(_T("Wrong parameter : \""));
76 rConsole.Write(pchArg);
77 rConsole.Write(_T("\"\n\n"));
78 blnHelp = TRUE;
79 }
80 else
81 {
82 pchKey = pchArg;
83 }
84 }
85 }
86
87 if ((!blnHelp) && (!pchKey))
88 {
89 rConsole.Write(_T("Key name not specified !\n\n"));
90 blnExitAfterHelp = TRUE;
91 }
92
93 if (blnHelp)
94 {
95 rConsole.Write(GetHelpString());
96 if (blnExitAfterHelp)
97 return 0;
98 else
99 rConsole.Write(_T("\n"));
100 }
101
102 if (!m_rTree.DeleteKey(pchKey,blnRecursive))
103 {
104 rConsole.Write(_T("Cannot delete key.\n"));
105 rConsole.Write(m_rTree.GetLastErrorDescription());
106 }
107 return 0;
108 }
109
110 const TCHAR * CShellCommandDeleteKey::GetHelpString()
111 {
112 return DK_CMD_SHORT_DESC
113 _T("Syntax: ") DK_CMD _T(" [/s] [/?] Key_Name\n\n")
114 _T(" /? - This help.\n\n")
115 _T(" /s - Delete key and all subkeys.\n");
116 }
117
118 const TCHAR * CShellCommandDeleteKey::GetHelpShortDescriptionString()
119 {
120 return DK_CMD_SHORT_DESC;
121 }