Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
/*
|
|
|
|
* Copyright 2016 gRPC authors.
|
|
|
|
*
|
|
|
|
* 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 internal contains gRPC-internal code, to avoid polluting
|
|
|
|
// the godoc of the top-level grpc package. It must not import any grpc
|
|
|
|
// symbols to avoid circular dependencies.
|
|
|
|
package internal
|
|
|
|
|
2019-04-20 19:53:34 -04:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
2019-12-03 08:18:49 -05:00
|
|
|
|
|
|
|
"google.golang.org/grpc/connectivity"
|
2020-10-01 17:06:15 -04:00
|
|
|
"google.golang.org/grpc/serviceconfig"
|
2019-04-20 19:53:34 -04:00
|
|
|
)
|
Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
|
|
|
|
var (
|
2019-12-03 08:18:49 -05:00
|
|
|
// WithHealthCheckFunc is set by dialoptions.go
|
2019-04-20 19:53:34 -04:00
|
|
|
WithHealthCheckFunc interface{} // func (HealthChecker) DialOption
|
Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
// HealthCheckFunc is used to provide client-side LB channel health checking
|
2019-04-20 19:53:34 -04:00
|
|
|
HealthCheckFunc HealthChecker
|
|
|
|
// BalancerUnregister is exported by package balancer to unregister a balancer.
|
|
|
|
BalancerUnregister func(name string)
|
|
|
|
// KeepaliveMinPingTime is the minimum ping interval. This must be 10s by
|
|
|
|
// default, but tests may wish to set it lower for convenience.
|
|
|
|
KeepaliveMinPingTime = 10 * time.Second
|
2019-12-03 08:18:49 -05:00
|
|
|
// NewRequestInfoContext creates a new context based on the argument context attaching
|
|
|
|
// the passed in RequestInfo to the new context.
|
|
|
|
NewRequestInfoContext interface{} // func(context.Context, credentials.RequestInfo) context.Context
|
2020-10-01 17:06:15 -04:00
|
|
|
// NewClientHandshakeInfoContext returns a copy of the input context with
|
|
|
|
// the passed in ClientHandshakeInfo struct added to it.
|
|
|
|
NewClientHandshakeInfoContext interface{} // func(context.Context, credentials.ClientHandshakeInfo) context.Context
|
2019-12-03 08:18:49 -05:00
|
|
|
// ParseServiceConfigForTesting is for creating a fake
|
|
|
|
// ClientConn for resolver testing only
|
|
|
|
ParseServiceConfigForTesting interface{} // func(string) *serviceconfig.ParseResult
|
2020-10-01 17:06:15 -04:00
|
|
|
// EqualServiceConfigForTesting is for testing service config generation and
|
|
|
|
// parsing. Both a and b should be returned by ParseServiceConfigForTesting.
|
|
|
|
// This function compares the config without rawJSON stripped, in case the
|
|
|
|
// there's difference in white space.
|
|
|
|
EqualServiceConfigForTesting func(a, b serviceconfig.Config) bool
|
Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
)
|
|
|
|
|
2019-04-20 19:53:34 -04:00
|
|
|
// HealthChecker defines the signature of the client-side LB channel health checking function.
|
2019-12-03 08:18:49 -05:00
|
|
|
//
|
|
|
|
// The implementation is expected to create a health checking RPC stream by
|
|
|
|
// calling newStream(), watch for the health status of serviceName, and report
|
|
|
|
// it's health back by calling setConnectivityState().
|
|
|
|
//
|
|
|
|
// The health checking protocol is defined at:
|
|
|
|
// https://github.com/grpc/grpc/blob/master/doc/health-checking.md
|
2020-03-25 15:15:46 -04:00
|
|
|
type HealthChecker func(ctx context.Context, newStream func(string) (interface{}, error), setConnectivityState func(connectivity.State, error), serviceName string) error
|
2019-04-20 19:53:34 -04:00
|
|
|
|
Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
const (
|
|
|
|
// CredsBundleModeFallback switches GoogleDefaultCreds to fallback mode.
|
|
|
|
CredsBundleModeFallback = "fallback"
|
|
|
|
// CredsBundleModeBalancer switches GoogleDefaultCreds to grpclb balancer
|
|
|
|
// mode.
|
|
|
|
CredsBundleModeBalancer = "balancer"
|
|
|
|
// CredsBundleModeBackendFromBalancer switches GoogleDefaultCreds to mode
|
|
|
|
// that supports backend returned by grpclb balancer.
|
|
|
|
CredsBundleModeBackendFromBalancer = "backend-from-balancer"
|
|
|
|
)
|