2014-09-22 19:42:11 +00:00
|
|
|
// Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
|
|
|
|
// All rights reserved. Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build darwin
|
|
|
|
|
|
|
|
package protocol
|
|
|
|
|
|
|
|
// Darwin uses NFD normalization
|
|
|
|
|
|
|
|
import "code.google.com/p/go.text/unicode/norm"
|
|
|
|
|
|
|
|
type nativeModel struct {
|
|
|
|
next Model
|
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo) {
|
2014-09-22 19:42:11 +00:00
|
|
|
for i := range files {
|
|
|
|
files[i].Name = norm.NFD.String(files[i].Name)
|
|
|
|
}
|
2014-09-28 11:00:38 +00:00
|
|
|
m.next.Index(deviceID, folder, files)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) {
|
2014-09-22 19:42:11 +00:00
|
|
|
for i := range files {
|
|
|
|
files[i].Name = norm.NFD.String(files[i].Name)
|
|
|
|
}
|
2014-09-28 11:00:38 +00:00
|
|
|
m.next.IndexUpdate(deviceID, folder, files)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
func (m nativeModel) Request(deviceID DeviceID, folder string, name string, offset int64, size int) ([]byte, error) {
|
2014-09-22 19:42:11 +00:00
|
|
|
name = norm.NFD.String(name)
|
2014-09-28 11:00:38 +00:00
|
|
|
return m.next.Request(deviceID, folder, name, offset, size)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
func (m nativeModel) ClusterConfig(deviceID DeviceID, config ClusterConfigMessage) {
|
|
|
|
m.next.ClusterConfig(deviceID, config)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-28 11:00:38 +00:00
|
|
|
func (m nativeModel) Close(deviceID DeviceID, err error) {
|
|
|
|
m.next.Close(deviceID, err)
|
2014-09-22 19:42:11 +00:00
|
|
|
}
|