mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.2 KiB
86 lines
2.2 KiB
7 years ago
|
/*
|
||
|
Copyright 2017 The Kubernetes Authors 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.
|
||
|
*/
|
||
|
|
||
|
package driver // import "k8s.io/helm/pkg/storage/driver"
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"compress/gzip"
|
||
|
"encoding/base64"
|
||
|
"io/ioutil"
|
||
|
|
||
|
"github.com/golang/protobuf/proto"
|
||
|
rspb "k8s.io/helm/pkg/proto/hapi/release"
|
||
|
)
|
||
|
|
||
|
var b64 = base64.StdEncoding
|
||
|
|
||
|
var magicGzip = []byte{0x1f, 0x8b, 0x08}
|
||
|
|
||
|
// encodeRelease encodes a release returning a base64 encoded
|
||
|
// gzipped binary protobuf encoding representation, or error.
|
||
|
func encodeRelease(rls *rspb.Release) (string, error) {
|
||
|
b, err := proto.Marshal(rls)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
var buf bytes.Buffer
|
||
|
w, err := gzip.NewWriterLevel(&buf, gzip.BestCompression)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
if _, err = w.Write(b); err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
w.Close()
|
||
|
|
||
|
return b64.EncodeToString(buf.Bytes()), nil
|
||
|
}
|
||
|
|
||
|
// decodeRelease decodes the bytes in data into a release
|
||
|
// type. Data must contain a base64 encoded string of a
|
||
|
// valid protobuf encoding of a release, otherwise
|
||
|
// an error is returned.
|
||
|
func decodeRelease(data string) (*rspb.Release, error) {
|
||
|
// base64 decode string
|
||
|
b, err := b64.DecodeString(data)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
// For backwards compatibility with releases that were stored before
|
||
|
// compression was introduced we skip decompression if the
|
||
|
// gzip magic header is not found
|
||
|
if bytes.Equal(b[0:3], magicGzip) {
|
||
|
r, err := gzip.NewReader(bytes.NewReader(b))
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
b2, err := ioutil.ReadAll(r)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
b = b2
|
||
|
}
|
||
|
|
||
|
var rls rspb.Release
|
||
|
// unmarshal protobuf bytes
|
||
|
if err := proto.Unmarshal(b, &rls); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return &rls, nil
|
||
|
}
|