SchemaPlus::Core
SchemaPlus::Core creates an internal extension API to ActiveRecord. The idea is that:
-
ShemaPlus::Core does the monkey-patching so clients don't have to know too much about the internal of ActiveRecord.
-
SchemaPlus::Core's extension API is consistent across the various connection adapters, so clients don't have to figure out how to extend each connection adapter independently.
-
SchemPlus::Core's extension API intends to remain reasonably stable even as ActiveRecord changes.
By itself, SchemaPlus::Core does not change any behavior or add any external features to ActiveRecord. It just makes the API available to clients.
SchemaPlus::Core is a client of schema_monkey, using modware to define middleware callback stacks.
Compatibility
SchemaPlus::Core is tested on:
- ruby 2.1.5 with activerecord 4.2, using mysql2, sqlite3 or postgresql
Installation
As usual:
gem "schema_plus_core" # in a Gemfile
gem.add_dependency "schema_plus_core" # in a .gemspec
Usage
The API is in the form of a collection of modware middleware callback stacks. A client of the API uses schema_monkey to insert middleware modules into the stacks. As per schema_monkey, the typical module structure looks like:
require "schema_plus/core"
module MyClient
module Middleware
#
# Middleware modules to insert in SchemaPlus::Core API stacks
#
end
module ActiveRecord
#
# direct ActiveRecord enhancements, should your client need any.
#
end
end
SchemaMonkey.register MyClient
For example, a client could use the Migration::Index stack to automatically make an index unique if any column starts with 'u':
require "schema_plus/core"
module AutoUniquify
module Middleware
module Migration
module Index
def before(env)
env.[:unique] = true if env.column_names.grep(/^u/).any?
end
end
end
end
end
SchemaMonkey.register AutoUniquify
Ideally most clients will not need to define direct ActiveRecord enhancements, other than perhaps to create new methods on public classes. If you have a client that needs more complex monkey-patching, that could be a sign that SchemaPlus::Core's API is missing some useful functionality -- consider submitting a PR to SchemaPlus::Core add it!
API details
For organizational clarity, the SchemaPlus::Core stacks are grouped into modules based on broad categories. In the Env field tables below, Initialized
Schema
Stacks for general operations queries pertaining to the entire database schema:
-
Schema::DefineWrapper around the
ActiveRecord::Schema.definemethod loads a dumped schema file (schema.rb).Env Field | Description | Initial value --- | --- | --- `:info` | Schema information hash | *args* `:block` | The proc containing the schema definition statements | *args*The base implementation calls the block to define the schema.
-
Schema::IndexesWrapper around the
connection.indexes(table_name)method. Env contains:Env Field | Description | Initial value --- | --- | --- `:index_definitions` | The result of the lookup | `[]` `:connection` | The current ActiveRecord connection | *context* `:table_name` | The name of the table to query | *arg* `:query_name` | Label sometimes used by ActiveRecord logging | *arg*The base implementation appends its results to
env.index_definitions -
Schema::TablesWrapper around the
connection.tables()method. Env contains:Env Field | Description | Initialized --- | --- | --- `:tables` | The result of the lookup | `[]` `:connection` | The current ActiveRecord connection | *context* `:table_name` | (SQlite3 only) | *arg* `:database` | (Mysql only) | *arg* `:like` | (Mysql only) | *arg* `:query_name` | Label sometimes used by ActiveRecord logging | *arg*The base implementation appends its results to
env.tables
Model
Stacks for class methods on ActiveRecord models.
-
Model::ColumnsWrapper around the
Model.columnsqueryEnv Field | Description | Initialized --- | --- | --- `:columns` | The resulting Column objects | `[]` `:model` | The model Class being queried | *context*The base implementation appends its results to
env.columns -
Model::ResetColumnInformationWrapper around the `Model.reset_column_information` method Env Field | Description | Initialized --- | --- | --- `:model` | The model Class being reset | *context* The base implementation performs the reset.
Migration
Stacks for operations that change the schema. In some cases the operation immediately modifies the database schema, in others the operation defines ActiveRecord objects (e.g., column definitions in a create_table definition) and the actual modification of the database schema will happen some time later.
-
Migration::ColumnCallback stack for various ways to define or modify a column.
Env Field | Description | Initialized --- | --- | --- `:caller` | The ActiveRecord instance responsible for performing the action | *context* `:operation` | One of `:add`, `:change`, `:define`, `:record` | *context* `:table_name` | The name of the table | *arg* `:column_name` | The name of the column | *arg* `:type` | The ActiveRecord column type (`:integer`, `:datetime`, etc.) | *arg* `:options` | The column | *arg*, default `{}`The base implementation performs the column operation. No value is returned.
Notes:
-
The
:operationfield has the following meanings::add- The column will be added immediately (Migration#add_column):change- The column will be changed immediately (Migration#change_column):define- The column will be added to table definition, which will be emitted later:record- The column info will be added to a migration command recorder, for later playback in reverse byMigration#down
-
In the case of a table definition using
t.referencesort.belongs_to, the:typefield will be set to:referenceand the:column_namewill include the"_id"suffix -
ActiveRecord's base implementation may make nested calls to column creation. For example: References result in a nested call to create an integer column; Polymorphic references nest calls to create two columns; Sqlite3 implements
:changeby a nested call to a new table definition. SchemaPlus::Core doesn't attempt to normalize or suppress these; each such nested call will result in its ownMigration::Columnstack execution.
-
-
Migration::CreateTableCreates a new table
Env Field | Description | Initialized --- | --- | --- `:caller` | The ActiveRecord instance responsible for creating the table | *context* `:table_name` | The name of the table | *arg* `:options` | Create table | *arg* `:block` | Proc containing table definition statements | *arg*The base implementation creates the table, yielding a
table_definitioninstance to the block (if a block is given). -
Migration::DropTableDrops a table from the database
Env Field | Description | Initialized --- | --- | --- `:connection` | The current ActiveRecord connection | *context* `:table_name` | The name of the table | *arg* `:options` | Drop table | *arg*The base implementation drops the table. No value is returned.
-
Migration::IndexCallback stack for various ways to define an index.
Env Field | Description | Initialized --- | --- | --- `:caller` | The ActiveRecord instance responsible for performing the action | *context* `:operation` | `:add` or `:define` | *context* `:table_name` | The name of the table | *arg* `:column_names` | The names of the columns | *arg* `:options` | The index | *arg*, default `{}`The base implementation performs the index creation operation. No value is returned.
Notes:
-
The
:operationfield has the following meanings::add- The index will be added immediately (Migration#add_index):define- The index will be added to a table definition, which will be emitted later.
-
Sql
Stacks for internal operations that generate SQL.
-
Sql::ColumnOptionsCallback stack around generation of the SQL options for a column definition.
Env Field | Description | Initialized --- | --- | --- `:sql` | The resulting SQL | `""` `:caller` | The ActiveRecord::SchemaCreation instance | *context* `:connection` | The current ActiveRecord connection | *context* | `:column` | The column definition object | *context* | `:options` | The column definition | *context* |The base implementation appends the options SQL to
env.sql -
Sql::IndexComponentsCallback stack around generation of the SQL for an index definition.
Env Field | Description | Initialized --- | --- | --- `:sql` | The resulting SQL components, in a struct with fields `:name`, `:type`, `:columns`, `:options`, `:algorithm`, `:using` | *empty struct* `:connection` | The current ActiveRecord connection | *context* `:table_name` | The name of the table | *context* `:column_names` | The names of the columns | *context* `:options` | The index | *context*The base implementation overwrites the contents of
env.sqlNotes:
- SQLite3 ignores the
:type,:algoritm, and:usingfields ofenv.sql
- SQLite3 ignores the
-
Sql::TableCallback stack around generation of the SQL for a table
Env Field | Description | Initialized --- | --- | --- `:sql` | The resulting SQL components in a struct with fields `:command`, `:name`, `:body`, `:options`, `:quotechar` | *empty struct* `:caller` | The ActiveRecord::SchemaCreation instance | *context* `:connection` | The current ActiveRecord connection | *context* `:table_definition` | The TableDefinition object for the table | *context*The base implementation overwrites the contents of
env.sqlNotes:
env.sql.commandcontains the index creation command such asCREATE TABLEorCREATE TEMPORARY TABLEenv.sql.quotecharcontains the quote character ', ", or ` to wrapenv.sql.namein.
Query
Stacks around low-level query execution
-
Query::ExecCallback stack wraps the emission of sql to the underlying dbms gem.
Env Field | Description | Initialized --- | --- | --- `:result` | The result of the database query | *unset* `:caller` | The ActiveRecord::SchemaCreation instance | *context* `:sql` | The SQL string | *context* `:binds` | Values to substitute into the SQL string `:query_name` | Label sometimes used by ActiveRecord logging | *arg*
Dumper
SchemaPlus::Core provides a state object and of callbacks to various phases of the schema dumping process. The dumping process fleshes out the state object-- nothing is actually written to the dump file until after the state is fleshed out.
Schema Dump state
-
Class SchemaPlus::Core::SchemaDumpAn instance of
SchemaPlus::Core::SchemaDumpgets passed to each of the callback stacks; the dump gets built up by fleshing out its contents.SchemaDumphas the following fields and methods: -
dump.initial = []- an array of strings containing statements to start the schema with, such asenable_extension 'hstore' -
dump.data = OpenStruct.new- a place for clients to store arbitrary data between phases -
dump.tables = {}- a hash mapping table names to SchemaDump::Table objects -
dump.final = []- an array of strings containing statements to end the schema with. -
dump.depends(table_name, [prerequisite_table_names])- call this method to ensure that the definition oftable_namewon't be output before its prerequisites. -
Class SchemaPlus::Core::SchemaDump::TableEach table in the dump has its contents in a SchemaDump::Table object, with these fields:
-
table.name- the table name -
table.pname- table as actually used in SQL (without any prefixes or suffixes) -
table.options- a string containing the options toMigration.create_table -
table.columns = []- an array of SchemaDump::Table::Column objects -
table.indexes = []- an array of SchemaDump::Table::Index objects -
table.statements- a collection of statements to include in the table definition; each is a string that should start with"t." -
table.trailer- a collection of migration statements to include immediately outside the table definition. Each is a string -
Class SchemaPlus::Core::SchemaDump::Table::ColumnEach column in a table has its contents in a SchemaDump::Table::Column object, with these fields and methods:
-
column.name- the column name -
column.type- the column type (i.e., what comes after"t.") -
column.options- an optional string containing the options for the column -
column.comments- an optional string containing a comment to put in the schema dump -
column.add_option(option)- adds an option to the current string, separating with a "," if the current set isn't blank -
column.add_comment(comment)- adds an option to the current string, separating with a ";" if the current string isn't blank -
Class SchemaPlus::Core::SchemaDump::Table::IndexEach index in a table has its contents in a SchemaDump::Table::Index object, with these fields and methods:
-
index.name- the index name -
index.columns- the columns that are in the index -
index.options- an optional string containing the options for the index -
index.add_option(option)- adds an option to the current string, separating with a "," if the current set isn't blank
Schema Dump Middleware stacks
-
Dumper::InitialCallback stack wraps the creation of initial statements for the dump.
Env Field | Description | Initialized --- | --- | --- `:initial` | The initial statements | [] `:dump` | The SchemaDump object | *context* `:dumper` | The current ActiveRecord::SchemaDumper instance| *context* `:connection` | The current ActiveRecord connection | *context*The base method appends initial statements to
env.initial. -
Dumper::TablesCallback stack wraps the dumping of all tables.
Env Field | Description | Initialized --- | --- | --- `:dump` | The SchemaDump object | *context* `:dumper` | The current ActiveRecord::SchemaDumper instance| *context* `:connection` | The current ActiveRecord connection | *context*The base method iterates through all tables, dumping each.
-
Dumper::TableCallback stack wraps the dumping of each table
Env Field | Description | Initialized --- | --- | --- `:table` | A SchemaDump::Table object| `table.name` *only* `:dump` | The SchemaDump object | *context* `:dumper` | The current ActiveRecord::SchemaDumper instance| *context* `:connection` | The current ActiveRecord connection | *context*The base method iterates through all columns and indexes of the table, and overwrites the contents of
table,Notes:
- When the stack is called,
env.dump.tables[env.table.name]contains theenv.tableobject.
- When the stack is called,
-
Dumper::IndexesCallback stack wraps the dumping of the indexes of a table
Env Field | Description | Initialized --- | --- | --- `:table` | A SchemaDump::Table object| *context* `:dump` | The SchemaDump object | *context* `:dumper` | The current ActiveRecord::SchemaDumper instance| *context* `:connection` | The current ActiveRecord connection | *context*The base method appends the collection of SchemaDump::Table::Index objects to
env.table.indexes
History
- 0.1.0 Initial release
Development & Testing
Are you interested in contributing to SchemaPlus::Core? Thanks! Please follow the standard protocol: fork, feature branch, develop, push, and issue pull request.
Some things to know about to help you develop and test:
-
schema_dev: SchemaPlus::Core uses schema_dev to facilitate running rspec tests on the matrix of ruby, activerecord, and database versions that the gem supports, both locally and on travis-ci
To to run rspec locally on the full matrix, do:
$ schema_dev bundle install $ schema_dev rspecYou can also run on just one configuration at a time; For info, see
schema_dev --helpor the schema_dev README.The matrix of configurations is specified in
schema_dev.ymlin the project root.
- schema_monkey: SchemaPlus::Core is implemented as a schema_monkey client, using schema_monkey's convention-based protocols for extending ActiveRecord and using middleware stacks.