-
Notifications
You must be signed in to change notification settings - Fork 0
/
weaver.go
888 lines (763 loc) · 26.1 KB
/
weaver.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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
// Copyright 2023 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package weaver provides the interface for building
// [single-image distributed programs].
//
// A program is composed of a set of Go interfaces called
// components. Components are recognized by "weaver generate" (typically invoked
// via "go generate"). "weaver generate" generates code that allows a component
// to be invoked over the network. This flexibility allows Service Weaver
// to decompose the program execution across many processes and machines.
//
// [single-image distributed programs]: https://serviceweaver.dev
package xcweaver
import (
"context"
"encoding/json"
"errors"
"fmt"
"log"
"log/slog"
"net"
"net/http"
"os"
"sync"
amqp "github.com/rabbitmq/amqp091-go"
"github.com/redis/go-redis/v9"
"github.com/TiagoMalhadas/xcweaver/internal/reflection"
"github.com/TiagoMalhadas/xcweaver/internal/weaver"
"github.com/TiagoMalhadas/xcweaver/runtime"
"github.com/TiagoMalhadas/xcweaver/runtime/codegen"
"go.opentelemetry.io/otel/trace"
)
//go:generate ./dev/protoc.sh internal/status/status.proto
//go:generate ./dev/protoc.sh internal/tool/single/single.proto
//go:generate ./dev/protoc.sh internal/tool/ssh/impl/ssh.proto
//go:generate ./dev/protoc.sh runtime/protos/runtime.proto
//go:generate ./dev/protoc.sh runtime/protos/config.proto
//go:generate ./cmd/weaver/weaver generate . ./internal/tool/multi
//go:generate ./dev/writedeps.sh
// RemoteCallError indicates that a remote component method call failed to
// execute properly. This can happen, for example, because of a failed machine
// or a network partition. Here's an illustrative example:
//
// // Call the foo.Foo method.
// err := foo.Foo(ctx)
// if errors.Is(err, weaver.RemoteCallError) {
// // foo.Foo did not execute properly.
// } else if err != nil {
// // foo.Foo executed properly, but returned an error.
// } else {
// // foo.Foo executed properly and did not return an error.
// }
//
// Note that if a method call returns an error with an embedded
// RemoteCallError, it does NOT mean that the method never executed. The method
// may have executed partially or fully. Thus, you must be careful retrying
// method calls that result in a RemoteCallError. Ensuring that all methods are
// either read-only or idempotent is one way to ensure safe retries, for
// example.
var RemoteCallError = errors.New("Service Weaver remote call error")
// HealthzHandler is a health-check handler that returns an OK status for all
// incoming HTTP requests.
var HealthzHandler = func(w http.ResponseWriter, _ *http.Request) {
fmt.Fprintf(w, "OK")
}
// HealthzURL is the URL path on which Service Weaver performs health checks.
// Every application HTTP server must register a handler for this URL path,
// e.g.:
//
// mux := http.NewServeMux()
// mux.HandleFunc(weaver.HealthzURL, func(http.ResponseWriter, *http.Request) {
// // ...
// })
//
// As a convenience, Service Weaver registers HealthzHandler under
// this URL path in the default ServerMux, i.e.:
//
// http.HandleFunc(weaver.HealthzURL, weaver.HealthzHandler)
const HealthzURL = "/debug/weaver/healthz"
var healthzInit sync.Once
// Main is the interface implemented by an application's main component.
type Main interface{}
// PointerToMain is a type constraint that asserts *T is an instance of Main
// (i.e. T is a struct that embeds weaver.Implements[weaver.Main]).
type PointerToMain[T any] interface {
*T
InstanceOf[Main]
}
// Run runs app as a Service Weaver application.
//
// The application is composed of a set of components that include weaver.Main
// as well as any components transitively needed by weaver.Main. An instance
// that implement weaver.Main is automatically created by weaver.Run and passed
// to app. Note: other replicas in which weaver.Run is called may also create
// instances of weaver.Main.
//
// The type T must be a struct type that contains an embedded
// `weaver.Implements[weaver.Main]` field. A value of type T is created,
// initialized (by calling its Init method if any), and a pointer to the value
// is passed to app. app contains the main body of the application; it will
// typically run HTTP servers, etc.
//
// If this process is hosting the `weaver.Main` component, Run will call app
// and will return when app returns. If this process is hosting other
// components, Run will start those components and never return. Most callers
// of Run will not do anything (other than possibly logging any returned error)
// after Run returns.
//
// func main() {
// if err := weaver.Run(context.Background(), app); err != nil {
// log.Fatal(err)
// }
// }
func Run[T any, P PointerToMain[T]](ctx context.Context, app func(context.Context, *T) error) error {
// Register HealthzHandler in the default ServerMux.
healthzInit.Do(func() {
http.HandleFunc(HealthzURL, HealthzHandler)
})
//add empty lineage to context
var lineage []WriteIdentifier
ctx = context.WithValue(ctx, contextKey("lineage"), lineage)
fmt.Println("correct version")
bootstrap, err := runtime.GetBootstrap(ctx)
if err != nil {
return err
}
if !bootstrap.Exists() {
return runLocal[T, P](ctx, app)
}
return runRemote[T, P](ctx, app, bootstrap)
}
func runLocal[T any, _ PointerToMain[T]](ctx context.Context, app func(context.Context, *T) error) error {
// Read config from SERVICEWEAVER_CONFIG env variable, if non-empty.
opts := weaver.SingleWeaveletOptions{}
if filename := os.Getenv("SERVICEWEAVER_CONFIG"); filename != "" {
contents, err := os.ReadFile(filename)
if err != nil {
return fmt.Errorf("config file: %w", err)
}
opts.ConfigFilename = filename
opts.Config = string(contents)
}
regs := codegen.Registered()
if err := validateRegistrations(regs); err != nil {
return err
}
wlet, err := weaver.NewSingleWeavelet(ctx, regs, opts)
if err != nil {
return err
}
go func() {
if err := wlet.ServeStatus(ctx); err != nil {
fmt.Fprintln(os.Stderr, err)
}
}()
main, err := wlet.GetImpl(reflection.Type[T]())
if err != nil {
return err
}
return app(ctx, main.(*T))
}
func runRemote[T any, _ PointerToMain[T]](ctx context.Context, app func(context.Context, *T) error, bootstrap runtime.Bootstrap) error {
regs := codegen.Registered()
if err := validateRegistrations(regs); err != nil {
return err
}
opts := weaver.RemoteWeaveletOptions{}
wlet, err := weaver.NewRemoteWeavelet(ctx, regs, bootstrap, opts)
if err != nil {
return err
}
// Return when either (1) the remote weavelet exits, or (2) the user
// provided app function returns, whichever happens first.
errs := make(chan error, 2)
if wlet.Info().RunMain {
main, err := wlet.GetImpl(reflection.Type[T]())
if err != nil {
return err
}
go func() {
errs <- app(ctx, main.(*T))
}()
}
go func() {
errs <- wlet.Wait()
}()
return <-errs
}
var (
// Equivalence checks with the struct in internal/weaver/types.go.
_ = WeaverInfo(weaver.WeaverInfo{})
_ = weaver.WeaverInfo(WeaverInfo{})
)
// WeaverInfo holds runtime information about a deployed application.
type WeaverInfo struct {
// Unique identifier for the application deployment.
DeploymentID string
// TODO(spetrovic): Add other runtime fields here (e.g., application start
// time, name of the deployer).
}
// Implements[T] is a type that is be embedded inside a component
// implementation struct to indicate that the struct implements a component of
// type T. For example, consider a Cache component.
//
// type Cache interface {
// Get(ctx context.Context, key string) (string, error)
// Put(ctx context.Context, key, value string) error
// }
//
// A concrete type that implements the Cache component is written as follows:
//
// type lruCache struct {
// weaver.Implements[Cache]
// ...
// }
//
// Because Implements is embedded inside the component implementation, methods
// of Implements are available as methods of the component implementation type
// and can be invoked directly. For example, given an instance c of type
// lruCache, we can call c.Logger().
type Implements[T any] struct {
// Component logger.
logger *slog.Logger
weaverInfo *weaver.WeaverInfo
// Given a component implementation type, there is currently no nice way,
// using reflection, to get the corresponding component interface type [1].
// The component_interface_type field exists to make it possible.
//
// [1]: https://github.com/golang/go/issues/54393.
//
//lint:ignore U1000 See comment above.
component_interface_type T
// We embed implementsImpl so that component implementation structs
// implement the Unrouted interface by default but implement the
// RoutedBy[T] interface when they embed WithRouter[T].
implementsImpl
}
// Logger returns a logger that associates its log entries with this component.
// Log entries are labeled with any OpenTelemetry trace id and span id in the
// provided context.
func (i Implements[T]) Logger(ctx context.Context) *slog.Logger {
logger := i.logger
s := trace.SpanContextFromContext(ctx)
if s.HasTraceID() {
logger = logger.With("traceid", s.TraceID().String())
}
if s.HasSpanID() {
logger = logger.With("spanid", s.SpanID().String())
}
return logger
}
func (i *Implements[T]) setLogger(logger *slog.Logger) {
i.logger = logger
}
// Weaver returns runtime information about the deployed application.
func (i Implements[T]) Weaver() WeaverInfo {
return WeaverInfo(*i.weaverInfo)
}
func (i *Implements[T]) setWeaverInfo(info *weaver.WeaverInfo) {
i.weaverInfo = info
}
// implements is a method that can only be implemented inside the weaver
// package. It exists so that a component struct that embeds Implements[T]
// implements the InstanceOf[T] interface.
//
//lint:ignore U1000 implements is used by InstanceOf.
func (Implements[T]) implements(T) {}
// InstanceOf[T] is the interface implemented by a struct that embeds
// weaver.Implements[T].
type InstanceOf[T any] interface {
implements(T)
}
// Ref[T] is a field that can be placed inside a component implementation
// struct. T must be a component type. Service Weaver will automatically
// fill such a field with a handle to the corresponding component.
type Ref[T any] struct {
value T
}
// Get returns a handle to the component of type T.
func (r Ref[T]) Get() T { return r.value }
// isRef is an internal method that is only implemented by Ref[T] and is
// used internally to check that a value is of type Ref[T].
func (r Ref[T]) isRef() {}
// setRef sets the underlying value of a Ref.
func (r *Ref[T]) setRef(value any) {
r.value = value.(T)
}
// Listener is a network listener that can be placed as a field inside a
// component implementation struct. Once placed, Service Weaver automatically
// initializes the Listener and makes it suitable for receiving network
// traffic. For example:
//
// type myComponentImpl struct {
// weaver.Implements[MyComponent]
// myListener weaver.Listener
// myOtherListener weaver.Listener
// }
//
// By default, all listeners listen on address ":0". This behavior can be
// modified by passing options for individual listeners in the application
// config. For example, to specify local addresses for the above two listeners,
// the user can add the following lines to the application config file:
//
// [listeners]
// myListener = {local_address = "localhost:9000"}
// myOtherListener = {local_address = "localhost:9001"}
//
// Listeners are identified by their field names in the component
// implementation structs (e.g., myListener and myOtherListener). If the user
// wishes to assign different names to their listeners, they may do so by
// adding a `weaver:"name"` struct tag to their listener fields, e.g.:
//
// type myComponentImpl struct {
// weaver.Implements[MyComponent]
// myListener weaver.Listener
// myOtherListener weaver.Listener `weaver:"mylistener2"`
// }
//
// Listener names must be valid Go identifier names. Listener names must be
// unique inside a given application binary, regardless of which components
// they are specified in. For example, it is illegal to declare a Listener
// field "foo" in two different component implementation structs, unless one is
// renamed using the `weaver:"name"` struct tag.
//
// HTTP servers constructed using this listener are expected to perform health
// checks on the reserved HealthzURL path. (Note that this URL path is
// configured to never receive any user traffic.)
type Listener struct {
net.Listener // underlying listener
proxyAddr string // address of proxy that forwards to the listener
}
// String returns the address clients should dial to connect to the listener;
// this will be the proxy address if available, otherwise the <host>:<port> for
// this listener.
func (l Listener) String() string {
if l.proxyAddr != "" {
return l.proxyAddr
}
return l.Addr().String()
}
// ProxyAddr returns the dialable address of the proxy that forwards traffic to
// this listener, or returns the empty string if there is no such proxy.
func (l *Listener) ProxyAddr() string {
return l.proxyAddr
}
// WithConfig[T] is a type that can be embedded inside a component
// implementation. The Service Weaver runtime will take per-component
// configuration information found in the application config file and use it to
// initialize the contents of T.
//
// # Example
//
// Consider a cache component where the cache size should be configurable.
// Define a struct that includes the size, associate it with the component
// implementation, and use it inside the component methods.
//
// type cacheConfig struct
// Size int
// }
//
// type cache struct {
// weaver.Implements[Cache]
// weaver.WithConfig[cacheConfig]
// // ...
// }
//
// func (c *cache) Init(context.Context) error {
// // Use c.Config().Size...
// return nil
// }
//
// The application config file can specify these values as keys under the
// full component path.
//
// ["example.com/mypkg/Cache"]
// Size = 1000
//
// # Field Names
//
// You can use `toml` struct tags to specify the name that should be used for a
// field in a config file. For example, we can change the cacheConfig struct to
// the following:
//
// type cacheConfig struct
// Size int `toml:"my_custom_name"`
// }
//
// And change the config file accordingly:
//
// ["example.com/mypkg/Cache"]
// my_custom_name = 1000
type WithConfig[T any] struct {
config T
}
// Config returns the configuration information for the component that embeds
// this [weaver.WithConfig].
//
// Any fields in T that were not present in the application config file will
// have their default values.
//
// Any fields in the application config file that are not present in T will be
// flagged as an error at application startup.
func (wc *WithConfig[T]) Config() *T {
return &wc.config
}
// getConfig returns the underlying config.
func (wc *WithConfig[T]) getConfig() any {
return &wc.config
}
// WithRouter[T] is a type that can be embedded inside a component
// implementation struct to indicate that calls to a method M on the component
// must be routed according to the the value returned by T.M().
//
// # Example
//
// For example, consider a Cache component that maintains an in-memory cache.
//
// type Cache interface {
// Get(ctx context.Context, key string) (string, error)
// Put(ctx context.Context, key, value string) error
// }
//
// We can create a router for the Cache component like this.
//
// type cacheRouter struct{}
// func (cacheRouter) Get(_ context.Context, key string) string { return key }
// func (cacheRouter) Put(_ context.Context, key, value string) string { return key }
//
// To associate a router with its component, embed [weaver.WithRouter] in the
// component implementation.
//
// type lruCache struct {
// weaver.Implements[Cache]
// weaver.WithRouter[cacheRouter]
// }
//
// For every component method that needs to be routed (e.g., Get and Put), the
// associated router should implement an equivalent method (i.e., same name and
// argument types) whose return type is the routing key. When a component's
// routed method is invoked, its corresponding router method is invoked to
// produce a routing key. Method invocations that produce the same key are
// routed to the same replica.
//
// # Routing Keys
//
// A routing key can be any integer (e.g., int, int32), float (i.e. float32,
// float64), or string; or a struct where all fields are integers, floats, or
// strings. A struct may also embed [AutoMarshal]. For example, the following
// are valid routing keys.
//
// int
// int32
// float32
// float63
// string
// struct{}
// struct{x int}
// struct{x int; y string}
// struct{weaver.AutoMarshal; x int; y string}
//
// Every router method must return the same routing key type. The following,
// for example, is invalid:
//
// // ERROR: Get returns a string, but Put returns an int.
// func (cacheRouter) Get(_ context.Context, key string) string { return key }
// func (cacheRouter) Put(_ context.Context, key, value string) int { return 42 }
//
// # Semantics
//
// NOTE that routing is done on a best-effort basis. Service Weaver will try to
// route method invocations with the same key to the same replica, but this is
// not guaranteed. As a corollary, you should never depend on routing for
// correctness. Only use routing to increase performance in the common case.
type WithRouter[T any] struct{}
// routedBy(T) implements the RoutedBy[T] interface.
//
//lint:ignore U1000 routedBy is used by RoutedBy and Unrouted.
func (WithRouter[T]) routedBy(T) {}
// RoutedBy[T] is the interface implemented by a struct that embeds
// weaver.RoutedBy[T].
type RoutedBy[T any] interface {
routedBy(T)
}
// See Implements.implementsImpl.
type implementsImpl struct{}
// See [Unrouted].
type if_youre_seeing_this_you_probably_forgot_to_run_weaver_generate struct{}
// See [Unrouted].
func (implementsImpl) routedBy(if_youre_seeing_this_you_probably_forgot_to_run_weaver_generate) {}
// Unrouted is the interface implemented by instances that don't embed
// weaver.WithRouter[T].
type Unrouted interface {
routedBy(if_youre_seeing_this_you_probably_forgot_to_run_weaver_generate)
}
var _ Unrouted = (*implementsImpl)(nil)
// AutoMarshal is a type that can be embedded within a struct to indicate that
// "weaver generate" should generate serialization methods for the struct.
//
// Named struct types are not serializable by default. However, they can
// trivially be made serializable by embedding AutoMarshal. For example:
//
// type Pair struct {
// weaver.AutoMarshal
// x, y int
// }
//
// The AutoMarshal embedding instructs "weaver generate" to generate
// serialization methods for the struct, Pair in this example.
//
// Note, however, that AutoMarshal cannot magically make any type serializable.
// For example, "weaver generate" will raise an error for the following code
// because the NotSerializable struct is fundamentally not serializable.
//
// // ERROR: NotSerializable cannot be made serializable.
// type NotSerializable struct {
// weaver.AutoMarshal
// f func() // functions are not serializable
// c chan int // chans are not serializable
// }
type AutoMarshal struct{}
// TODO(mwhittaker): The following methods have AutoMarshal implement
// codegen.AutoMarshal. Alternatively, we could modify the code generator to
// ignore AutoMarshal during marshaling and unmarshaling.
func (AutoMarshal) WeaverMarshal(*codegen.Encoder) {}
func (AutoMarshal) WeaverUnmarshal(*codegen.Decoder) {}
type NotRetriable interface{}
type Datastore_type interface {
write(context.Context, string, AntiObj) error
read(context.Context, string) (AntiObj, error)
barrier(context.Context, []WriteIdentifier, string) error
}
type AntiObj struct {
Version any
Lineage []WriteIdentifier
}
type WriteIdentifier struct {
AutoMarshal
Dtstid string
Key string
Version string
}
type Antipode[T Datastore_type] struct {
Datastore_type T
Datastore_ID string
}
type contextKey string
// TO-DO
// Test this method with values as string, bool, int and struct
func (a Antipode[T]) Write(ctx context.Context, key string, value string) (context.Context, error) {
//span := trace.SpanFromContext(ctx)
//if span.SpanContext().IsValid() {
// var lineage []string
// Add the array attribute to the span
// span.SetAttributes(attribute.StringSlice("lineage", lineage))
//}
//extract lineage from ctx
lineage := ctx.Value(contextKey("lineage")).([]WriteIdentifier)
if lineage == nil {
err := fmt.Errorf("Lineage not found inside context")
return ctx, err
}
//update lineage
lineage = append(lineage, WriteIdentifier{Dtstid: a.Datastore_ID, Key: key, Version: value})
//initialize AntiObj
obj := AntiObj{value, lineage}
err := a.Datastore_type.write(ctx, key, obj)
if err != nil {
return ctx, err
}
//update ctx with the updated lineage
ctx = context.WithValue(ctx, contextKey("lineage"), lineage)
return ctx, nil
}
func (a Antipode[T]) Read(ctx context.Context, key string) (any, []WriteIdentifier, error) {
obj, err := a.Datastore_type.read(ctx, key)
return obj.Version, obj.Lineage, err
}
func (a Antipode[T]) Barrier(ctx context.Context) error {
//extract lineage from ctx
lineage := ctx.Value(contextKey("lineage")).([]WriteIdentifier)
if lineage == nil {
err := fmt.Errorf("Lineage not found inside context")
return err
}
return a.Datastore_type.barrier(ctx, lineage, a.Datastore_ID)
}
func (a Antipode[T]) Transfer(ctx context.Context, lineage []WriteIdentifier) (context.Context, error) {
//extract lineage from ctx
oldLineage := ctx.Value(contextKey("lineage")).([]WriteIdentifier)
if oldLineage != nil {
err := fmt.Errorf("Lineage not found inside context")
return ctx, err
}
newLineage := append(oldLineage, lineage...)
ctx = context.WithValue(ctx, contextKey("lineage"), newLineage)
return ctx, nil
}
func GetLineage(ctx context.Context) {
line := ctx.Value(contextKey("lineage"))
if line != nil {
fmt.Println("getLineage found lineage:", line)
} else {
fmt.Println("getLineage error", line)
}
}
// TO-DO
// all the code below this line should be deleted
type RabbitMQ struct {
connection *amqp.Connection
queue string
}
// How can I close the connection?
func CreateRabbitMQ(rabbit_host string, rabbit_port string, rabbit_user string, rabbit_password string, queue string) RabbitMQ {
conn, err := amqp.Dial("amqp://" + rabbit_user + ":" + rabbit_password + "@" + rabbit_host + ":" + rabbit_port + "/")
if err != nil {
fmt.Println(err)
return RabbitMQ{}
}
//defer conn.Close()
return RabbitMQ{conn, queue}
}
func (r RabbitMQ) write(ctx context.Context, key string, obj AntiObj) error {
jsonAntiObj, err := json.Marshal(obj)
if err != nil {
return err
}
channel, err := r.connection.Channel()
if err != nil {
return err
}
defer channel.Close()
queue, err := channel.QueueDeclare(
r.queue, // Queue name
false, // Durable
false, // Delete when unused
false, // Exclusive
false, // No-wait
nil, // Arguments
)
if err != nil {
return err
}
err = channel.PublishWithContext(ctx,
"", // exchange
queue.Name, // routing key
false, // mandatory
false, // immediate
amqp.Publishing{
ContentType: "application/json",
Body: jsonAntiObj,
})
if err != nil {
return err
}
return err
}
func (r RabbitMQ) read(ctx context.Context, key string) (AntiObj, error) {
channel, err := r.connection.Channel()
if err != nil {
return AntiObj{}, err
}
defer channel.Close()
queue, err := channel.QueueDeclare(
r.queue, // Queue name
false, // Durable
false, // Delete when unused
false, // Exclusive
false, // No-wait
nil, // Arguments
)
if err != nil {
return AntiObj{}, err
}
msgs, err := channel.Consume(
queue.Name, // Queue
"", // Consumer tag
true, // Auto-ack
false, // Exclusive
false, // No local
false, // No wait
nil, // Args
)
if err != nil {
log.Fatalf("Failed to consume messages from queue: %v", err)
}
// Wait for the first message to arrive
msg := <-msgs
var antiObj AntiObj
err = json.Unmarshal(msg.Body, &antiObj)
if err != nil {
return AntiObj{}, fmt.Errorf("Failed to unmarshal JSON: %v", err)
}
return antiObj, err
}
func (r RabbitMQ) barrier(ctx context.Context, lineage []WriteIdentifier, datastoreID string) error {
return nil
}
type Redis struct {
client *redis.Client
}
func CreateRedis(redis_host string, redis_port string, redis_password string) Redis {
return Redis{redis.NewClient(&redis.Options{
Addr: redis_host + ":" + redis_port,
Password: redis_password, // no password set
DB: 0, // use default DB
})}
}
func (r Redis) write(ctx context.Context, key string, obj AntiObj) error {
jsonAntiObj, err := json.Marshal(obj)
if err != nil {
return err
}
err = r.client.Set(ctx, key, jsonAntiObj, 0).Err()
return err
}
func (r Redis) read(ctx context.Context, key string) (AntiObj, error) {
jsonAntiObj, err := r.client.Get(ctx, key).Bytes()
if err != nil {
return AntiObj{}, err
}
var obj AntiObj
err = json.Unmarshal(jsonAntiObj, &obj)
if err != nil {
return AntiObj{}, err
}
return obj, err
}
func (r Redis) barrier(ctx context.Context, lineage []WriteIdentifier, datastoreID string) error {
for _, writeIdentifier := range lineage {
if writeIdentifier.Dtstid == datastoreID {
for {
jsonAntiObj, err := r.client.Get(ctx, writeIdentifier.Key).Bytes()
if !errors.Is(err, redis.Nil) && err != nil {
return err
} else if errors.Is(err, redis.Nil) { //the version replication process is not yet completed
continue
} else {
var obj AntiObj
err = json.Unmarshal(jsonAntiObj, &obj)
if err != nil {
return err
} else if obj.Version == writeIdentifier.Version { //the version replication process is already completed
break
} else { //the version replication process is not yet completed
continue
}
}
}
}
}
return nil
}