-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.v
More file actions
114 lines (99 loc) · 1.73 KB
/
Copy pathmain.v
File metadata and controls
114 lines (99 loc) · 1.73 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
module main
import json
enum ObjectType {
user
group
}
fn (o ObjectType) to_string() string {
return match o {
.user { 'user' }
.group { 'group' }
}
}
struct Object {
type ObjectType
id string
name string
}
struct CreateObject {
object Object
}
struct UpdateObject {
object Object
}
struct DeleteObject {
id string
}
struct DeleteAllObjects {}
type Action = CreateObject | UpdateObject | DeleteObject | DeleteAllObjects
fn transform_action(action Action) string {
return match action {
CreateObject {
'create_object ${action.object.type} ${action.object.id} ${action.object.name}'
}
UpdateObject {
'update_object ${action.object.type} ${action.object.id} ${action.object.name}'
}
DeleteObject {
'delete_object ${action.id}'
}
DeleteAllObjects {
'delete_all_objects'
}
}
}
fn example_actions() []Action {
return [
CreateObject{
object: Object{
type: ObjectType.user
id: '1'
name: 'user'
}
},
UpdateObject{
object: Object{
type: ObjectType.user
id: '1'
name: 'user1 updated'
}
},
DeleteObject{
id: '1'
},
DeleteAllObjects{},
]
}
fn main() {
mut actions := example_actions()
// JSON encode
json_str := json.encode_pretty(actions)
println('## JSON')
println('')
println('```json')
println(json_str)
println('```')
println('')
// JSON decode
actions = json.decode([]Action, json_str) or {
eprintln('Error decoding JSON: ${err}')
return
}
println('## Debug')
println('')
println('```v')
for action in actions {
println(action)
}
println('```')
println('')
// Transformed
println('## Transformed')
println('')
println('```')
for action in example_actions() {
println(transform_action(action))
}
println('```')
println('')
}