db-gen is a universal tool for generation of function calls to PostgreSQL database.
No, this tool is not an ORM framework in the sense of C# Entity Framework, Elixir Ecto, PHP Doctrine, and so on. In our experience, these full ORM tools are not worth it; they are usually clumsy, generate inefficient SQL code, and lead programmers to dead ends. A typical example of inefficient database use is when you want multi-step processing of imported data. Instead of one bulk copy and a single database call to process the data, you have to split your logic into multiple database calls. It's slower, more work, and usually less safe.
That's why we use stored functions/procedures in PostgreSQL and this tool just generates code that calls these functions/procedures and retrieves the data.
- Consistency of generation over years
- In-house templates and configuration
- Customization based on your needs
- Offline use
Don't let the "Enterprise use" discourage you, there is no reason for not to use this tool for your one function database.
We all know what kind of world we live in. A tool that was available yesterday won't be available tomorrow. A tool that was working with yesterday's framework won't be working with tomorrow's.
This is NOT sustainable in enterprise development.
It's not like every application is constantly being updated and pushed to the latest version of every package. We have applications that are untouched for years and years because of budget reasons. Why update them when they are running, right? We used LLBLGen on several projects, but after just a few years we are unable to do that anymore; .NET framework was replaced with another .NET framework and all is lost.
That's why this tool goes a different way. It's a small executable package that can be easily stored in the repository with your code. It will generate the same code today, tomorrow, and in 5 years, and you won't have to search for it on the internet.
All configuration, including templates used for code generation, are part of the repository. Nothing depends on some service on the internet or a tool installation. Everything is under your control, versioned, and easily updatable.
Since everything is under your control, as mentioned above, you can use whatever language, database package, logger, and so on. Just update the template and you are done.
In enterprise development, it is often the case that your internet connection is limited, or there is none. In case of security-sensitive projects, you might not have internet at all. In case of digital nomads, you might be currently working in K2's 2nd base camp. In all these cases you are covered; db-gen is a self-contained executable that needs nothing else than configuration and templates.
graph TD
A[CLI Commands] --> B{Command Type}
B -->|generate| C[Load Configuration]
B -->|routines| D[Export Routines]
B -->|databaseChanges| E[Detect Changes]
C --> F{Data Source}
F -->|Database| G[Connect to PostgreSQL]
F -->|Offline| H[Load Routines File]
G --> I[Query Database Schema]
H --> J[Parse JSON Routines]
I --> K[Extract Function Metadata]
J --> K
K --> L[Apply Filters & Mappings]
L --> M[Generate Routine Objects]
M --> N{Generation Type}
N -->|DbContext| O[Apply DbContext Template]
N -->|Models| P[Apply Model Template]
N -->|Processors| Q[Apply Processor Template]
O --> R[Generate DbContext File]
P --> S[Generate Model Files]
Q --> T[Generate Processor Files]
R --> U[Output Folder]
S --> U
T --> U
D --> V[Save Routines JSON]
E --> W[Compare Schema Changes]
subgraph "Configuration Files"
X[db-gen.json]
Y[local.db-gen.json]
Z[Templates/*.gotmpl]
end
subgraph "Database"
AA[PostgreSQL]
AB[Stored Functions/Procedures]
end
subgraph "Output"
AC[Generated Code Files]
AD[DbContext]
AE[Models]
AF[Processors]
end
C --> X
C --> Y
O --> Z
P --> Z
Q --> Z
G --> AA
I --> AB
U --> AC
R --> AD
S --> AE
T --> AF
We usually put the downloaded db-gen-win.exe, db-gen-linux, or both directly into the repo. Yes, the repo gets bigger, but in five years, when you have to update your project, you won't have to look for it on the ever-forgetting internet.
Also, when it's part of the repo, you can run db-gen generate as part of your CD/CI and use different templates. Why would you do that? For example, to remove log messages that should be visible only in the development environment. This is what Erlang/Elixir does to speed up their code.
When you run db-gen, you are offered these main commands:
generate- will run the generation of coderoutines- will generate a JSON file that contains definitions of all stored functions/procedures that you have defined indb-gen.json; this can later be used for offline generationdatabaseChanges- will detect changes in database schema since last generationcompletion [shell]- generate shell completion script- Valid shell values:
bash,zsh,fish,powershell
- Valid shell values:
help [command]- will print out help for a specific command with additional details
The easiest way is to:
- Take the content from the
testfolder - Use the
test/database/testing-db.sqlscript to create a test database - Update the connection string to proper values in
test/local.db-gen.json - Download the latest
db-genrelease from the Releases page - Run
./db-gen-win.exe generateor./db-gen-linux generate - Be properly amazed, shocked, and stunned!
All configuration is stored in the file specified with the --config flag.
If the --config flag is not set, it will try the following default locations (in order):
./db-gen.json./db-gen/db-gen.json./db-gen/config.json
Enable debug logging with the --debug flag.
ConnectionString can also be set with --connectionString "postgresql://username:password@host:port/database_name"
For some secret or user-specific configuration, you can use local config. Db-gen looks for files with the following patterns relative to your main config file:
Prefixes: local. or .local.
Postfixes: .local
So if we load config at ./testing/db-gen.json,
it will look for local overrides at:
testing/local.db-gen.jsontesting/.local.db-gen.jsontesting/db-gen.localtesting/db-gen.json.local
The loaded configuration will override the values set in normal config file.
The local config file is not required.
- ConnectionString (string):
- Defines the PostgreSQL database connection string.
- For example:
postgresql://username:password@localhost:5432/database_name
- OutputFolder (string):
- Specifies the folder where generated code files will be saved.
- It can be relative to the current working directory
- ProcessorsFolderName (string):
- Folder name in output folder where processors will be generated (default: "processors")
- Folder will be created if missing
- ModelsFolderName (string):
- Folder name in output folder where models will be generated (default: "models")
- Folder will be created if missing
- GenerateModels (boolean):
- If
true, generates models - Valid values:
true,false
- If
- GenerateProcessors (boolean):
- If
true, generates processors - Valid values:
true,false
- If
- GenerateProcessorsForVoidReturns (boolean):
- If
true, generates processor even for functions that don't return anything - Valid values:
true,false
- If
- ClearOutputFolder (boolean):
- If
true, deletes content of output folder before generating new files - Valid values:
true,false
- If
- RemoveOrphanedFiles (boolean):
- If
true, removes generated files when their corresponding database functions no longer exist - Only works when
ClearOutputFolderisfalse(mutually exclusive) - Tracks all output folders (main + AdditionalGenerators)
- Valid values:
true,false
- If
- DbContextTemplate (string):
- Path to the template file for generating the dbContext file
- ModelTemplate (string):
- Path to the template file for generating model files
- ProcessorTemplate (string):
- Path to the template file for generating processor files
- GeneratedFileExtension (string):
- Defines the file extension for generated files
- GeneratedFileCase (string):
- Defines the case style for generated files
- Valid values:
"snakecase","camelcase","pascalcase"
- RoutinesFile (string):
- Path to the JSON file containing routine definitions for offline generation (default: "./db-gen-routines.json")
- UseRoutinesFile (boolean):
- If
true, uses the routines file for offline generation instead of connecting to database - Valid values:
true,false
- If
- UseUserContext (boolean):
- If
true, enables automatic context parameter mapping - Valid values:
true,false
- If
- UserContextParameterName (string):
- Name of the user context parameter (e.g.,
"ctx")
- Name of the user context parameter (e.g.,
- UserContextType (string):
- Type of the user context parameter (e.g.,
"UserContext")
- Type of the user context parameter (e.g.,
- ContextParameterMappings (array):
- Maps database parameter names to user context properties
- Each mapping has:
- ParameterNames (array of strings): Database parameter names to map (e.g.,
["_user_id", "_userid"]) - ContextPath (string): Property path in context object (e.g.,
"User.UserId")
- ParameterNames (array of strings): Database parameter names to map (e.g.,
- AdditionalGenerators (array):
- Defines additional code generation outputs beyond DbContext/Models/Processors
- Each generator has:
- Name (string): Generator name for logging
- Enabled (boolean): Whether to run this generator
- Template (string): Path to template file
- OutputFolder (string): Where to save generated files
- FileName (string): File name for single-file generation
- FileExtension (string): File extension for per-routine generation
- FileCase (string): Case style for generated files (
"snakecase","camelcase","pascalcase") - GenerationType (string):
"single-file"or"per-routine" - CleanOutputFolder (boolean): If
true, deletes output folder before generation
- Generate:
- Schema (string):
- Specifies the database schema name
- AllFunctions (boolean):
- If
true, generates all functions except those explicitly ignored by adding a functions entry withfalsevalue - Valid values:
true,false
- If
- Functions (object where values are bool or object):
- Keys of the object are function names; you can use only the name, or name with parameters (
function(text,int)=function) - If value is just bool (
true/false), it only specifies if it should be generated - You can supply an object and it will override global mappings (see Mapping override per routines)
- Keys of the object are function names; you can use only the name, or name with parameters (
- Schema (string):
- Mappings:
- DatabaseTypes (array of strings):
- If one database type has multiple mappings, the last will be used
- MappedType (string):
- Base type for non-nullable, non-optional cases
- MappingFunction (string):
- Function used to retrieve value from database reader
- NullableReturnType (string):
- Type to use for nullable return values in models (e.g.,
"int?")
- Type to use for nullable return values in models (e.g.,
- NullableParameterType (string):
- Type to use for nullable parameters (no DEFAULT, accepts NULL) (e.g.,
"int?")
- Type to use for nullable parameters (no DEFAULT, accepts NULL) (e.g.,
- OptionalParameterType (string):
- Type to use for optional parameters (has DEFAULT value) (e.g.,
"Optional<int>")
- Type to use for optional parameters (has DEFAULT value) (e.g.,
- DatabaseTypes (array of strings):
Templates to use are defined in these properties of db-gen.json:
- DbContextTemplate - this will generate database calls
- ModelTemplate - this will generate models to represent data coming from the database
- ProcessorTemplate - this will generate mappers mapping data from the database to models
Templates use database metadata in format:
type DbContextData struct {
Config *Config
Functions []Routine
BuildInfo *version.BuildInformation
}
type ProcessorTemplateData struct {
Config *Config
Routine Routine
BuildInfo *version.BuildInformation
}
type ModelTemplateData struct {
Config *Config
Routine Routine
BuildInfo *version.BuildInformation
}
// Types used in template
type Property struct {
DbColumnName string
DbColumnType string
PropertyName string
PropertyType string
Position int
MapperFunction string
Nullable bool // This can be unreliable
Optional bool // only used in Params
}
type Routine struct {
FunctionName string
DbFullFunctionName string
ModelName string
ProcessorName string
Schema string
DbFunctionName string
HasReturn bool
IsProcedure bool
Parameters []Property
ReturnProperties []Property
}Templates themselves are written in Go Templates and can be changed to your liking. You are in complete control.
By default, all fields use camel case.
You can use pascalCased, camelCased, or snakeCased to change the case.
For example:
{{pascalCased $func.FunctionName}}
TODO Improve this section
You can specify custom mapping for each function, parameter, and model by providing an object to the Functions properties.
You can override:
Name using MappedName - processor and model names will be created by adding model/processor to this name
HasReturn using DontRetrieveValues - it can only be used to disable selection of functions that have return values,
not the other way around.
Use SelectOnlySpecified to only select columns you explicitly specify in the model by setting them to true
or providing custom mapping.
In Model, provide an object where keys correspond to columns in the database.
If you set the value to false, it will not select it. Setting the value to true or providing an object with mapping
will select it.
In the mapping object, you can override MappedName, IsNullable, MappedType, and MappingFunction.
If you only specify MappedType, it will try to find the mapping function in global mappings, stopping generation with an error if it doesn't find one.
Setting MappingFunction without MappedType will do nothing.
DISCLAIMER: Needs clarification
It doesn't make sense to only use some parameters, so you can only change MappedName, MappedType, IsNullable, and IsOptional. This also means that you can't set a parameter value to boolean; you can only set it to an object with custom mapping.
DISCLAIMER: Needs clarification
To prevent a LOT of issues with overloaded functions, you are forced to specify a mapped name for each function that has some overload.
The name has to be unique in the schema, but checking is not yet implemented, so be careful!