2021-11-30 21:06:32 +01:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package process
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2022-03-31 19:01:43 +02:00
|
|
|
var (
|
|
|
|
SystemProcessType = "system"
|
|
|
|
RequestProcessType = "request"
|
|
|
|
NormalProcessType = "normal"
|
|
|
|
NoneProcessType = "none"
|
|
|
|
)
|
|
|
|
|
|
|
|
// process represents a working process inheriting from Gitea.
|
|
|
|
type process struct {
|
2021-11-30 21:06:32 +01:00
|
|
|
PID IDType // Process ID, not system one.
|
|
|
|
ParentPID IDType
|
|
|
|
Description string
|
|
|
|
Start time.Time
|
|
|
|
Cancel context.CancelFunc
|
2022-03-31 19:01:43 +02:00
|
|
|
Type string
|
2021-11-30 21:06:32 +01:00
|
|
|
}
|
|
|
|
|
2022-03-31 19:01:43 +02:00
|
|
|
// ToProcess converts a process to a externally usable Process
|
|
|
|
func (p *process) toProcess() *Process {
|
|
|
|
process := &Process{
|
|
|
|
PID: p.PID,
|
|
|
|
ParentPID: p.ParentPID,
|
|
|
|
Description: p.Description,
|
|
|
|
Start: p.Start,
|
|
|
|
Type: p.Type,
|
2021-11-30 21:06:32 +01:00
|
|
|
}
|
2022-03-31 19:01:43 +02:00
|
|
|
return process
|
2021-11-30 21:06:32 +01:00
|
|
|
}
|