Supernote Module Generator
Supernote Module Generator adds typed C/C++ and Kotlin/Java capabilities to an existing Supernote plugin. It generates the JSI, JNI, Kotlin Symbol Processing, TypeScript, build, and lifecycle code that connects those implementations to JavaScript.
A feature can use C++, C helper files, Kotlin, and Java together while exposing one JavaScript and TypeScript API. The generator connects everything through JSI and builds one shared runtime component for the plugin.
Native objects keep a reference to the original C++, Kotlin, or Java instance. Declared value objects are validated and copied across the bridge. The same type system also supports arrays, nullable values, string enums, live object fields, returned-only objects, explicit constructors, factories, and async object retention.
Install
Python 3.9 or newer is required:
python3 -m pip install sn-module-gen
Package and command names:
Python distribution: sn-module-gen
CLI command: sn-module-gen
Run the CLI from an existing Supernote plugin root.
Add a feature
Choose which starter source families to scaffold:
sn-module-gen add document --starter cpp --yes
sn-module-gen add document --starter kotlin --yes
sn-module-gen add document --starter cpp --starter kotlin --yes
The guided command shows the same choices as C/C++ (native) and
Kotlin/Java (JVM). These options only choose which example files to create.
You can add either source family later.
The native root compiles C23 and C++23 source. Exported declarations are written in C++23. C23 code can be used behind an ordinary C-compatible interface and a small marked C++ boundary.
Common commands:
sn-module-gen update document --yes
sn-module-gen validate document
sn-module-gen validate --all --build
sn-module-gen doctor
sn-module-gen remove document --yes
The generator uses the plugin root's optional devconfig.json for plugin operations
and Doctor. javaHome selects Gradle's Java, androidSdk sets both SDK variables,
and adb is passed to children as ADB_BIN. A missing, null, malformed, or unusable
value warns and preserves the corresponding launch-environment value.
The overrides apply only while the command runs and do not change the parent shell
or android/local.properties on disk. Build and check paths are source-tree read-only.
Doctor reads the literal compileSdkVersion, buildToolsVersion, and ndkVersion;
it never substitutes another installed NDK. JSON distinguishes configured, found,
selected, executable_probed, compiler_probed, project_built, and
device_tested. Plain Doctor never infers a build or device test from file detection.
Use sn-module-gen doctor --build for the read-only Gradle/KSP/Kotlin/CMake/JNI/JSI
gate; device_tested stays false until a separate device canary.
Removal preserves plugin build output by default. To remove the three known generated build directories as part of an explicit removal:
sn-module-gen remove document --delete-build-files --yes
That option targets only build/, android/build/, and
android/app/build/. --yes by itself never enables build-output deletion or
widens a single-feature target to all features.
Marking exports
The generator leaves ordinary source alone. It only processes declarations with a Supernote marker.
In C++, markers are exact source comments:
#include <cstddef>
#include <cstdint>
#include <vector>
// @SupernotePluginExport
std::int32_t pageCount() {
return 42;
}
// @SupernotePluginInternal
void rebuildIndex() {}
// @SupernotePluginExport
// @SupernotePluginAsync
std::vector<std::byte> loadPage(std::int32_t page) {
(void)page;
return {};
}
void ordinaryHelper() {} // ignored
For Kotlin and Java, use the generated annotations with the same names:
package com.example.readme_jvm
import supernote.generated.annotations.SupernotePluginAsync
import supernote.generated.annotations.SupernotePluginExport
import supernote.generated.annotations.SupernotePluginInternal
@SupernotePluginExport
fun pageCount(): Int = 42
@SupernotePluginInternal
fun rebuildIndex() = Unit
@SupernotePluginExport
@SupernotePluginAsync
suspend fun loadPage(page: Int): ByteArray = TODO()
SupernotePluginInternal generates typed cross-language routing without adding
the declaration to JavaScript or TypeScript. SupernotePluginAsync is always
explicit; Kotlin suspend, C++ future-like types, and blocking implementation
code do not change the public API on their own.
SupernotePluginObject declares reference semantics;
SupernotePluginValue declares copied structural semantics. Neither marker
publishes members or construction by itself. Every JavaScript-visible function,
method, field, and constructor requires its own explicit marker:
#pragma once
#include <memory>
#include <string>
#include <utility>
#include <vector>
// @SupernotePluginValue
struct Point {
// @SupernotePluginExport
double x;
// @SupernotePluginExport
double y;
};
// @SupernotePluginObject
class Stroke {
public:
// @SupernoteConstructor
explicit Stroke(std::vector<Point> points) : points_(std::move(points)) {}
// @SupernotePluginExport
bool intersects(const std::shared_ptr<Stroke> &other) const {
return other != nullptr;
}
// @SupernotePluginExport
std::shared_ptr<Stroke> transformed(Point offset) const {
(void)offset;
return std::make_shared<Stroke>(*this);
}
// @SupernotePluginExport
std::string label;
void resetInternalCache(); // ignored
private:
std::vector<Point> points_;
};
JavaScript receives stable runtime-local identity: if the same live native
instance is exposed again in one active runtime generation, the same JavaScript
object is returned. C++ objects use generated shared ownership; JVM objects use
managed global references and IsSameObject. Returned-only objects omit a
constructor but retain the same methods, argument/result behavior, lifetime,
and identity. Marked native-object fields are live properties; source
mutability determines whether they are writable.
Kotlin data classes and supported Java records or final classes can declare
copied values. Kotlin and Java object classes use @SupernotePluginObject, and
constructors exposed to JavaScript use @SupernoteConstructor. A marked static
or top-level function can also return an object; there is no separate factory
annotation.
Supported types and copied values
The generator supports these JavaScript and TypeScript mappings:
| Supernote value | JavaScript/TypeScript |
|---|---|
void |
void |
bool |
boolean |
int32 |
number |
int64 |
bigint |
float32, float64 |
number |
string |
string |
bytes |
Uint8Array |
| string enum | string-literal union |
| declared value object | typed plain object |
| native reference object | nominally branded generated interface |
homogeneous array of T |
T[] |
nullable T |
T | null |
Strings use UTF-8 when crossing native/JNI boundaries. Byte values use
copy-based snapshot semantics and pass only the visible Uint8Array view.
Declared value fields are required and strictly validated. Extra JavaScript
fields are ignored without being read. Values and array containers are copied;
native-object leaves retain references and identity. Arrays must be dense and
homogeneous. null is accepted only where declared, while omitted values and
undefined remain invalid.
The generated boundary does not accept arbitrary JavaScript objects, dynamic/JSON trees, callbacks, maps, sets, tuples, general unions, recursive value objects, raw pointers, numeric native handles, unsigned or platform-dependent C++ integer types, or unmarked structural lookalikes.
Language-family routing
The public API does not expose implementation-language details. C++ native objects can be passed to C++ routes, while Kotlin and Java objects can be passed within the JVM family. Copied values may cross generated C++/JVM internal routes when both sides declare the same schema.
Cross-language native-object proxies are not generated yet. Passing a C++ object to a JVM route, or a JVM object to a C++ route, produces a source-located generation error. Public TypeScript types remain independent of the implementation language.
Async, errors, and lifetime
An accepted async call immediately returns a normal Promise<T>. Ordinary
blocking implementations use the plugin's shared bounded worker executor;
supported Kotlin suspend implementations use the generated coroutine adapter.
Both routes share the same cancellation, teardown, error, and completion rules.
Argument count/type/integer/range misuse throws TypeError or RangeError
before an operation is accepted. Later failures reject with the exported
SupernoteError, whose stable string code includes
RESOURCE_EXHAUSTED, CANCELLED, FEATURE_CLOSED,
IMPLEMENTATION_ERROR, and INTERNAL.
Accepted async object methods retain their implementation receiver until physical work can no longer access it. Generated code prevents use-after-free but does not add a mutex or serial queue around user object state; plugin implementations remain responsible for their own thread safety.
Generated code destroys C++ receivers and resources away from the JavaScript thread. Cleanup may run on different threads and must not access JSI. If a resource must be released on a particular thread, the plugin must arrange that itself. The generated runtime releases JNI global references; the JVM decides when the underlying objects are collected.
Validation
The integrity manifest records the required official-template capability. Compare the surrounding plugin's Bash and PowerShell launch scripts without writing anything:
sn-module-gen template status
Preview or explicitly apply the recognized capability update:
sn-module-gen template sync --dry-run
sn-module-gen template sync --yes
Sync is transactional and refuses missing files, unsafe entry kinds, or unrecognized script content. A synchronized launch still reports runtime success as unverified unless it observes a plugin-correlated marker.
sn-module-gen validate checks generated structure by default; --build also
invokes Android. A local build proves generation and compilation for that environment,
not that a particular Supernote firmware, PluginHost, linker namespace, or SELinux
policy will execute the code. Validate target-device behavior on the intended device.
PluginHost can load up to 32 native generations for one plugin component in the same process. Restart PluginHost before installing another changed native generation after reaching that limit.
The generator does not create the surrounding Supernote plugin. Plugin creation, installation, and device debugging are covered by the official Supernote plugin documentation.
Contributing
See CONTRIBUTING.md, the
testing guide, and CI workflow.
The architecture guide explains the runtime model. The v0.1.0 release record
lists exactly what was tested for the first public release.
License
MIT. See LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sn_module_gen-0.1.2.tar.gz.
File metadata
- Download URL: sn_module_gen-0.1.2.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
effdf316aea2be3a74520bbefa6eaefd3edbe7db856c4ba9254bab497334de6a
|
|
| MD5 |
1b132aa9a40e426509b6aa79c837c59a
|
|
| BLAKE2b-256 |
e2cc4b448f12cb317ba57034b2b63f0576bcb84e3f92a134ebd5e30e6555e022
|
Provenance
The following attestation bundles were made for sn_module_gen-0.1.2.tar.gz:
Publisher:
publish.yml on Ziv-Ink/supernote-module-generator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sn_module_gen-0.1.2.tar.gz -
Subject digest:
effdf316aea2be3a74520bbefa6eaefd3edbe7db856c4ba9254bab497334de6a - Sigstore transparency entry: 2717281618
- Sigstore integration time:
-
Permalink:
Ziv-Ink/supernote-module-generator@9f2ddc21e8c9a94081f4320b0b4e24c2c91fb38b -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Ziv-Ink
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9f2ddc21e8c9a94081f4320b0b4e24c2c91fb38b -
Trigger Event:
release
-
Statement type:
File details
Details for the file sn_module_gen-0.1.2-py3-none-any.whl.
File metadata
- Download URL: sn_module_gen-0.1.2-py3-none-any.whl
- Upload date:
- Size: 429.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb4a722158a0ff78da232697039315ab673429d112033bd7618f96cedeff3ecc
|
|
| MD5 |
3330e544047fb42ee0b7d94dd756f10c
|
|
| BLAKE2b-256 |
44791d23c4ec125b4451aa51de2064e5bcbdfbbbaee3189065a5a29d352ea873
|
Provenance
The following attestation bundles were made for sn_module_gen-0.1.2-py3-none-any.whl:
Publisher:
publish.yml on Ziv-Ink/supernote-module-generator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sn_module_gen-0.1.2-py3-none-any.whl -
Subject digest:
eb4a722158a0ff78da232697039315ab673429d112033bd7618f96cedeff3ecc - Sigstore transparency entry: 2717282727
- Sigstore integration time:
-
Permalink:
Ziv-Ink/supernote-module-generator@9f2ddc21e8c9a94081f4320b0b4e24c2c91fb38b -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/Ziv-Ink
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@9f2ddc21e8c9a94081f4320b0b4e24c2c91fb38b -
Trigger Event:
release
-
Statement type: