Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 1 | // This file was auto-generated by the veyron idl tool. |
| 2 | // Source: vsync.idl |
| 3 | |
| 4 | package vsync |
| 5 | |
| 6 | import ( |
| 7 | "veyron/services/store/estore" |
| 8 | |
| 9 | "veyron2/storage" |
| 10 | |
| 11 | // The non-user imports are prefixed with "_gen_" to prevent collisions. |
Cosmos Nicolaou | b07fa77 | 2014-05-16 08:07:02 -0700 | [diff] [blame] | 12 | _gen_veyron2 "veyron2" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 13 | _gen_idl "veyron2/idl" |
| 14 | _gen_ipc "veyron2/ipc" |
| 15 | _gen_naming "veyron2/naming" |
Cosmos Nicolaou | ae67894 | 2014-05-17 17:21:43 -0700 | [diff] [blame] | 16 | _gen_rt "veyron2/rt" |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 17 | _gen_wiretype "veyron2/wiretype" |
| 18 | ) |
| 19 | |
| 20 | // DeviceID is the globally unique ID of a device. |
| 21 | type DeviceID string |
| 22 | |
| 23 | // GenID is the unique ID per generation per device. |
| 24 | type GenID uint64 |
| 25 | |
| 26 | // LSN is the log sequence number. |
| 27 | type LSN uint64 |
| 28 | |
| 29 | // GenVector is the generation vector. |
| 30 | type GenVector map[DeviceID]GenID |
| 31 | |
| 32 | // LogValue represents an object mutation within a transaction. |
| 33 | type LogValue struct { |
| 34 | // Mutation is the store mutation representing the change in the object. |
| 35 | Mutation estore.Mutation |
| 36 | // Delete indicates whether the mutation resulted in the object being |
| 37 | // deleted from the store. |
| 38 | Delete bool |
| 39 | // Continue tracks the transaction boundaries in a range of mutations. |
| 40 | // It is set to true in all transaction mutations except the last one |
| 41 | // in which it is set to false to mark the end of the transaction. |
| 42 | Continue bool |
| 43 | } |
| 44 | |
| 45 | // LogRec represents a single log record that is exchanged between two |
| 46 | // peers. |
| 47 | // |
| 48 | // It contains log related metadata: DevID is the id of the |
| 49 | // device that created the log record, GNum is the ID of the |
| 50 | // generation that the log record is part of, and LSN is the log |
| 51 | // sequence number of the log record in the generation GNum. |
| 52 | // |
| 53 | // It also contains information relevant to the updates to an object |
| 54 | // in the store: ObjID is the id of the object that was |
| 55 | // updated. CurVers is the current version number of the |
| 56 | // object. Parents can contain 0, 1 or 2 parent versions that the |
| 57 | // current version is derived from, and Value is the actual value of |
| 58 | // the object mutation. |
| 59 | type LogRec struct { |
| 60 | // Log related information. |
| 61 | DevID DeviceID |
| 62 | GNum GenID |
| 63 | LSN LSN |
| 64 | // Object related information. |
| 65 | ObjID storage.ID |
| 66 | CurVers storage.Version |
| 67 | Parents []storage.Version |
| 68 | Value LogValue |
| 69 | } |
| 70 | |
| 71 | // Sync allows a device to GetDeltas from another device. |
| 72 | // Sync is the interface the client binds and uses. |
| 73 | // Sync_InternalNoTagGetter is the interface without the TagGetter |
| 74 | // and UnresolveStep methods (both framework-added, rathern than user-defined), |
| 75 | // to enable embedding without method collisions. Not to be used directly by |
| 76 | // clients. |
| 77 | type Sync_InternalNoTagGetter interface { |
| 78 | |
| 79 | // GetDeltas returns a device's current generation vector and all the missing log records |
| 80 | // when compared to the incoming generation vector. |
| 81 | GetDeltas(In GenVector, ClientID DeviceID, opts ..._gen_ipc.ClientCallOpt) (reply SyncGetDeltasStream, err error) |
| 82 | } |
| 83 | type Sync interface { |
| 84 | _gen_idl.TagGetter |
| 85 | // UnresolveStep returns the names for the remote service, rooted at the |
| 86 | // service's immediate namespace ancestor. |
| 87 | UnresolveStep(opts ..._gen_ipc.ClientCallOpt) ([]string, error) |
| 88 | Sync_InternalNoTagGetter |
| 89 | } |
| 90 | |
| 91 | // SyncService is the interface the server implements. |
| 92 | type SyncService interface { |
| 93 | |
| 94 | // GetDeltas returns a device's current generation vector and all the missing log records |
| 95 | // when compared to the incoming generation vector. |
| 96 | GetDeltas(context _gen_ipc.Context, In GenVector, ClientID DeviceID, stream SyncServiceGetDeltasStream) (reply GenVector, err error) |
| 97 | } |
| 98 | |
| 99 | // SyncGetDeltasStream is the interface for streaming responses of the method |
| 100 | // GetDeltas in the service interface Sync. |
| 101 | type SyncGetDeltasStream interface { |
| 102 | |
| 103 | // Recv returns the next item in the input stream, blocking until |
| 104 | // an item is available. Returns io.EOF to indicate graceful end of input. |
| 105 | Recv() (item LogRec, err error) |
| 106 | |
| 107 | // Finish closes the stream and returns the positional return values for |
| 108 | // call. |
| 109 | Finish() (reply GenVector, err error) |
| 110 | |
| 111 | // Cancel cancels the RPC, notifying the server to stop processing. |
| 112 | Cancel() |
| 113 | } |
| 114 | |
| 115 | // Implementation of the SyncGetDeltasStream interface that is not exported. |
| 116 | type implSyncGetDeltasStream struct { |
| 117 | clientCall _gen_ipc.ClientCall |
| 118 | } |
| 119 | |
| 120 | func (c *implSyncGetDeltasStream) Recv() (item LogRec, err error) { |
| 121 | err = c.clientCall.Recv(&item) |
| 122 | return |
| 123 | } |
| 124 | |
| 125 | func (c *implSyncGetDeltasStream) Finish() (reply GenVector, err error) { |
| 126 | if ierr := c.clientCall.Finish(&reply, &err); ierr != nil { |
| 127 | err = ierr |
| 128 | } |
| 129 | return |
| 130 | } |
| 131 | |
| 132 | func (c *implSyncGetDeltasStream) Cancel() { |
| 133 | c.clientCall.Cancel() |
| 134 | } |
| 135 | |
| 136 | // SyncServiceGetDeltasStream is the interface for streaming responses of the method |
| 137 | // GetDeltas in the service interface Sync. |
| 138 | type SyncServiceGetDeltasStream interface { |
| 139 | // Send places the item onto the output stream, blocking if there is no buffer |
| 140 | // space available. |
| 141 | Send(item LogRec) error |
| 142 | } |
| 143 | |
| 144 | // Implementation of the SyncServiceGetDeltasStream interface that is not exported. |
| 145 | type implSyncServiceGetDeltasStream struct { |
| 146 | serverCall _gen_ipc.ServerCall |
| 147 | } |
| 148 | |
| 149 | func (s *implSyncServiceGetDeltasStream) Send(item LogRec) error { |
| 150 | return s.serverCall.Send(item) |
| 151 | } |
| 152 | |
| 153 | // BindSync returns the client stub implementing the Sync |
| 154 | // interface. |
| 155 | // |
| 156 | // If no _gen_ipc.Client is specified, the default _gen_ipc.Client in the |
| 157 | // global Runtime is used. |
| 158 | func BindSync(name string, opts ..._gen_ipc.BindOpt) (Sync, error) { |
| 159 | var client _gen_ipc.Client |
| 160 | switch len(opts) { |
| 161 | case 0: |
| 162 | client = _gen_rt.R().Client() |
| 163 | case 1: |
| 164 | switch o := opts[0].(type) { |
Cosmos Nicolaou | b07fa77 | 2014-05-16 08:07:02 -0700 | [diff] [blame] | 165 | case _gen_veyron2.Runtime: |
Jiri Simsa | 5293dcb | 2014-05-10 09:56:38 -0700 | [diff] [blame] | 166 | client = o.Client() |
| 167 | case _gen_ipc.Client: |
| 168 | client = o |
| 169 | default: |
| 170 | return nil, _gen_idl.ErrUnrecognizedOption |
| 171 | } |
| 172 | default: |
| 173 | return nil, _gen_idl.ErrTooManyOptionsToBind |
| 174 | } |
| 175 | stub := &clientStubSync{client: client, name: name} |
| 176 | |
| 177 | return stub, nil |
| 178 | } |
| 179 | |
| 180 | // NewServerSync creates a new server stub. |
| 181 | // |
| 182 | // It takes a regular server implementing the SyncService |
| 183 | // interface, and returns a new server stub. |
| 184 | func NewServerSync(server SyncService) interface{} { |
| 185 | return &ServerStubSync{ |
| 186 | service: server, |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | // clientStubSync implements Sync. |
| 191 | type clientStubSync struct { |
| 192 | client _gen_ipc.Client |
| 193 | name string |
| 194 | } |
| 195 | |
| 196 | func (c *clientStubSync) GetMethodTags(method string) []interface{} { |
| 197 | return GetSyncMethodTags(method) |
| 198 | } |
| 199 | |
| 200 | func (__gen_c *clientStubSync) GetDeltas(In GenVector, ClientID DeviceID, opts ..._gen_ipc.ClientCallOpt) (reply SyncGetDeltasStream, err error) { |
| 201 | var call _gen_ipc.ClientCall |
| 202 | if call, err = __gen_c.client.StartCall(__gen_c.name, "GetDeltas", []interface{}{In, ClientID}, opts...); err != nil { |
| 203 | return |
| 204 | } |
| 205 | reply = &implSyncGetDeltasStream{clientCall: call} |
| 206 | return |
| 207 | } |
| 208 | |
| 209 | func (c *clientStubSync) UnresolveStep(opts ..._gen_ipc.ClientCallOpt) (reply []string, err error) { |
| 210 | var call _gen_ipc.ClientCall |
| 211 | if call, err = c.client.StartCall(c.name, "UnresolveStep", nil, opts...); err != nil { |
| 212 | return |
| 213 | } |
| 214 | if ierr := call.Finish(&reply, &err); ierr != nil { |
| 215 | err = ierr |
| 216 | } |
| 217 | return |
| 218 | } |
| 219 | |
| 220 | // ServerStubSync wraps a server that implements |
| 221 | // SyncService and provides an object that satisfies |
| 222 | // the requirements of veyron2/ipc.ReflectInvoker. |
| 223 | type ServerStubSync struct { |
| 224 | service SyncService |
| 225 | } |
| 226 | |
| 227 | func (s *ServerStubSync) GetMethodTags(method string) []interface{} { |
| 228 | return GetSyncMethodTags(method) |
| 229 | } |
| 230 | |
| 231 | func (s *ServerStubSync) Signature(call _gen_ipc.ServerCall) (_gen_ipc.ServiceSignature, error) { |
| 232 | result := _gen_ipc.ServiceSignature{Methods: make(map[string]_gen_ipc.MethodSignature)} |
| 233 | result.Methods["GetDeltas"] = _gen_ipc.MethodSignature{ |
| 234 | InArgs: []_gen_ipc.MethodArgument{ |
| 235 | {Name: "In", Type: 67}, |
| 236 | {Name: "ClientID", Type: 65}, |
| 237 | }, |
| 238 | OutArgs: []_gen_ipc.MethodArgument{ |
| 239 | {Name: "Out", Type: 67}, |
| 240 | {Name: "Err", Type: 68}, |
| 241 | }, |
| 242 | |
| 243 | OutStream: 83, |
| 244 | } |
| 245 | |
| 246 | result.TypeDefs = []_gen_idl.AnyData{ |
| 247 | _gen_wiretype.NamedPrimitiveType{Type: 0x3, Name: "DeviceID", Tags: []string(nil)}, _gen_wiretype.NamedPrimitiveType{Type: 0x35, Name: "GenID", Tags: []string(nil)}, _gen_wiretype.MapType{Key: 0x41, Elem: 0x42, Name: "GenVector", Tags: []string(nil)}, _gen_wiretype.NamedPrimitiveType{Type: 0x1, Name: "error", Tags: []string(nil)}, _gen_wiretype.NamedPrimitiveType{Type: 0x35, Name: "LSN", Tags: []string(nil)}, _gen_wiretype.NamedPrimitiveType{Type: 0x32, Name: "byte", Tags: []string(nil)}, _gen_wiretype.ArrayType{Elem: 0x46, Len: 0x10, Name: "storage.ID", Tags: []string(nil)}, _gen_wiretype.NamedPrimitiveType{Type: 0x35, Name: "storage.Version", Tags: []string(nil)}, _gen_wiretype.SliceType{Elem: 0x48, Name: "", Tags: []string(nil)}, _gen_wiretype.NamedPrimitiveType{Type: 0x1, Name: "anydata", Tags: []string(nil)}, _gen_wiretype.NamedPrimitiveType{Type: 0x32, Name: "TagOp", Tags: []string(nil)}, _gen_wiretype.ArrayType{Elem: 0x46, Len: 0x10, Name: "ID", Tags: []string(nil)}, _gen_wiretype.StructType{ |
| 248 | []_gen_wiretype.FieldType{ |
| 249 | _gen_wiretype.FieldType{Type: 0x4b, Name: "Op"}, |
| 250 | _gen_wiretype.FieldType{Type: 0x4c, Name: "ACL"}, |
| 251 | }, |
| 252 | "Tag", []string(nil)}, |
| 253 | _gen_wiretype.SliceType{Elem: 0x4d, Name: "storage.TagList", Tags: []string(nil)}, _gen_wiretype.StructType{ |
| 254 | []_gen_wiretype.FieldType{ |
| 255 | _gen_wiretype.FieldType{Type: 0x3, Name: "Name"}, |
| 256 | _gen_wiretype.FieldType{Type: 0x4c, Name: "ID"}, |
| 257 | }, |
| 258 | "storage.DEntry", []string(nil)}, |
| 259 | _gen_wiretype.SliceType{Elem: 0x4f, Name: "", Tags: []string(nil)}, _gen_wiretype.StructType{ |
| 260 | []_gen_wiretype.FieldType{ |
| 261 | _gen_wiretype.FieldType{Type: 0x47, Name: "ID"}, |
| 262 | _gen_wiretype.FieldType{Type: 0x48, Name: "PriorVersion"}, |
| 263 | _gen_wiretype.FieldType{Type: 0x48, Name: "Version"}, |
| 264 | _gen_wiretype.FieldType{Type: 0x2, Name: "IsRoot"}, |
| 265 | _gen_wiretype.FieldType{Type: 0x4a, Name: "Value"}, |
| 266 | _gen_wiretype.FieldType{Type: 0x4e, Name: "Tags"}, |
| 267 | _gen_wiretype.FieldType{Type: 0x50, Name: "Dir"}, |
| 268 | }, |
| 269 | "estore.Mutation", []string(nil)}, |
| 270 | _gen_wiretype.StructType{ |
| 271 | []_gen_wiretype.FieldType{ |
| 272 | _gen_wiretype.FieldType{Type: 0x51, Name: "Mutation"}, |
| 273 | _gen_wiretype.FieldType{Type: 0x2, Name: "Delete"}, |
| 274 | _gen_wiretype.FieldType{Type: 0x2, Name: "Continue"}, |
| 275 | }, |
| 276 | "LogValue", []string(nil)}, |
| 277 | _gen_wiretype.StructType{ |
| 278 | []_gen_wiretype.FieldType{ |
| 279 | _gen_wiretype.FieldType{Type: 0x41, Name: "DevID"}, |
| 280 | _gen_wiretype.FieldType{Type: 0x42, Name: "GNum"}, |
| 281 | _gen_wiretype.FieldType{Type: 0x45, Name: "LSN"}, |
| 282 | _gen_wiretype.FieldType{Type: 0x47, Name: "ObjID"}, |
| 283 | _gen_wiretype.FieldType{Type: 0x48, Name: "CurVers"}, |
| 284 | _gen_wiretype.FieldType{Type: 0x49, Name: "Parents"}, |
| 285 | _gen_wiretype.FieldType{Type: 0x52, Name: "Value"}, |
| 286 | }, |
| 287 | "LogRec", []string(nil)}, |
| 288 | } |
| 289 | |
| 290 | return result, nil |
| 291 | } |
| 292 | |
| 293 | func (s *ServerStubSync) UnresolveStep(call _gen_ipc.ServerCall) (reply []string, err error) { |
| 294 | if unresolver, ok := s.service.(_gen_ipc.Unresolver); ok { |
| 295 | return unresolver.UnresolveStep(call) |
| 296 | } |
| 297 | if call.Server() == nil { |
| 298 | return |
| 299 | } |
| 300 | var published []string |
| 301 | if published, err = call.Server().Published(); err != nil || published == nil { |
| 302 | return |
| 303 | } |
| 304 | reply = make([]string, len(published)) |
| 305 | for i, p := range published { |
| 306 | reply[i] = _gen_naming.Join(p, call.Name()) |
| 307 | } |
| 308 | return |
| 309 | } |
| 310 | |
| 311 | func (__gen_s *ServerStubSync) GetDeltas(call _gen_ipc.ServerCall, In GenVector, ClientID DeviceID) (reply GenVector, err error) { |
| 312 | stream := &implSyncServiceGetDeltasStream{serverCall: call} |
| 313 | reply, err = __gen_s.service.GetDeltas(call, In, ClientID, stream) |
| 314 | return |
| 315 | } |
| 316 | |
| 317 | func GetSyncMethodTags(method string) []interface{} { |
| 318 | switch method { |
| 319 | case "GetDeltas": |
| 320 | return []interface{}{} |
| 321 | default: |
| 322 | return nil |
| 323 | } |
| 324 | } |