Skip to content

Commit 4f64a93

Browse files
committed
Merge branch 'master' into boost-1.85
2 parents b6ccaaf + 5108e66 commit 4f64a93

13 files changed

+67
-48
lines changed

.github/workflows/sdist.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python3 -m pip install build --user
2626
2727
- name: Build a source tarball
28-
run: python3 -m build --sdist
28+
run: python3 setup.py sdist
2929

3030
- name: Store the distribution packages
3131
uses: actions/upload-artifact@v4

examples/circle.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import STPyV8
66

77
with STPyV8.JSContext() as ctxt:
8-
ctxt.eval("""
8+
ctxt.eval("""
99
class Circle {
1010
constructor(radius) {
1111
this.radius = radius;
@@ -18,5 +18,5 @@ class Circle {
1818
}
1919
}
2020
""")
21-
circle = ctxt.eval("new Circle(10)")
22-
print("Area of the circle: " + str(circle.area))
21+
circle = ctxt.eval("new Circle(10)")
22+
print("Area of the circle: " + str(circle.area))

examples/console.py

+17-14
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,32 @@
55
from logging import getLogger, basicConfig, INFO
66
import STPyV8 as V8
77

8-
basicConfig(format='%(asctime)-15s %(message)s',
9-
datefmt='%Y-%m-%d %H:%M:%S')
10-
log = getLogger('myapp')
8+
basicConfig(format="%(asctime)-15s %(message)s", datefmt="%Y-%m-%d %H:%M:%S")
9+
log = getLogger("myapp")
1110
log.setLevel(INFO)
1211

12+
1313
class Console(object):
14-
def log(self, message):
15-
log.info(message)
14+
def log(self, message):
15+
log.info(message)
16+
17+
def error(self, message):
18+
log.error(message)
1619

17-
def error(self, message):
18-
log.error(message)
1920

2021
class Global(V8.JSClass):
21-
custom_console = Console()
22+
custom_console = Console()
23+
2224

2325
def load(js_file):
24-
with open(js_file, 'r') as f:
25-
return f.read()
26+
with open(js_file, "r") as f:
27+
return f.read()
28+
2629

2730
def run(js_file):
28-
with V8.JSContext(Global()) as ctxt:
29-
ctxt.eval('this.console = custom_console;')
30-
ctxt.eval(load(js_file))
31+
with V8.JSContext(Global()) as ctxt:
32+
ctxt.eval("this.console = custom_console;")
33+
ctxt.eval(load(js_file))
3134

32-
run('simple.js')
3335

36+
run("simple.js")

examples/global.py

+12-10
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,27 @@
44

55
import STPyV8 as V8
66

7+
78
class Global(V8.JSClass):
8-
version = "1.0"
9+
version = "1.0"
10+
11+
def hello(self, name):
12+
return "Hello " + name
913

10-
def hello(self, name):
11-
return "Hello " + name
1214

1315
with V8.JSContext(Global()) as ctxt:
14-
print(ctxt.eval("version")) # 1.0
15-
print(ctxt.eval("hello('World')")) # Hello World
16-
print(ctxt.eval("hello.toString()")) # function () { [native code] }
16+
print(ctxt.eval("version")) # 1.0
17+
print(ctxt.eval("hello('World')")) # Hello World
18+
print(ctxt.eval("hello.toString()")) # function () { [native code] }
1719

1820
# "simulate" a browser, defining the js 'window' object in python
1921
# see https://github.com/buffer/thug for a robust implementation
2022

23+
2124
class window(V8.JSClass):
25+
def alert(self, message):
26+
print("Popping up an alert with message " + message)
2227

23-
def alert(self, message):
24-
print("Popping up an alert with message " + message)
2528

2629
with V8.JSContext(window()) as browser_ctxt:
27-
browser_ctxt.eval("alert('Hello')")
28-
30+
browser_ctxt.eval("alert('Hello')")

examples/meaning.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44

55
import STPyV8
66

7+
78
class MyClass(STPyV8.JSClass):
8-
def reallyComplexFunction(self, addme):
9-
return 10 * 3 + addme
9+
def reallyComplexFunction(self, addme):
10+
return 10 * 3 + addme
11+
1012

1113
my_class = MyClass()
1214

1315
with STPyV8.JSContext(my_class) as ctxt:
14-
meaning = ctxt.eval("this.reallyComplexFunction(2) + 10;")
15-
print("The meaning of life: " + str(meaning))
16-
16+
meaning = ctxt.eval("this.reallyComplexFunction(2) + 10;")
17+
print("The meaning of life: " + str(meaning))

examples/simple.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@
55
import STPyV8
66

77
with STPyV8.JSContext() as ctxt:
8-
upcase = ctxt.eval("""
8+
upcase = ctxt.eval("""
99
( (lowerString) => {
1010
return lowerString.toUpperCase();
1111
})
1212
""")
13-
print(upcase("hello world!"))
14-
13+
print(upcase("hello world!"))

ruff.toml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exclude = ["docs"]

settings.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
V8_HOME = os.environ.get("V8_HOME", os.path.join(STPYV8_HOME, "v8"))
88

99
V8_GIT_URL = "https://chromium.googlesource.com/v8/v8.git"
10-
V8_GIT_TAG_STABLE = "12.4.254.14"
10+
V8_GIT_TAG_STABLE = "12.7.224.16"
1111
V8_GIT_TAG_MASTER = "master"
1212
V8_GIT_TAG = V8_GIT_TAG_STABLE
1313
DEPOT_GIT_URL = "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
@@ -117,7 +117,7 @@ def get_libboost_python_name():
117117
library_dirs.add(os.path.join(os.environ["Python_ROOT_DIR"], "libs"))
118118

119119
libraries += ["winmm", "ws2_32", "Advapi32", "dbghelp", "v8_monolith"]
120-
extra_compile_args += ["/O2", "/GL", "/MT", "/EHsc", "/Gy", "/Zi", "/std:c++20"]
120+
extra_compile_args += ["/O2", "/GL", "/MT", "/EHsc", "/Gy", "/Zi", "/std:c++20", "/Zc:__cplusplus"]
121121
extra_link_args += ["/DLL", "/OPT:REF", "/OPT:ICF", "/MACHINE:X64"]
122122
macros += [
123123
("HAVE_SNPRINTF", None),
@@ -134,10 +134,12 @@ def get_libboost_python_name():
134134
STPYV8_BOOST_PYTHON.replace(".", ""),
135135
]
136136

137-
extra_compile_args.append("-std=c++17")
138-
139137
if platform.system() in ("Linux",):
140138
libraries.append("rt")
139+
extra_compile_args.append("-std=c++2a")
140+
else:
141+
extra_compile_args.append("-std=c++20")
142+
extra_link_args.append("-headerpad_max_install_names")
141143

142144

143145
GN_ARGS = " ".join(f"{key}={value}" for key, value in gn_args.items())

setup.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -247,18 +247,19 @@ def run(self):
247247
version=STPYV8_VERSION,
248248
description="Python Wrapper for Google V8 Engine",
249249
long_description=open("README.md").read(),
250-
platforms="x86",
250+
platforms=["Linux", "MacOS", "Windows"],
251251
author="Philip Syme, Angelo Dell'Aera",
252252
url="https://github.com/cloudflare/stpyv8",
253253
license="Apache License 2.0",
254254
py_modules=["STPyV8"],
255255
ext_modules=[stpyv8],
256-
install_requires=["wheel", "importlib_resources; python_version < '3.10'"],
256+
install_requires=["importlib_resources; python_version < '3.10'"],
257+
setup_requires=["wheel"],
257258
data_files=[
258259
(ICU_DATA_PACKAGE_FOLDER, [ICU_DATA_V8_FILE_PATH]),
259260
],
260261
classifiers=[
261-
"Development Status :: 4 - Beta",
262+
"Development Status :: 5 - Production/Stable",
262263
"Environment :: Plugins",
263264
"Intended Audience :: Developers",
264265
"Intended Audience :: System Administrators",
@@ -273,10 +274,12 @@ def run(self):
273274
"Topic :: Utilities",
274275
"Operating System :: POSIX :: Linux",
275276
"Operating System :: MacOS :: MacOS X",
277+
"Operating System :: Microsoft :: Windows",
276278
"Programming Language :: Python :: 3",
277279
"Programming Language :: Python :: 3.9",
278280
"Programming Language :: Python :: 3.10",
279281
"Programming Language :: Python :: 3.11",
282+
"Programming Language :: Python :: 3.12",
280283
],
281284
long_description_content_type="text/markdown",
282285
cmdclass=dict(

src/Engine.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,12 @@ std::shared_ptr<CScript> CEngine::InternalCompile(v8::Handle<v8::String> src,
157157

158158
if (line >= 0 && col >= 0)
159159
{
160-
v8::ScriptOrigin script_origin(m_isolate, name, line, col);
160+
v8::ScriptOrigin script_origin(name, line, col);
161161
script = v8::Script::Compile(context, source, &script_origin);
162162
}
163163
else
164164
{
165-
v8::ScriptOrigin script_origin(m_isolate, name);
165+
v8::ScriptOrigin script_origin(name);
166166
script = v8::Script::Compile(context, source, &script_origin);
167167
}
168168

src/Wrapper.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ void CPythonObject::SetupObjectTemplate(v8::Isolate *isolate, v8::Handle<v8::Obj
750750

751751
clazz->SetInternalFieldCount(1);
752752
clazz->SetHandler(v8::NamedPropertyHandlerConfiguration(NamedGetter, NamedSetter, NamedQuery, NamedDeleter, NamedEnumerator));
753-
clazz->SetIndexedPropertyHandler(IndexedGetter, IndexedSetter, IndexedQuery, IndexedDeleter, IndexedEnumerator);
753+
clazz->SetHandler(v8::IndexedPropertyHandlerConfiguration(IndexedGetter, IndexedSetter, IndexedQuery, IndexedDeleter, IndexedEnumerator));
754754
clazz->SetCallAsFunctionHandler(Caller);
755755
}
756756

src/utf8/checked.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,15 @@ namespace utf8
261261

262262
// The iterator class
263263
template <typename octet_iterator>
264-
class iterator : public std::iterator <std::bidirectional_iterator_tag, uint32_t> {
264+
// class iterator : public std::iterator <std::bidirectional_iterator_tag, uint32_t> {
265+
class iterator {
265266
octet_iterator it;
266267
octet_iterator range_start;
267268
octet_iterator range_end;
268269
public:
270+
using iterator_category = std::bidirectional_iterator_tag;
271+
using value_type = uint32_t;
272+
269273
iterator () {};
270274
explicit iterator (const octet_iterator& octet_it,
271275
const octet_iterator& range_start,

src/utf8/unchecked.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,13 @@ namespace utf8
176176

177177
// The iterator class
178178
template <typename octet_iterator>
179-
class iterator : public std::iterator <std::bidirectional_iterator_tag, uint32_t> {
179+
// class iterator : public std::iterator <std::bidirectional_iterator_tag, uint32_t> {
180+
class iterator {
180181
octet_iterator it;
181182
public:
183+
using iterator_category = std::bidirectional_iterator_tag;
184+
using value_type = uint32_t;
185+
182186
iterator () {};
183187
explicit iterator (const octet_iterator& octet_it): it(octet_it) {}
184188
// the default "big three" are OK

0 commit comments

Comments
 (0)