| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- // Copyright (C) 2014 The Protocol Authors.
- package protocol
- import (
- "path/filepath"
- "golang.org/x/text/unicode/norm"
- )
- type wireFormatConnection struct {
- next Connection
- }
- func (c wireFormatConnection) Start() {
- c.next.Start()
- }
- func (c wireFormatConnection) ID() DeviceID {
- return c.next.ID()
- }
- func (c wireFormatConnection) Name() string {
- return c.next.Name()
- }
- func (c wireFormatConnection) Index(folder string, fs []FileInfo, flags uint32, options []Option) error {
- var myFs = make([]FileInfo, len(fs))
- copy(myFs, fs)
- for i := range fs {
- myFs[i].Name = norm.NFC.String(filepath.ToSlash(myFs[i].Name))
- }
- return c.next.Index(folder, myFs, flags, options)
- }
- func (c wireFormatConnection) IndexUpdate(folder string, fs []FileInfo, flags uint32, options []Option) error {
- var myFs = make([]FileInfo, len(fs))
- copy(myFs, fs)
- for i := range fs {
- myFs[i].Name = norm.NFC.String(filepath.ToSlash(myFs[i].Name))
- }
- return c.next.IndexUpdate(folder, myFs, flags, options)
- }
- func (c wireFormatConnection) Request(folder, name string, offset int64, size int, hash []byte, flags uint32, options []Option) ([]byte, error) {
- name = norm.NFC.String(filepath.ToSlash(name))
- return c.next.Request(folder, name, offset, size, hash, flags, options)
- }
- func (c wireFormatConnection) ClusterConfig(config ClusterConfigMessage) {
- c.next.ClusterConfig(config)
- }
- func (c wireFormatConnection) Statistics() Statistics {
- return c.next.Statistics()
- }
|