1.0.8 • Published 6 years ago

driver-interface v1.0.8

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Waterline Driver Interface

An extensible meta-interface for Node.js, designed to make it easier to build plugin systems.

Drivers are just Node modules. They are most commonly installed as NPM packages, but you can bring them into your projects any way you like, and they can be open-source or proprietary.

What makes drivers different from normal NPM packages is that they have a standard interface. Specifically, drivers are machinepacks that implement one or more supported interface layers. A particular driver implements an interface layer if it contains its own implementations of all of the methods (called "machines") expected by that layer. For example, since the MySQL driver has all 4 of the methods required by the "Connectable" interface layer, we say that it implements that layer.

An interface layer is defined by a name (e.g. "Queryable"), a stability level (e.g. "Draft"), and a set of abstract machines (machines with no implementation). The abstract machines in this repo each belong to exactly one of the several available layers, and correspond with a particular method that driver package implementors make available at runtime. These methods are explicitly intended to be useful directly from userland code; but it is also not uncommon for them to be accessed via a higher level abstraction such as an ORM, another machinepack, a middleware module, or a web framework.

Available Drivers

DatabaseRepoLayers Supported
MongoDBhttps://github.com/treelinehq/machinepack-mongodbConnectable, Queryable
PostgreSQLhttps://github.com/treelinehq/machinepack-postgresqlConnectable, Queryable, Transactional
MySQLhttps://github.com/treelinehq/machinepack-mysqlConnectable, Queryable, Transactional
Redishttps://github.com/treelinehq/machinepack-redisConnectable, Cache

While the latest stable release of officially supported Waterline/Sails.js adapters do not yet rely on the new drivers, that will be changing soon. In the mean time, drivers can actually be used directly from any Node.js application-- including an app using an earlier version of Waterline.

For the latest information and tips about the adapter interface for the currently released version of Sails and Waterline as of February 2016, see https://github.com/balderdashy/sails-docs/issues/637.

For more information about the Node-Machine project, see http://node-machine.org.

Interface Layers

The currently planned interface includes multiple echelons of functionality a driver author can choose to implement. This ranges from the baseline of raw connection management all the way up to native support for database transactions.

The following layers are furcated based on compatibility-- i.e. what they make possible without knowing anything about the underlying implementation.

First, a quick summary:

Interface LayerStability LevelIntroducedDepends On...
ConnectableStableJan 2016n/a
ModeledDraftNov 2016Connectable
MigratableExperimentalMar 2017Connectable
CacheDraftMar 2016Connectable
QueryableUnstableJan 2016Connectable
TransactionalStableJan 2016Queryable
TradeableExperimentalNov 2017n/a

Connectable

Any database or system-- doesn't necessarily need to support persistent connections.

A driver implements the Connectable interface layer if it includes the following machines:

Modeled

Any database that fully supports CRUD operations against predefined data models; including basic batch record manipulation, filtering, pagination, and a few of the most common aggregation operations.

A driver implements the Modeled interface layer if it includes the following machines:

Migratable

Any database or system that supports a concept of tabular data with unique indexes.

A driver implements the Migratable interface layer if it includes the following machines:

Cache

Any database or system which can function as a cache, with native support for key expiry.

A driver implements the Cache interface layer if it includes all machines necessary for Connectable, in addition to the following:

Queryable

Any database or system which supports the concept of queries, uniqueness constraints, and tables/collections. Uses WLQL (stage 4 query) syntax, which is based on Knex.

A driver implements the Queryable IL if it includes all machines nececssary for Connectable, in addition to the following:

Transactional

Any database with native support for transactions.

A driver implements the Transactional IL if it includes all machines nececssary for Queryable, in addition to the following:

Tradeable

Any stock, forex, security, commodity, or cryptocurrency exchange that allows selling some of one thing for some of another thing.

A driver implements the Tradeable interface layer if it includes the following machines:

Usage

Methods

See the abstract machines defined in this repo.

Query Language

The Queryable interface layer supports declarative syntax for most types of DQL/DML queries via compileStatement(), and the normalized result returned by parseNativeQueryResult(). See the WLQL (stage 4 query) docs for more information.

