Documentation ¶
Index ¶
- func AdaptLegacyExtension(ext LegacyEngineExtension) execution.ExtensionInitializer
- type Connecter
- type ExtensionClient
- type ExtensionInitializer
- type Instance
- type LegacyEngineExtension
- type RemoteExtension
- func (e *RemoteExtension) Connect(ctx context.Context) error
- func (e *RemoteExtension) Execute(ctx *execution.ProcedureContext, metadata map[string]string, method string, ...) ([]any, error)
- func (e *RemoteExtension) Initialize(ctx context.Context, metadata map[string]string) (map[string]string, error)
- func (e *RemoteExtension) Name() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AdaptLegacyExtension ¶
func AdaptLegacyExtension(ext LegacyEngineExtension) execution.ExtensionInitializer
AdapterFunc is a function that adapts a LegacyEngineExtension to an InitializeFunc.
Types ¶
type Connecter ¶
type Connecter interface {
Connect(ctx context.Context, target string, opts ...client.ClientOpt) (ExtensionClient, error)
}
var ( // this can be overridden for testing ConnectFunc Connecter = extensionConnectFunc(client.NewExtensionClient) )
type ExtensionClient ¶
type ExtensionClient interface { CallMethod(execCtx *types.ExecutionContext, method string, args ...any) ([]any, error) Close() error Initialize(ctx context.Context, metadata map[string]string) (map[string]string, error) GetName(ctx context.Context) (string, error) ListMethods(ctx context.Context) ([]string, error) }
type ExtensionInitializer ¶
type ExtensionInitializer struct {
Extension LegacyEngineExtension
}
func (*ExtensionInitializer) CreateInstance ¶
func (e *ExtensionInitializer) CreateInstance(ctx context.Context, metadata map[string]string) (*Instance, error)
CreateInstance creates an instance of the extension with the given metadata.
type Instance ¶
type Instance struct {
// contains filtered or unexported fields
}
An instance is a single instance of an extension. Each Kuneiform schema that uses an extension will have its own instance. The instance is a way to encapsulate metadata. For example, the instance may contain the smart contract address for an ERC20 token that is used by the Kuneiform schema.
type LegacyEngineExtension ¶
type LegacyEngineExtension interface { // Initialize initializes the extension with the given metadata. // It is called each time a database is deployed that uses the extension, // or for each database that uses the extension when the engine starts. // If a database initializes an extension several times, it will be called // each times. // It should return the metadata that it wants to be returned on each // subsequent call from the extension. // If it returns an error, the database will fail to deploy. Initialize(ctx context.Context, metadata map[string]string) (map[string]string, error) // Execute executes the requested method of the extension. // It includes the metadata that was returned from the `Initialize` method. Execute(scope *execution.ProcedureContext, metadata map[string]string, method string, args ...any) ([]any, error) }
LegacyEngineExtension is an extension that can be loaded into the engine. It can be used to extend the functionality of the engine.
type RemoteExtension ¶
type RemoteExtension struct {
// contains filtered or unexported fields
}
Remote Extension used for docker extensions defined and deployed remotely
func New ¶
func New(url string) *RemoteExtension
New returns a placeholder for the RemoteExtension at a given url
func (*RemoteExtension) Connect ¶
func (e *RemoteExtension) Connect(ctx context.Context) error
Connect connects to the given extension, and attempts to configure it with the given config. If the extension is not available, an error is returned.
func (*RemoteExtension) Execute ¶
func (e *RemoteExtension) Execute(ctx *execution.ProcedureContext, metadata map[string]string, method string, args ...any) ([]any, error)
Execute executes the requested method of an extension. If the method is not supported, an error is returned.
func (*RemoteExtension) Initialize ¶
func (e *RemoteExtension) Initialize(ctx context.Context, metadata map[string]string) (map[string]string, error)
Initialize initializes based on the given metadata and returns the updated metadata
func (*RemoteExtension) Name ¶
func (e *RemoteExtension) Name() string