syncthing/lib/protocol/nativemodel_darwin.go

34 lines
963 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
//go:build darwin
2014-09-22 21:42:11 +02:00
// +build darwin
package protocol
// Darwin uses NFD normalization
import "golang.org/x/text/unicode/norm"
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) error {
2014-09-22 21:42:11 +02:00
for i := range files {
files[i].Name = norm.NFD.String(files[i].Name)
}
return m.Model.Index(deviceID, folder, files)
2014-09-22 21:42:11 +02:00
}
func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) error {
2014-09-22 21:42:11 +02:00
for i := range files {
files[i].Name = norm.NFD.String(files[i].Name)
}
return m.Model.IndexUpdate(deviceID, folder, files)
2014-09-22 21:42:11 +02: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 21:42:11 +02:00
name = norm.NFD.String(name)
return m.Model.Request(deviceID, folder, name, blockNo, size, offset, hash, weakHash, fromTemporary)
2014-09-22 21:42:11 +02:00
}