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
|
package main
import (
"bilibili-livestream-archiver/common"
"bilibili-livestream-archiver/recording"
"context"
"fmt"
"github.com/akamensky/argparse"
"github.com/spf13/viper"
"log"
"os"
"os/signal"
"sync"
"syscall"
)
var globalConfig *GlobalConfig
func getTasks() (tasks []recording.TaskConfig) {
var err error
parser := argparse.NewParser(
"slbr",
"Record bilibili live streams",
)
defer func() {
if err != nil {
fmt.Printf("ERROR: %v.\n", err)
fmt.Print(parser.Usage(""))
os.Exit(0)
}
}()
configFilePtr := parser.String(
"c", "config",
&argparse.Options{
Required: false,
Help: "Specify which configuration file to use. JSON, TOML and YAML are all supported.",
},
)
rooms := parser.IntList(
"s", "room",
&argparse.Options{
Required: false,
Help: "The room id to record. Set this to run without config file",
},
)
saveToPtr := parser.String(
"o", "save-to",
&argparse.Options{
Required: false,
Help: "Specify which configuration file to use",
Default: ".",
},
)
diskBufSizePtr := parser.Int(
"b", "disk-write-buffer",
&argparse.Options{
Required: false,
Help: "Specify disk write buffer size (bytes). The real minimum buffer size is determined by OS.",
Default: -1,
},
)
err = parser.Parse(os.Args)
if err != nil {
return
}
fromCli := len(*rooms) > 0
fromFile := *configFilePtr != ""
if fromCli == fromFile {
err = fmt.Errorf("cannot specify room id argument and config file at the same time")
return
}
if !fromCli && !fromFile {
err = fmt.Errorf("no task specified")
return
}
if fromFile {
configFile := *configFilePtr
fmt.Printf("Config file: %v\n", configFile)
viper.SetConfigFile(configFile)
err = viper.ReadInConfig()
if err != nil {
err = fmt.Errorf("cannot open config file \"%v\": %w", configFile, err)
return
}
if err != nil {
err = fmt.Errorf("cannot read config file \"%v\": %w", configFile, err)
return
}
var gc GlobalConfig
err = viper.Unmarshal(&gc)
if err != nil {
err = fmt.Errorf("cannot parse config file \"%v\": %w", configFile, err)
return
}
globalConfig = &gc
return globalConfig.Tasks
}
// generate task list from cli
taskCount := len(*rooms)
tasks = make([]recording.TaskConfig, taskCount)
saveTo := *saveToPtr
diskBufSize := *diskBufSizePtr
for i := 0; i < taskCount; i++ {
tasks[i] = recording.TaskConfig{
RoomId: common.RoomId((*rooms)[i]),
Transport: recording.DefaultTransportConfig(),
Download: recording.DownloadConfig{
DiskWriteBufferBytes: diskBufSize,
SaveDirectory: saveTo,
},
}
}
return
}
func main() {
tasks := getTasks()
fmt.Println("Record tasks:")
for i, task := range tasks {
fmt.Printf("[%2d] %s\n", i+1, task)
}
fmt.Println("")
logger := log.Default()
logger.Printf("Starting tasks...")
wg := sync.WaitGroup{}
defer func() {
wg.Wait()
logger.Println("Stopping YABR...")
}()
ctx, cancelTasks := context.WithCancel(context.Background())
for _, task := range tasks {
wg.Add(1)
go recording.RunTask(ctx, &wg, &task)
}
// listen on stop signals
chSigStop := make(chan os.Signal)
signal.Notify(chSigStop,
syscall.SIGHUP,
syscall.SIGINT,
syscall.SIGTERM)
go func() {
<-chSigStop
cancelTasks()
}()
chSigQuit := make(chan os.Signal)
signal.Notify(chSigQuit, syscall.SIGQUIT)
go func() {
<-chSigQuit
os.Exit(0)
}()
// block main goroutine on task goroutines
wg.Wait()
}
|