forked from anacrolix/dms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
350 lines (324 loc) · 8.5 KB
/
main.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
package main
//go:generate go-bindata data/
import (
"bytes"
"encoding/json"
"flag"
"image"
"image/png"
"io"
"io/ioutil"
"log"
"net"
"os"
"os/signal"
"os/user"
"path/filepath"
"runtime"
"strings"
"sync"
"syscall"
"time"
"github.com/anacrolix/dms/dlna/dms"
"github.com/anacrolix/dms/rrcache"
"github.com/nfnt/resize"
)
type dmsConfig struct {
Path string
IfName string
Http string
FriendlyName string
DeviceIcon string
LogHeaders bool
FFprobeCachePath string
NoTranscode bool
ForceTranscodeTo string
NoProbe bool
StallEventSubscribe bool
NotifyInterval time.Duration
IgnoreHidden bool
IgnoreUnreadable bool
AllowedIpNets []*net.IPNet
}
func (config *dmsConfig) load(configPath string) {
file, err := os.Open(configPath)
if err != nil {
log.Printf("config error (config file: '%s'): %v\n", configPath, err)
return
}
defer file.Close()
decoder := json.NewDecoder(file)
err = decoder.Decode(&config)
if err != nil {
log.Printf("config error: %v\n", err)
return
}
}
//default config
var config = &dmsConfig{
Path: "",
IfName: "",
Http: ":1338",
FriendlyName: "",
DeviceIcon: "",
LogHeaders: false,
FFprobeCachePath: getDefaultFFprobeCachePath(),
ForceTranscodeTo: "",
}
func getDefaultFFprobeCachePath() (path string) {
_user, err := user.Current()
if err != nil {
log.Print(err)
return
}
path = filepath.Join(_user.HomeDir, ".dms-ffprobe-cache")
return
}
type fFprobeCache struct {
c *rrcache.RRCache
sync.Mutex
}
func (fc *fFprobeCache) Get(key interface{}) (value interface{}, ok bool) {
fc.Lock()
defer fc.Unlock()
return fc.c.Get(key)
}
func (fc *fFprobeCache) Set(key interface{}, value interface{}) {
fc.Lock()
defer fc.Unlock()
var size int64
for _, v := range []interface{}{key, value} {
b, err := json.Marshal(v)
if err != nil {
log.Printf("Could not marshal %v: %s", v, err)
continue
}
size += int64(len(b))
}
fc.c.Set(key, value, size)
}
func main() {
log.SetFlags(log.Ltime | log.Lshortfile)
path := flag.String("path", config.Path, "browse root path")
ifName := flag.String("ifname", config.IfName, "specific SSDP network interface")
http := flag.String("http", config.Http, "http server port")
friendlyName := flag.String("friendlyName", config.FriendlyName, "server friendly name")
deviceIcon := flag.String("deviceIcon", config.DeviceIcon, "device icon")
logHeaders := flag.Bool("logHeaders", config.LogHeaders, "log HTTP headers")
fFprobeCachePath := flag.String("fFprobeCachePath", config.FFprobeCachePath, "path to FFprobe cache file")
configFilePath := flag.String("config", "", "json configuration file")
allowedIps := flag.String("allowedIps", "", "allowed ip of clients, separated by comma")
forceTranscodeTo := flag.String("forceTranscodeTo", config.ForceTranscodeTo, "force transcoding to certain format, supported: 'chromecast', 'vp8', 'web'")
flag.BoolVar(&config.NoTranscode, "noTranscode", false, "disable transcoding")
flag.BoolVar(&config.NoProbe, "noProbe", false, "disable media probing with ffprobe")
flag.BoolVar(&config.StallEventSubscribe, "stallEventSubscribe", false, "workaround for some bad event subscribers")
flag.DurationVar(&config.NotifyInterval, "notifyInterval", 30*time.Second, "interval between SSPD announces")
flag.BoolVar(&config.IgnoreHidden, "ignoreHidden", false, "ignore hidden files and directories")
flag.BoolVar(&config.IgnoreUnreadable, "ignoreUnreadable", false, "ignore unreadable files and directories")
flag.Parse()
if flag.NArg() != 0 {
flag.Usage()
log.Fatalf("%s: %s\n", "unexpected positional arguments", flag.Args())
}
config.Path, _ = filepath.Abs(*path)
config.IfName = *ifName
config.Http = *http
config.FriendlyName = *friendlyName
config.DeviceIcon = *deviceIcon
config.LogHeaders = *logHeaders
config.FFprobeCachePath = *fFprobeCachePath
config.AllowedIpNets = makeIpNets(*allowedIps)
config.ForceTranscodeTo = *forceTranscodeTo
log.Printf("allowed ip nets are %q", config.AllowedIpNets)
log.Printf("serving folder %q", config.Path)
if len(*configFilePath) > 0 {
config.load(*configFilePath)
}
cache := &fFprobeCache{
c: rrcache.New(64 << 20),
}
if err := cache.load(config.FFprobeCachePath); err != nil {
log.Print(err)
}
dmsServer := &dms.Server{
Interfaces: func(ifName string) (ifs []net.Interface) {
var err error
if ifName == "" {
ifs, err = net.Interfaces()
} else {
var if_ *net.Interface
if_, err = net.InterfaceByName(ifName)
if if_ != nil {
ifs = append(ifs, *if_)
}
}
if err != nil {
log.Fatal(err)
}
var tmp []net.Interface
for _, if_ := range ifs {
if if_.Flags&net.FlagUp == 0 || if_.MTU <= 0 {
continue
}
tmp = append(tmp, if_)
}
ifs = tmp
return
}(config.IfName),
HTTPConn: func() net.Listener {
conn, err := net.Listen("tcp", config.Http)
if err != nil {
log.Fatal(err)
}
return conn
}(),
FriendlyName: config.FriendlyName,
RootObjectPath: filepath.Clean(config.Path),
FFProbeCache: cache,
LogHeaders: config.LogHeaders,
NoTranscode: config.NoTranscode,
ForceTranscodeTo: config.ForceTranscodeTo,
NoProbe: config.NoProbe,
Icons: []dms.Icon{
dms.Icon{
Width: 48,
Height: 48,
Depth: 8,
Mimetype: "image/png",
ReadSeeker: readIcon(config.DeviceIcon, 48),
},
dms.Icon{
Width: 128,
Height: 128,
Depth: 8,
Mimetype: "image/png",
ReadSeeker: readIcon(config.DeviceIcon, 128),
},
},
StallEventSubscribe: config.StallEventSubscribe,
NotifyInterval: config.NotifyInterval,
IgnoreHidden: config.IgnoreHidden,
IgnoreUnreadable: config.IgnoreUnreadable,
AllowedIpNets: config.AllowedIpNets,
}
if err := dmsServer.Init(); err != nil {
log.Fatalf("error initing dms server: %v", err)
}
go func() {
if err := dmsServer.Run(); err != nil {
log.Fatal(err)
}
}()
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, os.Interrupt, syscall.SIGTERM)
<-sigs
err := dmsServer.Close()
if err != nil {
log.Fatal(err)
}
if err := cache.save(config.FFprobeCachePath); err != nil {
log.Print(err)
}
}
func (cache *fFprobeCache) load(path string) error {
f, err := os.Open(path)
if err != nil {
return err
}
defer f.Close()
dec := json.NewDecoder(f)
var items []dms.FfprobeCacheItem
err = dec.Decode(&items)
if err != nil {
return err
}
for _, item := range items {
cache.Set(item.Key, item.Value)
}
log.Printf("added %d items from cache", len(items))
return nil
}
func (cache *fFprobeCache) save(path string) error {
cache.Lock()
items := cache.c.Items()
cache.Unlock()
f, err := ioutil.TempFile(filepath.Dir(path), filepath.Base(path))
if err != nil {
return err
}
enc := json.NewEncoder(f)
err = enc.Encode(items)
f.Close()
if err != nil {
os.Remove(f.Name())
return err
}
if runtime.GOOS == "windows" {
err = os.Remove(path)
if err == os.ErrNotExist {
err = nil
}
}
if err == nil {
err = os.Rename(f.Name(), path)
}
if err == nil {
log.Printf("saved cache with %d items", len(items))
} else {
os.Remove(f.Name())
}
return err
}
func getIconReader(path string) (io.ReadCloser, error) {
if path == "" {
return ioutil.NopCloser(bytes.NewReader(MustAsset("data/VGC Sonic.png"))), nil
}
return os.Open(path)
}
func readIcon(path string, size uint) *bytes.Reader {
r, err := getIconReader(path)
if err != nil {
panic(err)
}
defer r.Close()
imageData, _, err := image.Decode(r)
if err != nil {
panic(err)
}
return resizeImage(imageData, size)
}
func resizeImage(imageData image.Image, size uint) *bytes.Reader {
img := resize.Resize(size, size, imageData, resize.Lanczos3)
var buff bytes.Buffer
png.Encode(&buff, img)
return bytes.NewReader(buff.Bytes())
}
func makeIpNets(s string) []*net.IPNet {
var nets []*net.IPNet
if len(s) < 1 {
_, ipnet, _ := net.ParseCIDR("0.0.0.0/0")
nets = append(nets, ipnet)
_, ipnet, _ = net.ParseCIDR("0:0:0::/128")
nets = append(nets, ipnet)
} else {
for _, el := range strings.Split(s, ",") {
ip := net.ParseIP(el)
if ip == nil {
_, ipnet, err := net.ParseCIDR(el)
if err == nil {
nets = append(nets, ipnet)
} else {
log.Printf("unable to parse expression %q", el)
}
} else {
_, ipnet, err := net.ParseCIDR(el + "/32")
if err == nil {
nets = append(nets, ipnet)
} else {
log.Printf("unable to parse ip %q", el)
}
}
}
}
return nets
}