-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathxcconfig-service.ts
82 lines (70 loc) · 2.41 KB
/
xcconfig-service.ts
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
import * as path from "path";
import { Configurations } from "../common/constants";
import { IXcconfigService } from "../declarations";
import {
IChildProcess,
IFileSystem,
IStringDictionary,
} from "../common/declarations";
import * as _ from "lodash";
import { injector } from "../common/yok";
export class XcconfigService implements IXcconfigService {
constructor(private $childProcess: IChildProcess, private $fs: IFileSystem) {}
public getPluginsXcconfigFilePaths(projectRoot: string): IStringDictionary {
return {
[Configurations.Debug.toLowerCase()]: this.getPluginsDebugXcconfigFilePath(
projectRoot
),
[Configurations.Release.toLowerCase()]: this.getPluginsReleaseXcconfigFilePath(
projectRoot
),
};
}
private getPluginsDebugXcconfigFilePath(projectRoot: string): string {
return path.join(projectRoot, "plugins-debug.xcconfig");
}
private getPluginsReleaseXcconfigFilePath(projectRoot: string): string {
return path.join(projectRoot, "plugins-release.xcconfig");
}
public async mergeFiles(
sourceFile: string,
destinationFile: string
): Promise<void> {
if (!this.$fs.exists(destinationFile)) {
this.$fs.writeFile(destinationFile, "");
}
const escapedDestinationFile = destinationFile.replace(/'/g, "\\'");
const escapedSourceFile = sourceFile.replace(/'/g, "\\'");
const mergeScript = `require 'xcodeproj'; Xcodeproj::Config.new('${escapedDestinationFile}').merge(Xcodeproj::Config.new('${escapedSourceFile}')).save_as(Pathname.new('${escapedDestinationFile}'))`;
await this.$childProcess.exec(`ruby -e "${mergeScript}"`);
}
public readPropertyValue(
xcconfigFilePath: string,
propertyName: string
): string {
if (this.$fs.exists(xcconfigFilePath)) {
const text = this.$fs.readText(xcconfigFilePath);
let property: string;
let isPropertyParsed: boolean = false;
text.split(/\r?\n/).forEach((line: string) => {
line = line.replace(/\/(\/)[^\n]*$/, "");
if (line.indexOf(propertyName) >= 0) {
const parts = line.split("=");
if (parts.length > 1 && parts[1]) {
property = parts[1].trim();
isPropertyParsed = true;
if (property[property.length - 1] === ";") {
property = property.slice(0, -1);
}
}
}
});
if (isPropertyParsed) {
// property can be an empty string, so we don't check for that.
return property;
}
}
return null;
}
}
injector.register("xcconfigService", XcconfigService);