Add new internal upload target for Google Cloud Platform and osbuild-upload-gcp CLI tool which uses the API. Supported features are: - Authenticate with GCP using explicitly provided JSON credentials file or let the authentication be handled automatically by the Google cloud client library. The later is useful e.g. when the worker is running in GCP VM instance, which has associated permissions with it. - Upload an existing image file into existing Storage bucket. - Verify MD5 checksum of the uploaded image file against the local file's checksum. - Import the uploaded image file into Compute Node as an Image. - Delete the uploaded image file after a successful image import. - Delete all cache files from storage created as part of the image import build job. - Share the imported image with a list of specified accounts. GCP-specific image type is not yet added, since GCP supports importing VMDK and VHD images, which the osbuild-composer already supports. Update go.mod, vendor/ content and SPEC file with new dependencies. Signed-off-by: Tomas Hozza <thozza@redhat.com>
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
// Copyright 2017, The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package cmp
|
|
|
|
// defaultReporter implements the reporter interface.
|
|
//
|
|
// As Equal serially calls the PushStep, Report, and PopStep methods, the
|
|
// defaultReporter constructs a tree-based representation of the compared value
|
|
// and the result of each comparison (see valueNode).
|
|
//
|
|
// When the String method is called, the FormatDiff method transforms the
|
|
// valueNode tree into a textNode tree, which is a tree-based representation
|
|
// of the textual output (see textNode).
|
|
//
|
|
// Lastly, the textNode.String method produces the final report as a string.
|
|
type defaultReporter struct {
|
|
root *valueNode
|
|
curr *valueNode
|
|
}
|
|
|
|
func (r *defaultReporter) PushStep(ps PathStep) {
|
|
r.curr = r.curr.PushStep(ps)
|
|
if r.root == nil {
|
|
r.root = r.curr
|
|
}
|
|
}
|
|
func (r *defaultReporter) Report(rs Result) {
|
|
r.curr.Report(rs)
|
|
}
|
|
func (r *defaultReporter) PopStep() {
|
|
r.curr = r.curr.PopStep()
|
|
}
|
|
|
|
// String provides a full report of the differences detected as a structured
|
|
// literal in pseudo-Go syntax. String may only be called after the entire tree
|
|
// has been traversed.
|
|
func (r *defaultReporter) String() string {
|
|
assert(r.root != nil && r.curr == nil)
|
|
if r.root.NumDiff == 0 {
|
|
return ""
|
|
}
|
|
ptrs := new(pointerReferences)
|
|
text := formatOptions{}.FormatDiff(r.root, ptrs)
|
|
resolveReferences(text)
|
|
return text.String()
|
|
}
|
|
|
|
func assert(ok bool) {
|
|
if !ok {
|
|
panic("assertion failure")
|
|
}
|
|
}
|