2015-01-13 13:31:14 +01:00
|
|
|
// Copyright (C) 2014 The Protocol Authors.
|
2014-09-22 21:42:11 +02:00
|
|
|
|
2021-08-17 10:10:41 +02:00
|
|
|
//go:build darwin
|
2014-09-22 21:42:11 +02:00
|
|
|
// +build darwin
|
|
|
|
|
|
|
|
|
|
package protocol
|
|
|
|
|
|
|
|
|
|
// Darwin uses NFD normalization
|
|
|
|
|
|
2014-11-30 00:17:00 +01:00
|
|
|
import "golang.org/x/text/unicode/norm"
|
2014-09-22 21:42:11 +02:00
|
|
|
|
2023-09-06 12:52:01 +02:00
|
|
|
func makeNative(m rawModel) rawModel { return nativeModel{m} }
|
2021-10-03 12:13:04 +02:00
|
|
|
|
2014-09-22 21:42:11 +02:00
|
|
|
type nativeModel struct {
|
2023-09-06 12:52:01 +02:00
|
|
|
rawModel
|
2014-09-22 21:42:11 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-31 08:18:27 +01:00
|
|
|
func (m nativeModel) Index(idx *Index) error {
|
|
|
|
|
for i := range idx.Files {
|
|
|
|
|
idx.Files[i].Name = norm.NFD.String(idx.Files[i].Name)
|
2014-09-22 21:42:11 +02:00
|
|
|
}
|
2024-01-31 08:18:27 +01:00
|
|
|
return m.rawModel.Index(idx)
|
2014-09-22 21:42:11 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-31 08:18:27 +01:00
|
|
|
func (m nativeModel) IndexUpdate(idxUp *IndexUpdate) error {
|
|
|
|
|
for i := range idxUp.Files {
|
|
|
|
|
idxUp.Files[i].Name = norm.NFD.String(idxUp.Files[i].Name)
|
2014-09-22 21:42:11 +02:00
|
|
|
}
|
2024-01-31 08:18:27 +01:00
|
|
|
return m.rawModel.IndexUpdate(idxUp)
|
2014-09-22 21:42:11 +02:00
|
|
|
}
|
|
|
|
|
|
2024-01-31 08:18:27 +01:00
|
|
|
func (m nativeModel) Request(req *Request) (RequestResponse, error) {
|
|
|
|
|
req.Name = norm.NFD.String(req.Name)
|
|
|
|
|
return m.rawModel.Request(req)
|
2014-09-22 21:42:11 +02:00
|
|
|
}
|