1234567891011121314151617181920212223242526272829303132 |
- // Copyright (C) 2014 The Protocol Authors.
- // +build darwin
- package protocol
- // Darwin uses NFD normalization
- import "golang.org/x/text/unicode/norm"
- type nativeModel struct {
- Model
- }
- func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo) {
- for i := range files {
- files[i].Name = norm.NFD.String(files[i].Name)
- }
- m.Model.Index(deviceID, folder, files)
- }
- func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) {
- for i := range files {
- files[i].Name = norm.NFD.String(files[i].Name)
- }
- m.Model.IndexUpdate(deviceID, folder, files)
- }
- func (m nativeModel) Request(deviceID DeviceID, folder, name string, size int32, offset int64, hash []byte, weakHash uint32, fromTemporary bool) (RequestResponse, error) {
- name = norm.NFD.String(name)
- return m.Model.Request(deviceID, folder, name, size, offset, hash, weakHash, fromTemporary)
- }
|