|
| 1 | +// Copyright 2016-2019 Envoy Project Authors |
| 2 | +// Copyright 2020 Google LLC |
| 3 | +// |
| 4 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +// you may not use this file except in compliance with the License. |
| 6 | +// You may obtain a copy of the License at |
| 7 | +// |
| 8 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +// |
| 10 | +// Unless required by applicable law or agreed to in writing, software |
| 11 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +// See the License for the specific language governing permissions and |
| 14 | +// limitations under the License. |
| 15 | + |
| 16 | +#pragma once |
| 17 | + |
| 18 | +#include <memory> |
| 19 | +#include <utility> |
| 20 | +#include <vector> |
| 21 | + |
| 22 | +#include "include/proxy-wasm/dyn_vm_plugin.h" |
| 23 | +#include "include/proxy-wasm/wasm_vm.h" |
| 24 | + |
| 25 | +namespace proxy_wasm { |
| 26 | + |
| 27 | +class WasmVm; |
| 28 | +std::unique_ptr<WasmVm> createDynVm(); |
| 29 | + |
| 30 | +// The DynVm wraps a C++ Wasm plugin which has been compiled with the Wasm API |
| 31 | +// and dynamically linked into the proxy. |
| 32 | +struct DynVm : public WasmVm { |
| 33 | + DynVm() : WasmVm() {} |
| 34 | + |
| 35 | + // WasmVm |
| 36 | + std::string_view getEngineName() override { return "dyn"; } |
| 37 | + Cloneable cloneable() override { return Cloneable::InstantiatedModule; }; |
| 38 | + std::unique_ptr<WasmVm> clone() override; |
| 39 | + bool load(std::string_view plugin_name, std::string_view precompiled, |
| 40 | + const std::unordered_map<uint32_t, std::string> &function_names) override; |
| 41 | + bool link(std::string_view debug_name) override; |
| 42 | + uint64_t getMemorySize() override; |
| 43 | + std::optional<std::string_view> getMemory(uint64_t pointer, uint64_t size) override; |
| 44 | + bool setMemory(uint64_t pointer, uint64_t size, const void *data) override; |
| 45 | + bool setWord(uint64_t pointer, Word data) override; |
| 46 | + bool getWord(uint64_t pointer, Word *data) override; |
| 47 | + size_t getWordSize() override; |
| 48 | + std::string_view getPrecompiledSectionName() override; |
| 49 | + |
| 50 | +#define _FORWARD_GET_FUNCTION(_T) \ |
| 51 | + void getFunction(std::string_view function_name, _T *f) override { \ |
| 52 | + plugin_->getFunction(function_name, f); \ |
| 53 | + } |
| 54 | + FOR_ALL_WASM_VM_EXPORTS(_FORWARD_GET_FUNCTION) |
| 55 | +#undef _FORWARD_GET_FUNCTION |
| 56 | + |
| 57 | + // These are not needed for DynVm which invokes the handlers directly. |
| 58 | +#define _REGISTER_CALLBACK(_T) \ |
| 59 | + void registerCallback(std::string_view, std::string_view, _T, \ |
| 60 | + typename ConvertFunctionTypeWordToUint32<_T>::type) override{}; |
| 61 | + FOR_ALL_WASM_VM_IMPORTS(_REGISTER_CALLBACK) |
| 62 | +#undef _REGISTER_CALLBACK |
| 63 | + |
| 64 | + void terminate() override {} |
| 65 | + bool usesWasmByteOrder() override { return false; } |
| 66 | + |
| 67 | + std::unique_ptr<DynVmPlugin> plugin_; |
| 68 | +}; |
| 69 | + |
| 70 | +} // namespace proxy_wasm |
0 commit comments