Skip to content

Commit 6637ffb

Browse files
Init
0 parents  commit 6637ffb

24 files changed

+7569
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# JavaScriptKit

example/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/dist
2+
/node_modules
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../src/swift/.build/debug/JavaScriptKitExample

example/index.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title>Getting Started</title>
5+
</head>
6+
<body>
7+
<script src="./dist/main.js"></script>
8+
</body>
9+
</html>

example/package-lock.json

+6,675
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "javascript-kit-example",
3+
"version": "1.0.0",
4+
"description": "An example use of JavaScriptKit",
5+
"private": true,
6+
"dependencies": {
7+
"@wasmer/wasi": "^0.9.1",
8+
"@wasmer/wasmfs": "^0.9.1",
9+
"javascript-kit-swift": "file:../src/web"
10+
},
11+
"devDependencies": {
12+
"webpack": "^4.42.0",
13+
"webpack-cli": "^3.3.11",
14+
"webpack-dev-server": "^3.10.3"
15+
},
16+
"scripts": {
17+
"build": "webpack",
18+
"start": "webpack-dev-server"
19+
},
20+
"author": "kateinoigakukun",
21+
"license": "MIT"
22+
}

example/src/index.js

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
import { SwiftRuntime } from "javascript-kit-swift";
2+
import { WASI } from "@wasmer/wasi";
3+
import { WasmFs } from "@wasmer/wasmfs";
4+
5+
6+
const swift = new SwiftRuntime();
7+
// Instantiate a new WASI Instance
8+
const wasmFs = new WasmFs();
9+
let wasi = new WASI({
10+
args: [],
11+
env: {},
12+
bindings: {
13+
...WASI.defaultBindings,
14+
fs: wasmFs.fs
15+
}
16+
});
17+
18+
const startWasiTask = async () => {
19+
// Fetch our Wasm File
20+
const response = await fetch("./assets/JavaScriptKitExample.wasm");
21+
const responseArrayBuffer = await response.arrayBuffer();
22+
23+
// Instantiate the WebAssembly file
24+
const wasm_bytes = new Uint8Array(responseArrayBuffer).buffer;
25+
let { instance } = await WebAssembly.instantiate(wasm_bytes, {
26+
wasi_snapshot_preview1: wasi.wasiImport,
27+
javascript_kit: swift.importObjects(),
28+
});
29+
30+
swift.setInsance(instance);
31+
// Start the WebAssembly WASI instance!
32+
wasi.start(instance);
33+
34+
// Output what's inside of /dev/stdout!
35+
const stdout = await wasmFs.getStdOut();
36+
console.log(stdout);
37+
38+
console.log(`Print window.foobar = ${foobar}`);
39+
};
40+
startWasiTask();

example/webpack.config.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const path = require('path');
2+
const outputPath = path.resolve(__dirname, 'dist');
3+
4+
module.exports = {
5+
entry: './src/index.js',
6+
mode: 'development',
7+
output: {
8+
filename: 'main.js',
9+
path: outputPath,
10+
},
11+
};

