2015-01-25 06:32:33 +03:00
|
|
|
// Copyright 2015 CoreOS, Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2014-10-18 02:36:22 +04:00
|
|
|
|
2014-07-31 00:56:36 +04:00
|
|
|
package file
|
2014-03-18 20:00:41 +04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
2014-06-27 02:17:53 +04:00
|
|
|
"os"
|
2015-01-23 04:35:39 +03:00
|
|
|
|
|
|
|
"github.com/coreos/coreos-cloudinit/datasource"
|
2014-03-18 20:00:41 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
type localFile struct {
|
|
|
|
path string
|
|
|
|
}
|
|
|
|
|
2014-07-31 00:56:36 +04:00
|
|
|
func NewDatasource(path string) *localFile {
|
2014-03-18 20:00:41 +04:00
|
|
|
return &localFile{path}
|
|
|
|
}
|
|
|
|
|
2014-06-27 02:17:53 +04:00
|
|
|
func (f *localFile) IsAvailable() bool {
|
|
|
|
_, err := os.Stat(f.path)
|
|
|
|
return !os.IsNotExist(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *localFile) AvailabilityChanges() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2014-06-21 08:11:57 +04:00
|
|
|
func (f *localFile) ConfigRoot() string {
|
2014-06-18 22:36:06 +04:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2015-01-23 04:35:39 +03:00
|
|
|
func (f *localFile) FetchMetadata() (datasource.Metadata, error) {
|
|
|
|
return datasource.Metadata{}, nil
|
2014-06-18 22:58:18 +04:00
|
|
|
}
|
|
|
|
|
2014-06-21 08:11:57 +04:00
|
|
|
func (f *localFile) FetchUserdata() ([]byte, error) {
|
|
|
|
return ioutil.ReadFile(f.path)
|
2014-03-18 20:00:41 +04:00
|
|
|
}
|
|
|
|
|
2014-06-21 08:11:57 +04:00
|
|
|
func (f *localFile) Type() string {
|
2014-03-18 20:00:41 +04:00
|
|
|
return "local-file"
|
|
|
|
}
|