VirtualBox

source: vbox/trunk/src/bldprogs/scm.h@ 94521

Last change on this file since 94521 was 93556, checked in by vboxsync, 2 years ago

scm: Added checks for ASMMemIsZeroPage and ASMMemZeroPage too. bugref:9898

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 16.0 KB
Line 
1/* $Id: scm.h 93556 2022-02-02 23:14:47Z vboxsync $ */
2/** @file
3 * IPRT Testcase / Tool - Source Code Massager.
4 */
5
6/*
7 * Copyright (C) 2010-2022 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef VBOX_INCLUDED_SRC_bldprogs_scm_h
19#define VBOX_INCLUDED_SRC_bldprogs_scm_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include "scmstream.h"
25
26RT_C_DECLS_BEGIN
27
28/** Pointer to the rewriter state. */
29typedef struct SCMRWSTATE *PSCMRWSTATE;
30/** Pointer to const massager settings. */
31typedef struct SCMSETTINGSBASE const *PCSCMSETTINGSBASE;
32
33
34/** @name Subversion Access
35 * @{ */
36
37/**
38 * SVN property.
39 */
40typedef struct SCMSVNPROP
41{
42 /** The property. */
43 char *pszName;
44 /** The value.
45 * When used to record updates, this can be set to NULL to trigger the
46 * deletion of the property. */
47 char *pszValue;
48} SCMSVNPROP;
49/** Pointer to a SVN property. */
50typedef SCMSVNPROP *PSCMSVNPROP;
51/** Pointer to a const SVN property. */
52typedef SCMSVNPROP const *PCSCMSVNPROP;
53
54
55void ScmSvnInit(void);
56void ScmSvnTerm(void);
57bool ScmSvnIsDirInWorkingCopy(const char *pszDir);
58bool ScmSvnIsInWorkingCopy(PSCMRWSTATE pState);
59int ScmSvnQueryProperty(PSCMRWSTATE pState, const char *pszName, char **ppszValue);
60int ScmSvnQueryParentProperty(PSCMRWSTATE pState, const char *pszName, char **ppszValue);
61int ScmSvnSetProperty(PSCMRWSTATE pState, const char *pszName, const char *pszValue);
62int ScmSvnDelProperty(PSCMRWSTATE pState, const char *pszName);
63int ScmSvnDisplayChanges(PSCMRWSTATE pState);
64int ScmSvnApplyChanges(PSCMRWSTATE pState);
65
66/** @} */
67
68
69/** @name Code Parsing
70 * @{ */
71
72/**
73 * Comment style.
74 */
75typedef enum SCMCOMMENTSTYLE
76{
77 kScmCommentStyle_Invalid = 0,
78 kScmCommentStyle_C,
79 kScmCommentStyle_Hash,
80 kScmCommentStyle_Python, /**< Same as hash, except for copyright/license. */
81 kScmCommentStyle_Semicolon,
82 kScmCommentStyle_Rem_Upper,
83 kScmCommentStyle_Rem_Lower,
84 kScmCommentStyle_Rem_Camel,
85 kScmCommentStyle_Sql,
86 kScmCommentStyle_Tick,
87 kScmCommentStyle_End
88} SCMCOMMENTSTYLE;
89
90/**
91 * Comment types.
92 */
93typedef enum SCMCOMMENTTYPE
94{
95 kScmCommentType_Invalid = 0, /**< Customary invalid zero value. */
96 kScmCommentType_Line, /**< Line comment. */
97 kScmCommentType_Line_JavaDoc, /**< Line comment, JavaDoc style. */
98 kScmCommentType_Line_JavaDoc_After, /**< Line comment, JavaDoc after-member style. */
99 kScmCommentType_Line_Qt, /**< Line comment, JavaDoc style. */
100 kScmCommentType_Line_Qt_After, /**< Line comment, JavaDoc after-member style. */
101 kScmCommentType_MultiLine, /**< Multi-line comment (e.g. ansi C). */
102 kScmCommentType_MultiLine_JavaDoc, /**< Multi-line comment, JavaDoc style. */
103 kScmCommentType_MultiLine_JavaDoc_After, /**< Multi-line comment, JavaDoc after-member style. */
104 kScmCommentType_MultiLine_Qt, /**< Multi-line comment, Qt style. */
105 kScmCommentType_MultiLine_Qt_After, /**< Multi-line comment, Qt after-member style. */
106 kScmCommentType_DocString, /**< Triple quoted python doc string. */
107 kScmCommentType_End /**< Customary exclusive end value. */
108} SCMCOMMENTTYPE;
109
110
111/**
112 * Comment information.
113 */
114typedef struct SCMCOMMENTINFO
115{
116 /** Comment type. */
117 SCMCOMMENTTYPE enmType;
118 /** Start line number (0-based). */
119 uint32_t iLineStart;
120 /** Start line offset (0-based). */
121 uint32_t offStart;
122 /** End line number (0-based). */
123 uint32_t iLineEnd;
124 /** End line offset (0-based). */
125 uint32_t offEnd;
126 /** Number of blank lines before the body (@a pszBody). */
127 uint32_t cBlankLinesBefore;
128 /** Number of blank lines after the body (@a pszBody + @a cchBody). */
129 uint32_t cBlankLinesAfter;
130 /** @todo add min/max indent. Raw length. Etc. */
131} SCMCOMMENTINFO;
132/** Pointer to comment info. */
133typedef SCMCOMMENTINFO *PSCMCOMMENTINFO;
134/** Pointer to const comment info. */
135typedef SCMCOMMENTINFO const *PCSCMCOMMENTINFO;
136
137
138/**
139 * Comment enumeration callback function.
140 *
141 * @returns IPRT style status code. Failures causes immediate return. While an
142 * informational status code is saved (first one) and returned later.
143 * @param pInfo Additional comment info.
144 * @param pszBody The comment body. This is somewhat stripped.
145 * @param cchBody The comment body length.
146 * @param pvUser User callback argument.
147 */
148typedef DECLCALLBACKTYPE(int, FNSCMCOMMENTENUMERATOR,(PCSCMCOMMENTINFO pInfo, const char *pszBody, size_t cchBody, void *pvUser));
149/** Poiter to a omment enumeration callback function. */
150typedef FNSCMCOMMENTENUMERATOR *PFNSCMCOMMENTENUMERATOR;
151
152int ScmEnumerateComments(PSCMSTREAM pIn, SCMCOMMENTSTYLE enmCommentStyle, PFNSCMCOMMENTENUMERATOR pfnCallback, void *pvUser);
153
154
155/**
156 * Include directive type.
157 */
158typedef enum SCMINCLUDEDIR
159{
160 kScmIncludeDir_Invalid = 0, /**< Constomary invalid enum value. */
161 kScmIncludeDir_Quoted, /**< \#include \"filename.h\" */
162 kScmIncludeDir_Bracketed, /**< \#include \<filename.h\> */
163 kScmIncludeDir_Macro, /**< \#include MACRO_H */
164 kScmIncludeDir_End /**< End of valid enum values. */
165} SCMINCLUDEDIR;
166
167SCMINCLUDEDIR ScmMaybeParseCIncludeLine(PSCMRWSTATE pState, const char *pchLine, size_t cchLine,
168 const char **ppchFilename, size_t *pcchFilename);
169
170/**
171 * Checks if the given character is a valid C identifier lead character.
172 *
173 * @returns true / false.
174 * @param ch The character to inspect.
175 * @sa vbcppIsCIdentifierLeadChar
176 */
177DECLINLINE(bool) ScmIsCIdentifierLeadChar(char ch)
178{
179 return RT_C_IS_ALPHA(ch)
180 || ch == '_';
181}
182
183
184/**
185 * Checks if the given character is a valid C identifier character.
186 *
187 * @returns true / false.
188 * @param ch The character to inspect.
189 * @sa vbcppIsCIdentifierChar
190 */
191DECLINLINE(bool) ScmIsCIdentifierChar(char ch)
192{
193 return RT_C_IS_ALNUM(ch)
194 || ch == '_';
195}
196
197
198/** @} */
199
200
201/** @name Rewriters
202 * @{ */
203
204/**
205 * Rewriter state.
206 */
207typedef struct SCMRWSTATE
208{
209 /** The filename. */
210 const char *pszFilename;
211 /** Set after the printing the first verbose message about a file under
212 * rewrite. */
213 bool fFirst;
214 /** Set if the file requires manual repair. */
215 bool fNeedsManualRepair;
216 /** Cached ScmSvnIsInWorkingCopy response. 0 indicates not known, 1 means it
217 * is in WC, -1 means it doesn't. */
218 int8_t fIsInSvnWorkingCopy;
219 /** The number of SVN property changes. */
220 size_t cSvnPropChanges;
221 /** Pointer to an array of SVN property changes. */
222 struct SCMSVNPROP *paSvnPropChanges;
223 /** For error propagation. */
224 int32_t rc;
225} SCMRWSTATE;
226
227/**
228 * A rewriter.
229 *
230 * This works like a stream editor, reading @a pIn, modifying it and writing it
231 * to @a pOut.
232 *
233 * @returns true if any changes were made, false if not.
234 * @param pIn The input stream.
235 * @param pOut The output stream.
236 * @param pSettings The settings.
237 */
238typedef bool FNSCMREWRITER(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings);
239/** Pointer to a rewriter method. */
240typedef FNSCMREWRITER *PFNSCMREWRITER;
241
242FNSCMREWRITER rewrite_StripTrailingBlanks;
243FNSCMREWRITER rewrite_ExpandTabs;
244FNSCMREWRITER rewrite_ForceNativeEol;
245FNSCMREWRITER rewrite_ForceLF;
246FNSCMREWRITER rewrite_ForceCRLF;
247FNSCMREWRITER rewrite_AdjustTrailingLines;
248FNSCMREWRITER rewrite_SvnNoExecutable;
249FNSCMREWRITER rewrite_SvnNoKeywords;
250FNSCMREWRITER rewrite_SvnNoEolStyle;
251FNSCMREWRITER rewrite_SvnBinary;
252FNSCMREWRITER rewrite_SvnKeywords;
253FNSCMREWRITER rewrite_SvnSyncProcess;
254FNSCMREWRITER rewrite_UnicodeChecks;
255FNSCMREWRITER rewrite_PageChecks;
256FNSCMREWRITER rewrite_Copyright_CstyleComment;
257FNSCMREWRITER rewrite_Copyright_HashComment;
258FNSCMREWRITER rewrite_Copyright_PythonComment;
259FNSCMREWRITER rewrite_Copyright_RemComment;
260FNSCMREWRITER rewrite_Copyright_SemicolonComment;
261FNSCMREWRITER rewrite_Copyright_SqlComment;
262FNSCMREWRITER rewrite_Copyright_TickComment;
263FNSCMREWRITER rewrite_Makefile_kup;
264FNSCMREWRITER rewrite_Makefile_kmk;
265FNSCMREWRITER rewrite_FixFlowerBoxMarkers;
266FNSCMREWRITER rewrite_Fix_C_and_CPP_Todos;
267FNSCMREWRITER rewrite_Fix_Err_H;
268FNSCMREWRITER rewrite_FixHeaderGuards;
269FNSCMREWRITER rewrite_C_and_CPP;
270
271/**
272 * Rewriter configuration.
273 */
274typedef struct SCMREWRITERCFG
275{
276 /** The rewriter function. */
277 PFNSCMREWRITER pfnRewriter;
278 /** The name of the rewriter. */
279 const char *pszName;
280} SCMREWRITERCFG;
281/** Pointer to a const rewriter config. */
282typedef SCMREWRITERCFG const *PCSCMREWRITERCFG;
283
284/** @} */
285
286
287/** @name Settings
288 * @{ */
289
290/**
291 * Configuration entry.
292 */
293typedef struct SCMCFGENTRY
294{
295 /** Number of rewriters. */
296 size_t cRewriters;
297 /** Pointer to an array of rewriters. */
298 PCSCMREWRITERCFG const *paRewriters;
299 /** Set if the entry handles binaries. */
300 bool fBinary;
301 /** File pattern (simple). */
302 const char *pszFilePattern;
303 /** Name (for treat as). */
304 const char *pszName;
305} SCMCFGENTRY;
306typedef SCMCFGENTRY *PSCMCFGENTRY;
307typedef SCMCFGENTRY const *PCSCMCFGENTRY;
308
309
310/** License update options. */
311typedef enum SCMLICENSE
312{
313 kScmLicense_LeaveAlone = 0, /**< Leave it alone. */
314 kScmLicense_OseGpl, /**< VBox OSE GPL if public. */
315 kScmLicense_OseDualGplCddl, /**< VBox OSE dual GPL & CDDL if public. */
316 kScmLicense_OseCddl, /**< VBox OSE CDDL if public. */
317 kScmLicense_Lgpl, /**< LGPL if public. */
318 kScmLicense_Mit, /**< MIT if public. */
319 kScmLicense_BasedOnMit, /**< Copyright us but based on someone else's MIT. */
320 kScmLicense_End
321} SCMLICENSE;
322
323/**
324 * Source Code Massager Settings.
325 */
326typedef struct SCMSETTINGSBASE
327{
328 bool fConvertEol;
329 bool fConvertTabs;
330 bool fForceFinalEol;
331 bool fForceTrailingLine;
332 bool fStripTrailingBlanks;
333 bool fStripTrailingLines;
334
335 /** Whether to fix C/C++ flower box section markers. */
336 bool fFixFlowerBoxMarkers;
337 /** The minimum number of blank lines we want before flowerbox markers. */
338 uint8_t cMinBlankLinesBeforeFlowerBoxMakers;
339
340 /** Whether to fix C/C++ header guards and \#pragma once directives. */
341 bool fFixHeaderGuards;
342 /** Whether to include a pragma once statement with the header guard. */
343 bool fPragmaOnce;
344 /** Whether to fix the \#endif part of a header guard. */
345 bool fFixHeaderGuardEndif;
346 /** Whether to add a comment on the \#endif part of the header guard. */
347 bool fEndifGuardComment;
348 /** The guard name prefix. */
349 char *pszGuardPrefix;
350 /** Header guards should be normalized using prefix and this directory.
351 * When NULL the guard identifiers found in the header is preserved. */
352 char *pszGuardRelativeToDir;
353
354 /** Whether to fix C/C++ todos. */
355 bool fFixTodos;
356 /** Whether to fix C/C++ err.h/errcore.h usage. */
357 bool fFixErrH;
358 /** No PAGE_SIZE, PAGE_SHIFT, PAGE_OFFSET_MASK allowed in C/C++, only the GUEST_
359 * or HOST_ prefixed versions. */
360 bool fOnlyGuestHostPage;
361 /** No ASMMemIsZeroPage or ASMMemZeroPage calls allowed (C/C++). */
362 bool fNoASMMemPageUse;
363
364 /** Update the copyright year. */
365 bool fUpdateCopyrightYear;
366 /** Only external copyright holders. */
367 bool fExternalCopyright;
368 /** Whether there should be a LGPL disclaimer. */
369 bool fLgplDisclaimer;
370 /** How to update the license. */
371 SCMLICENSE enmUpdateLicense;
372
373 /** Only process files that are part of a SVN working copy. */
374 bool fOnlySvnFiles;
375 /** Only recurse into directories containing an .svn dir. */
376 bool fOnlySvnDirs;
377 /** Set svn:eol-style if missing or incorrect. */
378 bool fSetSvnEol;
379 /** Set svn:executable according to type (unusually this means deleting it). */
380 bool fSetSvnExecutable;
381 /** Set svn:keyword if completely or partially missing. */
382 bool fSetSvnKeywords;
383 /** Skip checking svn:sync-process. */
384 bool fSkipSvnSyncProcess;
385 /** Skip the unicode checks. */
386 bool fSkipUnicodeChecks;
387 /** Tab size. */
388 uint8_t cchTab;
389 /** Optimal source code width. */
390 uint8_t cchWidth;
391 /** Free the treat as structure. */
392 bool fFreeTreatAs;
393 /** Prematched config entry. */
394 PCSCMCFGENTRY pTreatAs;
395 /** Only consider files matching these patterns. This is only applied to the
396 * base names. */
397 char *pszFilterFiles;
398 /** Filter out files matching the following patterns. This is applied to base
399 * names as well as the absolute paths. */
400 char *pszFilterOutFiles;
401 /** Filter out directories matching the following patterns. This is applied
402 * to base names as well as the absolute paths. All absolute paths ends with a
403 * slash and dot ("/."). */
404 char *pszFilterOutDirs;
405} SCMSETTINGSBASE;
406/** Pointer to massager settings. */
407typedef SCMSETTINGSBASE *PSCMSETTINGSBASE;
408
409/**
410 * File/dir pattern + options.
411 */
412typedef struct SCMPATRNOPTPAIR
413{
414 char *pszPattern;
415 char *pszOptions;
416 char *pszRelativeTo;
417 bool fMultiPattern;
418} SCMPATRNOPTPAIR;
419/** Pointer to a pattern + option pair. */
420typedef SCMPATRNOPTPAIR *PSCMPATRNOPTPAIR;
421
422
423/** Pointer to a settings set. */
424typedef struct SCMSETTINGS *PSCMSETTINGS;
425/**
426 * Settings set.
427 *
428 * This structure is constructed from the command line arguments or any
429 * .scm-settings file found in a directory we recurse into. When recursing in
430 * and out of a directory, we push and pop a settings set for it.
431 *
432 * The .scm-settings file has two kinds of setttings, first there are the
433 * unqualified base settings and then there are the settings which applies to a
434 * set of files or directories. The former are lines with command line options.
435 * For the latter, the options are preceded by a string pattern and a colon.
436 * The pattern specifies which files (and/or directories) the options applies
437 * to.
438 *
439 * We parse the base options into the Base member and put the others into the
440 * paPairs array.
441 */
442typedef struct SCMSETTINGS
443{
444 /** Pointer to the setting file below us in the stack. */
445 PSCMSETTINGS pDown;
446 /** Pointer to the setting file above us in the stack. */
447 PSCMSETTINGS pUp;
448 /** File/dir patterns and their options. */
449 PSCMPATRNOPTPAIR paPairs;
450 /** The number of entires in paPairs. */
451 uint32_t cPairs;
452 /** The base settings that was read out of the file. */
453 SCMSETTINGSBASE Base;
454} SCMSETTINGS;
455/** Pointer to a const settings set. */
456typedef SCMSETTINGS const *PCSCMSETTINGS;
457
458/** @} */
459
460
461void ScmVerboseBanner(PSCMRWSTATE pState, int iLevel);
462void ScmVerbose(PSCMRWSTATE pState, int iLevel, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
463bool ScmError(PSCMRWSTATE pState, int rc, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4);
464bool ScmFixManually(PSCMRWSTATE pState, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(2, 3);
465
466extern const char g_szTabSpaces[16+1];
467extern const char g_szAsterisks[255+1];
468extern const char g_szSpaces[255+1];
469extern uint32_t g_uYear;
470
471RT_C_DECLS_END
472
473#endif /* !VBOX_INCLUDED_SRC_bldprogs_scm_h */
474
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use