syncthing/lib/protocol/nativemodel_darwin.go

33 lines
945 B
Go
Raw Normal View History

2015-01-13 12:31:14 +00:00
// Copyright (C) 2014 The Protocol Authors.
2014-09-22 19:42:11 +00:00
// +build darwin
package protocol
// Darwin uses NFD normalization
import "golang.org/x/text/unicode/norm"
2014-09-22 19:42:11 +00:00
type nativeModel struct {
Model
2014-09-22 19:42:11 +00:00
}
func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo) error {
2014-09-22 19:42:11 +00:00
for i := range files {
files[i].Name = norm.NFD.String(files[i].Name)
}
return m.Model.Index(deviceID, folder, files)
2014-09-22 19:42:11 +00:00
}
func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) error {
2014-09-22 19:42:11 +00:00
for i := range files {
files[i].Name = norm.NFD.String(files[i].Name)
}
return m.Model.IndexUpdate(deviceID, folder, files)
2014-09-22 19:42:11 +00:00
}
func (m nativeModel) Request(deviceID DeviceID, folder, name string, blockNo, size int32, offset int64, hash []byte, weakHash uint32, fromTemporary bool) (RequestResponse, error) {
2014-09-22 19:42:11 +00:00
name = norm.NFD.String(name)
return m.Model.Request(deviceID, folder, name, blockNo, size, offset, hash, weakHash, fromTemporary)
2014-09-22 19:42:11 +00:00
}