Expected Return Values

See the success exit definitions of the machines in this repo and the section on Query Results in the WLQL (stage 4 query) docs for more information.

Errors

See the other exit definitions of machines in this repo and/or the section on Errors in the WLQL (stage 4 query) docs for more information.

Philosophy

The design of the WL driver spec shares some characteristics with standardization efforts like ODBC, but with an emphasis on maximizing extensibility and statelessness.

Waterline drivers are machinepacks, which means they inherit all of the advantages of the Node-Machine ecosystem and toolchain. Like any other machinepack, every method in a WL driver is compatible with the machine specification. That means not only is it is strongly-typed and self-documented with declarative metadata; it is also stateless, with a single clear purpose.

Extensibility

Every machine in this interface supports a custom meta input on the way in, and each of its exits' outputs support a custom meta property on the way out. The only exception is the catchall error exit, which is used for handling unrecognized exceptions.

Drivers are free to implement extensions to this interface with customizations to WL syntax, provided those extensions are in the form of additional properties within prescribed namespaces: i.e. the opts property, which is available recursively deep at each subquery level (as a sibling to from/select/where/limit/etc). The exact API for this is still in flux, but for some conceptual background information, see https://github.com/mikermcneil/waterline-query-builder/blob/master/docs/overview.md (warning: slightly out of date).

Finally, drivers can add their own custom machines-- although this should be used with care, in case custom machines clash with future additions to the specification. For similar reasons, drivers should not add new exits or inputs to official machines, and the semantic skeleton (friendlyName, example,required) of standardized inputs and exits should not be changed (although description, extendedDescription, moreInfoUrl, outputDescription, whereToGet, and outputVariableName are all fair game).

A driver can be validated against the interface defined in this repo using the machinepack command-line tool. Just run mp compare /path/to/your-local-copy-of-driver-interface.

How is this different from Sails/Waterline adapters?

Why add another API? Isn't the Waterline adapter system enough?

The Adapter System

The adapter system exists to provide the Waterline ORM/ODM with mappings it can use to expose a normalized interface which hides the complexity inherent in working with one or more underlying databases directly. Adapters expose methods like .find() and .create() which are designed to be called by Waterline core. This means that userland code in Waterline-powered applications focuses on business logic; working with logical models, attributes and records rather than physical tables/columns/rows or collections/fields/documents.

This approach alone works great for most teams and applications...at least for the first 18 months. The reality is that, when using any ORM or database abstraction framework, there is always a certain level of scale at which lower-level access to the database becomes necessary. As an app's user base grows the amount of data and traffic grows with it, and adapter-specific features like replicas, sharding, dynamic connection management, and transactions can suddenly become very important. Plus, depending on the amount of data you're working with, you start wanting to squeeze out more performance (e.g. by replacing your most frequently-used ORM calls with handwritten native queries).

There is one other impetus for the driver API which is worth pointing out: apps that work with dynamic database connections as their stated purpose (e.g. imagine rolling your own phpMyAdmin). This is not a terribly common use case, but it has come up more than once over the years. These types of apps almost always still have models and their own metadatabase; but they also work with remote databases in the same way you might work with the Mandrill or Twilio API.

Going Below Deck

Historically, the database-specific connection and querying logic necessary for these lower-level features was sprinkled throughout adapters. This led to duplicative code with a high degree of variability; which in turn, restricted the kind of database-specific features that could be added to adapters. Worse, this murkiness meant that, despite the fact that tons of lower-level logic was already implemented in adapters, it could not be called directly from userland. Instead, Sails/Waterline developers had to use NPM packages directly (e.g. mysql, redis, pg). This is time consuming and can be tricky; especially for folks new to Node.

The Waterline driver interface is designed to solve this problem bottom-up, once and for all. Drivers sit one rung below adapters on the ladder of abstraction. They provide the same functionality as a standard, database-agnostic interface for low-level database operations.

For a visualization of where drivers sit in relation to adapters, check out this diagram.

For historical perspective, see https://github.com/mikermcneil/waterline-query-builder/blob/master/docs/ and https://github.com/mikermcneil/waterline2.

License

MIT © 2016-present Mike McNeil