VirtualBox

source: vbox/trunk/src/VBox/Main/include/TextScript.h

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.5 KB
Line 
1/* $Id: TextScript.h 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * Classes for reading/parsing/saving text scripts (unattended installation, ++).
4 */
5
6/*
7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28#ifndef MAIN_INCLUDED_TextScript_h
29#define MAIN_INCLUDED_TextScript_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34#include "VirtualBoxBase.h"
35#include <iprt/cpp/utils.h>
36#include <vector>
37
38
39/**
40 * Base class for all the script readers/editors.
41 *
42 * @todo get rid of this silly bugger.
43 */
44class AbstractScript
45 : public RTCNonCopyable
46{
47protected:
48 /** For setting errors.
49 * Yeah, class isn't entirely abstract now. */
50 VirtualBoxBase *mpSetError;
51
52private: /* no default constructors for children. */
53 AbstractScript() {}
54
55public:
56 DECLARE_TRANSLATE_METHODS(AbstractScript)
57
58 AbstractScript(VirtualBoxBase *pSetError) : mpSetError(pSetError) {}
59 virtual ~AbstractScript() {}
60
61 /**
62 * Read a script from a file
63 */
64 virtual HRESULT read(const Utf8Str &rStrFilename) = 0;
65
66 /**
67 * Read a script from a VFS file handle.
68 */
69 virtual HRESULT readFromHandle(RTVFSFILE hVfsFile, const char *pszFilename) = 0;
70
71 /**
72 * Parse the script
73 */
74 virtual HRESULT parse() = 0;
75
76 /**
77 * Save a script to a string.
78 *
79 * This is used by save() and later others to deloy the script.
80 */
81 virtual HRESULT saveToString(Utf8Str &rStrDst) = 0;
82
83 /**
84 * Save a script to a file.
85 * @param rStrPath Where to save the script. This normally points to a
86 * file, but in a number of child use cases it's
87 * actually giving a directory to put the script in
88 * using the default deloyment filename. One day we
89 * might make the caller do this path joining.
90 * @param fOverwrite Whether to overwrite the file or not.
91 */
92 virtual HRESULT save(const Utf8Str &rStrPath, bool fOverwrite) = 0;
93
94 /**
95 * Path where an actual script with user's data is located
96 */
97 virtual const Utf8Str &getActualScriptPath() const = 0;
98};
99
100/**
101 * Base class for text based script readers/editors.
102 *
103 * This deals with reading the file into a string data member, writing it back
104 * out to a file, and remember the filenames.
105 */
106class BaseTextScript : public AbstractScript
107{
108protected:
109 const char * const mpszDefaultTemplateFilename; /**< The default template filename. Can be empty. */
110 const char * const mpszDefaultFilename; /**< Filename to use when someone calls save() with a directory path. Can be NULL. */
111 RTCString mStrScriptFullContent; /**< Raw text file content. Produced by read() and typically only used by parse(). */
112 Utf8Str mStrOriginalPath; /**< Path where an original script is located (set by read()). */
113 Utf8Str mStrSavedPath; /**< Path where an saved script with user's data is located (set by save()). */
114
115public:
116 DECLARE_TRANSLATE_METHODS(BaseTextScript)
117
118 BaseTextScript(VirtualBoxBase *pSetError, const char *pszDefaultTemplateFilename, const char *pszDefaultFilename)
119 : AbstractScript(pSetError)
120 , mpszDefaultTemplateFilename(pszDefaultTemplateFilename)
121 , mpszDefaultFilename(pszDefaultFilename)
122 { }
123 virtual ~BaseTextScript() {}
124
125 HRESULT read(const Utf8Str &rStrFilename);
126 HRESULT readFromHandle(RTVFSFILE hVfsFile, const char *pszFilename);
127 HRESULT save(const Utf8Str &rStrFilename, bool fOverwrite);
128
129 /**
130 * Gets the default filename for this class of scripts (empty if none).
131 *
132 * @note Just the filename, no path.
133 */
134 const char *getDefaultFilename() const
135 {
136 return mpszDefaultFilename;
137 }
138
139 /**
140 * Gets the default template filename for this class of scripts (empty if none).
141 *
142 * @note Just the filename, no path.
143 */
144 const char *getDefaultTemplateFilename() const
145 {
146 return mpszDefaultTemplateFilename;
147 }
148
149 /**
150 * Path to the file we last saved the script as.
151 */
152 const Utf8Str &getActualScriptPath() const
153 {
154 return mStrSavedPath;
155 }
156
157 /**
158 * Path where an original script is located
159 */
160 const Utf8Str &getOriginalScriptPath() const
161 {
162 return mStrOriginalPath;
163 }
164};
165
166
167/**
168 * Generic line based text script editor.
169 *
170 * This is used for editing isolinux configuratin files among other things.
171 */
172class GeneralTextScript : public BaseTextScript
173{
174protected:
175 RTCList<RTCString> mScriptContentByLines; /**< Content index by line. This contains the edited version. */
176 bool mfDataParsed; /**< Indicates whether the script has been parse() yet. */
177
178public:
179 DECLARE_TRANSLATE_METHODS(GeneralTextScript)
180
181 GeneralTextScript(VirtualBoxBase *pSetError, const char *pszDefaultTemplateFilename = NULL, const char *pszDefaultFilename = NULL)
182 : BaseTextScript(pSetError, pszDefaultTemplateFilename, pszDefaultFilename), mfDataParsed(false)
183 {}
184 virtual ~GeneralTextScript() {}
185
186 HRESULT parse();
187 HRESULT saveToString(Utf8Str &rStrDst);
188
189 //////////////////New functions//////////////////////////////
190
191 bool isDataParsed() const
192 {
193 return mfDataParsed;
194 }
195
196 /**
197 * Returns the actual size of script in lines
198 */
199 size_t getLineNumbersOfScript() const
200 {
201 return mScriptContentByLines.size();
202 }
203
204 /**
205 * Gets a read-only reference to the given line, returning Utf8Str::Empty if
206 * idxLine is out of range.
207 *
208 * @returns Line string reference or Utf8Str::Empty.
209 * @param idxLine The line number.
210 *
211 * @todo RTCList doesn't allow this method to be const.
212 */
213 RTCString const &getContentOfLine(size_t idxLine);
214
215 /**
216 * Set new content of line
217 */
218 HRESULT setContentOfLine(size_t idxLine, const Utf8Str &newContent);
219
220 /**
221 * Find a substring in the script
222 * Returns a list with the found lines
223 * @throws std::bad_alloc
224 */
225 std::vector<size_t> findTemplate(const Utf8Str &rStrNeedle, RTCString::CaseSensitivity enmCase = RTCString::CaseSensitive);
226
227 /**
228 * In line @a idxLine replace the first occurence of @a rStrNeedle with
229 * @a rStrRelacement.
230 */
231 HRESULT findAndReplace(size_t idxLine, const Utf8Str &rStrNeedle, const Utf8Str &rStrReplacement);
232
233 /**
234 * Append a string into the end of the given line.
235 */
236 HRESULT appendToLine(size_t idxLine, const Utf8Str &rStrToAppend);
237
238 /**
239 * Prepend a string in the beginning of the given line.
240 */
241 HRESULT prependToLine(size_t idxLine, const Utf8Str &rStrToPrepend);
242
243 /**
244 * Append a new line at the end of the list of line.
245 */
246 HRESULT appendLine(const Utf8Str &rStrLineToAppend);
247 //////////////////New functions//////////////////////////////
248};
249
250
251#endif /* !MAIN_INCLUDED_TextScript_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use