generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.go
134 lines (115 loc) · 3.63 KB
/
main.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
/*
* Copyright (c) 2024 Oracle and/or its affiliates.
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
*/
/*
Package main shows how to run processors against a NamedMap or NamedCache.
*/
package main
import (
"context"
"fmt"
"github.com/oracle/coherence-go-client/v2/coherence"
"github.com/oracle/coherence-go-client/v2/coherence/extractors"
"github.com/oracle/coherence-go-client/v2/coherence/filters"
"github.com/oracle/coherence-go-client/v2/coherence/processors"
)
type Person struct {
ID int `json:"id"`
Name string `json:"name"`
Age int `json:"age"`
Retired bool `json:"retired"`
}
func (p Person) String() string {
return fmt.Sprintf("Person{id=%d, name=%s, age=%d, retired=%v}", p.ID, p.Name, p.Age, p.Retired)
}
func main() {
var (
person1 = Person{ID: 1, Name: "Tim", Age: 12}
person2 = Person{ID: 2, Name: "Helen", Age: 44}
person *Person
ctx = context.Background()
)
// create a new Session to the default gRPC port of 1408 using plain text
session, err := coherence.NewSession(ctx, coherence.WithPlainText())
if err != nil {
panic(err)
}
defer session.Close()
// create a new NamedMap of Person with key int
namedMap, err := coherence.GetNamedMap[int, Person](session, "processor-test")
if err != nil {
panic(err)
}
// clear the Map
if err = namedMap.Clear(ctx); err != nil {
panic(err)
}
fmt.Println("Adding person", person1)
// put a new entry
if _, err = namedMap.Put(ctx, person1.ID, person1); err != nil {
panic(err)
}
// get the Person
if person, err = namedMap.Get(ctx, 1); err != nil {
panic(err)
}
fmt.Println("Person is", *person)
var updated *bool
// update the age to 68
if updated, err = coherence.Invoke[int, Person, bool](ctx, namedMap, 1, processors.Update("age", 68)); err != nil {
panic(err)
}
fmt.Println("Updated = ", *updated)
// get the Person
person, err = namedMap.Get(ctx, 1)
if err != nil {
panic(err)
}
fmt.Println("Person age is now", person.Age)
fmt.Println("Adding person", person2)
// put a new entry
if _, err = namedMap.Put(ctx, person2.ID, person2); err != nil {
panic(err)
}
fmt.Println("Incrementing the age of each person")
// invoke an entry processor over all people, this returns the keys that have been updated
ch := coherence.InvokeAll[int, Person, int](ctx, namedMap, processors.Increment("age", 1))
for se := range ch {
if se.Err != nil {
panic(se.Err)
}
fmt.Println("Updated person with key", se.Key, "and value", se.Value)
}
fmt.Println("Retiring all people over 67, just an example ;)")
// invoke an entry process over all people older than 67 and set them as retired
age := extractors.Extract[int]("age")
ch2 := coherence.InvokeAllFilter[int, Person, bool](ctx, namedMap, filters.Greater(age, 67),
processors.Update("retired", true))
for se := range ch2 {
if se.Err != nil {
panic(se.Err)
}
fmt.Println("Retired person with key", se.Key, "and value", se.Value)
}
fmt.Println("Displaying all people")
for se := range namedMap.ValuesFilter(ctx, filters.Always()) {
if se.Err != nil {
panic(err)
}
if se.Err == nil {
fmt.Println("Person is", se.Value)
}
}
// updating multiple values using composite processors to update person one age to 67 and un-retire them.
// this will return an array of booleans to indicate each update
var proc = processors.Update("age", 67).AndThen(processors.Update("retired", false))
type result [2]bool
var updated2 *result
updated2, err = coherence.Invoke[int, Person, result](ctx, namedMap, 1, proc)
if err != nil {
panic(err)
}
fmt.Println("Boolean updates are", updated2[0], updated2[0])
}