forked from GetStream/stream-chat-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenerateSPMFileLists.swift
executable file
·84 lines (67 loc) · 2.99 KB
/
GenerateSPMFileLists.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//
// Copyright © 2024 Stream.io Inc. All rights reserved.
//
// This script is used to generate list of excluded source files for StreamChat and StreamChatUI in Package.swift.
// SPM currently doesn't support path expanding so we can't simply exlude files using placeholders like `*_Tests.swift`.
// ⚠️ After making changes to this file, you need to run the following command to compile it:
// $ arch -x86_64 swiftc Scripts/GenerateSPMFileLists.swift -o generateSPMFileLists
import Foundation
let generatedContentHeader = "// ** ⚠️ GENERATED, do not edit directly below this point **"
func sourceFileList(at url: URL) -> [String] {
var allFiles = [URL]()
let enumerator = FileManager.default.enumerator(
at: url,
includingPropertiesForKeys: [.isRegularFileKey],
options: [.skipsHiddenFiles, .skipsPackageDescendants]
)!
for case let fileURL as URL in enumerator {
let fileAttributes = try! fileURL.resourceValues(forKeys: [.isRegularFileKey])
if fileAttributes.isRegularFile! {
allFiles.append(fileURL)
}
}
let sourceFiles = allFiles
.map(\.path)
.map { path -> String in
// Remove base part of the path
let basePathRange = path.range(of: url.path + "/")!
return String(path[basePathRange.upperBound...])
}
.filter { $0.hasSuffix("_Tests.swift") || $0.hasSuffix("_Mock.swift") || $0.contains("__Snapshots__") }
return sourceFiles
}
// Generate new content
var newGeneratedContent = generatedContentHeader + "\n\n"
// StreamChat excluded source files
let streamChatSources = sourceFileList(at: URL(string: "Sources/StreamChat")!)
newGeneratedContent += "var streamChatSourcesExcluded: [String] { [\n"
for (idx, source) in streamChatSources.enumerated() {
newGeneratedContent += " \"\(source)\""
if idx == streamChatSources.endIndex - 1 {
newGeneratedContent += "\n"
} else {
newGeneratedContent += ",\n"
}
}
newGeneratedContent += "] }\n"
newGeneratedContent += "\n"
// StreamChatUI excluded source files
let streamChatUIExcludedFiles = sourceFileList(at: URL(string: "Sources/StreamChatUI")!)
newGeneratedContent += "var streamChatUIFilesExcluded: [String] { [\n"
for (idx, source) in streamChatUIExcludedFiles.enumerated() {
newGeneratedContent += " \"\(source)\""
if idx == streamChatUIExcludedFiles.endIndex - 1 {
newGeneratedContent += "\n"
} else {
newGeneratedContent += ",\n"
}
}
newGeneratedContent += "] }\n"
// Load Package.swift
let packageFileURL = URL(fileURLWithPath: "Package.swift")
var packageFileContent = String(data: try! Data(contentsOf: packageFileURL), encoding: .utf8)!
let generatedPartRange = packageFileContent.range(of: generatedContentHeader)!
packageFileContent.removeSubrange(generatedPartRange.lowerBound...)
packageFileContent += newGeneratedContent
// Write the changes back
try! packageFileContent.write(to: packageFileURL, atomically: true, encoding: String.Encoding.utf8)