Documentation ¶
Overview ¶
Copyright 2022 Codenotary Inc. All rights reserved.
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.
Copyright 2022 Codenotary Inc. All rights reserved.
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.
Index ¶
- Variables
- func Open(endpoint string, accessKeyID string, secretKey string, bucket string, ...) (remotestorage.Storage, error)
- type Storage
- func (s *Storage) Exists(ctx context.Context, name string) (bool, error)
- func (s *Storage) Get(ctx context.Context, name string, offs, size int64) (io.ReadCloser, error)
- func (s *Storage) Kind() string
- func (s *Storage) ListEntries(ctx context.Context, path string) ([]remotestorage.EntryInfo, []string, error)
- func (s *Storage) Put(ctx context.Context, name string, fileName string) error
- func (s *Storage) String() string
Constants ¶
This section is empty.
Variables ¶
var ( ErrInvalidArguments = errors.New("invalid arguments") ErrInvalidArgumentsOffsSize = fmt.Errorf("%w: negative offset or zero size", ErrInvalidArguments) ErrInvalidArgumentsNameStartSlash = fmt.Errorf("%w: name can not start with /", ErrInvalidArguments) ErrInvalidArgumentsNameEndSlash = fmt.Errorf("%w: name can not end with /", ErrInvalidArguments) ErrInvalidArgumentsInvalidName = fmt.Errorf("%w: invalid name", ErrInvalidArguments) ErrInvalidArgumentsPathNoEndSlash = fmt.Errorf("%w: path must end with /", ErrInvalidArguments) ErrInvalidArgumentsBucketSlash = fmt.Errorf("%w: bucket name can not contain / character", ErrInvalidArguments) ErrInvalidArgumentsBucketEmpty = fmt.Errorf("%w: bucket name can not be empty", ErrInvalidArguments) ErrInvalidResponse = errors.New("invalid response code") ErrInvalidResponseXmlDecodeError = fmt.Errorf("%w: xml decode error", ErrInvalidResponse) ErrInvalidResponseEntriesNotSorted = fmt.Errorf("%w: entries are not sorted", ErrInvalidResponse) ErrInvalidResponseEntryNameWrongPrefix = fmt.Errorf("%w: entry do not have correct prefix", ErrInvalidResponse) ErrInvalidResponseEntryNameMalicious = fmt.Errorf("%w: entry name contains invalid characters", ErrInvalidResponse) ErrInvalidResponseEntryNameUnescape = fmt.Errorf("%w: error un-escaping object name", ErrInvalidResponse) ErrInvalidResponseSubPathsNotSorted = fmt.Errorf("%w: sub-paths are not sorted", ErrInvalidResponse) ErrInvalidResponseSubPathsWrongPrefix = fmt.Errorf("%w: sub-paths do not have correct prefix", ErrInvalidResponse) ErrInvalidResponseSubPathsWrongSuffix = fmt.Errorf("%w: sub-paths do end with '/' suffix", ErrInvalidResponse) ErrInvalidResponseSubPathMalicious = fmt.Errorf("%w: sub-paths contain invalid characters", ErrInvalidResponse) ErrInvalidResponseSubPathUnescape = fmt.Errorf("%w: error un-escaping object name", ErrInvalidResponse) ErrTooManyRedirects = errors.New("too many redirects") )
Functions ¶
Types ¶
type Storage ¶
type Storage struct {
// contains filtered or unexported fields
}
func (*Storage) Exists ¶
Exists checks if a remove resource exists and can be read. Note that due to an asynchronous nature of cloud storage, a resource stored with the Put method may not be immediately accessible.