mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-20 08:51:01 +00:00
92614dfb1e
close #1114 As long as the `VersionResponse` type is not changed the check will fail/pass gracefully example output: ``` {"level":"error","error":"GRPC version mismatch","time":"2023-03-19T19:49:09+01:00","message":"Server version next-6923e7ab does report grpc version 2 but we only understand 1"} GRPC version mismatch ```
121 lines
2.8 KiB
Go
121 lines
2.8 KiB
Go
// Copyright 2022 Woodpecker Authors
|
|
// Copyright 2011 Drone.IO Inc.
|
|
//
|
|
// 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 rpc
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/pipeline/shared"
|
|
)
|
|
|
|
// Identifies the type of line in the logs.
|
|
const (
|
|
LineStdout int = iota
|
|
LineStderr
|
|
LineExitCode
|
|
LineMetadata
|
|
LineProgress
|
|
)
|
|
|
|
// Line is a line of console output.
|
|
type Line struct {
|
|
Step string `json:"step,omitempty"`
|
|
Time int64 `json:"time,omitempty"`
|
|
Type int `json:"type,omitempty"`
|
|
Pos int `json:"pos,omitempty"`
|
|
Out string `json:"out,omitempty"`
|
|
}
|
|
|
|
func (l *Line) String() string {
|
|
switch l.Type {
|
|
case LineExitCode:
|
|
return fmt.Sprintf("[%s] exit code %s", l.Step, l.Out)
|
|
default:
|
|
return fmt.Sprintf("[%s:L%v:%vs] %s", l.Step, l.Pos, l.Time, l.Out)
|
|
}
|
|
}
|
|
|
|
// LineWriter sends logs to the client.
|
|
type LineWriter struct {
|
|
peer Peer
|
|
id string
|
|
name string
|
|
num int
|
|
now time.Time
|
|
rep *strings.Replacer
|
|
lines []*Line
|
|
}
|
|
|
|
// NewLineWriter returns a new line reader.
|
|
func NewLineWriter(peer Peer, id, name string, secret ...string) *LineWriter {
|
|
return &LineWriter{
|
|
peer: peer,
|
|
id: id,
|
|
name: name,
|
|
now: time.Now().UTC(),
|
|
rep: shared.NewSecretsReplacer(secret),
|
|
lines: nil,
|
|
}
|
|
}
|
|
|
|
func (w *LineWriter) Write(p []byte) (n int, err error) {
|
|
out := string(p)
|
|
if w.rep != nil {
|
|
out = w.rep.Replace(out)
|
|
}
|
|
log.Trace().Str("name", w.name).Str("ID", w.id).Msgf("grpc write line: %s", out)
|
|
|
|
line := &Line{
|
|
Out: out,
|
|
Step: w.name,
|
|
Pos: w.num,
|
|
Time: int64(time.Since(w.now).Seconds()),
|
|
Type: LineStdout,
|
|
}
|
|
if err := w.peer.Log(context.Background(), w.id, line); err != nil {
|
|
log.Error().Err(err).Msgf("fail to write pipeline log to peer '%s'", w.id)
|
|
}
|
|
w.num++
|
|
|
|
// for _, part := range bytes.Split(p, []byte{'\n'}) {
|
|
// line := &Line{
|
|
// Out: string(part),
|
|
// Step: w.name,
|
|
// Pos: w.num,
|
|
// Time: int64(time.Since(w.now).Seconds()),
|
|
// Type: LineStdout,
|
|
// }
|
|
// w.peer.Log(context.Background(), w.id, line)
|
|
// w.num++
|
|
// }
|
|
w.lines = append(w.lines, line)
|
|
return len(p), nil
|
|
}
|
|
|
|
// Lines returns the line history
|
|
func (w *LineWriter) Lines() []*Line {
|
|
return w.lines
|
|
}
|
|
|
|
// Clear clears the line history
|
|
func (w *LineWriter) Clear() {
|
|
w.lines = w.lines[:0]
|
|
}
|