//go:build wasip1 // Code generated by protoc-gen-go-plugin. DO NOT EDIT. // versions: // protoc-gen-go-plugin v0.1.0 // protoc v5.29.3 // source: host/cache/cache.proto package cache import ( context "context" wasm "github.com/knqyf263/go-plugin/wasm" _ "unsafe" ) type cacheService struct{} func NewCacheService() CacheService { return cacheService{} } //go:wasmimport env set_string func _set_string(ptr uint32, size uint32) uint64 func (h cacheService) SetString(ctx context.Context, request *SetStringRequest) (*SetResponse, error) { buf, err := request.MarshalVT() if err != nil { return nil, err } ptr, size := wasm.ByteToPtr(buf) ptrSize := _set_string(ptr, size) wasm.Free(ptr) ptr = uint32(ptrSize >> 32) size = uint32(ptrSize) buf = wasm.PtrToByte(ptr, size) response := new(SetResponse) if err = response.UnmarshalVT(buf); err != nil { return nil, err } return response, nil } //go:wasmimport env get_string func _get_string(ptr uint32, size uint32) uint64 func (h cacheService) GetString(ctx context.Context, request *GetRequest) (*GetStringResponse, error) { buf, err := request.MarshalVT() if err != nil { return nil, err } ptr, size := wasm.ByteToPtr(buf) ptrSize := _get_string(ptr, size) wasm.Free(ptr) ptr = uint32(ptrSize >> 32) size = uint32(ptrSize) buf = wasm.PtrToByte(ptr, size) response := new(GetStringResponse) if err = response.UnmarshalVT(buf); err != nil { return nil, err } return response, nil } //go:wasmimport env set_int func _set_int(ptr uint32, size uint32) uint64 func (h cacheService) SetInt(ctx context.Context, request *SetIntRequest) (*SetResponse, error) { buf, err := request.MarshalVT() if err != nil { return nil, err } ptr, size := wasm.ByteToPtr(buf) ptrSize := _set_int(ptr, size) wasm.Free(ptr) ptr = uint32(ptrSize >> 32) size = uint32(ptrSize) buf = wasm.PtrToByte(ptr, size) response := new(SetResponse) if err = response.UnmarshalVT(buf); err != nil { return nil, err } return response, nil } //go:wasmimport env get_int func _get_int(ptr uint32, size uint32) uint64 func (h cacheService) GetInt(ctx context.Context, request *GetRequest) (*GetIntResponse, error) { buf, err := request.MarshalVT() if err != nil { return nil, err } ptr, size := wasm.ByteToPtr(buf) ptrSize := _get_int(ptr, size) wasm.Free(ptr) ptr = uint32(ptrSize >> 32) size = uint32(ptrSize) buf = wasm.PtrToByte(ptr, size) response := new(GetIntResponse) if err = response.UnmarshalVT(buf); err != nil { return nil, err } return response, nil } //go:wasmimport env set_float func _set_float(ptr uint32, size uint32) uint64 func (h cacheService) SetFloat(ctx context.Context, request *SetFloatRequest) (*SetResponse, error) { buf, err := request.MarshalVT() if err != nil { return nil, err } ptr, size := wasm.ByteToPtr(buf) ptrSize := _set_float(ptr, size) wasm.Free(ptr) ptr = uint32(ptrSize >> 32) size = uint32(ptrSize) buf = wasm.PtrToByte(ptr, size) response := new(SetResponse) if err = response.UnmarshalVT(buf); err != nil { return nil, err } return response, nil } //go:wasmimport env get_float func _get_float(ptr uint32, size uint32) uint64 func (h cacheService) GetFloat(ctx context.Context, request *GetRequest) (*GetFloatResponse, error) { buf, err := request.MarshalVT() if err != nil { return nil, err } ptr, size := wasm.ByteToPtr(buf) ptrSize := _get_float(ptr, size) wasm.Free(ptr) ptr = uint32(ptrSize >> 32) size = uint32(ptrSize) buf = wasm.PtrToByte(ptr, size) response := new(GetFloatResponse) if err = response.UnmarshalVT(buf); err != nil { return nil, err } return response, nil } //go:wasmimport env set_bytes func _set_bytes(ptr uint32, size uint32) uint64 func (h cacheService) SetBytes(ctx context.Context, request *SetBytesRequest) (*SetResponse, error) { buf, err := request.MarshalVT() if err != nil { return nil, err } ptr, size := wasm.ByteToPtr(buf) ptrSize := _set_bytes(ptr, size) wasm.Free(ptr) ptr = uint32(ptrSize >> 32) size = uint32(ptrSize) buf = wasm.PtrToByte(ptr, size) response := new(SetResponse) if err = response.UnmarshalVT(buf); err != nil { return nil, err } return response, nil } //go:wasmimport env get_bytes func _get_bytes(ptr uint32, size uint32) uint64 func (h cacheService) GetBytes(ctx context.Context, request *GetRequest) (*GetBytesResponse, error) { buf, err := request.MarshalVT() if err != nil { return nil, err } ptr, size := wasm.ByteToPtr(buf) ptrSize := _get_bytes(ptr, size) wasm.Free(ptr) ptr = uint32(ptrSize >> 32) size = uint32(ptrSize) buf = wasm.PtrToByte(ptr, size) response := new(GetBytesResponse) if err = response.UnmarshalVT(buf); err != nil { return nil, err } return response, nil } //go:wasmimport env remove func _remove(ptr uint32, size uint32) uint64 func (h cacheService) Remove(ctx context.Context, request *RemoveRequest) (*RemoveResponse, error) { buf, err := request.MarshalVT() if err != nil { return nil, err } ptr, size := wasm.ByteToPtr(buf) ptrSize := _remove(ptr, size) wasm.Free(ptr) ptr = uint32(ptrSize >> 32) size = uint32(ptrSize) buf = wasm.PtrToByte(ptr, size) response := new(RemoveResponse) if err = response.UnmarshalVT(buf); err != nil { return nil, err } return response, nil } //go:wasmimport env has func _has(ptr uint32, size uint32) uint64 func (h cacheService) Has(ctx context.Context, request *HasRequest) (*HasResponse, error) { buf, err := request.MarshalVT() if err != nil { return nil, err } ptr, size := wasm.ByteToPtr(buf) ptrSize := _has(ptr, size) wasm.Free(ptr) ptr = uint32(ptrSize >> 32) size = uint32(ptrSize) buf = wasm.PtrToByte(ptr, size) response := new(HasResponse) if err = response.UnmarshalVT(buf); err != nil { return nil, err } return response, nil }