forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpodlogartifact.go
178 lines (159 loc) · 4.71 KB
/
podlogartifact.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
Copyright 2018 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 spyglass
import (
"bytes"
"errors"
"fmt"
"io"
"net/url"
"strings"
prowapi "k8s.io/test-infra/prow/apis/prowjobs/v1"
"k8s.io/test-infra/prow/spyglass/lenses"
)
type jobAgent interface {
GetProwJob(job string, id string) (prowapi.ProwJob, error)
GetJobLog(job string, id string) ([]byte, error)
}
// PodLogArtifact holds data for reading from a specific pod log
type PodLogArtifact struct {
name string
buildID string
sizeLimit int64
jobAgent
}
var (
errInsufficientJobInfo = errors.New("insufficient job information provided")
errInvalidSizeLimit = errors.New("sizeLimit must be a 64-bit integer greater than 0")
)
// NewPodLogArtifact creates a new PodLogArtifact
func NewPodLogArtifact(jobName string, buildID string, sizeLimit int64, ja jobAgent) (*PodLogArtifact, error) {
if jobName == "" {
return nil, errInsufficientJobInfo
}
if buildID == "" {
return nil, errInsufficientJobInfo
}
if sizeLimit < 0 {
return nil, errInvalidSizeLimit
}
return &PodLogArtifact{
name: jobName,
buildID: buildID,
sizeLimit: sizeLimit,
jobAgent: ja,
}, nil
}
// CanonicalLink returns a link to where pod logs are streamed
func (a *PodLogArtifact) CanonicalLink() string {
q := url.Values{
"job": []string{a.name},
"id": []string{a.buildID},
}
u := url.URL{
Path: "/log",
RawQuery: q.Encode(),
}
return u.String()
}
// JobPath gets the path within the job for the pod log. Always returns build-log.txt.
// This is because the pod log becomes the build log after the job artifact uploads
// are complete, which should be used instead of the pod log.
func (a *PodLogArtifact) JobPath() string {
return "build-log.txt"
}
// ReadAt implements reading a range of bytes from the pod logs endpoint
func (a *PodLogArtifact) ReadAt(p []byte, off int64) (n int, err error) {
logs, err := a.jobAgent.GetJobLog(a.name, a.buildID)
if err != nil {
return 0, fmt.Errorf("error getting pod log: %v", err)
}
r := bytes.NewReader(logs)
readBytes, err := r.ReadAt(p, off)
if err == io.EOF {
return readBytes, io.EOF
}
if err != nil {
return 0, fmt.Errorf("error reading pod logs: %v", err)
}
return readBytes, nil
}
// ReadAll reads all available pod logs, failing if they are too large
func (a *PodLogArtifact) ReadAll() ([]byte, error) {
size, err := a.Size()
if err != nil {
return nil, fmt.Errorf("error getting pod log size: %v", err)
}
if size > a.sizeLimit {
return nil, lenses.ErrFileTooLarge
}
logs, err := a.jobAgent.GetJobLog(a.name, a.buildID)
if err != nil {
return nil, fmt.Errorf("error getting pod log: %v", err)
}
return logs, nil
}
// ReadAtMost reads at most n bytes
func (a *PodLogArtifact) ReadAtMost(n int64) ([]byte, error) {
logs, err := a.jobAgent.GetJobLog(a.name, a.buildID)
if err != nil {
return nil, fmt.Errorf("error getting pod log: %v", err)
}
reader := bytes.NewReader(logs)
var byteCount int64
var p []byte
for byteCount < n {
b, err := reader.ReadByte()
if err == io.EOF {
return p, io.EOF
}
if err != nil {
return nil, fmt.Errorf("error reading pod log: %v", err)
}
p = append(p, b)
byteCount++
}
return p, nil
}
// ReadTail reads the last n bytes of the pod log
func (a *PodLogArtifact) ReadTail(n int64) ([]byte, error) {
logs, err := a.jobAgent.GetJobLog(a.name, a.buildID)
if err != nil {
return nil, fmt.Errorf("error getting pod log tail: %v", err)
}
size := int64(len(logs))
var off int64
if n > size {
off = 0
} else {
off = size - n
}
p := make([]byte, n)
readBytes, err := bytes.NewReader(logs).ReadAt(p, off)
if err != nil && err != io.EOF {
return nil, fmt.Errorf("error reading pod log tail: %v", err)
}
return p[:readBytes], nil
}
// Size gets the size of the pod log. Note: this function makes the same network call as reading the entire file.
func (a *PodLogArtifact) Size() (int64, error) {
logs, err := a.jobAgent.GetJobLog(a.name, a.buildID)
if err != nil {
return 0, fmt.Errorf("error getting size of pod log: %v", err)
}
return int64(len(logs)), nil
}
// isProwJobSource returns true if the provided string is a valid Prowjob source and false otherwise
func isProwJobSource(src string) bool {
return strings.HasPrefix(src, "prowjob/")
}