src/swift/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
/*.xcodeproj
5+
xcuserdata/

src/swift/.swift-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
wasm-DEVELOPMENT

src/swift/Package.swift

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// swift-tools-version:5.2
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "JavaScriptKit",
7+
targets: [
8+
.target(
9+
name: "JavaScriptKitExample",
10+
dependencies: ["JavaScriptKit"]),
11+
.target(
12+
name: "JavaScriptKit",
13+
dependencies: ["_CJavaScriptKit"]),
14+
.target(
15+
name: "_CJavaScriptKit"),
16+
.testTarget(
17+
name: "JavaScriptKitTests",
18+
dependencies: ["JavaScriptKit"]),
19+
]
20+
)

src/swift/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# JavaScriptKit
2+
3+
A description of this package.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
public class JSRef {
2+
let id: UInt32
3+
init(id: UInt32) {
4+
self.id = id
5+
}
6+
public static func global() -> JSRef {
7+
.init(id: _JS_Predef_Value_Global)
8+
}
9+
10+
deinit {
11+
12+
}
13+
}
14+
15+
public enum JSValue {
16+
case boolean(Bool)
17+
case string(String)
18+
}
19+
20+
protocol JSValueConvertible {
21+
func jsValue() -> JSValue
22+
}
23+
24+
extension Bool: JSValueConvertible {
25+
func jsValue() -> JSValue {
26+
.boolean(self)
27+
}
28+
}
29+
30+
import _CJavaScriptKit
31+
32+
public func getJSValue(this: JSRef, name: String) -> JSValue {
33+
var kind: JavaScriptValueKind = JavaScriptValueKind_Invalid
34+
var payload: JavaScriptPayload = 0
35+
_get_js_value(this.id, name, Int32(name.count), &kind, &payload)
36+
switch kind {
37+
case JavaScriptValueKind_Invalid:
38+
fatalError()
39+
case JavaScriptValueKind_Boolean:
40+
return .boolean(payload != 0)
41+
case JavaScriptValueKind_String:
42+
let ptr = UnsafePointer<UInt8>(bitPattern: UInt(payload))!
43+
return .string(String(decodingCString: ptr, as: UTF8.self))
44+
default:
45+
fatalError("unreachable")
46+
}
47+
}
48+
49+
public func setJSValue(this: JSRef, name: String, value: JSValue) {
50+
51+
let kind: JavaScriptValueKind
52+
let payload: JavaScriptPayload
53+
switch value {
54+
case let .boolean(boolValue):
55+
kind = JavaScriptValueKind_Boolean
56+
payload = boolValue ? 1 : 0
57+
case var .string(stringValue):
58+
kind = JavaScriptValueKind_String
59+
stringValue.withUTF8 { ptr in
60+
let ptrValue = unsafeBitCast(ptr, to: UInt32.self)
61+
_set_js_value(this.id, name, Int32(name.count), kind, ptrValue)
62+
}
63+
return
64+
}
65+
66+
print("\(#function) with prop name \"\(name)\" (length: \(name.count))")
67+
_set_js_value(this.id, name, Int32(name.count), kind, payload)
68+
}
69+
70+
71+
#if Xcode
72+
func _set_js_value(_ _this: JavaScriptValueId, _ prop: UnsafePointer<Int8>!, _ length: Int32, _ kind: JavaScriptValueKind, _ value: JavaScriptPayload) { fatalError() }
73+
func _get_js_value(_ _this: JavaScriptValueId, _ prop: UnsafePointer<Int8>!, _ length: Int32, _ kind: UnsafeMutablePointer<JavaScriptValueKind>!, _ value: UnsafeMutablePointer<JavaScriptPayload>!) {}
74+
#endif
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import JavaScriptKit
2+
let global = JSRef.global()
3+
setJSValue(this: global, name: "foobar", value: .boolean(true))
4+
print(getJSValue(this: global, name: "foobar"))
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#ifndef _CJavaScriptKit_h
2+
#define _CJavaScriptKit_h
3+
4+
typedef unsigned int JavaScriptValueId;
5+
6+
typedef enum {
7+
JavaScriptValueKind_Invalid = -1,
8+
JavaScriptValueKind_Boolean = 0,
9+
JavaScriptValueKind_String = 1,
10+
} JavaScriptValueKind;
11+
12+
typedef unsigned JavaScriptPayload;
13+
14+
15+
const unsigned int _JS_Predef_Value_Global = 0;
16+
17+
__attribute__((
18+
__import_module__("javascript_kit"),
19+
__import_name__("swjs_set_js_value")
20+
))
21+
extern void _set_js_value(
22+
const JavaScriptValueId _this,
23+
const char *prop,
24+
const int length,
25+
const JavaScriptValueKind kind,
26+
const JavaScriptPayload value
27+
);
28+
29+
__attribute__((
30+
__import_module__("javascript_kit"),
31+
__import_name__("swjs_get_js_value")
32+
))
33+
extern void _get_js_value(
34+
const JavaScriptValueId _this,
35+
const char *prop,
36+
const int length,
37+
JavaScriptValueKind *kind,
38+
JavaScriptPayload *value
39+
);
40+
41+
#endif /* _CJavaScriptKit_h */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import XCTest
2+
@testable import JavaScriptKit
3+
4+
final class JavaScriptKitTests: XCTestCase {
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import XCTest
2+
3+
#if !canImport(ObjectiveC)
4+
public func allTests() -> [XCTestCaseEntry] {
5+
return [
6+
testCase(swift_js_sysTests.allTests),
7+
]
8+
}
9+
#endif

src/swift/Tests/LinuxMain.swift

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import XCTest
2+
3+
import swift_js_sysTests
4+
5+
var tests = [XCTestCaseEntry]()
6+
tests += swift_js_sysTests.allTests()
7+
XCTMain(tests)

src/web/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/lib
2+
/node_modules

0 commit comments

Comments
 (0)