71 lines
1.9 KiB
Go
71 lines
1.9 KiB
Go
/*
|
|
Copyright 2014 The Kubernetes 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 lifted
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"io"
|
|
"time"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/client-go/rest"
|
|
)
|
|
|
|
// DefaultConsumeRequest reads the data from request and writes into
|
|
// the out writer. It buffers data from requests until the newline or io.EOF
|
|
// occurs in the data, so it doesn't interleave logs sub-line
|
|
// when running concurrently.
|
|
//
|
|
// A successful read returns err == nil, not err == io.EOF.
|
|
// Because the function is defined to read from request until io.EOF, it does
|
|
// not treat an io.EOF as an error to be reported.
|
|
func DefaultConsumeRequest(request rest.ResponseWrapper, out io.Writer) error {
|
|
readCloser, err := request.Stream(context.TODO())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer readCloser.Close()
|
|
|
|
r := bufio.NewReader(readCloser)
|
|
for {
|
|
bytes, err := r.ReadBytes('\n')
|
|
if _, err := out.Write(bytes); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err != nil {
|
|
if err != io.EOF {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
|
|
// ParseRFC3339 parses an RFC3339 date in either RFC3339Nano or RFC3339 format.
|
|
func ParseRFC3339(s string, nowFn func() metav1.Time) (metav1.Time, error) {
|
|
if t, timeErr := time.Parse(time.RFC3339Nano, s); timeErr == nil {
|
|
return metav1.Time{Time: t}, nil
|
|
}
|
|
t, err := time.Parse(time.RFC3339, s)
|
|
if err != nil {
|
|
return metav1.Time{}, err
|
|
}
|
|
return metav1.Time{Time: t}, nil
|
|
}
|