VirtualBox

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

Last change on this file since 67981 was 63559, checked in by vboxsync, 8 years ago

scm: massage @todo statements.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.2 KB
Line 
1/* $Id: scm.h 63559 2016-08-16 14:00:43Z vboxsync $ */
2/** @file
3 * IPRT Testcase / Tool - Source Code Massager.
4 */
5
6/*
7 * Copyright (C) 2010-2016 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
19#ifndef ___scm_h___
20#define ___scm_h___
21
22#include "scmstream.h"
23
24RT_C_DECLS_BEGIN
25
26/** Pointer to the rewriter state. */
27typedef struct SCMRWSTATE *PSCMRWSTATE;
28/** Pointer to const massager settings. */
29typedef struct SCMSETTINGSBASE const *PCSCMSETTINGSBASE;
30
31
32/** @name Subversion Access
33 * @{ */
34
35/**
36 * SVN property.
37 */
38typedef struct SCMSVNPROP
39{
40 /** The property. */
41 char *pszName;
42 /** The value.
43 * When used to record updates, this can be set to NULL to trigger the
44 * deletion of the property. */
45 char *pszValue;
46} SCMSVNPROP;
47/** Pointer to a SVN property. */
48typedef SCMSVNPROP *PSCMSVNPROP;
49/** Pointer to a const SVN property. */
50typedef SCMSVNPROP const *PCSCMSVNPROP;
51
52
53bool ScmSvnIsDirInWorkingCopy(const char *pszDir);
54bool ScmSvnIsInWorkingCopy(PSCMRWSTATE pState);
55int ScmSvnQueryProperty(PSCMRWSTATE pState, const char *pszName, char **ppszValue);
56int ScmSvnSetProperty(PSCMRWSTATE pState, const char *pszName, const char *pszValue);
57int ScmSvnDelProperty(PSCMRWSTATE pState, const char *pszName);
58int ScmSvnDisplayChanges(PSCMRWSTATE pState);
59int ScmSvnApplyChanges(PSCMRWSTATE pState);
60
61/** @} */
62
63
64/** @name Rewriters
65 * @{ */
66
67/**
68 * Rewriter state.
69 */
70typedef struct SCMRWSTATE
71{
72 /** The filename. */
73 const char *pszFilename;
74 /** Set after the printing the first verbose message about a file under
75 * rewrite. */
76 bool fFirst;
77 /** The number of SVN property changes. */
78 size_t cSvnPropChanges;
79 /** Pointer to an array of SVN property changes. */
80 struct SCMSVNPROP *paSvnPropChanges;
81} SCMRWSTATE;
82
83/**
84 * A rewriter.
85 *
86 * This works like a stream editor, reading @a pIn, modifying it and writing it
87 * to @a pOut.
88 *
89 * @returns true if any changes were made, false if not.
90 * @param pIn The input stream.
91 * @param pOut The output stream.
92 * @param pSettings The settings.
93 */
94typedef bool FNSCMREWRITER(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings);
95/** Pointer to a rewriter method. */
96typedef FNSCMREWRITER *PFNSCMREWRITER;
97
98FNSCMREWRITER rewrite_StripTrailingBlanks;
99FNSCMREWRITER rewrite_ExpandTabs;
100FNSCMREWRITER rewrite_ForceNativeEol;
101FNSCMREWRITER rewrite_ForceLF;
102FNSCMREWRITER rewrite_ForceCRLF;
103FNSCMREWRITER rewrite_AdjustTrailingLines;
104FNSCMREWRITER rewrite_SvnNoExecutable;
105FNSCMREWRITER rewrite_SvnKeywords;
106FNSCMREWRITER rewrite_Makefile_kup;
107FNSCMREWRITER rewrite_Makefile_kmk;
108FNSCMREWRITER rewrite_FixFlowerBoxMarkers;
109FNSCMREWRITER rewrite_Fix_C_and_CPP_Todos;
110FNSCMREWRITER rewrite_C_and_CPP;
111
112/** @} */
113
114
115/** @name Settings
116 * @{ */
117
118/**
119 * Configuration entry.
120 */
121typedef struct SCMCFGENTRY
122{
123 /** Number of rewriters. */
124 size_t cRewriters;
125 /** Pointer to an array of rewriters. */
126 PFNSCMREWRITER const *papfnRewriter;
127 /** File pattern (simple). */
128 const char *pszFilePattern;
129} SCMCFGENTRY;
130typedef SCMCFGENTRY *PSCMCFGENTRY;
131typedef SCMCFGENTRY const *PCSCMCFGENTRY;
132
133
134/**
135 * Source Code Massager Settings.
136 */
137typedef struct SCMSETTINGSBASE
138{
139 bool fConvertEol;
140 bool fConvertTabs;
141 bool fForceFinalEol;
142 bool fForceTrailingLine;
143 bool fStripTrailingBlanks;
144 bool fStripTrailingLines;
145
146 /** Whether to fix C/C++ flower box section markers. */
147 bool fFixFlowerBoxMarkers;
148 /** The minimum number of blank lines we want before flowerbox markers. */
149 uint8_t cMinBlankLinesBeforeFlowerBoxMakers;
150
151 /** Whether to fix C/C++ todos. */
152 bool fFixTodos;
153
154 /** Only process files that are part of a SVN working copy. */
155 bool fOnlySvnFiles;
156 /** Only recurse into directories containing an .svn dir. */
157 bool fOnlySvnDirs;
158 /** Set svn:eol-style if missing or incorrect. */
159 bool fSetSvnEol;
160 /** Set svn:executable according to type (unusually this means deleting it). */
161 bool fSetSvnExecutable;
162 /** Set svn:keyword if completely or partially missing. */
163 bool fSetSvnKeywords;
164 /** Tab size. */
165 uint8_t cchTab;
166 /** Optimal source code width. */
167 uint8_t cchWidth;
168 /** Only consider files matching these patterns. This is only applied to the
169 * base names. */
170 char *pszFilterFiles;
171 /** Filter out files matching the following patterns. This is applied to base
172 * names as well as the absolute paths. */
173 char *pszFilterOutFiles;
174 /** Filter out directories matching the following patterns. This is applied
175 * to base names as well as the absolute paths. All absolute paths ends with a
176 * slash and dot ("/."). */
177 char *pszFilterOutDirs;
178} SCMSETTINGSBASE;
179/** Pointer to massager settings. */
180typedef SCMSETTINGSBASE *PSCMSETTINGSBASE;
181
182/**
183 * File/dir pattern + options.
184 */
185typedef struct SCMPATRNOPTPAIR
186{
187 char *pszPattern;
188 char *pszOptions;
189} SCMPATRNOPTPAIR;
190/** Pointer to a pattern + option pair. */
191typedef SCMPATRNOPTPAIR *PSCMPATRNOPTPAIR;
192
193
194/** Pointer to a settings set. */
195typedef struct SCMSETTINGS *PSCMSETTINGS;
196/**
197 * Settings set.
198 *
199 * This structure is constructed from the command line arguments or any
200 * .scm-settings file found in a directory we recurse into. When recursing in
201 * and out of a directory, we push and pop a settings set for it.
202 *
203 * The .scm-settings file has two kinds of setttings, first there are the
204 * unqualified base settings and then there are the settings which applies to a
205 * set of files or directories. The former are lines with command line options.
206 * For the latter, the options are preceded by a string pattern and a colon.
207 * The pattern specifies which files (and/or directories) the options applies
208 * to.
209 *
210 * We parse the base options into the Base member and put the others into the
211 * paPairs array.
212 */
213typedef struct SCMSETTINGS
214{
215 /** Pointer to the setting file below us in the stack. */
216 PSCMSETTINGS pDown;
217 /** Pointer to the setting file above us in the stack. */
218 PSCMSETTINGS pUp;
219 /** File/dir patterns and their options. */
220 PSCMPATRNOPTPAIR paPairs;
221 /** The number of entires in paPairs. */
222 uint32_t cPairs;
223 /** The base settings that was read out of the file. */
224 SCMSETTINGSBASE Base;
225} SCMSETTINGS;
226/** Pointer to a const settings set. */
227typedef SCMSETTINGS const *PCSCMSETTINGS;
228
229/** @} */
230
231
232void ScmVerbose(PSCMRWSTATE pState, int iLevel, const char *pszFormat, ...);
233
234extern const char g_szTabSpaces[16+1];
235extern const char g_szAsterisks[255+1];
236extern const char g_szSpaces[255+1];
237
238RT_C_DECLS_END
239
240#endif
241
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use