syncthing/lib/protocol/nativemodel_darwin.go

36 lines
952 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
//go:build darwin
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
func makeNative(m rawModel) rawModel { return nativeModel{m} }
2014-09-22 19:42:11 +00:00
type nativeModel struct {
rawModel
2014-09-22 19:42:11 +00:00
}
func (m nativeModel) Index(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.rawModel.Index(folder, files)
2014-09-22 19:42:11 +00:00
}
func (m nativeModel) IndexUpdate(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.rawModel.IndexUpdate(folder, files)
2014-09-22 19:42:11 +00:00
}
func (m nativeModel) Request(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.rawModel.Request(folder, name, blockNo, size, offset, hash, weakHash, fromTemporary)
2014-09-22 19:42:11 +00:00
}