Skip to content

Commit 974dafd

Browse files
committed
📦 updates HDK for v0.0.5
1 parent f06b75e commit 974dafd

File tree

5 files changed

+32
-15
lines changed

5 files changed

+32
-15
lines changed

Taskfile.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ tasks:
2323
#TAG: "v0.0.1"
2424
#TAG: "v0.0.2"
2525
#TAG: "v0.0.3"
26-
TAG: "v0.0.4" # current release
27-
#TAG: "v0.0.5" # it will be the next release
26+
#TAG: "v0.0.4" # current release
27+
TAG: "v0.0.5"
2828
cmds:
2929
- echo "📦 Generating release..."
3030
- git add .

capsule.dk.go

+3-12
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"errors"
77
"log"
88

9-
"github.com/tetratelabs/wazero"
9+
//"github.com/tetratelabs/wazero"
1010
"github.com/tetratelabs/wazero/api"
1111
)
1212

@@ -71,12 +71,7 @@ func GetHandleHTTP(mod api.Module) api.Function {
7171
}
7272

7373
// CallOnStart calls the OnStart function (if it exists) from the given module.
74-
func CallOnStart(ctx context.Context, runtime wazero.Runtime, wasmFile []byte) {
75-
76-
mod, err := runtime.Instantiate(ctx, wasmFile)
77-
if err != nil {
78-
log.Println("❌ [OnStart] Error with the module instance", err)
79-
}
74+
func CallOnStart(ctx context.Context, mod api.Module , wasmFile []byte) {
8075

8176
onStart := mod.ExportedFunction("OnStart")
8277
if onStart != nil {
@@ -89,11 +84,7 @@ func CallOnStart(ctx context.Context, runtime wazero.Runtime, wasmFile []byte) {
8984
}
9085

9186
// CallOnStop calls the OnStop function (if it exists) from the given module.
92-
func CallOnStop(ctx context.Context, runtime wazero.Runtime, wasmFile []byte) {
93-
mod, err := runtime.Instantiate(ctx, wasmFile)
94-
if err != nil {
95-
log.Println("❌ [OnStop] Error with the module instance", err)
96-
}
87+
func CallOnStop(ctx context.Context, mod api.Module, wasmFile []byte) {
9788

9889
onStop := mod.ExportedFunction("OnStop")
9990
if onStop != nil {

docs/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Capsule Host SDK
22

33
!!! info "What's new?"
4+
- `v0.0.5`: ✨ Helpers updated: `CallOnStart` and `CallOnStop` (they are executed from the same wasm module instance)
45
- `v0.0.4`: ✨ Helpers added: `CallOnStart` and `CallOnStop`
56
- `v0.0.3`: ✨ Wazero update 1.2.0
67
- `v0.0.2`: ✨ Redis support

hostfunc.memorycache.go

+25
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ import (
2323

2424
var memCache sync.Map
2525

26+
//var memoryCache = make(map[string][]byte)
27+
//var mutex = &sync.RWMutex{}
28+
2629
// DefineHostFuncCacheSet defines a new Go module function for setting values in
2730
// the cache. It takes in 6 parameters:
2831
// - key position (int32)
@@ -73,6 +76,13 @@ var cacheSet = api.GoModuleFunc(func(ctx context.Context, module api.Module, par
7376

7477
// start the host work
7578
memCache.Store(string(bufferKey), bufferStringValue)
79+
80+
/*
81+
mutex.Lock()
82+
defer mutex.Unlock()
83+
memoryCache[string(bufferKey)] = bufferStringValue
84+
*/
85+
7686
resultFromHost = success(bufferKey)
7787
//! we cannot know if there is an error or not
7888
// end of the host work
@@ -88,6 +98,7 @@ var cacheSet = api.GoModuleFunc(func(ctx context.Context, module api.Module, par
8898

8999
params[0] = 0
90100

101+
91102
})
92103

93104

@@ -125,14 +136,28 @@ var cacheGet = api.GoModuleFunc(func(ctx context.Context, module api.Module, par
125136
// Execute the host function with the arguments and return a value
126137
var resultFromHost []byte
127138

139+
/*
140+
mutex.RLock()
141+
defer mutex.RUnlock()
142+
result := memoryCache[string(bufferKey)]
143+
if result == nil {
144+
resultFromHost = failure([]byte("key not found"))
145+
} else {
146+
resultFromHost = success(result)
147+
}
148+
*/
149+
150+
128151
// start the host work
152+
129153
result, ok := memCache.Load(string(bufferKey))
130154

131155
if ok {
132156
resultFromHost = success(result.([]byte))
133157
} else {
134158
resultFromHost = failure([]byte("key not found"))
135159
}
160+
136161
// end of the host work
137162

138163
// return the result value (using the return buffer)

samples/simple-talk/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ require (
1111
golang.org/x/net v0.0.0-20211029224645-99673261e6eb // indirect
1212
)
1313

14-
require github.com/bots-garden/capsule-host-sdk v0.0.2
14+
require github.com/bots-garden/capsule-host-sdk v0.0.4
1515

1616
replace github.com/bots-garden/capsule-host-sdk => ../..

0 commit comments

Comments
 (0)