syncthing/lib/protocol/nativemodel_darwin.go

41 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
// +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 {
next Model
}
func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo, flags uint32, options []Option) {
2014-09-22 21:42:11 +02:00
for i := range files {
files[i].Name = norm.NFD.String(files[i].Name)
}
m.next.Index(deviceID, folder, files, flags, options)
2014-09-22 21:42:11 +02:00
}
func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo, flags uint32, options []Option) {
2014-09-22 21:42:11 +02:00
for i := range files {
files[i].Name = norm.NFD.String(files[i].Name)
}
m.next.IndexUpdate(deviceID, folder, files, flags, options)
2014-09-22 21:42:11 +02:00
}
2015-07-29 22:23:43 +02:00
func (m nativeModel) Request(deviceID DeviceID, folder string, name string, offset int64, hash []byte, flags uint32, options []Option, buf []byte) error {
2014-09-22 21:42:11 +02:00
name = norm.NFD.String(name)
2015-07-29 22:23:43 +02:00
return m.next.Request(deviceID, folder, name, offset, hash, flags, options, buf)
2014-09-22 21:42:11 +02:00
}
func (m nativeModel) ClusterConfig(deviceID DeviceID, config ClusterConfigMessage) {
m.next.ClusterConfig(deviceID, config)
2014-09-22 21:42:11 +02:00
}
func (m nativeModel) Close(deviceID DeviceID, err error) {
m.next.Close(deviceID, err)
2014-09-22 21:42:11 +02:00
}