syncthing/wireformat.go

57 lines
1.2 KiB
Go
Raw Normal View History

2015-01-13 13:31:14 +01:00
// Copyright (C) 2014 The Protocol Authors.
2014-09-22 21:42:11 +02:00
package protocol
import (
"path/filepath"
"golang.org/x/text/unicode/norm"
2014-09-22 21:42:11 +02:00
)
type wireFormatConnection struct {
next Connection
}
func (c wireFormatConnection) ID() DeviceID {
2014-09-22 21:42:11 +02:00
return c.next.ID()
}
func (c wireFormatConnection) Name() string {
return c.next.Name()
}
func (c wireFormatConnection) Index(folder string, fs []FileInfo) error {
2014-09-22 21:42:11 +02:00
var myFs = make([]FileInfo, len(fs))
copy(myFs, fs)
for i := range fs {
myFs[i].Name = norm.NFC.String(filepath.ToSlash(myFs[i].Name))
}
return c.next.Index(folder, myFs)
2014-09-22 21:42:11 +02:00
}
func (c wireFormatConnection) IndexUpdate(folder string, fs []FileInfo) error {
2014-09-22 21:42:11 +02:00
var myFs = make([]FileInfo, len(fs))
copy(myFs, fs)
for i := range fs {
myFs[i].Name = norm.NFC.String(filepath.ToSlash(myFs[i].Name))
}
return c.next.IndexUpdate(folder, myFs)
2014-09-22 21:42:11 +02:00
}
func (c wireFormatConnection) Request(folder, name string, offset int64, size int) ([]byte, error) {
2014-09-22 21:42:11 +02:00
name = norm.NFC.String(filepath.ToSlash(name))
return c.next.Request(folder, name, offset, size)
2014-09-22 21:42:11 +02:00
}
func (c wireFormatConnection) ClusterConfig(config ClusterConfigMessage) {
c.next.ClusterConfig(config)
}
func (c wireFormatConnection) Statistics() Statistics {
return c.next.Statistics()
}