mirror of
https://github.com/navidrome/navidrome.git
synced 2026-02-02 06:24:14 +00:00
- Implemented hostgen tool to generate wrappers from annotated Go interfaces. - Added command-line flags for input/output directories and package name. - Introduced parsing and code generation logic for host services. - Created test data for various service interfaces and expected generated code. - Added documentation for host services and annotations for code generation. - Implemented SubsonicAPI service with corresponding generated code.
77 lines
1.9 KiB
Go
77 lines
1.9 KiB
Go
// Code generated by hostgen. DO NOT EDIT.
|
|
|
|
package testpkg
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
|
|
extism "github.com/extism/go-sdk"
|
|
)
|
|
|
|
// CodecEncodeResponse is the response type for Codec.Encode.
|
|
type CodecEncodeResponse struct {
|
|
Result []byte `json:"result,omitempty"`
|
|
Error string `json:"error,omitempty"`
|
|
}
|
|
|
|
// RegisterCodecHostFunctions registers Codec service host functions.
|
|
// The returned host functions should be added to the plugin's configuration.
|
|
func RegisterCodecHostFunctions(service CodecService) []extism.HostFunction {
|
|
return []extism.HostFunction{
|
|
newCodecEncodeHostFunction(service),
|
|
}
|
|
}
|
|
|
|
func newCodecEncodeHostFunction(service CodecService) extism.HostFunction {
|
|
return extism.NewHostFunctionWithStack(
|
|
"codec_encode",
|
|
func(ctx context.Context, p *extism.CurrentPlugin, stack []uint64) {
|
|
// Read parameters from stack
|
|
data, err := p.ReadBytes(stack[0])
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
// Call the service method
|
|
result, err := service.Encode(ctx, data)
|
|
if err != nil {
|
|
codecWriteError(p, stack, err)
|
|
return
|
|
}
|
|
// Write JSON response to plugin memory
|
|
resp := CodecEncodeResponse{
|
|
Result: result,
|
|
}
|
|
codecWriteResponse(p, stack, resp)
|
|
},
|
|
[]extism.ValueType{extism.ValueTypePTR},
|
|
[]extism.ValueType{extism.ValueTypePTR},
|
|
)
|
|
}
|
|
|
|
// codecWriteResponse writes a JSON response to plugin memory.
|
|
func codecWriteResponse(p *extism.CurrentPlugin, stack []uint64, resp any) {
|
|
respBytes, err := json.Marshal(resp)
|
|
if err != nil {
|
|
codecWriteError(p, stack, err)
|
|
return
|
|
}
|
|
respPtr, err := p.WriteBytes(respBytes)
|
|
if err != nil {
|
|
stack[0] = 0
|
|
return
|
|
}
|
|
stack[0] = respPtr
|
|
}
|
|
|
|
// codecWriteError writes an error response to plugin memory.
|
|
func codecWriteError(p *extism.CurrentPlugin, stack []uint64, err error) {
|
|
errResp := struct {
|
|
Error string `json:"error"`
|
|
}{Error: err.Error()}
|
|
respBytes, _ := json.Marshal(errResp)
|
|
respPtr, _ := p.WriteBytes(respBytes)
|
|
stack[0] = respPtr
|
|
}
|