-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathmagefile.go
595 lines (483 loc) · 13.4 KB
/
magefile.go
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
//go:build mage
// +build mage
package main
import (
"fmt"
"go/build"
"log"
"os"
"os/exec"
"path/filepath"
"regexp"
"runtime"
"strings"
)
var Default = InstallDepend
var Aliases = map[string]any{
"go": GenGo,
"java": GenJava,
"kotlin": GenKotlin,
"csharp": GenCSharp,
"js": GenJavaScript,
"ts": GenTypeScript,
"swift": GenSwift,
"dep": InstallDepend,
"m:go": Meeting.GenGo,
"m:java": Meeting.GenJava,
"m:kotlin": Meeting.GenKotlin,
"m:csharp": Meeting.GenCSharp,
"m:js": Meeting.GenJavaScript,
"m:ts": Meeting.GenTypeScript,
"m:swift": Meeting.GenSwift,
}
// Langeuage target
// Define output directories for each target language
const (
GO = "go"
JAVA = "java"
CSharp = "csharp"
Kotlin = "kotlin"
JS = "js"
TS = "ts"
RS = "rust"
SWIFT = "swift"
)
var protoModules = []string{
"auth",
"conversation",
"errinfo",
"group",
"jssdk",
"msg",
"msggateway",
"push",
"relation",
"rtc",
"sdkws",
"third",
"user",
"wrapperspb",
}
// install proto plugin
func InstallDepend() error {
log.SetOutput(os.Stdout)
// log.SetFlags(log.Lshortfile)
// log.Println("installing protoc-gen-go and protoc-gen-go-grpc")
log.Println("installing protobuf dependencies in Go.")
cmds := [][]string{
{"install", "google.golang.org/protobuf/cmd/protoc-gen-go@latest"},
{"install", "google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest"},
}
for _, cmdArgs := range cmds {
cmd := exec.Command("go", cmdArgs...)
// log.Println("running command:", "go", cmdArgs)
connectStd(cmd)
if err := cmd.Run(); err != nil {
log.Printf("command %v error: %v", cmdArgs, err)
return err
}
}
return nil
}
func GenDocs() error {
log.SetOutput(os.Stdout)
log.SetFlags(log.Lshortfile)
log.Println("Generating documentation from proto files")
protoc, err := getToolPath("protoc")
if err != nil {
return err
}
docsOutDir := filepath.Join(".", "docs")
for _, module := range protoModules {
if err := os.MkdirAll(filepath.Join(docsOutDir, module), 0755); err != nil {
return err
}
args := []string{
// "--doc_out=" + filepath.Join(docsOutDir, module),
"--doc_out=" + filepath.Join(docsOutDir),
"--doc_opt=markdown," + strings.Join([]string{module, "md"}, "."),
filepath.Join(module, module) + ".proto",
}
// log.Println(protoc, args)
cmd := exec.Command(protoc, args...)
connectStd(cmd)
if err := cmd.Run(); err != nil {
log.Printf("Error generating documentation for module %s: %v\n", module, err)
continue
}
}
return nil
}
// Generate code for all languages (Go, Java, C#, JS, TS) from protobuf files.
func AllProtobuf() error {
if err := GenGo(); err != nil {
return err
}
if err := GenJava(); err != nil {
return err
}
if err := GenCSharp(); err != nil {
return err
}
if err := GenJavaScript(); err != nil {
return err
}
if err := GenTypeScript(); err != nil {
return err
}
return nil
}
// Generate Go code from protobuf files.
func GenGo() error {
log.SetOutput(os.Stdout)
// log.SetFlags(log.Lshortfile)
log.Println("Generating Go code from proto files")
// goOutDir := filepath.Join(protoDir, GO)
protoc, err := getToolPath("protoc")
if err != nil {
return err
}
for _, module := range protoModules {
args := []string{
// "--proto_path=" + filepath.Join(".", module),
"--go_out=" + filepath.Join(".", module),
"--go-grpc_out=" + filepath.Join(".", module),
"--go_opt=module=github.com/openimsdk/protocol/" + strings.Join([]string{module}, "/"),
"--go-grpc_opt=module=github.com/openimsdk/protocol/" + strings.Join([]string{module}, "/"),
filepath.Join(module, module) + ".proto",
}
// log.Println("protoc args", args)
cmd := exec.Command(protoc, args...)
connectStd(cmd)
if err := cmd.Run(); err != nil {
log.Printf("Error generating Go code for module %s: %v\n", module, err)
continue
}
}
if err := removeOmitemptyTags(); err != nil {
log.Println("Remove Omitempty is Error", err)
return err
} else {
log.Println("Remove Omitempty is Success")
}
return nil
}
// Generate Java code from protobuf files.
func GenJava() error {
log.SetOutput(os.Stdout)
// log.SetFlags(log.Lshortfile)
log.Println("Generating Java code from proto files")
protoc, err := getToolPath("protoc")
if err != nil {
return err
}
for _, module := range protoModules {
javaOutDir := filepath.Join(".", module, JAVA)
if err := os.MkdirAll(javaOutDir, 0755); err != nil {
return err
}
args := []string{
"--java_out=lite:" + javaOutDir,
filepath.Join(module, module) + ".proto",
}
log.Println(javaOutDir)
cmd := exec.Command(protoc, args...)
connectStd(cmd)
if err := cmd.Run(); err != nil {
log.Printf("Error generating Java code for module %s: %v\n", module, err)
continue
}
}
return nil
}
// Generate Kotlin code from protobuf files.
func GenKotlin() error {
log.SetOutput(os.Stdout)
// log.SetFlags(log.Lshortfile)
log.Println("Generating Kotlin code from proto files")
protoc, err := getToolPath("protoc")
if err != nil {
return err
}
for _, module := range protoModules {
kotlinOutDir := filepath.Join(".", module, Kotlin)
if err := os.MkdirAll(kotlinOutDir, 0755); err != nil {
return err
}
args := []string{
"--kotlin_out=" + kotlinOutDir,
filepath.Join(module, module) + ".proto",
}
cmd := exec.Command(protoc, args...)
connectStd(cmd)
if err := cmd.Run(); err != nil {
log.Printf("Error generating Kotlin code for module %s: %v\n", module, err)
continue
}
}
return nil
}
// Generate C# code from protobuf files.
func GenCSharp() error {
log.SetOutput(os.Stdout)
// log.SetFlags(log.Lshortfile)
log.Println("Generating C# code from proto files")
protoc, err := getToolPath("protoc")
if err != nil {
return err
}
for _, module := range protoModules {
csharpOutDir := filepath.Join(".", module, CSharp)
if err := os.MkdirAll(csharpOutDir, 0755); err != nil {
return err
}
args := []string{
"--csharp_out=" + csharpOutDir,
filepath.Join(module, module) + ".proto",
}
cmd := exec.Command(protoc, args...)
connectStd(cmd)
if err := cmd.Run(); err != nil {
log.Printf("Error generating C# code for module %s: %v\n", module, err)
continue
}
}
return nil
}
func GenJavaScript() error {
log.SetOutput(os.Stdout)
// log.SetFlags(log.Lshortfile)
log.Println("Generating JavaScript code from proto files")
protoc, err := getToolPath("protoc")
if err != nil {
return err
}
jsDir := filepath.Join(".", "pb", "js")
args := []string{
"--js_out=import_style=commonjs,binary:" + jsDir,
}
if err := os.MkdirAll(jsDir, 0755); err != nil {
return err
}
for _, module := range protoModules {
jsOutDir := filepath.Join(".", module, JS)
if err := os.MkdirAll(jsOutDir, 0755); err != nil {
return err
}
args = append(args,
filepath.Join(module, module)+".proto")
}
cmd := exec.Command(protoc, args...)
connectStd(cmd)
if err := cmd.Run(); err != nil {
// log.Printf("Error generating JS code for module %s: %v\n", module, err)
log.Panicf("Error generating JS code: %v\n", err)
// continue
}
return nil
}
// Need to install `ts-proto`.
// Generate TypeScript code from protobuf files.
func GenTypeScript() error {
log.SetOutput(os.Stdout)
log.SetFlags(log.Lshortfile)
log.Println("Generating TypeScript code from proto files")
protoc, err := getToolPath("protoc")
if err != nil {
return err
}
tsProto := filepath.Join(".", "node_modules", ".bin", "protoc-gen-ts_proto")
if runtime.GOOS == "windows" {
tsProto = filepath.Join(".", "node_modules", ".bin", "protoc-gen-ts_proto.cmd")
}
if _, err := os.Stat(tsProto); err != nil {
log.Println("tsProto Not Found. Error: ", err, " tsProto Path: ", tsProto)
return err
}
for _, module := range protoModules {
// tsOutDir := filepath.Join(".", module, TS)
tsOutDir := filepath.Join("pb", TS)
if err := os.MkdirAll(tsOutDir, 0755); err != nil {
return err
}
args := []string{
"--plugin=protoc-gen-ts_proto=" + tsProto,
"--ts_proto_opt=messages=true,outputJsonMethods=false,outputPartialMethods=false,outputClientImpl=false,outputEncodeMethods=false,useOptionals=messages",
"--ts_proto_out=" + tsOutDir,
filepath.Join(module, module) + ".proto",
}
cmd := exec.Command(protoc, args...)
connectStd(cmd)
if err := cmd.Run(); err != nil {
log.Printf("Error generating TypeScript code for module %s: %v\n", module, err)
continue
}
}
return nil
}
// Generate Swift code from protobuf files.
func GenSwift() error {
// Configure logging
log.SetOutput(os.Stdout)
// log.SetFlags(log.Lshortfile)
log.Println("Generating Swift code from proto files")
// Find protoc and Swift plugin paths
protoc, err := getToolPath("protoc")
if err != nil {
return err
}
// Iterate over proto modules to generate Swift code
for _, module := range protoModules {
swiftOutDir := filepath.Join(".", module, SWIFT)
modulePath := filepath.Join(module, module+".proto")
// Ensure the output directory for the module exists
if err := os.MkdirAll(swiftOutDir, 0755); err != nil {
return err
}
// Prepare protoc command
args := []string{
"--swift_out=" + swiftOutDir,
"--swift_opt=Visibility=" + "Public",
modulePath,
}
cmd := exec.Command(protoc, args...)
connectStd(cmd) // Connect command's output to standard output for logging
// Run the command and handle errors
if err := cmd.Run(); err != nil {
log.Printf("Error generating Swift code for module %s: %v\n", module, err)
continue
}
log.Printf("Successfully generated Swift code for module %s\n", module)
}
return nil
}
// Generate Harmony JavaScript code from protobuf files.
// Note: please install pbjs and pbts command first
// Reference Link: https://ohpm.openharmony.cn/#/cn/detail/@ohos%2Fprotobufjs
func GenHarmonyTS() error {
log.SetOutput(os.Stdout)
log.SetFlags(log.Lshortfile)
log.Println("Generating Harmony TypeScript code from proto files")
// Generate js
outJSFile := "proto.js"
args := []string{
"-t", "static-module",
"-w", "es6",
"-o", outJSFile}
for _, module := range protoModules {
protoFile := filepath.Join(module, module) + ".proto"
args = append(args, protoFile)
}
jscmd := exec.Command("pbjs", args...)
jscmd.Env = os.Environ()
connectStd(jscmd)
log.Println("Running harmony js command", jscmd.String())
if err := jscmd.Run(); err != nil {
log.Printf("Error generating Harmony JS code: %v\n", err)
}
// Generate ts definition
outTSDefFile := "proto.d.ts"
tscmd := exec.Command("pbts",
outJSFile,
"-o", outTSDefFile,
)
tscmd.Env = os.Environ()
connectStd(tscmd)
log.Println("Running harmony ts command", tscmd.String())
if err := tscmd.Run(); err != nil {
log.Printf("Error generating Harmony TS code: %v\n", err)
}
// Modify the generated files
// 1
replaceStr := func(filePath, oldStr, newStr string) {
content, err := os.ReadFile(filePath)
if err != nil {
log.Panic("failed to read file: %w", err)
}
originalContent := string(content)
modifiedContent := strings.Replace(originalContent, oldStr, newStr, 1) // 只替换一次
if originalContent == modifiedContent {
return
}
err = os.WriteFile(filePath, []byte(modifiedContent), 0644)
if err != nil {
log.Panic("failed to write file: %w", err)
}
}
replaceStr(outJSFile, "import * as $protobuf from \"protobufjs/minimal\";", "import { index } from \"@ohos/protobufjs\"; \nconst $protobuf = index; \n import Long from 'long';\n$protobuf.util.Long=Long \n$protobuf.configure()")
replaceStr(outTSDefFile, "import * as $protobuf from \"protobufjs\";\nimport Long = require(\"long\");", "import * as $protobuf from \"@ohos/protobufjs\"\nimport Long from 'long';")
return nil
}
// ------------------
func connectStd(cmd *exec.Cmd) {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
}
func getWorkDirToolPath(name string) string {
toolPath := ""
workDir, err := os.Getwd()
if err != nil {
log.Println("Error", err)
return toolPath
}
toolsPath := filepath.Join(workDir, "tools")
filepath.Walk(toolsPath, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if strings.TrimSuffix(info.Name(), filepath.Ext(info.Name())) == name {
toolPath = path
}
return nil
})
return toolPath
}
func getToolPath(name string) (string, error) {
// Get in work dir.
toolPath := getWorkDirToolPath(name)
if toolPath != "" {
return toolPath, nil
}
// Get in env path.
if p, err := exec.LookPath(name); err == nil {
return p, nil
}
// check under gopath
gopath := os.Getenv("GOPATH")
if gopath == "" {
gopath = build.Default.GOPATH
}
p := filepath.Join(gopath, "bin", name)
if _, err := os.Stat(p); err != nil {
return "", err
}
return p, nil
}
func removeOmitemptyTags() error {
// protoGoDir := filepath.Join(protoDir, GO) // "./proto/go"
re := regexp.MustCompile(`,\s*omitempty`)
return filepath.Walk(".", func(path string, info os.FileInfo, err error) error {
if err != nil {
fmt.Println("access path error:", err)
return err
}
if !info.IsDir() && strings.HasSuffix(path, ".pb.go") {
input, err := os.ReadFile(path)
if err != nil {
fmt.Println("ReadFile error. Path: %s, Error %v", path, err)
return err
}
output := re.ReplaceAllString(string(input), "")
// check replace is happened
if string(input) != output {
err = os.WriteFile(path, []byte(output), info.Mode())
if err != nil {
fmt.Printf("Error writing file: %s, error: %v\n", path, err)
return err
}
// fmt.Println("Modified file:", path)
}
}
return nil
})
}