Skip to content

Commit c391bf3

Browse files
authored
Update with respect to review branches. (#3)
Signed-off-by: John Plevyak <[email protected]>
1 parent 8c33ecf commit c391bf3

10 files changed

+177
-41
lines changed

.bazelrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build --cxxopt="-std=c++17"

.clang-format

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
Language: Cpp
3+
ColumnLimit: 100
4+
AccessModifierOffset: -2
5+
DerivePointerAlignment: false
6+
PointerAlignment: Right
7+
SortIncludes: false
8+
...
9+
10+
---
11+
Language: Proto
12+
ColumnLimit: 100
13+
AllowShortFunctionsOnASingleLine: false
14+
ReflowComments: false
15+
SpacesInContainerLiterals: false
16+
...

BUILD

+58-32
Original file line numberDiff line numberDiff line change
@@ -5,50 +5,76 @@ package(default_visibility = ["//visibility:public"])
55
cc_library(
66
name = "include",
77
hdrs = [
8-
"include/proxy-wasm/context.h",
98
"include/proxy-wasm/compat.h",
10-
"include/proxy-wasm/exports.h",
11-
"include/proxy-wasm/null.h",
12-
"include/proxy-wasm/null_plugin.h",
13-
"include/proxy-wasm/null_vm.h",
14-
"include/proxy-wasm/null_vm_plugin.h",
15-
"include/proxy-wasm/v8.h",
16-
"include/proxy-wasm/wasm.h",
9+
"include/proxy-wasm/context.h",
1710
"include/proxy-wasm/wasm_vm.h",
18-
"include/proxy-wasm/wasm_api_impl.h",
1911
"include/proxy-wasm/word.h",
2012
],
21-
copts = ["-std=c++14"],
2213
deps = [
2314
"@proxy_wasm_cpp_sdk//:common_lib",
2415
],
2516
)
2617

18+
# TODO: remove when dependent projects have been upgraded.
2719
cc_library(
28-
name = "lib",
29-
srcs = [
30-
"src/exports.cc",
31-
"src/foreign.cc",
32-
"src/context.cc",
33-
"src/wasm.cc",
34-
"src/base64.cc",
35-
"src/base64.h",
36-
"src/v8/v8.cc",
37-
"src/null/null.cc",
38-
"src/null/null_plugin.cc",
39-
"src/null/null_vm.cc",
20+
name = "include14",
21+
hdrs = [
22+
"include/proxy-wasm/compat.h",
23+
"include/proxy-wasm/context.h",
24+
"include/proxy-wasm/wasm_vm.h",
25+
"include/proxy-wasm/word.h",
4026
],
41-
copts = ["-std=c++14"],
4227
deps = [
43-
":include",
44-
"@proxy_wasm_cpp_sdk//:api_lib",
4528
"@proxy_wasm_cpp_sdk//:common_lib",
46-
"@envoy//external:abseil_flat_hash_map",
47-
"@envoy//external:abseil_strings",
48-
"@envoy//external:abseil_optional",
49-
"@envoy//external:zlib",
50-
"@boringssl//:ssl",
51-
"@envoy//external:wee8",
52-
"@envoy//external:protobuf",
29+
],
30+
)
31+
32+
cc_test(
33+
name = "wasm_vm_test",
34+
srcs = ["wasm_vm_test.cc"],
35+
copts = ["-std=c++17"],
36+
deps = [
37+
":include",
38+
"@com_google_googletest//:gtest",
39+
"@com_google_googletest//:gtest_main",
40+
],
41+
)
42+
43+
cc_test(
44+
name = "context_test",
45+
srcs = ["context_test.cc"],
46+
deps = [
47+
":include",
48+
"@com_google_googletest//:gtest",
49+
"@com_google_googletest//:gtest_main",
50+
],
51+
)
52+
53+
# TODO: remove when dependent projects have been upgraded.
54+
cc_test(
55+
name = "wasm_vm_14_test",
56+
srcs = ["wasm_vm_test.cc"],
57+
copts = ["-std=c++14"],
58+
deps = [
59+
":include14",
60+
"@com_google_absl//absl/base",
61+
"@com_google_absl//absl/strings:strings",
62+
"@com_google_absl//absl/types:optional",
63+
"@com_google_googletest//:gtest",
64+
"@com_google_googletest//:gtest_main",
65+
],
66+
)
67+
68+
cc_test(
69+
name = "context_14_test",
70+
srcs = ["context_test.cc"],
71+
copts = ["-std=c++14"],
72+
deps = [
73+
":include14",
74+
"@com_google_absl//absl/base",
75+
"@com_google_absl//absl/strings:strings",
76+
"@com_google_absl//absl/types:optional",
77+
"@com_google_googletest//:gtest",
78+
"@com_google_googletest//:gtest_main",
5379
],
5480
)

WORKSPACE

+24
Original file line numberDiff line numberDiff line change
@@ -1 +1,25 @@
11
workspace(name = "proxy_wasm_cpp_host")
2+
3+
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4+
5+
http_archive(
6+
name = "proxy_wasm_cpp_sdk",
7+
sha256 = "14f66f67e8f37ec81d28d7f5307be4407d206ac5f0daaf6d22fa5536797bcac1",
8+
strip_prefix = "proxy-wasm-cpp-sdk-31f1fc5b7e09f231fa532d2d296e479a113c3e10",
9+
urls = ["https://github.com/proxy-wasm/proxy-wasm-cpp-sdk/archive/31f1fc5b7e09f231fa532d2d296e479a113c3e10.tar.gz"],
10+
)
11+
12+
http_archive(
13+
name = "com_google_absl",
14+
sha256 = "19391fb4882601a65cb648d638c11aa301ce5f525ef02da1a9eafd22f72d7c59",
15+
strip_prefix = "abseil-cpp-37dd2562ec830d547a1524bb306be313ac3f2556",
16+
# 2020-01-29
17+
urls = ["https://github.com/abseil/abseil-cpp/archive/37dd2562ec830d547a1524bb306be313ac3f2556.tar.gz"],
18+
)
19+
20+
http_archive(
21+
name = "com_google_googletest",
22+
sha256 = "9dc9157a9a1551ec7a7e43daea9a694a0bb5fb8bec81235d8a1e6ef64c716dcb",
23+
strip_prefix = "googletest-release-1.10.0",
24+
urls = ["https://github.com/google/googletest/archive/release-1.10.0.tar.gz"],
25+
)

context_test.cc

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#include "include/proxy-wasm/context.h"
2+
3+
#include "gtest/gtest.h"
4+
5+
namespace proxy_wasm {
6+
namespace {
7+
8+
class Context : public ContextBase {
9+
public:
10+
Context(std::function<void(string_view s)> error_function) : error_function_(error_function) {}
11+
void error(string_view message) { error_function_(message); }
12+
13+
private:
14+
std::function<void(string_view s)> error_function_;
15+
};
16+
17+
TEST(Context, IncludeParses) {}
18+
19+
} // namespace
20+
} // namespace proxy_wasm

include/proxy-wasm/compat.h

+13-8
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,33 @@
1414

1515
#pragma once
1616

17-
// #ifdef PROXY_WASM_USE_ABSL
18-
#ifndef __cpp_lib_optional
19-
#include "absl/types/optional.h"
20-
#include "absl/strings/string_view.h"
21-
#else
17+
// Provide compatibiliby for projects which have not yet moved to C++17.
18+
// TODO: remove this when all dependent projects have upgraded.
19+
20+
#if __cplusplus >= 201703L
2221
#include <optional>
2322
#include <string_view>
23+
#else
24+
#include "absl/types/optional.h"
25+
#include "absl/strings/string_view.h"
2426
#endif
2527

2628
namespace proxy_wasm {
27-
// #ifdef PROXY_WASM_USE_ABSL
2829
#ifndef __cpp_lib_optional
29-
using string_view = absl::string_view;
3030
template <typename T> using optional = absl::optional<T>;
3131
// Only available in C++17
3232
// inline constexpr absl::nullopt_t nullopt = absl::nullopt;
3333
#define PROXY_WASM_NULLOPT absl::nullopt
3434
#else
35-
using string_view = std::string_view;
3635
template <typename T> using optional = std::optional<T>;
3736
// Only available in C++17
3837
// inline constexpr std::nullopt_t nullopt = std::nullopt;
3938
#define PROXY_WASM_NULLOPT std::nullopt
4039
#endif
40+
41+
#ifndef __cpp_lib_string_view
42+
using string_view = absl::string_view;
43+
#else
44+
using string_view = std::string_view;
45+
#endif
4146
} // namespace proxy_wasm

include/proxy-wasm/context.h

+12-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919

2020
#include <time.h>
2121
#include <atomic>
22+
#include <chrono>
23+
#include <functional>
2224
#include <iostream>
2325
#include <map>
2426
#include <memory>
@@ -39,7 +41,16 @@ using CallOnThreadFunction = std::function<void(std::function<void()>)>;
3941
struct BufferInterface {
4042
virtual ~BufferInterface() {}
4143
virtual size_t size() const = 0;
42-
// Returns true on success.
44+
/**
45+
* Copy bytes from the buffer into the Wasm VM corresponding to 'wasm'.
46+
* @param start is the first buffer byte to copy.
47+
* @param length is the length of sequence of buffer bytes to copy.
48+
* @param ptr_ptr is the location in the VM address space to place the address of the newly
49+
* allocated memory block which contains the copied bytes.
50+
* @param size_ptr is the location in the VM address space to place the size of the newly
51+
* allocated memory block which contains the copied bytes (e.g. length).
52+
* @return true on success.
53+
*/
4354
virtual bool copyTo(WasmBase *wasm, size_t start, size_t length, uint64_t ptr_ptr,
4455
uint64_t size_ptr) const = 0;
4556
};

include/proxy-wasm/wasm_vm.h

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
#include "include/proxy-wasm/compat.h"
1919

20+
#include <functional>
2021
#include <memory>
2122

2223
#include "include/proxy-wasm/word.h"

include/proxy-wasm/word.h

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace proxy_wasm {
2424
struct Word {
2525
Word(uint64_t w) : u64_(w) {} // Implicit conversion into Word.
2626
uint32_t u32() const { return static_cast<uint32_t>(u64_); }
27+
operator uint64_t() const { return u64_; }
2728
uint64_t u64_;
2829
};
2930

wasm_vm_test.cc

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#include "include/proxy-wasm/wasm_vm.h"
2+
3+
#include "gtest/gtest.h"
4+
5+
namespace proxy_wasm {
6+
namespace {
7+
8+
TEST(WasmVm, Compat) {
9+
string_view foo = "foo";
10+
std::string bar = "bar";
11+
12+
EXPECT_NE(foo, bar);
13+
EXPECT_EQ(foo, "foo");
14+
15+
optional<int> o = PROXY_WASM_NULLOPT;
16+
EXPECT_FALSE(o);
17+
18+
o = 1;
19+
EXPECT_TRUE(o);
20+
}
21+
22+
TEST(WasmVm, Word) {
23+
Word w(1);
24+
EXPECT_EQ(w.u32(), 1);
25+
EXPECT_EQ(sizeof(w.u32()), sizeof(uint32_t));
26+
EXPECT_EQ(w, 1);
27+
EXPECT_EQ(sizeof(w), sizeof(uint64_t));
28+
}
29+
30+
} // namespace
31+
} // namespace proxy_wasm

0 commit comments

Comments
 (0)