| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- // 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) 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()
- }
|