/* * Copyright (C) 2021-present ScyllaDB */ /* * SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 */ #pragma once #include #include "types/types.hh" #include #include "db/functions/function_name.hh" #include "rust/wasmtime_bindings.hh" #include "lang/wasm_instance_cache.hh" #include "lang/wasm_alien_thread_runner.hh" namespace wasm { class instance_cache; struct exception : public std::exception { std::string _msg; public: explicit exception(std::string_view msg) : _msg(msg) {} const char* what() const noexcept { return _msg.c_str(); } }; struct instance_corrupting_exception : public exception { explicit instance_corrupting_exception(std::string_view msg) : exception(msg) {} }; struct context { wasmtime::Engine& engine_ptr; std::optional> module; std::string function_name; instance_cache& cache; uint64_t yield_fuel; uint64_t total_fuel; context(wasmtime::Engine& engine_ptr, std::string name, instance_cache& cache, uint64_t yield_fuel, uint64_t total_fuel); }; seastar::future<> precompile(alien_thread_runner& alien_runner, context& ctx, const std::vector& arg_names, std::string script); seastar::future run_script(const db::functions::function_name& name, context& ctx, const std::vector& arg_types, std::span params, data_type return_type, bool allow_null_input); }