2014-06-01 20:50:14 +00:00
|
|
|
// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-28 13:36:57 +00:00
|
|
|
// +build !windows,!darwin
|
|
|
|
|
|
|
|
package protocol
|
|
|
|
|
|
|
|
// Normal Unixes uses NFC and slashes, which is the wire format.
|
|
|
|
|
|
|
|
type nativeModel struct {
|
|
|
|
next Model
|
|
|
|
}
|
|
|
|
|
2014-06-29 23:51:58 +00:00
|
|
|
func (m nativeModel) Index(nodeID NodeID, repo string, files []FileInfo) {
|
2014-03-29 17:53:48 +00:00
|
|
|
m.next.Index(nodeID, repo, files)
|
2014-03-28 13:36:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 23:51:58 +00:00
|
|
|
func (m nativeModel) IndexUpdate(nodeID NodeID, repo string, files []FileInfo) {
|
2014-03-29 17:53:48 +00:00
|
|
|
m.next.IndexUpdate(nodeID, repo, files)
|
2014-03-28 13:36:57 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 23:51:58 +00:00
|
|
|
func (m nativeModel) Request(nodeID NodeID, repo string, name string, offset int64, size int) ([]byte, error) {
|
2014-03-28 13:36:57 +00:00
|
|
|
return m.next.Request(nodeID, repo, name, offset, size)
|
|
|
|
}
|
|
|
|
|
2014-06-29 23:51:58 +00:00
|
|
|
func (m nativeModel) ClusterConfig(nodeID NodeID, config ClusterConfigMessage) {
|
2014-04-13 13:28:26 +00:00
|
|
|
m.next.ClusterConfig(nodeID, config)
|
|
|
|
}
|
|
|
|
|
2014-06-29 23:51:58 +00:00
|
|
|
func (m nativeModel) Close(nodeID NodeID, err error) {
|
2014-03-28 13:36:57 +00:00
|
|
|
m.next.Close(nodeID, err)
|
|
|
|
}
|