OSDN Git Service

Hulk did something
[bytom/vapor.git] / vendor / github.com / spf13 / afero / os.go
1 // Copyright © 2014 Steve Francia <spf@spf13.com>.
2 // Copyright 2013 tsuru authors. All rights reserved.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 package afero
16
17 import (
18         "os"
19         "time"
20 )
21
22 // OsFs is a Fs implementation that uses functions provided by the os package.
23 //
24 // For details in any method, check the documentation of the os package
25 // (http://golang.org/pkg/os/).
26 type OsFs struct{}
27
28 func NewOsFs() Fs {
29         return &OsFs{}
30 }
31
32 func (OsFs) Name() string { return "OsFs" }
33
34 func (OsFs) Create(name string) (File, error) {
35         f, e := os.Create(name)
36         if f == nil {
37                 // while this looks strange, we need to return a bare nil (of type nil) not
38                 // a nil value of type *os.File or nil won't be nil
39                 return nil, e
40         }
41         return f, e
42 }
43
44 func (OsFs) Mkdir(name string, perm os.FileMode) error {
45         return os.Mkdir(name, perm)
46 }
47
48 func (OsFs) MkdirAll(path string, perm os.FileMode) error {
49         return os.MkdirAll(path, perm)
50 }
51
52 func (OsFs) Open(name string) (File, error) {
53         f, e := os.Open(name)
54         if f == nil {
55                 // while this looks strange, we need to return a bare nil (of type nil) not
56                 // a nil value of type *os.File or nil won't be nil
57                 return nil, e
58         }
59         return f, e
60 }
61
62 func (OsFs) OpenFile(name string, flag int, perm os.FileMode) (File, error) {
63         f, e := os.OpenFile(name, flag, perm)
64         if f == nil {
65                 // while this looks strange, we need to return a bare nil (of type nil) not
66                 // a nil value of type *os.File or nil won't be nil
67                 return nil, e
68         }
69         return f, e
70 }
71
72 func (OsFs) Remove(name string) error {
73         return os.Remove(name)
74 }
75
76 func (OsFs) RemoveAll(path string) error {
77         return os.RemoveAll(path)
78 }
79
80 func (OsFs) Rename(oldname, newname string) error {
81         return os.Rename(oldname, newname)
82 }
83
84 func (OsFs) Stat(name string) (os.FileInfo, error) {
85         return os.Stat(name)
86 }
87
88 func (OsFs) Chmod(name string, mode os.FileMode) error {
89         return os.Chmod(name, mode)
90 }
91
92 func (OsFs) Chtimes(name string, atime time.Time, mtime time.Time) error {
93         return os.Chtimes(name, atime, mtime)
94 }