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
|
|
|
|
|
2014-11-29 23:17:00 +00:00
|
|
|
import "golang.org/x/text/unicode/norm"
|
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
|
|
|
}
|
|
|
|
|
2018-11-13 07:53:55 +00:00
|
|
|
func (m nativeModel) Request(deviceID DeviceID, folder, name string, 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)
|
2018-11-13 07:53:55 +00:00
|
|
|
return m.Model.Request(deviceID, folder, name, size, offset, hash, weakHash, fromTemporary)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|