2022-10-18 01:24:12 +00:00
|
|
|
// Copyright 2022 Woodpecker Authors
|
2021-09-23 14:58:12 +00:00
|
|
|
// Copyright 2018 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 agent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type State struct {
|
|
|
|
sync.Mutex `json:"-"`
|
|
|
|
Polling int `json:"polling_count"`
|
|
|
|
Running int `json:"running_count"`
|
|
|
|
Metadata map[string]Info `json:"running"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type Info struct {
|
2022-10-18 01:24:12 +00:00
|
|
|
ID string `json:"id"`
|
|
|
|
Repo string `json:"repository"`
|
2022-10-22 13:54:43 +00:00
|
|
|
Pipeline string `json:"pipeline_number"`
|
|
|
|
Started time.Time `json:"pipeline_started"`
|
|
|
|
Timeout time.Duration `json:"pipeline_timeout"`
|
2021-09-23 14:58:12 +00:00
|
|
|
}
|
|
|
|
|
2022-10-18 01:24:12 +00:00
|
|
|
func (s *State) Add(id string, timeout time.Duration, repo, pipeline string) {
|
2021-09-23 14:58:12 +00:00
|
|
|
s.Lock()
|
|
|
|
s.Polling--
|
|
|
|
s.Running++
|
|
|
|
s.Metadata[id] = Info{
|
2022-10-18 01:24:12 +00:00
|
|
|
ID: id,
|
|
|
|
Repo: repo,
|
|
|
|
Pipeline: pipeline,
|
|
|
|
Timeout: timeout,
|
|
|
|
Started: time.Now().UTC(),
|
2021-09-23 14:58:12 +00:00
|
|
|
}
|
|
|
|
s.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *State) Done(id string) {
|
|
|
|
s.Lock()
|
|
|
|
s.Polling++
|
|
|
|
s.Running--
|
|
|
|
delete(s.Metadata, id)
|
|
|
|
s.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *State) Healthy() bool {
|
|
|
|
s.Lock()
|
|
|
|
defer s.Unlock()
|
|
|
|
now := time.Now()
|
|
|
|
buf := time.Hour // 1 hour buffer
|
|
|
|
for _, item := range s.Metadata {
|
|
|
|
if now.After(item.Started.Add(item.Timeout).Add(buf)) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *State) WriteTo(w io.Writer) (int64, error) {
|
|
|
|
s.Lock()
|
2024-01-09 20:35:37 +00:00
|
|
|
out, err := json.Marshal(s)
|
2021-09-23 14:58:12 +00:00
|
|
|
s.Unlock()
|
2024-01-09 20:35:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2021-09-23 14:58:12 +00:00
|
|
|
ret, err := w.Write(out)
|
|
|
|
return int64(ret), err
|
|
|
|
}
|