2015-01-13 12:31:14 +00:00
|
|
|
// Copyright (C) 2014 The Protocol Authors.
|
2014-09-22 19:42:11 +00:00
|
|
|
|
2021-08-17 08:10:41 +00:00
|
|
|
//go:build darwin
|
2014-09-22 19:42:11 +00:00
|
|
|
// +build darwin
|
|
|
|
|
|
|
|
package protocol
|
|
|
|
|
|
|
|
// Darwin uses NFD normalization
|
|
|
|
|
2014-11-29 23:17:00 +00:00
|
|
|
import "golang.org/x/text/unicode/norm"
|
2014-09-22 19:42:11 +00:00
|
|
|
|
2021-10-03 10:13:04 +00:00
|
|
|
func makeNative(m Model) Model { return nativeModel{m} }
|
|
|
|
|
2014-09-22 19:42:11 +00:00
|
|
|
type nativeModel struct {
|
2016-04-15 10:59:41 +00:00
|
|
|
Model
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2019-12-04 09:46:55 +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)
|
|
|
|
}
|
2019-12-04 09:46:55 +00:00
|
|
|
return m.Model.Index(deviceID, folder, files)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2019-12-04 09:46:55 +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)
|
|
|
|
}
|
2019-12-04 09:46:55 +00:00
|
|
|
return m.Model.IndexUpdate(deviceID, folder, files)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2020-11-09 14:33:32 +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)
|
2020-11-09 14:33:32 +00:00
|
|
|
return m.Model.Request(deviceID, folder, name, blockNo, size, offset, hash, weakHash, fromTemporary)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|