forked from livekit/egress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
magefile.go
242 lines (213 loc) · 6.09 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
// Copyright 2023 LiveKit, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//go:build mage
package main
import (
"context"
"encoding/json"
"fmt"
"os"
"path"
"runtime"
"strings"
"github.com/livekit/mageutil"
)
const (
gstVersion = "1.22.8"
libniceVersion = "0.1.21"
chromiumVersion = "124.0.6367.201"
dockerBuild = "docker build"
dockerBuildX = "docker buildx build --push --platform linux/amd64,linux/arm64"
)
type packageInfo struct {
Dir string
}
func Proto() error {
ctx := context.Background()
fmt.Println("generating protobuf")
// parse go mod output
pkgOut, err := mageutil.Out(ctx, "go list -json -m github.com/livekit/protocol")
if err != nil {
return err
}
pi := packageInfo{}
if err = json.Unmarshal(pkgOut, &pi); err != nil {
return err
}
_, err = mageutil.GetToolPath("protoc")
if err != nil {
return err
}
protocGoPath, err := mageutil.GetToolPath("protoc-gen-go")
if err != nil {
return err
}
protocGrpcGoPath, err := mageutil.GetToolPath("protoc-gen-go-grpc")
if err != nil {
return err
}
// generate grpc-related protos
return mageutil.RunDir(ctx, "pkg/ipc", fmt.Sprintf(
"protoc"+
" --go_out ."+
" --go-grpc_out ."+
" --go_opt=paths=source_relative"+
" --go-grpc_opt=paths=source_relative"+
" --plugin=go=%s"+
" --plugin=go-grpc=%s"+
" -I%s -I=. ipc.proto",
protocGoPath, protocGrpcGoPath, pi.Dir+"/protobufs",
))
}
func Integration(configFile string) error {
if err := Deadlock(); err != nil {
return err
}
defer Dotfiles()
defer Sync()
dir, err := os.Getwd()
if err != nil {
return err
}
if configFile != "" {
if strings.HasPrefix(configFile, "test/") {
configFile = configFile[5:]
} else {
oldLocation := configFile
idx := strings.LastIndex(configFile, "/")
if idx != -1 {
configFile = configFile[idx+1:]
}
if err = os.Rename(oldLocation, "test/"+configFile); err != nil {
return err
}
}
configFile = "/out/" + configFile
}
defer func() {
// for some reason, these can't be deleted from within the docker container
files, _ := os.ReadDir("test/output")
for _, file := range files {
if file.IsDir() {
_ = os.RemoveAll(path.Join("test/output", file.Name()))
}
}
}()
return mageutil.Run(context.Background(),
"docker build -t egress-test -f build/test/Dockerfile .",
fmt.Sprintf("docker run --rm -e EGRESS_CONFIG_FILE=%s -v %s/test:/out egress-test", configFile, dir),
)
}
func Deadlock() error {
ctx := context.Background()
if err := mageutil.Run(ctx, "go get github.com/sasha-s/go-deadlock"); err != nil {
return err
}
if err := mageutil.Pipe("grep -rl sync.Mutex ./pkg", "xargs sed -i -e s/sync.Mutex/deadlock.Mutex/g"); err != nil {
return err
}
if err := mageutil.Pipe("grep -rl sync.RWMutex ./pkg", "xargs sed -i -e s/sync.RWMutex/deadlock.RWMutex/g"); err != nil {
return err
}
if err := mageutil.Pipe("grep -rl deadlock.Mutex\\|deadlock.RWMutex ./pkg", "xargs goimports -w"); err != nil {
return err
}
return mageutil.Run(ctx, "go mod tidy")
}
func Sync() error {
if err := mageutil.Pipe("grep -rl deadlock.Mutex ./pkg", "xargs sed -i -e s/deadlock.Mutex/sync.Mutex/g"); err != nil {
return err
}
if err := mageutil.Pipe("grep -rl deadlock.RWMutex ./pkg", "xargs sed -i -e s/deadlock.RWMutex/sync.RWMutex/g"); err != nil {
return err
}
if err := mageutil.Pipe("grep -rl sync.Mutex\\|sync.RWMutex ./pkg", "xargs goimports -w"); err != nil {
return err
}
return mageutil.Run(context.Background(), "go mod tidy")
}
func Build() error {
return mageutil.Run(context.Background(),
fmt.Sprintf("docker pull livekit/chrome-installer:%s", chromiumVersion),
fmt.Sprintf("docker pull livekit/gstreamer:%s-dev", gstVersion),
"docker pull livekit/egress-templates",
"docker build -t livekit/egress:latest -f build/egress/Dockerfile .",
)
}
func BuildChrome() error {
return mageutil.Run(context.Background(),
"docker pull ubuntu:22.04",
"docker build -t livekit/chrome-installer ./build/chrome",
)
}
func PublishChrome() error {
return mageutil.Run(context.Background(),
"docker pull ubuntu:22.04",
fmt.Sprintf(
"%s -t livekit/chrome-installer:%s ./build/chrome",
dockerBuildX, chromiumVersion,
),
)
}
func BuildTemplate() error {
return mageutil.Run(context.Background(),
"docker pull ubuntu:22.04",
"docker build -t livekit/egress-templates -f ./build/template/Dockerfile .",
)
}
func BuildGStreamer() error {
return buildGstreamer(dockerBuild)
}
func buildGstreamer(cmd string) error {
commands := []string{"docker pull ubuntu:23.10"}
for _, build := range []string{"base", "dev", "prod", "prod-rs"} {
commands = append(commands, fmt.Sprintf("%s"+
" --build-arg GSTREAMER_VERSION=%s"+
" --build-arg LIBNICE_VERSION=%s"+
" -t livekit/gstreamer:%s-%s"+
" -t livekit/gstreamer:%s-%s-%s"+
" -f build/gstreamer/Dockerfile-%s"+
" ./build/gstreamer",
cmd, gstVersion, libniceVersion, gstVersion, build, gstVersion, build, runtime.GOARCH, build,
))
}
return mageutil.Run(context.Background(), commands...)
}
func Dotfiles() error {
files, err := os.ReadDir("test/output")
if err != nil {
return err
}
dots := make(map[string]bool)
pngs := make(map[string]bool)
for _, file := range files {
name := file.Name()
if strings.HasSuffix(name, ".dot") {
dots[name[:len(name)-4]] = true
} else if strings.HasSuffix(file.Name(), ".png") {
pngs[name[:len(name)-4]] = true
}
}
for name := range dots {
if !pngs[name] {
if err := mageutil.Run(context.Background(), fmt.Sprintf(
"dot -Tpng test/output/%s.dot -o test/output/%s.png",
name, name,
)); err != nil {
return err
}
}
}
return nil
}