WORM 0.2
A C++ DAL/ORM code generation framework

WORM - ORM framework

Introduction

WORM is a Data Abstraction Layer for access to database servers and an Object Relational Mapping system. It consists of libraries providing a generic API for database access and database metadata mapping of schema structure. On top of this there is a tool to generate C++ class files for a given arbitrary database schema called "wormgen". wormgen accepts a few arguments setting the database to use and optionally username, password, output directory, etc. - "wormgen -h" shows usage. See below for more information.

At this writing the framework only supports SQlite3 and MySQL databases. and the default output supports Wt's (Web Toolkit http://webtoolkit.eu) Dbo library. It generates header files that (with a little adjustment sometimes) will work with Wt::Dbo for existing database schemata.

The output is configurable using the WORM template system which uses google's ctemplate for output templating.

Additionally the libraries provide a general API for basic database access including query execution with structured result sets and runtime metadata including column information such as name, data type, defaults, extras, etc.

NOTE: This API is not fully stable! I expect there to be some changes and do not yet recommend building off the API for anything serious. wormgen is functional (if simple) and changes there should not cause problems but the libraries are under heavy development. There may be modifications and these should be expected until this message is removed. You have been warned :).

Installation

Step 1: Requirements

NOTE: THIS IS UNTESTED ON WINDOWS or MAC AND NOT LIKELY TO WORK CURRENTLY.. linux or Unices should be ok.

Step 2: Obtaining the sources

Using git(1) clone the repository thus:

 git clone https://github.com/erikwinn/worm.git worm

This will create a sources directory called "worm" - alternately you can download a tarball and unpack it.

Step 3: Building

 cd worm/build
 cmake ../
 make

This will build the libraries and wormgen in ./build/src. By default the static library is built - uncomment the shared library in src/CMakeLists.txt and comment out the static library to change this (todo: add a configure script ..)

libraries: libworm.so libworm.a binary: wormgen

Installation(optional):

 make install
 ldconfig

This will install the libraries to /usr/local/lib/libworm.* and the binary to /usr/local/bin/wormgen. Code generation templates will be installed to /usr/local/share/worm/

Note:
You can also use wormgen without installing by doing something like this if it was built with the shared libraries: (use a full path to work outside this directory):
    export LD_LIBRARY_PATH=./build/src
    ./build/src/wormgen -h

Uninstall:

 rm /usr/local/bin/wormgen
 rm /usr/local/lib/libworm*
 rm -rf /usr/local/share/worm

Alternately you can do:

 cat install_manifest.txt | xargs rm
Note:
You can also use wormgen without installing by doing something like this if it was built with the shared libraries: (use a full path to work outside this directory):
 export LD_LIBRARY_PATH=./build/src
 ./build/src/wormgen

Using WORM

Generating code:

wormgen Usage:

 wormgen -h

gives a description of the available options.

The database (-d) argument is the only required argument - you must have a database already set up and access to it. By default it assumes the username is root with no password - for an SQlite3 database pass the filename as the argument for -d database; for example, from within the source directory you can generate files from the sample Sqlite3 database thus:

 wormgen -D sqlite -d ./examples/blog.db

This will generate files in the current directory - to specify a different output directory use -o /path/to/output, for example:

 wormgen -D sqlite -d ./examples/blog.db -o /tmp

will place the generated files under /tmp

Other commandline arguments include: -D driver ([default]mysql or sqlite) -t template directory (default /usr/local/share/worm/ or ./src/orm/templates) -u username -p password -h help - use this to see all the arguments ..

Customizing the output

The output can be configured by editing or creating new template files in the template directory - any files in this directory named with the extension ".tpl" are assumed to be templates to use. Note that there is a naming convention for each type of template - see the list of supported template types below.

The default template directory is /usr/local/share/worm - the option [-t DIRECTORY] will tell wormgen to look in DIRECTORY for templates, eg:

 wormgen -D sqlite -d ./examples/blog.db -o /tmp -t $HOME/my_worm_templates/

This means that you can copy the default template to my_worm_templates/ and experiment with it or create other templates. Each template must have a filename like the one of the ones listed below - the filename will tell wormgen what kind of template it is and how to name the output files for that template.

These are the currently supported template types:

Database and class naming conventions: A table in the database should be named in lowercase with underscores for best results (Note: this is optional but will avoid naming conflicts - wormgen will still generate files for camel case naming schema). Ex: some_persons will be transformed to a class SomePerson. Columns like first_name will transform to firstName. Underscores for private variables, accessors, etc can be established in the templates. Table names should be plural and will be transformed to singular.

Templates: The templates use ctemplate and currently support only the tags in the default template (which generates Wt::Dbo object headers). A decent introduction to ctemplate syntax is available at the ctemplate website. The supported tags are quite simple and self-explanatory - see the default template for more.

Using the library

Note that the library API is still unstable and may change.

wormgen.cpp itself is quite simple and provides a quick example of using the library - additionally, WormClassGenerator shows usage of the metadata aspects of the library. libworm can also be used for basic database access, queries and generic result sets - but it is currently intended primarily for the ORM generator. The library does not support transactions, and all results are cached locally in one call.

There are also some small example programs under examples/ - I recommend starting with these. Also, the library code is heavily commented -and there is HTML documentation under doc/html. Until the API is stablized and "real" documentation written the best course is experimentation and "reading the source, Luke!" - the DAL functions available are documented in comments but not yet stable so your mileage may vary.

 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Defines