forked from CustedNG/CustedNG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make.dart
executable file
·206 lines (179 loc) · 5.62 KB
/
make.dart
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#!/usr/bin/env dart
// ignore_for_file: avoid_print
/// 使用示例
/// `./make.dart build`编译Android、iOS
/// `./make.dart run profile`以profile模式运行
import 'dart:convert';
import 'dart:io';
const appName = 'CustedNG';
const buildDataFilePath = 'lib/res/build_data.dart';
const xcarchivePath = 'build/ios/archive/CustedNG.xcarchive';
const appleXCConfigPath = 'Runner.xcodeproj/project.pbxproj';
var regAppleProjectVer = RegExp(r'CURRENT_PROJECT_VERSION = .+;');
var regAppleMarketVer = RegExp(r'MARKETING_VERSION = .+');
const skslFileSuffix = '.sksl.json';
int build = 0;
final buildFuncs = {
'ios': flutterBuildIOS,
'android': flutterBuildAndroid,
};
Future<void> getGitCommitCount() async {
final result = await Process.run('git', ['log', '--oneline']);
build = (result.stdout as String)
.split('\n')
.where((line) => line.isNotEmpty)
.length;
}
Future<void> writeStaticConfigFile(
Map<String, dynamic> data, String className, String path) async {
final buffer = StringBuffer();
buffer.writeln('// This file is generated by ./make.dart');
buffer.writeln('');
buffer.writeln('class $className {');
for (var entry in data.entries) {
final type = entry.value.runtimeType;
final value = json.encode(entry.value);
buffer.writeln(' static const $type ${entry.key} = $value;');
}
buffer.writeln('}');
await File(path).writeAsString(buffer.toString());
}
Future<int> getGitModificationCount() async {
final result =
await Process.run('git', ['ls-files', '-mo', '--exclude-standard']);
return (result.stdout as String)
.split('\n')
.where((line) => line.isNotEmpty)
.length;
}
Future<Map<String, dynamic>> getBuildData() async {
final data = {
'name': appName,
'build': build,
'engine': '2.10.5',
'buildAt': DateTime.now().toString(),
'modifications': await getGitModificationCount(),
};
return data;
}
String jsonEncodeWithIndent(Map<String, dynamic> json) {
const encoder = JsonEncoder.withIndent(' ');
return encoder.convert(json);
}
Future<void> updateBuildData() async {
print('Updating BuildData...');
final data = await getBuildData();
print(jsonEncodeWithIndent(data));
await writeStaticConfigFile(data, 'BuildData', buildDataFilePath);
}
Future<void> dartFormat() async {
final result = await Process.run('dart', ['format', '.']);
print('\n' + result.stdout);
if (result.exitCode != 0) {
print(result.stderr);
exit(1);
}
}
void flutterRun(String mode) {
Process.start('flutter', ['run', mode == null ? '' : '--$mode'],
mode: ProcessStartMode.inheritStdio, runInShell: true);
}
Future<void> flutterBuild(String source, String target, bool isAndroid) async {
final args = [
'build',
isAndroid ? 'apk' : 'ipa',
'--target-platform=android-arm64',
'--build-number=$build',
'--build-name=1.0.$build',
'--bundle-sksl-path=${isAndroid ? 'android' : 'ios'}$skslFileSuffix',
];
if (!isAndroid) args.removeAt(3);
print('Building with args: ${args.join(' ')}');
final buildResult = await Process.run('flutter', args, runInShell: true);
final exitCode = buildResult.exitCode;
if (exitCode == 0) {
target = target.replaceFirst('build', build.toString());
print('Copying from $source to $target');
if (isAndroid) {
await File(source).copy(target);
} else {
final result = await Process.run('cp', ['-r', source, target]);
if (result.exitCode != 0) {
print(result.stderr);
exit(1);
}
}
print('Done.\n');
} else {
print(buildResult.stderr.toString());
print('\nBuild failed with exit code $exitCode');
exit(exitCode);
}
}
Future<void> flutterBuildIOS() async {
await changeAppleVersion();
await flutterBuild(
xcarchivePath, './release/${appName}_build.xcarchive', false);
}
Future<void> flutterBuildAndroid() async {
await flutterBuild('./build/app/outputs/flutter-apk/app-release.apk',
'./release/${appName}_build_Arm64.apk', true);
await killJava();
}
Future<void> changeAppleVersion() async {
for (final path in ['ios', 'macos']) {
final file = File('$path/$appleXCConfigPath');
final contents = await file.readAsString();
final newContents = contents
.replaceAll(regAppleMarketVer, 'MARKETING_VERSION = 1.0.$build;')
.replaceAll(regAppleProjectVer, 'CURRENT_PROJECT_VERSION = $build;');
await file.writeAsString(newContents);
}
}
Future<void> killJava() async {
final result = await Process.run('ps', ['-A']);
final lines = (result.stdout as String).split('\n');
for (final line in lines) {
if (line.contains('java')) {
final pid = line.split(' ')[0];
print('Killing java process: $pid');
await Process.run('kill', [pid]);
}
}
}
void main(List<String> args) async {
if (args.isEmpty) {
print('No action. Exit.');
return;
}
final command = args[0];
switch (command) {
case 'run':
return flutterRun(args.length == 2 ? args[1] : null);
case 'build':
await getGitCommitCount();
await dartFormat();
await updateBuildData();
final stopwatch = Stopwatch()..start();
if (args.length > 1) {
final platform = args[1];
if (buildFuncs.containsKey(platform)) {
await buildFuncs[platform]();
} else {
print('Unknown platform: $platform');
exit(1);
}
} else {
for (final func in buildFuncs.values) {
await func();
}
}
print('Build finished in ${stopwatch.elapsed}');
return;
case 'update-build':
return updateBuildData();
default:
print('Unsupported command: $command');
return;
}
}