Skip to content

Commit 8ccacd7

Browse files
committed
📦 updates MDK for v0.0.6
1 parent 0909dcc commit 8ccacd7

File tree

9 files changed

+22
-25
lines changed

9 files changed

+22
-25
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
capsule
44
capsule-http
55
site
6+
._.*
67

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.4"
26-
TAG: "v0.0.5" # current release
27-
#TAG: "v0.0.6" # it will be the next release
26+
#TAG: "v0.0.5" # current release
27+
TAG: "v0.0.6"
2828

2929
cmds:
3030
- echo "📦 Generating release..."

docs/index.md

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

33
!!! info "What's new?"
4+
- `v0.0.6`: 🐞 Redis fix
45
- `v0.0.5`: ✨ Add 2 new helpers: `GetHeaders` (transform a JSON string to a map[string]string) and `SetHeaders` (transform a map[string]string to a JSON string)
56
- `v0.0.4`: ✨ Add the `Success` and `Failure` functions (public functions to call `success` and `failure`) and the `StringifyHTTPResponse` function
67
- `v0.0.3`: ✨ Encode `retValue.TextBody` to avoid special characters in jsonString

hostfunc.memorycache.go

+12-15
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func hostCacheSet(
2626
keyPosition, keyLength uint32,
2727
valueStringPosition, valueStringLength uint32,
2828
returnValuePosition **uint32, returnValueLength *uint32) uint32
29-
29+
3030
// CacheSet is an helper to use the hostCacheSet function
3131
func CacheSet(key string, value []byte) []byte {
3232

@@ -44,22 +44,23 @@ func CacheSet(key string, value []byte) []byte {
4444
&responseBufferPtr, &responseBufferSize)
4545

4646
bufferResponseFromHost := readBufferFromMemory(responseBufferPtr, responseBufferSize)
47-
47+
4848
// check if success or failure
4949
data, _ := Result(bufferResponseFromHost)
5050

5151
return data
5252
}
5353

54-
5554
//export hostCacheGet
5655
func hostCacheGet(
5756
keyPosition, keyLength uint32,
5857
returnValuePosition **uint32, returnValueLength *uint32) uint32
59-
58+
6059
// CacheGet is an helper to use the hostCacheGet function
6160
func CacheGet(key string) ([]byte, error) {
6261

62+
//Log("🦊 THIS IS A TEST")
63+
6364
keyPosition, keyLength := getBufferPosSize([]byte(key))
6465

6566
// This will be use to get the response from the host
@@ -72,7 +73,7 @@ func CacheGet(key string) ([]byte, error) {
7273
&responseBufferPtr, &responseBufferSize)
7374

7475
bufferResponseFromHost := readBufferFromMemory(responseBufferPtr, responseBufferSize)
75-
76+
7677
// check if success or failure
7778
data, err := Result(bufferResponseFromHost)
7879
if err != nil {
@@ -81,13 +82,11 @@ func CacheGet(key string) ([]byte, error) {
8182
return data, nil
8283
}
8384

84-
85-
8685
//export hostCacheDel
8786
func hostCacheDel(
8887
keyPosition, keyLength uint32,
8988
returnValuePosition **uint32, returnValueLength *uint32) uint32
90-
89+
9190
// CacheDel is an helper to use the hostCacheDel function
9291
func CacheDel(key string) []byte {
9392

@@ -103,19 +102,17 @@ func CacheDel(key string) []byte {
103102
&responseBufferPtr, &responseBufferSize)
104103

105104
bufferResponseFromHost := readBufferFromMemory(responseBufferPtr, responseBufferSize)
106-
105+
107106
// check if success or failure
108107
data, _ := Result(bufferResponseFromHost)
109108
return data
110109
}
111110

112-
113-
114111
//export hostCacheKeys
115112
func hostCacheKeys(
116113
filterPosition, filterLength uint32,
117114
returnValuePosition **uint32, returnValueLength *uint32) uint32
118-
115+
119116
// CacheKeys is an helper to use the hostCacheKeys function
120117
func CacheKeys(filter string) ([]string, error) {
121118

@@ -132,20 +129,20 @@ func CacheKeys(filter string) ([]string, error) {
132129

133130
bufferResponseFromHost := readBufferFromMemory(responseBufferPtr, responseBufferSize)
134131
//! 🤚 this is a json string (array json string: `["Hello", "World"]`)
135-
132+
136133
// check if success or failure
137134
data, err := Result(bufferResponseFromHost)
138135
if err != nil {
139136
return nil, err
140-
}
137+
}
141138
var jsonParser fastjson.Parser
142139
keysArray, err := jsonParser.Parse(string(data))
143140
if err != nil {
144141
return nil, err
145142
}
146143
var keys []string
147144
for _, key := range keysArray.GetArray("keys") {
148-
keys = append(keys, string(key.GetStringBytes()))
145+
keys = append(keys, string(key.GetStringBytes()))
149146
//! if it doesn't work, implement my own simple parser
150147
}
151148
return keys, nil

hostfunc.redis.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func RedisSet(key string, value []byte) ([]byte, error) {
3434
var responseBufferSize uint32
3535

3636
// Send the lessage to the host
37-
hostCacheSet(
37+
hostRedisSet(
3838
keyPosition, keyLength,
3939
valueStringPosition, valueStringLength,
4040
&responseBufferPtr, &responseBufferSize)
@@ -78,7 +78,7 @@ func RedisGet(key string) ([]byte, error) {
7878
var responseBufferSize uint32
7979

8080
// Send the lessage to the host
81-
hostCacheGet(
81+
hostRedisGet(
8282
keyPosition, keyLength,
8383
&responseBufferPtr, &responseBufferSize)
8484

@@ -120,7 +120,7 @@ func RedisDel(key string) ([]byte, error) {
120120
var responseBufferSize uint32
121121

122122
// Send the lessage to the host
123-
hostCacheDel(
123+
hostRedisDel(
124124
keyPosition, keyLength,
125125
&responseBufferPtr, &responseBufferSize)
126126

@@ -157,7 +157,7 @@ func RedisKeys(filter string) ([]string, error) {
157157
var responseBufferSize uint32
158158

159159
// Send the lessage to the host
160-
hostCacheKeys(
160+
hostRedisKeys(
161161
filterPosition, filterLength,
162162
&responseBufferPtr, &responseBufferSize)
163163

samples/http-say-hello/go.mod

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
module http-say-hello
22

33
go 1.20
4+
5+
require github.com/valyala/fastjson v1.6.4

samples/http-say-hello/go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
github.com/bots-garden/capsule-module-sdk v0.0.3 h1:a0TRgwdiJjc+9raOe4zQoWPnzxKegqmInVmwzlaDuug=
2-
github.com/bots-garden/capsule-module-sdk v0.0.3/go.mod h1:DtKYwanz4YvBwSpu0GuuhtkeFE6+jDgEucBOTWVBMy8=
31
github.com/valyala/fastjson v1.6.4 h1:uAUNq9Z6ymTgGhcm0UynUAB6tlbakBrz6CQFax3BXVQ=
42
github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY=

samples/simple.json/._main.go

4 KB
Binary file not shown.

samples/simple/go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
github.com/valyala/fastjson v1.6.4 h1:uAUNq9Z6ymTgGhcm0UynUAB6tlbakBrz6CQFax3BXVQ=
2-
github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY=

0 commit comments

Comments
 (0)