Skip to content

Commit 3d3a2be

Browse files
authored
Ability to use custom header prefix (#1389)
1 parent ad01b78 commit 3d3a2be

File tree

4 files changed

+38
-8
lines changed

4 files changed

+38
-8
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ Inside a project/package that uses this command plugin, right-click the project
204204
- `--cacheBasePath` - Base path to the cache directory. Can be overriden by the config file.
205205
- `--buildPath` - Path to directory used when building from .swifttemplate files. This defaults to system temp directory
206206
- `--hideVersionHeader` [default: false] - Stop adding the Sourcery version to the generated files headers.
207+
- `--headerPrefix` - Additional prefix for headers.
207208

208209
### Configuration file
209210

Sourcery/Sourcery.swift

+7-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ public class Sourcery {
5757
serialParse: Bool = false,
5858
hideVersionHeader: Bool = false,
5959
arguments: [String: NSObject] = [:],
60-
logConfiguration: Log.Configuration? = nil
60+
logConfiguration: Log.Configuration? = nil,
61+
headerPrefix: String? = nil
6162
) {
6263
self.verbose = verbose
6364
self.arguments = arguments
@@ -76,7 +77,11 @@ public class Sourcery {
7677
Log.setup(using: logConfiguration)
7778
}
7879

79-
var prefix = Sourcery.generationMarker
80+
var prefix = ""
81+
if let headerPrefix {
82+
prefix += headerPrefix + "\n"
83+
}
84+
prefix += Sourcery.generationMarker
8085
if !self.hideVersionHeader {
8186
prefix += " \(Sourcery.version)"
8287
}

SourceryExecutable/main.swift

+10-6
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,9 @@ func runCLI() {
118118
Option<Path>("ejsPath", default: "", description: "Path to EJS file for JavaScript templates."),
119119
Option<Path>("cacheBasePath", default: "", description: "Base path to Sourcery's cache directory"),
120120
Option<Path>("buildPath", default: "", description: "Sets a custom build path"),
121-
Flag("hideVersionHeader", description: "Do not include Sourcery version in the generated files headers.")
122-
) { watcherEnabled, disableCache, verboseLogging, logAST, logBenchmark, parseDocumentation, quiet, prune, serialParse, sources, excludeSources, templates, excludeTemplates, output, isDryRun, configPaths, forceParse, baseIndentation, args, ejsPath, cacheBasePath, buildPath, hideVersionHeader in
121+
Flag("hideVersionHeader", description: "Do not include Sourcery version in the generated files headers."),
122+
Option<String?>("headerPrefix", default: nil, description: "Additional prefix for headers.")
123+
) { watcherEnabled, disableCache, verboseLogging, logAST, logBenchmark, parseDocumentation, quiet, prune, serialParse, sources, excludeSources, templates, excludeTemplates, output, isDryRun, configPaths, forceParse, baseIndentation, args, ejsPath, cacheBasePath, buildPath, hideVersionHeader, headerPrefix in
123124
do {
124125
let logConfiguration = Log.Configuration(
125126
isDryRun: isDryRun,
@@ -206,7 +207,8 @@ func runCLI() {
206207
prune: prune,
207208
serialParse: serialParse,
208209
hideVersionHeader: hideVersionHeader,
209-
arguments: configuration.args)
210+
arguments: configuration.args,
211+
headerPrefix: headerPrefix)
210212

211213
if isDryRun, watcherEnabled {
212214
throw "--dry not compatible with --watch"
@@ -301,8 +303,9 @@ func runCLI() {
301303
"""),
302304
Option<Path>("cacheBasePath", default: "", description: "Base path to Sourcery's cache directory"),
303305
Option<Path>("buildPath", default: "", description: "Sets a custom build path"),
304-
Flag("hideVersionHeader", description: "Do not include Sourcery version in the generated files headers.")
305-
) { disableCache, verboseLogging, logAST, logBenchmark, parseDocumentation, quiet, prune, serialParse, sources, excludeSources, templates, excludeTemplates, output, isDryRun, configPaths, forceParse, baseIndentation, args, cacheBasePath, buildPath, hideVersionHeader in
306+
Flag("hideVersionHeader", description: "Do not include Sourcery version in the generated files headers."),
307+
Option<String?>("headerPrefix", default: nil, description: "Additional prefix for headers.")
308+
) { disableCache, verboseLogging, logAST, logBenchmark, parseDocumentation, quiet, prune, serialParse, sources, excludeSources, templates, excludeTemplates, output, isDryRun, configPaths, forceParse, baseIndentation, args, cacheBasePath, buildPath, hideVersionHeader, headerPrefix in
306309
do {
307310
let logConfiguration = Log.Configuration(
308311
isDryRun: isDryRun,
@@ -384,7 +387,8 @@ func runCLI() {
384387
prune: prune,
385388
serialParse: serialParse,
386389
hideVersionHeader: hideVersionHeader,
387-
arguments: configuration.args)
390+
arguments: configuration.args,
391+
headerPrefix: headerPrefix)
388392

389393
return try sourcery.processFiles(
390394
configuration.source,

SourceryTests/SourcerySpec.swift

+20
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,26 @@ class SourcerySpecTests: QuickSpec {
167167
}
168168
}
169169

170+
context("with custom header prefix") {
171+
beforeEach {
172+
expect { try Sourcery(watcherEnabled: false, cacheDisabled: true, hideVersionHeader: true, headerPrefix: "// swiftlint:disable all").processFiles(.sources(Paths(include: [sourcePath])), usingTemplates: Paths(include: [templatePath]), output: output, baseIndentation: 0) }.toNot(throwError())
173+
}
174+
it("removes version information from within generated template") {
175+
let expectedResult = """
176+
// swiftlint:disable all
177+
// Generated using Sourcery — https://github.com/krzysztofzablocki/Sourcery
178+
// DO NOT EDIT
179+
180+
// Line One
181+
"""
182+
183+
let generatedPath = outputDir + Sourcery().generatedPath(for: templatePath)
184+
185+
let result = try? generatedPath.read(.utf8)
186+
expect(result?.withoutWhitespaces).to(equal(expectedResult.withoutWhitespaces))
187+
}
188+
}
189+
170190
it("does not remove code from within generated template when missing origin") {
171191
update(code: """
172192
class Foo {

0 commit comments

Comments
 (0)