nativemodel_unix.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Copyright (C) 2014 Jakob Borg and Contributors (see the CONTRIBUTORS file).
  2. //
  3. // This program is free software: you can redistribute it and/or modify it
  4. // under the terms of the GNU General Public License as published by the Free
  5. // Software Foundation, either version 3 of the License, or (at your option)
  6. // any later version.
  7. //
  8. // This program is distributed in the hope that it will be useful, but WITHOUT
  9. // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. // more details.
  12. //
  13. // You should have received a copy of the GNU General Public License along
  14. // with this program. If not, see <http://www.gnu.org/licenses/>.
  15. // +build !windows,!darwin
  16. package protocol
  17. // Normal Unixes uses NFC and slashes, which is the wire format.
  18. type nativeModel struct {
  19. next Model
  20. }
  21. func (m nativeModel) Index(deviceID DeviceID, folder string, files []FileInfo) {
  22. m.next.Index(deviceID, folder, files)
  23. }
  24. func (m nativeModel) IndexUpdate(deviceID DeviceID, folder string, files []FileInfo) {
  25. m.next.IndexUpdate(deviceID, folder, files)
  26. }
  27. func (m nativeModel) Request(deviceID DeviceID, folder string, name string, offset int64, size int) ([]byte, error) {
  28. return m.next.Request(deviceID, folder, name, offset, size)
  29. }
  30. func (m nativeModel) ClusterConfig(deviceID DeviceID, config ClusterConfigMessage) {
  31. m.next.ClusterConfig(deviceID, config)
  32. }
  33. func (m nativeModel) Close(deviceID DeviceID, err error) {
  34. m.next.Close(deviceID, err)
  35. }