-
Notifications
You must be signed in to change notification settings - Fork 180
/
job.go
140 lines (124 loc) · 4.16 KB
/
job.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
/*
* Copyright (c) 2019-2021. Abstrium SAS <team (at) pydio.com>
* This file is part of Pydio Cells.
*
* Pydio Cells is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio Cells is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com>.
*/
package jobs
import (
"time"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/known/anypb"
"github.com/pydio/cells/v4/common"
)
/* job.go file enriches default genrated proto structs with some custom pydio methods to ease development */
/* LOGGING SUPPORT */
func (job *Job) MarshalLogObject(encoder zapcore.ObjectEncoder) error {
encoder.AddString("ID", job.ID)
encoder.AddString("Label", job.Label)
encoder.AddString("Owner", job.Owner)
if job.Inactive {
encoder.AddBool("Inactive", job.Inactive)
}
encoder.AddInt32("MaxConcurrency", job.MaxConcurrency)
if job.AutoClean {
encoder.AddBool("AutoClean", job.AutoClean)
}
if job.AutoStart {
encoder.AddBool("AutoStart", job.AutoStart)
}
if job.TasksSilentUpdate {
encoder.AddBool("Silent", job.TasksSilentUpdate)
}
encoder.AddReflected("EventNames", job.EventNames)
encoder.AddReflected("Actions", job.Actions)
encoder.AddReflected("Schedule", job.Schedule)
encoder.AddReflected("Tasks", job.Tasks)
return nil
}
// Zap simply returns a zapcore.Field object populated with this Job under a standard key
func (job *Job) Zap() zapcore.Field {
return zap.Object(common.KeyJob, job)
}
// ZapId simply calls zap.String() with JobId standard key and this Job Id
func (job *Job) ZapId() zapcore.Field {
return zap.String(common.KeyJobId, job.GetID())
}
func (task *Task) MarshalLogObject(encoder zapcore.ObjectEncoder) error {
encoder.AddString("ID", task.ID)
encoder.AddString("Status", task.Status.String())
encoder.AddString("StatusMessage", task.StatusMessage)
encoder.AddString("TriggerOwner", task.TriggerOwner)
encoder.AddString("JobID", task.JobID)
if task.StartTime > 0 {
encoder.AddTime("StartTime", time.Unix(int64(task.StartTime), 0))
}
if task.EndTime > 0 {
encoder.AddTime("EndTime", time.Unix(int64(task.EndTime), 0))
}
if task.CanStop {
encoder.AddBool("CanStop", task.CanStop)
}
if task.CanPause {
encoder.AddBool("CanPause", task.CanPause)
}
if task.HasProgress {
encoder.AddBool("HasProgress", task.HasProgress)
encoder.AddFloat32("Progress", task.Progress)
}
return nil
}
// Zap simply returns a zapcore.Field object populated with this Task under a standard key
func (task *Task) Zap() zapcore.Field {
return zap.Object(common.KeyTask, task)
}
// ZapId simply calls zap.String() with TaskId standard key and this Task Id
func (task *Task) ZapId() zapcore.Field {
return zap.String(common.KeyTaskId, task.GetID())
}
func (task *Task) GetCtxOperationID() string {
return task.GetJobID() + "-" + task.GetID()[0:8]
}
func (task *Task) WithoutLogs() *Task {
return &Task{
ID: task.ID,
JobID: task.JobID,
Status: task.Status,
StatusMessage: task.StatusMessage,
StartTime: task.StartTime,
EndTime: task.EndTime,
HasProgress: task.HasProgress,
Progress: task.Progress,
TriggerOwner: task.TriggerOwner,
CanPause: task.CanPause,
CanStop: task.CanStop,
ActionsLogs: []*ActionLog{},
}
}
// MustMarshalAny is an util function to avoid error check
func MustMarshalAny(pb proto.Message) *anypb.Any {
mm, _ := anypb.New(pb)
return mm
}
// MustMarshalAnyMultiple is an util function to avoid error check
func MustMarshalAnyMultiple(pbs ...proto.Message) (out []*anypb.Any) {
for _, pb := range pbs {
out = append(out, MustMarshalAny(pb))
}
return
}