syncthing/lib/protocol/nativemodel_windows.go

35 lines
896 B
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
// +build windows
package protocol
// Windows uses backslashes as file separator
import "path/filepath"
2014-09-22 21:42:11 +02:00
type nativeModel struct {
Model
2014-09-22 21:42:11 +02:00
}
func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo) {
2015-07-09 23:38:21 +02:00
fixupFiles(folder, files)
m.Model.Index(deviceID, folder, files)
2014-09-22 21:42:11 +02:00
}
func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) {
2015-07-09 23:38:21 +02:00
fixupFiles(folder, files)
m.Model.IndexUpdate(deviceID, folder, files)
2014-09-22 21:42:11 +02:00
}
func (m nativeModel) Request(deviceID DeviceID, folder string, name string, offset int64, hash []byte, fromTemporary bool, buf []byte) error {
2014-09-22 21:42:11 +02:00
name = filepath.FromSlash(name)
return m.Model.Request(deviceID, folder, name, offset, hash, fromTemporary, buf)
2014-09-22 21:42:11 +02:00
}
2015-02-11 23:11:44 +01:00
2015-07-09 23:38:21 +02:00
func fixupFiles(folder string, files []FileInfo) {
for i := range files {
2015-02-11 23:11:44 +01:00
files[i].Name = filepath.FromSlash(files[i].Name)
}
}