forked from reanahub/reana-client-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.go
More file actions
226 lines (198 loc) · 4.86 KB
/
Copy pathdiff.go
File metadata and controls
226 lines (198 loc) · 4.86 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*
This file is part of REANA.
Copyright (C) 2022, 2025, 2026 CERN.
REANA is free software; you can redistribute it and/or modify it
under the terms of the MIT License; see LICENSE file for more details.
*/
package cmd
import (
"encoding/json"
"fmt"
"io"
"reanahub/reana-client-go/client"
"reanahub/reana-client-go/client/operations"
"reanahub/reana-client-go/pkg/config"
"reanahub/reana-client-go/pkg/datautils"
"reanahub/reana-client-go/pkg/displayer"
"github.com/iancoleman/orderedmap"
"github.com/jedib0t/go-pretty/v6/text"
"github.com/spf13/cobra"
)
const diffDesc = `
Show diff between two workflows.
The ` + "``diff``" + ` command allows to compare two workflows, the workflow_a and
workflow_b, which must be provided as arguments. The output will show the
difference in workflow run parameters, the generated files, the logs, etc.
Examples:
$ reana-client diff myanalysis.42 myotheranalysis.43
$ reana-client diff myanalysis.42 myotheranalysis.43 --brief
`
type diffOptions struct {
token string
workflowA string
workflowB string
brief bool
unified int
}
// newDiffCmd creates a command to show diff between two workflows.
func newDiffCmd() *cobra.Command {
o := &diffOptions{}
cmd := &cobra.Command{
Use: "diff",
Short: "Show diff between two workflows.",
Long: diffDesc,
Args: cobra.ExactArgs(2),
RunE: func(cmd *cobra.Command, args []string) error {
o.workflowA = args[0]
o.workflowB = args[1]
return o.run(cmd)
},
}
f := cmd.Flags()
f.StringVarP(
&o.token,
"access-token",
"t",
"",
"Access token of the current user.",
)
f.BoolVarP(
&o.brief,
"brief",
"q",
false,
`If not set, differences in the contents of the
files in the two workspaces are shown.`,
)
f.IntVarP(
&o.unified,
"unified",
"u",
5,
"Sets number of context lines for workspace diff output.",
)
return cmd
}
func (o *diffOptions) run(cmd *cobra.Command) error {
diffParams := operations.NewGetWorkflowDiffParams()
diffParams.SetAccessToken(&o.token)
diffParams.SetWorkflowIDOrNamea(o.workflowA)
diffParams.SetWorkflowIDOrNameb(o.workflowB)
diffParams.SetBrief(&o.brief)
contextLines := fmt.Sprintf("%d", o.unified)
diffParams.SetContextLines(&contextLines)
api, err := client.ApiClient()
if err != nil {
return err
}
diffResp, err := api.Operations.GetWorkflowDiff(diffParams)
if err != nil {
return err
}
err = displayDiffPayload(cmd, diffResp.Payload)
if err != nil {
return err
}
return nil
}
func displayDiffPayload(
cmd *cobra.Command,
p *operations.GetWorkflowDiffOKBody,
) error {
if p.ReanaSpecification != "" {
specificationDiff := orderedmap.New()
err := json.Unmarshal([]byte(p.ReanaSpecification), &specificationDiff)
if err != nil {
return err
}
// Rename section workflow to specification
val, hasWorkflow := specificationDiff.Get("workflow")
if hasWorkflow {
specificationDiff.Set("specification", val)
specificationDiff.Delete("workflow")
}
equalSpecification := true
for _, section := range specificationDiff.Keys() {
// Convert diff to a slice of strings
sectionDiffs, _ := specificationDiff.Get(section)
linesInterface, ok := sectionDiffs.([]any)
if !ok {
return fmt.Errorf(
"expected diff to be an array, got %v",
sectionDiffs,
)
}
lines := make([]string, 0, len(linesInterface))
for _, line := range linesInterface {
lineString, ok := line.(string)
if !ok {
return fmt.Errorf(
"expected diff line to be a string, got %v",
line,
)
}
lines = append(lines, lineString)
}
if len(lines) != 0 {
equalSpecification = false
displayer.PrintColorable(
fmt.Sprintf(
"%s Differences in workflow %s\n",
config.LeadingMark,
section,
),
cmd.OutOrStdout(),
text.FgYellow,
text.Bold,
)
printDiff(lines, cmd.OutOrStdout())
}
}
if equalSpecification {
displayer.PrintColorable(
fmt.Sprintf(
"%s No differences in REANA specifications.\n",
config.LeadingMark,
),
cmd.OutOrStdout(),
text.FgYellow,
text.Bold,
)
}
cmd.Println() // Separation line
}
var workspaceDiffRaw string
err := json.Unmarshal([]byte(p.WorkspaceListing), &workspaceDiffRaw)
if err != nil {
return err
}
if workspaceDiffRaw != "" {
workspaceDiff := datautils.SplitLinesNoEmpty(workspaceDiffRaw)
displayer.PrintColorable(
fmt.Sprintf(
"%s Differences in workflow workspace\n",
config.LeadingMark,
),
cmd.OutOrStdout(),
text.FgYellow,
text.Bold,
)
printDiff(workspaceDiff, cmd.OutOrStdout())
}
return nil
}
func printDiff(lines []string, out io.Writer) {
for _, line := range lines {
lineColor := text.Reset
switch line[0] {
case '@':
lineColor = text.FgCyan
case '-':
lineColor = text.FgRed
case '+':
lineColor = text.FgGreen
}
displayer.PrintColorable(line, out, lineColor)
fmt.Fprintln(out)
}
}