-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilecoin-descriptors.go
148 lines (122 loc) · 3.65 KB
/
filecoin-descriptors.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
141
142
143
144
145
146
147
148
package main
import (
"encoding/json"
"fmt"
"log"
"os"
"runtime"
"strings"
"reflect"
"github.com/filecoin-project/go-state-types/abi"
)
var apiUrls = []string{
"https://api.node.glif.io/rpc/v1",
"https://api.calibration.node.glif.io/rpc/v1",
}
func main() {
/*
* Preparation
*/
// Create output directory if not exists
if err := os.MkdirAll("output", os.ModePerm); err != nil {
log.Fatalf("Failed to create output directory: %v", err)
}
/*
* Actor descriptors
*/
var actorDescriptorMap = ActorDescriptorMap{}
for name, reflectableActor := range reflectableActors {
// State reflection
var actorState DataTypeMap = nil
if stateType := reflect.TypeOf(reflectableActor.State); stateType != nil {
stateDataType := GetDataType(stateType)
if stateDataType.Type != TypeObject {
log.Fatalf("%s actor state is not an object", name)
}
actorState = stateDataType.Children
}
// Methods reflection
var actorMethodMap = ActorMethodMap{}
// Add Send method
if name != "system" {
emptyType := reflect.TypeOf((*abi.EmptyValue)(nil))
emptyDataType := GetDataType(emptyType)
actorMethodMap[0] = ActorMethod{
Name: "Send",
Param: emptyDataType,
Return: emptyDataType,
}
}
// Iterate over actor methods
for key, method := range reflectableActor.Methods {
var actorMethod ActorMethod
methodType := reflect.TypeOf(method)
if methodType.Name() == "CustomMethod" {
var customMethod = method.(CustomMethod)
actorMethod.Name = customMethod.Name
actorMethod.Param = GetDataType(reflect.TypeOf(customMethod.Param))
actorMethod.Return = GetDataType(reflect.TypeOf(customMethod.Return))
} else {
// Get method DataType
methodDataType := GetDataType(methodType)
// Set method name
fullName := runtime.FuncForPC(reflect.ValueOf(method).Pointer()).Name()
nameParts := strings.Split(fullName, ".")
actorMethod.Name = nameParts[len(nameParts)-1]
// Set method parameter
paramsCount := len(methodDataType.Params)
if paramsCount != 3 {
log.Fatalf("%s actor method %s has %d parameters, expected 3", name, method, paramsCount)
}
firstParamName := methodDataType.Params[0].Name
if firstParamName != "Actor" {
log.Fatalf("%s actor method %s has %s as first parameter, should be Actor", name, method, firstParamName)
}
secondParamName := methodDataType.Params[1].Name
if secondParamName != "Runtime" {
log.Fatalf("%s actor method %s has %s as first parameter, should be Runtime", name, method, secondParamName)
}
actorMethod.Param = methodDataType.Params[2]
// Set method return value
returnsCount := len(methodDataType.Returns)
if returnsCount != 1 {
log.Fatalf("%s actor method %s has %d return values, expected 1", name, method, returnsCount)
}
actorMethod.Return = methodDataType.Returns[0]
}
// Store method in map
actorMethodMap[key] = actorMethod
}
// Set actor descriptor
actorDescriptorMap[name] = ActorDescriptor{
State: actorState,
Methods: actorMethodMap,
}
}
// Write actor descriptors to JSON file
if err := writeJsonFile(actorDescriptorMap, "actor-descriptors"); err != nil {
log.Fatalf("Failed to write actor descriptors to JSON file: %v", err)
}
/*
* Done
*/
fmt.Println("Done")
}
func writeJsonFile(data interface{}, filename string) error {
// Marshal data to JSON
dataJson, err := json.MarshalIndent(data, "", " ")
if err != nil {
return err
}
// Create file
f, err := os.Create(fmt.Sprintf("output/%s.json", filename))
if err != nil {
return err
}
defer f.Close()
// Write file
if _, err = f.Write(dataJson); err != nil {
return err
}
return nil
}