Skip to content

this tool can extract named placeholder in SQL to convert into positional parameter.

License

Notifications You must be signed in to change notification settings

ritalin/zig-omelet

Repository files navigation

zig-omelet

Micro object Relation mapping for Zig.

this tool has following fetues:

  • can extract named placeholder in SQL to convert into positional
  • can extract select list in SQL to convert result set type definition

Note

Currently, extracting is only from duckdb and code generation is only typescript.

Requirement

This product has tested on MacOS Ventura 13.6.7.

Build

  1. Clone the repository
git clone --recursive https://github.com/ritalin/zig-omelet.git $YOUR_PROJECT

Note that recursive option is required because of containing submodule.

  1. Do build
cd $YOUR_PROJECT
zig build

Usage (Run using example query/schema)

Run as one-shot

./zig-out/bin/omelet generate \
    --source-dir=./_sql-examples \
    --schema-dir=./_schema-examples/user_types \
    --schema-dir=./_schema-examples/tables \
    --exclude-filter=tables \
    --output-dir=./_dump/ts \

Note that if the schema includes user-defined types, all of them must be specified before the table definitions.

Run with watch mode

you can use --watch option to track the file content change.

./zig-out/bin/omelet generate \
    --source-dir=./_sql-examples \
    --schema-dir=./_schema-examples/user_types \
    --schema-dir=./_schema-examples/tables \
    --exclude-filter=tables \
    --output-dir=./_dump/ts \
    --watch

Init default value environment

Following command is generate a default value environment specified command (scope = default).

A environment is generated at .omelet directory in current directory.

Caution

Note that init-default and init-config command is not supported the default value env.

./zig-out/bin/omelet init-default --command generate

Note

you can use -global option to .omelet directory in user home directory.

./zig-out/bin/omelet init-default --command generate --global

If a scope is also specified, run following command.

./zig-out/bin/omelet init-default --command generate --scope my_scope

In general option, using --use-scope option result in applying the custom scope.

./zig-out/bin/omelet \
    --use-scope=my_scope \
    generate \
    --source-dir=./_sql-examples ‘
    --schema-dir=./_schema-examples/user_types \
    --schema-dir=./_schema-examples/tables \
    --exclude-filter=tables \
    --output-dir=./_dump/ts \
    --watch

Default value environment formats

Note

A value variant .default is always applied values from CLI arg input.

generate command

key value variant note example
.source_dir_set .value (multiple) Source query folder path(s). .source_dir_set = .{ .values = .{"/path/from", ...} }
.schema_dir_set .value (multiple) Schema query folder path(s). .schema_dir_set = .{ .values = .{"/path/from", ...} }
.include_filter_set .value (multiple) Source/Schema path include filter(s). .include_filter_set = .{.values = .{ "PATTERN1", ... } }
.exclude_filter_set .value (multiple) Source/Schema path exclude filter(s). .exclude_filter_set = .{.values = .{ "PATTERN1", ... } }
.output_dir_path .value (single) Destination folder path .output_dir_path = .{ .values = .{"/path/to"} }
.watch .enabled Enable/Disable watch mode .watch = .{.enabled = true}

generate command example:

.{
    .source_dir_set = .{.values = .{
        "./_sql-examples"
    } },
    .schema_dir_set = .{.values = .{
        "./_schema-examples/user_types", 
        "./_schema-examples/tables",
    } },
    .include_filter_set = .default,
    .exclude_filter_set = .{ .values = .{"tables"} },
    .output_dir_path = .{ .values = .{"./_dump/ts"} },
    .watch = .{.enabled = true}, 
}

Init subcommand configuration environment

Following command is generate a subcommand configuration environment specified command (scope = default).

A environment is generated at .omelet directory in current directory.

./zig-out/bin/omelet init-config --command generate

This command is also can use --scope option to specify a custom scope.

--global option also supports.

./zig-out/bin/omelet init-config --command generate --scope my_scope

In general option, using --use-scope option result in applying the custom scope.

Subcommand configuration environment formats

Note

A value variant .default is always applied values from CLI arg input.

Top leven configuration

key note
.stage_watch This stage spplies sources.
.stage_extract This stage extracts data from source.
.stage_generate This stage generates code from extracted data.

Stage configuration

Note

top level key in stage configuration indicates executable file name.

| key | value variant | note | | .location | string | Path of executable file name. .default is same as omelet app. | | .extra_args | list | Extra arguments for a stage. | | .managed | bool | Manage auto launch of a stage. |

Note

A key of extra argument is same as default value environment of a stage.

Source/Schema file encoding

Source/Schema file encoding is supported UTF8 only.

Supported statement

  • CREATE TYPE (Enum, List and Struct)
  • SELECT
  • INSERT
  • UPDATE
  • DELETE

Limitation

  • When arguments for Table function contain correlective column, select list will be nullable.
  • Currently, an alias of RETURNING clause is not supported.

About

this tool can extract named placeholder in SQL to convert into positional parameter.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages