mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 23:00:58 +00:00
fa0101bd60
This changes the BEP protocol to use protocol buffer serialization instead of XDR, and therefore also the database format. The local discovery protocol is also updated to be protocol buffer format. GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3276 LGTM: AudriusButkevicius
56 lines
1.5 KiB
Go
56 lines
1.5 KiB
Go
// Copyright (C) 2014 The Protocol Authors.
|
|
|
|
// +build windows
|
|
|
|
package protocol
|
|
|
|
// Windows uses backslashes as file separator and disallows a bunch of
|
|
// characters in the filename
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
var disallowedCharacters = string([]rune{
|
|
'<', '>', ':', '"', '|', '?', '*',
|
|
0, 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,
|
|
})
|
|
|
|
type nativeModel struct {
|
|
Model
|
|
}
|
|
|
|
func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo) {
|
|
fixupFiles(folder, files)
|
|
m.Model.Index(deviceID, folder, files)
|
|
}
|
|
|
|
func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) {
|
|
fixupFiles(folder, files)
|
|
m.Model.IndexUpdate(deviceID, folder, files)
|
|
}
|
|
|
|
func (m nativeModel) Request(deviceID DeviceID, folder string, name string, offset int64, hash []byte, fromTemporary bool, buf []byte) error {
|
|
name = filepath.FromSlash(name)
|
|
return m.Model.Request(deviceID, folder, name, offset, hash, fromTemporary, buf)
|
|
}
|
|
|
|
func fixupFiles(folder string, files []FileInfo) {
|
|
for i, f := range files {
|
|
if strings.ContainsAny(f.Name, disallowedCharacters) {
|
|
if f.IsDeleted() {
|
|
// Don't complain if the file is marked as deleted, since it
|
|
// can't possibly exist here anyway.
|
|
continue
|
|
}
|
|
files[i].Invalid = true
|
|
l.Warnf("File name %q (folder %q) contains invalid characters; marked as invalid.", f.Name, folder)
|
|
}
|
|
files[i].Name = filepath.FromSlash(files[i].Name)
|
|
}
|
|
}
|