-
Notifications
You must be signed in to change notification settings - Fork 855
/
Copy pathcodegen.proto
132 lines (114 loc) · 3.1 KB
/
codegen.proto
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
syntax = "proto3";
package plugin;
service CodegenService {
rpc Generate (GenerateRequest) returns (GenerateResponse);
}
message File {
string name = 1 [json_name = "name"];
bytes contents = 2 [json_name = "contents"];
}
message Settings {
// Rename message was field 5
// Overides message was field 6
// PythonCode message was field 8
// KotlinCode message was field 9
// GoCode message was field 10;
// JSONCode message was field 11;
reserved 5, 8, 9, 10, 11;
string version = 1 [json_name = "version"];
string engine = 2 [json_name = "engine"];
repeated string schema = 3 [json_name = "schema"];
repeated string queries = 4 [json_name = "queries"];
Codegen codegen = 12 [json_name = "codegen"];
}
message Codegen {
message Process {
string cmd = 1;
}
message WASM {
string url = 1;
string sha256 = 2;
}
string out = 1 [json_name = "out"];
string plugin = 2 [json_name = "plugin"];
bytes options = 3 [json_name = "options"];
repeated string env = 4 [json_name = "env"];
Process process = 5 [json_name = "process"];
WASM wasm = 6 [json_name = "wasm"];
}
message Catalog {
string comment = 1;
string default_schema = 2;
string name = 3;
repeated Schema schemas = 4;
}
message Schema {
string comment = 1;
string name = 2;
repeated Table tables = 3;
repeated Enum enums = 4;
repeated CompositeType composite_types = 5;
}
message CompositeType {
string name = 1;
string comment = 2;
}
message Enum {
string name = 1;
repeated string vals = 2;
string comment = 3;
}
message Table {
Identifier rel = 1;
repeated Column columns = 2;
string comment = 3;
}
message Identifier {
string catalog = 1;
string schema = 2;
string name = 3;
}
message Column {
string name = 1;
bool not_null = 3;
bool is_array = 4;
string comment = 5;
int32 length = 6;
bool is_named_param = 7;
bool is_func_call = 8;
// XXX: Figure out what PostgreSQL calls `foo.id`
string scope = 9;
Identifier table = 10;
string table_alias = 11;
Identifier type = 12;
bool is_sqlc_slice = 13;
Identifier embed_table = 14;
string original_name = 15;
bool unsigned = 16;
int32 array_dims = 17;
}
message Query {
string text = 1 [json_name = "text"];
string name = 2 [json_name = "name"];
string cmd = 3 [json_name = "cmd"];
repeated Column columns = 4 [json_name = "columns"];
repeated Parameter params = 5 [json_name = "parameters"];
repeated string comments = 6 [json_name = "comments"];
string filename = 7 [json_name = "filename"];
Identifier insert_into_table = 8 [json_name = "insert_into_table"];
}
message Parameter {
int32 number = 1 [json_name = "number"];
Column column = 2 [json_name = "column"];
}
message GenerateRequest {
Settings settings = 1 [json_name = "settings"];
Catalog catalog = 2 [json_name = "catalog"];
repeated Query queries = 3 [json_name = "queries"];
string sqlc_version = 4 [json_name = "sqlc_version"];
bytes plugin_options = 5 [json_name = "plugin_options"];
bytes global_options = 6 [json_name = "global_options"];
}
message GenerateResponse {
repeated File files = 1 [json_name = "files"];
}