1 | /* $Id: scm.h 41966 2012-06-29 02:53:56Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase / Tool - Source Code Massager.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010-2012 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 |
|
---|
24 | RT_C_DECLS_BEGIN
|
---|
25 |
|
---|
26 | /** Pointer to the rewriter state. */
|
---|
27 | typedef struct SCMRWSTATE *PSCMRWSTATE;
|
---|
28 | /** Pointer to const massager settings. */
|
---|
29 | typedef struct SCMSETTINGSBASE const *PCSCMSETTINGSBASE;
|
---|
30 |
|
---|
31 |
|
---|
32 | /** @name Subversion Access
|
---|
33 | * @{ */
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * SVN property.
|
---|
37 | */
|
---|
38 | typedef 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. */
|
---|
48 | typedef SCMSVNPROP *PSCMSVNPROP;
|
---|
49 | /** Pointer to a const SVN property. */
|
---|
50 | typedef SCMSVNPROP const *PCSCMSVNPROP;
|
---|
51 |
|
---|
52 |
|
---|
53 | bool ScmSvnIsDirInWorkingCopy(const char *pszDir);
|
---|
54 | bool ScmSvnIsInWorkingCopy(PSCMRWSTATE pState);
|
---|
55 | int ScmSvnQueryProperty(PSCMRWSTATE pState, const char *pszName, char **ppszValue);
|
---|
56 | int ScmSvnSetProperty(PSCMRWSTATE pState, const char *pszName, const char *pszValue);
|
---|
57 | int ScmSvnDelProperty(PSCMRWSTATE pState, const char *pszName);
|
---|
58 | int ScmSvnDisplayChanges(PSCMRWSTATE pState);
|
---|
59 | int ScmSvnApplyChanges(PSCMRWSTATE pState);
|
---|
60 |
|
---|
61 | /** @} */
|
---|
62 |
|
---|
63 |
|
---|
64 | /** @name Rewriters
|
---|
65 | * @{ */
|
---|
66 |
|
---|
67 | /**
|
---|
68 | * Rewriter state.
|
---|
69 | */
|
---|
70 | typedef 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 | */
|
---|
94 | typedef bool FNSCMREWRITER(PSCMRWSTATE pState, PSCMSTREAM pIn, PSCMSTREAM pOut, PCSCMSETTINGSBASE pSettings);
|
---|
95 | /** Pointer to a rewriter method. */
|
---|
96 | typedef FNSCMREWRITER *PFNSCMREWRITER;
|
---|
97 |
|
---|
98 | FNSCMREWRITER rewrite_StripTrailingBlanks;
|
---|
99 | FNSCMREWRITER rewrite_ExpandTabs;
|
---|
100 | FNSCMREWRITER rewrite_ForceNativeEol;
|
---|
101 | FNSCMREWRITER rewrite_ForceLF;
|
---|
102 | FNSCMREWRITER rewrite_ForceCRLF;
|
---|
103 | FNSCMREWRITER rewrite_AdjustTrailingLines;
|
---|
104 | FNSCMREWRITER rewrite_SvnNoExecutable;
|
---|
105 | FNSCMREWRITER rewrite_SvnKeywords;
|
---|
106 | FNSCMREWRITER rewrite_Makefile_kup;
|
---|
107 | FNSCMREWRITER rewrite_Makefile_kmk;
|
---|
108 | FNSCMREWRITER rewrite_C_and_CPP;
|
---|
109 |
|
---|
110 | /** @} */
|
---|
111 |
|
---|
112 |
|
---|
113 | /** @name Settings
|
---|
114 | * @{ */
|
---|
115 |
|
---|
116 | /**
|
---|
117 | * Configuration entry.
|
---|
118 | */
|
---|
119 | typedef struct SCMCFGENTRY
|
---|
120 | {
|
---|
121 | /** Number of rewriters. */
|
---|
122 | size_t cRewriters;
|
---|
123 | /** Pointer to an array of rewriters. */
|
---|
124 | PFNSCMREWRITER const *papfnRewriter;
|
---|
125 | /** File pattern (simple). */
|
---|
126 | const char *pszFilePattern;
|
---|
127 | } SCMCFGENTRY;
|
---|
128 | typedef SCMCFGENTRY *PSCMCFGENTRY;
|
---|
129 | typedef SCMCFGENTRY const *PCSCMCFGENTRY;
|
---|
130 |
|
---|
131 |
|
---|
132 | /**
|
---|
133 | * Source Code Massager Settings.
|
---|
134 | */
|
---|
135 | typedef struct SCMSETTINGSBASE
|
---|
136 | {
|
---|
137 | bool fConvertEol;
|
---|
138 | bool fConvertTabs;
|
---|
139 | bool fForceFinalEol;
|
---|
140 | bool fForceTrailingLine;
|
---|
141 | bool fStripTrailingBlanks;
|
---|
142 | bool fStripTrailingLines;
|
---|
143 | /** Only process files that are part of a SVN working copy. */
|
---|
144 | bool fOnlySvnFiles;
|
---|
145 | /** Only recurse into directories containing an .svn dir. */
|
---|
146 | bool fOnlySvnDirs;
|
---|
147 | /** Set svn:eol-style if missing or incorrect. */
|
---|
148 | bool fSetSvnEol;
|
---|
149 | /** Set svn:executable according to type (unusually this means deleting it). */
|
---|
150 | bool fSetSvnExecutable;
|
---|
151 | /** Set svn:keyword if completely or partially missing. */
|
---|
152 | bool fSetSvnKeywords;
|
---|
153 | /** */
|
---|
154 | unsigned cchTab;
|
---|
155 | /** Only consider files matching these patterns. This is only applied to the
|
---|
156 | * base names. */
|
---|
157 | char *pszFilterFiles;
|
---|
158 | /** Filter out files matching the following patterns. This is applied to base
|
---|
159 | * names as well as the absolute paths. */
|
---|
160 | char *pszFilterOutFiles;
|
---|
161 | /** Filter out directories matching the following patterns. This is applied
|
---|
162 | * to base names as well as the absolute paths. All absolute paths ends with a
|
---|
163 | * slash and dot ("/."). */
|
---|
164 | char *pszFilterOutDirs;
|
---|
165 | } SCMSETTINGSBASE;
|
---|
166 | /** Pointer to massager settings. */
|
---|
167 | typedef SCMSETTINGSBASE *PSCMSETTINGSBASE;
|
---|
168 |
|
---|
169 | /**
|
---|
170 | * File/dir pattern + options.
|
---|
171 | */
|
---|
172 | typedef struct SCMPATRNOPTPAIR
|
---|
173 | {
|
---|
174 | char *pszPattern;
|
---|
175 | char *pszOptions;
|
---|
176 | } SCMPATRNOPTPAIR;
|
---|
177 | /** Pointer to a pattern + option pair. */
|
---|
178 | typedef SCMPATRNOPTPAIR *PSCMPATRNOPTPAIR;
|
---|
179 |
|
---|
180 |
|
---|
181 | /** Pointer to a settings set. */
|
---|
182 | typedef struct SCMSETTINGS *PSCMSETTINGS;
|
---|
183 | /**
|
---|
184 | * Settings set.
|
---|
185 | *
|
---|
186 | * This structure is constructed from the command line arguments or any
|
---|
187 | * .scm-settings file found in a directory we recurse into. When recursing in
|
---|
188 | * and out of a directory, we push and pop a settings set for it.
|
---|
189 | *
|
---|
190 | * The .scm-settings file has two kinds of setttings, first there are the
|
---|
191 | * unqualified base settings and then there are the settings which applies to a
|
---|
192 | * set of files or directories. The former are lines with command line options.
|
---|
193 | * For the latter, the options are preceded by a string pattern and a colon.
|
---|
194 | * The pattern specifies which files (and/or directories) the options applies
|
---|
195 | * to.
|
---|
196 | *
|
---|
197 | * We parse the base options into the Base member and put the others into the
|
---|
198 | * paPairs array.
|
---|
199 | */
|
---|
200 | typedef struct SCMSETTINGS
|
---|
201 | {
|
---|
202 | /** Pointer to the setting file below us in the stack. */
|
---|
203 | PSCMSETTINGS pDown;
|
---|
204 | /** Pointer to the setting file above us in the stack. */
|
---|
205 | PSCMSETTINGS pUp;
|
---|
206 | /** File/dir patterns and their options. */
|
---|
207 | PSCMPATRNOPTPAIR paPairs;
|
---|
208 | /** The number of entires in paPairs. */
|
---|
209 | uint32_t cPairs;
|
---|
210 | /** The base settings that was read out of the file. */
|
---|
211 | SCMSETTINGSBASE Base;
|
---|
212 | } SCMSETTINGS;
|
---|
213 | /** Pointer to a const settings set. */
|
---|
214 | typedef SCMSETTINGS const *PCSCMSETTINGS;
|
---|
215 |
|
---|
216 | /** @} */
|
---|
217 |
|
---|
218 |
|
---|
219 | void ScmVerbose(PSCMRWSTATE pState, int iLevel, const char *pszFormat, ...);
|
---|
220 |
|
---|
221 | extern const char g_szTabSpaces[16+1];
|
---|
222 |
|
---|
223 | RT_C_DECLS_END
|
---|
224 |
|
---|
225 | #endif
|
---|
226 |
|
---|