-
Notifications
You must be signed in to change notification settings - Fork 0
/
synclet.pb.go
446 lines (391 loc) · 15.7 KB
/
synclet.pb.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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: github.com/windmilleng/tilt/internal/synclet/synclet.proto
package proto // import "github.com/windmilleng/tilt/internal/synclet/proto"
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import (
context "golang.org/x/net/context"
grpc "google.golang.org/grpc"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
type LogLevel int32
const (
LogLevel_INFO LogLevel = 0
LogLevel_VERBOSE LogLevel = 1
LogLevel_DEBUG LogLevel = 2
)
var LogLevel_name = map[int32]string{
0: "INFO",
1: "VERBOSE",
2: "DEBUG",
}
var LogLevel_value = map[string]int32{
"INFO": 0,
"VERBOSE": 1,
"DEBUG": 2,
}
func (x LogLevel) String() string {
return proto.EnumName(LogLevel_name, int32(x))
}
func (LogLevel) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_synclet_3ef7bd243516208e, []int{0}
}
type Cmd struct {
Argv []string `protobuf:"bytes,1,rep,name=argv,proto3" json:"argv,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Cmd) Reset() { *m = Cmd{} }
func (m *Cmd) String() string { return proto.CompactTextString(m) }
func (*Cmd) ProtoMessage() {}
func (*Cmd) Descriptor() ([]byte, []int) {
return fileDescriptor_synclet_3ef7bd243516208e, []int{0}
}
func (m *Cmd) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Cmd.Unmarshal(m, b)
}
func (m *Cmd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Cmd.Marshal(b, m, deterministic)
}
func (dst *Cmd) XXX_Merge(src proto.Message) {
xxx_messageInfo_Cmd.Merge(dst, src)
}
func (m *Cmd) XXX_Size() int {
return xxx_messageInfo_Cmd.Size(m)
}
func (m *Cmd) XXX_DiscardUnknown() {
xxx_messageInfo_Cmd.DiscardUnknown(m)
}
var xxx_messageInfo_Cmd proto.InternalMessageInfo
func (m *Cmd) GetArgv() []string {
if m != nil {
return m.Argv
}
return nil
}
type UpdateContainerRequest struct {
ContainerId string `protobuf:"bytes,1,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty"`
TarArchive []byte `protobuf:"bytes,2,opt,name=tar_archive,json=tarArchive,proto3" json:"tar_archive,omitempty"`
FilesToDelete []string `protobuf:"bytes,3,rep,name=files_to_delete,json=filesToDelete,proto3" json:"files_to_delete,omitempty"`
Commands []*Cmd `protobuf:"bytes,4,rep,name=commands,proto3" json:"commands,omitempty"`
LogStyle *LogStyle `protobuf:"bytes,5,opt,name=log_style,json=logStyle,proto3" json:"log_style,omitempty"`
HotReload bool `protobuf:"varint,6,opt,name=hot_reload,json=hotReload,proto3" json:"hot_reload,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateContainerRequest) Reset() { *m = UpdateContainerRequest{} }
func (m *UpdateContainerRequest) String() string { return proto.CompactTextString(m) }
func (*UpdateContainerRequest) ProtoMessage() {}
func (*UpdateContainerRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_synclet_3ef7bd243516208e, []int{1}
}
func (m *UpdateContainerRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateContainerRequest.Unmarshal(m, b)
}
func (m *UpdateContainerRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateContainerRequest.Marshal(b, m, deterministic)
}
func (dst *UpdateContainerRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateContainerRequest.Merge(dst, src)
}
func (m *UpdateContainerRequest) XXX_Size() int {
return xxx_messageInfo_UpdateContainerRequest.Size(m)
}
func (m *UpdateContainerRequest) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateContainerRequest.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateContainerRequest proto.InternalMessageInfo
func (m *UpdateContainerRequest) GetContainerId() string {
if m != nil {
return m.ContainerId
}
return ""
}
func (m *UpdateContainerRequest) GetTarArchive() []byte {
if m != nil {
return m.TarArchive
}
return nil
}
func (m *UpdateContainerRequest) GetFilesToDelete() []string {
if m != nil {
return m.FilesToDelete
}
return nil
}
func (m *UpdateContainerRequest) GetCommands() []*Cmd {
if m != nil {
return m.Commands
}
return nil
}
func (m *UpdateContainerRequest) GetLogStyle() *LogStyle {
if m != nil {
return m.LogStyle
}
return nil
}
func (m *UpdateContainerRequest) GetHotReload() bool {
if m != nil {
return m.HotReload
}
return false
}
type LogMessage struct {
Level LogLevel `protobuf:"varint,1,opt,name=level,proto3,enum=synclet.LogLevel" json:"level,omitempty"`
Message []byte `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LogMessage) Reset() { *m = LogMessage{} }
func (m *LogMessage) String() string { return proto.CompactTextString(m) }
func (*LogMessage) ProtoMessage() {}
func (*LogMessage) Descriptor() ([]byte, []int) {
return fileDescriptor_synclet_3ef7bd243516208e, []int{2}
}
func (m *LogMessage) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LogMessage.Unmarshal(m, b)
}
func (m *LogMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LogMessage.Marshal(b, m, deterministic)
}
func (dst *LogMessage) XXX_Merge(src proto.Message) {
xxx_messageInfo_LogMessage.Merge(dst, src)
}
func (m *LogMessage) XXX_Size() int {
return xxx_messageInfo_LogMessage.Size(m)
}
func (m *LogMessage) XXX_DiscardUnknown() {
xxx_messageInfo_LogMessage.DiscardUnknown(m)
}
var xxx_messageInfo_LogMessage proto.InternalMessageInfo
func (m *LogMessage) GetLevel() LogLevel {
if m != nil {
return m.Level
}
return LogLevel_INFO
}
func (m *LogMessage) GetMessage() []byte {
if m != nil {
return m.Message
}
return nil
}
type UpdateContainerReply struct {
LogMessage *LogMessage `protobuf:"bytes,1,opt,name=log_message,json=logMessage,proto3" json:"log_message,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *UpdateContainerReply) Reset() { *m = UpdateContainerReply{} }
func (m *UpdateContainerReply) String() string { return proto.CompactTextString(m) }
func (*UpdateContainerReply) ProtoMessage() {}
func (*UpdateContainerReply) Descriptor() ([]byte, []int) {
return fileDescriptor_synclet_3ef7bd243516208e, []int{3}
}
func (m *UpdateContainerReply) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_UpdateContainerReply.Unmarshal(m, b)
}
func (m *UpdateContainerReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_UpdateContainerReply.Marshal(b, m, deterministic)
}
func (dst *UpdateContainerReply) XXX_Merge(src proto.Message) {
xxx_messageInfo_UpdateContainerReply.Merge(dst, src)
}
func (m *UpdateContainerReply) XXX_Size() int {
return xxx_messageInfo_UpdateContainerReply.Size(m)
}
func (m *UpdateContainerReply) XXX_DiscardUnknown() {
xxx_messageInfo_UpdateContainerReply.DiscardUnknown(m)
}
var xxx_messageInfo_UpdateContainerReply proto.InternalMessageInfo
func (m *UpdateContainerReply) GetLogMessage() *LogMessage {
if m != nil {
return m.LogMessage
}
return nil
}
type LogStyle struct {
ColorsEnabled bool `protobuf:"varint,1,opt,name=colors_enabled,json=colorsEnabled,proto3" json:"colors_enabled,omitempty"`
Level LogLevel `protobuf:"varint,2,opt,name=level,proto3,enum=synclet.LogLevel" json:"level,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *LogStyle) Reset() { *m = LogStyle{} }
func (m *LogStyle) String() string { return proto.CompactTextString(m) }
func (*LogStyle) ProtoMessage() {}
func (*LogStyle) Descriptor() ([]byte, []int) {
return fileDescriptor_synclet_3ef7bd243516208e, []int{4}
}
func (m *LogStyle) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LogStyle.Unmarshal(m, b)
}
func (m *LogStyle) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_LogStyle.Marshal(b, m, deterministic)
}
func (dst *LogStyle) XXX_Merge(src proto.Message) {
xxx_messageInfo_LogStyle.Merge(dst, src)
}
func (m *LogStyle) XXX_Size() int {
return xxx_messageInfo_LogStyle.Size(m)
}
func (m *LogStyle) XXX_DiscardUnknown() {
xxx_messageInfo_LogStyle.DiscardUnknown(m)
}
var xxx_messageInfo_LogStyle proto.InternalMessageInfo
func (m *LogStyle) GetColorsEnabled() bool {
if m != nil {
return m.ColorsEnabled
}
return false
}
func (m *LogStyle) GetLevel() LogLevel {
if m != nil {
return m.Level
}
return LogLevel_INFO
}
func init() {
proto.RegisterType((*Cmd)(nil), "synclet.Cmd")
proto.RegisterType((*UpdateContainerRequest)(nil), "synclet.UpdateContainerRequest")
proto.RegisterType((*LogMessage)(nil), "synclet.LogMessage")
proto.RegisterType((*UpdateContainerReply)(nil), "synclet.UpdateContainerReply")
proto.RegisterType((*LogStyle)(nil), "synclet.LogStyle")
proto.RegisterEnum("synclet.LogLevel", LogLevel_name, LogLevel_value)
}
// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4
// SyncletClient is the client API for Synclet service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type SyncletClient interface {
// updates the specified container and then restarts it
// (much functionality packed into one rpc to minimize latency)
UpdateContainer(ctx context.Context, in *UpdateContainerRequest, opts ...grpc.CallOption) (Synclet_UpdateContainerClient, error)
}
type syncletClient struct {
cc *grpc.ClientConn
}
func NewSyncletClient(cc *grpc.ClientConn) SyncletClient {
return &syncletClient{cc}
}
func (c *syncletClient) UpdateContainer(ctx context.Context, in *UpdateContainerRequest, opts ...grpc.CallOption) (Synclet_UpdateContainerClient, error) {
stream, err := c.cc.NewStream(ctx, &_Synclet_serviceDesc.Streams[0], "/synclet.Synclet/UpdateContainer", opts...)
if err != nil {
return nil, err
}
x := &syncletUpdateContainerClient{stream}
if err := x.ClientStream.SendMsg(in); err != nil {
return nil, err
}
if err := x.ClientStream.CloseSend(); err != nil {
return nil, err
}
return x, nil
}
type Synclet_UpdateContainerClient interface {
Recv() (*UpdateContainerReply, error)
grpc.ClientStream
}
type syncletUpdateContainerClient struct {
grpc.ClientStream
}
func (x *syncletUpdateContainerClient) Recv() (*UpdateContainerReply, error) {
m := new(UpdateContainerReply)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
// SyncletServer is the server API for Synclet service.
type SyncletServer interface {
// updates the specified container and then restarts it
// (much functionality packed into one rpc to minimize latency)
UpdateContainer(*UpdateContainerRequest, Synclet_UpdateContainerServer) error
}
func RegisterSyncletServer(s *grpc.Server, srv SyncletServer) {
s.RegisterService(&_Synclet_serviceDesc, srv)
}
func _Synclet_UpdateContainer_Handler(srv interface{}, stream grpc.ServerStream) error {
m := new(UpdateContainerRequest)
if err := stream.RecvMsg(m); err != nil {
return err
}
return srv.(SyncletServer).UpdateContainer(m, &syncletUpdateContainerServer{stream})
}
type Synclet_UpdateContainerServer interface {
Send(*UpdateContainerReply) error
grpc.ServerStream
}
type syncletUpdateContainerServer struct {
grpc.ServerStream
}
func (x *syncletUpdateContainerServer) Send(m *UpdateContainerReply) error {
return x.ServerStream.SendMsg(m)
}
var _Synclet_serviceDesc = grpc.ServiceDesc{
ServiceName: "synclet.Synclet",
HandlerType: (*SyncletServer)(nil),
Methods: []grpc.MethodDesc{},
Streams: []grpc.StreamDesc{
{
StreamName: "UpdateContainer",
Handler: _Synclet_UpdateContainer_Handler,
ServerStreams: true,
},
},
Metadata: "github.com/windmilleng/tilt/internal/synclet/synclet.proto",
}
func init() {
proto.RegisterFile("github.com/windmilleng/tilt/internal/synclet/synclet.proto", fileDescriptor_synclet_3ef7bd243516208e)
}
var fileDescriptor_synclet_3ef7bd243516208e = []byte{
// 467 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0xdf, 0x6f, 0xd3, 0x30,
0x10, 0xc7, 0xe7, 0xfe, 0x58, 0x93, 0x4b, 0xb7, 0x15, 0x83, 0x50, 0x40, 0x9a, 0x16, 0x22, 0x01,
0x11, 0x42, 0x2d, 0x2a, 0x3c, 0xa0, 0xf1, 0x44, 0xbb, 0x82, 0x26, 0x15, 0x2a, 0xb9, 0x94, 0x87,
0xbd, 0x04, 0x37, 0x39, 0xd2, 0x48, 0x4e, 0x5c, 0x1c, 0xaf, 0xa8, 0x7f, 0x3c, 0x12, 0xaa, 0xd3,
0x84, 0xdf, 0x48, 0x7b, 0x89, 0xcf, 0x9f, 0xaf, 0x7d, 0x77, 0xdf, 0xf8, 0xe0, 0x3c, 0x49, 0xf5,
0xea, 0x7a, 0xd9, 0x8f, 0x64, 0x36, 0xf8, 0x9a, 0xe6, 0x71, 0x96, 0x0a, 0x81, 0x79, 0x32, 0xd0,
0xa9, 0xd0, 0x83, 0x34, 0xd7, 0xa8, 0x72, 0x2e, 0x06, 0xc5, 0x36, 0x8f, 0x04, 0xea, 0x6a, 0xed,
0xaf, 0x95, 0xd4, 0x92, 0x76, 0xf6, 0x5b, 0xff, 0x1e, 0x34, 0xc7, 0x59, 0x4c, 0x29, 0xb4, 0xb8,
0x4a, 0x36, 0x2e, 0xf1, 0x9a, 0x81, 0xcd, 0x4c, 0xec, 0x7f, 0x23, 0x70, 0x77, 0xb1, 0x8e, 0xb9,
0xc6, 0xb1, 0xcc, 0x35, 0x4f, 0x73, 0x54, 0x0c, 0xbf, 0x5c, 0x63, 0xa1, 0xe9, 0x03, 0xe8, 0x46,
0x15, 0x0b, 0xd3, 0xd8, 0x25, 0x1e, 0x09, 0x6c, 0xe6, 0xd4, 0xec, 0x32, 0xa6, 0x67, 0xe0, 0x68,
0xae, 0x42, 0xae, 0xa2, 0x55, 0xba, 0x41, 0xb7, 0xe1, 0x91, 0xa0, 0xcb, 0x40, 0x73, 0xf5, 0xba,
0x24, 0xf4, 0x11, 0x9c, 0x7c, 0x4e, 0x05, 0x16, 0xa1, 0x96, 0x61, 0x8c, 0x02, 0x35, 0xba, 0x4d,
0x53, 0xfd, 0xc8, 0xe0, 0x0f, 0xf2, 0xc2, 0x40, 0x1a, 0x80, 0x15, 0xc9, 0x2c, 0xe3, 0x79, 0x5c,
0xb8, 0x2d, 0xaf, 0x19, 0x38, 0xc3, 0x6e, 0xbf, 0x32, 0x33, 0xce, 0x62, 0x56, 0xab, 0xb4, 0x0f,
0xb6, 0x90, 0x49, 0x58, 0xe8, 0xad, 0x40, 0xb7, 0xed, 0x91, 0xc0, 0x19, 0xde, 0xaa, 0x8f, 0x4e,
0x65, 0x32, 0xdf, 0x09, 0xcc, 0x12, 0xfb, 0x88, 0x9e, 0x02, 0xac, 0xa4, 0x0e, 0x15, 0x0a, 0xc9,
0x63, 0xf7, 0xd0, 0x23, 0x81, 0xc5, 0xec, 0x95, 0xd4, 0xcc, 0x00, 0x7f, 0x06, 0x30, 0x95, 0xc9,
0x3b, 0x2c, 0x0a, 0x9e, 0x20, 0x7d, 0x0c, 0x6d, 0x81, 0x1b, 0x14, 0xc6, 0xeb, 0xf1, 0xaf, 0x89,
0xa7, 0x3b, 0x81, 0x95, 0x3a, 0x75, 0xa1, 0x93, 0x95, 0x77, 0xf6, 0xa6, 0xab, 0xad, 0x3f, 0x85,
0x3b, 0x7f, 0xfc, 0xcf, 0xb5, 0xd8, 0xd2, 0x17, 0xe0, 0xec, 0xfa, 0xae, 0x6e, 0x11, 0xd3, 0xf9,
0xed, 0x9f, 0x0b, 0xec, 0x9b, 0x60, 0x20, 0xea, 0xd8, 0xbf, 0x02, 0xab, 0xf2, 0x44, 0x1f, 0xc2,
0x71, 0x24, 0x85, 0x54, 0x45, 0x88, 0x39, 0x5f, 0x0a, 0x2c, 0x5f, 0xc4, 0x62, 0x47, 0x25, 0x9d,
0x94, 0xf0, 0x87, 0x87, 0xc6, 0xff, 0x3d, 0x3c, 0x79, 0x6a, 0x72, 0x1b, 0x44, 0x2d, 0x68, 0x5d,
0xbe, 0x7f, 0x33, 0xeb, 0x1d, 0x50, 0x07, 0x3a, 0x1f, 0x27, 0x6c, 0x34, 0x9b, 0x4f, 0x7a, 0x84,
0xda, 0xd0, 0xbe, 0x98, 0x8c, 0x16, 0x6f, 0x7b, 0x8d, 0xe1, 0x27, 0xe8, 0xcc, 0xcb, 0x44, 0x74,
0x01, 0x27, 0xbf, 0x59, 0xa4, 0x67, 0x75, 0x95, 0xbf, 0x0f, 0xd3, 0xfd, 0xd3, 0x7f, 0x1f, 0x58,
0x8b, 0xad, 0x7f, 0xf0, 0x8c, 0x8c, 0xce, 0xaf, 0x5e, 0xde, 0x68, 0xd8, 0xcd, 0x90, 0xbf, 0x32,
0xdf, 0xe5, 0xa1, 0x59, 0x9e, 0x7f, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x2b, 0xd3, 0x39, 0x35, 0x2f,
0x03, 0x00, 0x00,
}