DBD::SQLite::VirtualTable -- SQLite virtual tables implemented in Perl |
DBD::SQLite::VirtualTable -- SQLite virtual tables implemented in Perl
# register the virtual table module within sqlite $dbh->sqlite_create_module(mod_name => "DBD::SQLite::VirtualTable::Subclass");
# create a virtual table $dbh->do("CREATE VIRTUAL TABLE vtbl USING mod_name(arg1, arg2, ...)")
# use it as any regular table my $sth = $dbh->prepare("SELECT * FROM vtbl WHERE ...");
Note : VirtualTable subclasses or instances are not called directly from Perl code; everything happens indirectly through SQL statements within SQLite.
This module is an abstract class for implementing SQLite virtual tables, written in Perl. Such tables look like regular tables, and are accessed through regular SQL instructions and regular the DBI manpage API; but the implementation is done through hidden calls to a Perl class. This is the same idea as Perl's tied variables, but at the SQLite level.
The current abstract class cannot be used directly, so the synopsis above is just to give a general idea. Concrete, usable classes bundled with the present distribution are :
Other Perl virtual tables may also be published separately on CPAN.
The following chapters document the structure of the abstract class and explain how to write new subclasses; this is meant for module authors, not for end users. If you just need to use a virtual table module, refer to that module's documentation.
A virtual table module for SQLite is implemented through a pair of classes :
Most methods in both classes are not called directly from Perl code : instead, they are callbacks, called from the sqlite kernel. Following common Perl conventions, such methods have names in uppercase.
$class->CREATE_MODULE($sqlite_module_name);
Called when the client code invokes
$dbh->sqlite_create_module($sqlite_module_name => $class);
The default implementation is empty.
$class->DESTROY_MODULE();
Called automatically when the database handle is disconnected. The default implementation is empty.
$class->CREATE($dbh_ref, $module_name, $db_name, $vtab_name, @args);
Called when sqlite receives a statement
CREATE VIRTUAL TABLE $db_name.$vtab_name USING $module_name(@args)
The default implementation just calls NEW.
$class->CONNECT($dbh_ref, $module_name, $db_name, $vtab_name, @args);
Called when attempting to access a virtual table that had been created during previous database connection. The creation arguments were stored within the sqlite database and are passed again to the CONNECT method.
The default implementation just calls NEW.
$class->_PREPARE_SELF($dbh_ref, $module_name, $db_name, $vtab_name, @args);
Prepares the datastructure for a virtual table instance. @args
is
just the collection of strings (comma-separated) that were given
within the CREATE VIRTUAL TABLE
statement; each subclass should
decide what to do with this information,
The method parses @args
to differentiate between options
(strings of shape $key
=$value
or $key
="$value"
, stored in
$self->{options}
), and columns (other @args
, stored in
$self->{columns}
). It creates a hashref with the following fields :
dbh_ref
$dbh
database handle (see
the Scalar::Util manpage for an explanation of weak references).
module_name
db_name
'main'
or 'temp'
), but it
may also be an attached database
vtab_name
columns
options
This method should not be redefined, since it performs general work which is supposed to be useful for all subclasses. Instead, subclasses may override the NEW method.
$class->NEW($dbh_ref, $module_name, $db_name, $vtab_name, @args);
Instantiates a virtual table.
Called whenever a virtual table is destroyed from the
database through the DROP TABLE
SQL instruction.
Just after the DROP()
call, the Perl instance
will be destroyed (and will therefore automatically
call the DESTROY()
method if such a method is present).
The default implementation for DROP is empty.
Note : this corresponds to the xDestroy
method
in the SQLite documentation; here it was not named
DESTROY
, to avoid any confusion with the standard
Perl method DESTROY
for object destruction.
Called for every virtual table just before the database handle is disconnected.
Just after the DISCONNECT()
call, the Perl instance
will be destroyed (and will therefore automatically
call the DESTROY()
method if such a method is present).
The default implementation for DISCONNECT is empty.
This method is called automatically just after CREATE or CONNECT,
to register the columns of the virtual table within the sqlite kernel.
The method should return a string containing a SQL CREATE TABLE
statement;
but only the column declaration parts will be considered.
Columns may be declared with the special keyword ``HIDDEN'', which means that
they are used internally for the the virtual table implementation, and are
not visible to users -- see http://sqlite.org/c3ref/declare_vtab.html
and http://www.sqlite.org/vtab.html#hiddencol for detailed explanations.
The default implementation returns:
CREATE TABLE $self->{vtab_name}(@{$self->{columns}})
my $index_info = $vtab->BEST_INDEX($constraints, $order_by)
This is the most complex method to redefined in subclasses. This method will be called at the beginning of a new query on the virtual table; the job of the method is to assemble some information that will be used
By calling this method, the SQLite core is saying to the virtual table
that it needs to access some subset of the rows in the virtual table
and it wants to know the most efficient way to do that access. The
BEST_INDEX
method replies with information that the SQLite core can
then use to conduct an efficient search of the virtual table.
The method takes as input a list of $constraints
and a list
of $order_by
instructions. It returns a hashref of indexing
properties, described below; furthermore, the method also adds
supplementary information within the input $constraints
.
Detailed explanations are given in
http://sqlite.org/vtab.html#xbestindex.
Elements of the $constraints
arrayref correspond to
specific clauses of the WHERE ...
part of the SQL query.
Each constraint is a hashref with keys :
col
op
'='
, '>'
, '>='
, '<'
, '<='
or 'MATCH'
.
usable
The $constraints
arrayref is used both for input and for output.
While iterating over the array, the method should
add the following keys into usable constraints :
argvIndex
@values
array that will be passed to
the cursor's FILTER method. In other words, if the current
constraint corresponds to the SQL fragment WHERE ... AND foo < 123 ...
,
and the corresponding argvIndex
takes value 5, this means that
the FILTER
method will receive 123
in $values[5]
.
omit
The BEST_INDEX
method will not necessarily receive all constraints
from the SQL WHERE
clause : for example a constraint like
col1 < col2 + col3
cannot be handled at this level.
Furthemore, the BEST_INDEX
might decide to ignore some of the
received constraints. This is why a second pass over the results
will be performed by the sqlite core.
The $order_by
arrayref corresponds to the ORDER BY
clauses
in the SQL query. Each entry is a hashref with keys :
col
desc
This information could be used by some subclasses for optimizing the query strategfy; but usually the sqlite core will perform another sorting pass once all results are gathered.
The method should return a hashref with the following keys :
idxNum
idxStr
orderByConsumed
$order_by
information
has been taken into account or not.
estimatedCost
estimatedRows
Called to instantiate a new cursor.
The default implementation appends "::Cursor"
to the current
classname and calls NEW()
within that cursor class.
This is the dispatch method implementing the xUpdate()
callback
for virtual tables. The default implementation applies the algorithm
described in http://sqlite.org/vtab.html#xupdate to decide
to call INSERT, DELETE or UPDATE; so there is no reason
to override this method in subclasses.
my $rowid = $vtab->INSERT($new_rowid, @values);
This method should be overridden in subclasses to implement
insertion of a new row into the virtual table.
The size of the @values
array corresponds to the
number of columns declared through VTAB_TO_DECLARE.
The $new_rowid
may be explicitly given, or it may be
undef
, in which case the method must compute a new id
and return it as the result of the method call.
$vtab->INSERT($old_rowid);
This method should be overridden in subclasses to implement deletion of a row from the virtual table.
$vtab->UPDATE($old_rowid, $new_rowid, @values);
This method should be overridden in subclasses to implement
a row update within the virtual table. Usually $old_rowid
is equal
to $new_rowid
, which is a regular update; however, the rowid
could be changed from a SQL statement such as
UPDATE table SET rowid=rowid+1 WHERE ...;
$vtab->FIND_FUNCTION($num_args, $func_name);
When a function uses a column from a virtual table as its first argument, this method is called to see if the virtual table would like to overload the function. Parameters are the number of arguments to the function, and the name of the function. If no overloading is desired, this method should return false. To overload the function, this method should return a coderef to the function implementation.
Each virtual table keeps a cache of results from FIND_FUNCTION calls,
so the method will be called only once for each pair
($num_args, $func_name)
.
Called to begin a transaction on the virtual table.
Called to signal the start of a two-phase commit on the virtual table.
Called to commit a virtual table transaction.
Called to rollback a virtual table transaction.
$vtab->RENAME($new_name)
Called to rename a virtual table.
$vtab->SAVEPOINT($savepoint)
Called to signal the virtual table to save its current state
at savepoint $savepoint
(an integer).
$vtab->ROLLBACK_TO($savepoint)
Called to signal the virtual table to return to the state
$savepoint
. This will invalidate all savepoints with values
greater than $savepoint
.
$vtab->RELEASE($savepoint)
Called to invalidate all savepoints with values
greater or equal to $savepoint
.
Methods in this section are in lower case, because they are not called directly from the sqlite kernel; these are utility methods to be called from other methods described above.
This method returns the database handle ($dbh
) associated with
the current virtual table.
my $cursor = $cursor_class->NEW($vtable, @args)
Instantiates a new cursor.
The default implementation just returns a blessed hashref
with keys vtable
and args
.
$cursor->FILTER($idxNum, $idxStr, @values);
This method begins a search of a virtual table.
The $idxNum
and $idxStr
arguments correspond to values returned
by BEST_INDEX for the chosen index. The specific meanings of
those values are unimportant to SQLite, as long as BEST_INDEX
and
FILTER
agree on what that meaning is.
The BEST_INDEX
method may have requested the values of certain
expressions using the argvIndex
values of the
$constraints
list. Those values are passed to FILTER
through
the @values
array.
If the virtual table contains one or more rows that match the search criteria, then the cursor must be left point at the first row. Subsequent calls to EOF must return false. If there are no rows match, then the cursor must be left in a state that will cause EOF to return true. The SQLite engine will use the COLUMN and ROWID methods to access that row content. The NEXT method will be used to advance to the next row.
This method must return false if the cursor currently points to a valid row of data, or true otherwise. This method is called by the SQL engine immediately after each FILTER and NEXT invocation.
This method advances the cursor to the next row of a result set initiated by FILTER. If the cursor is already pointing at the last row when this method is called, then the cursor no longer points to valid data and a subsequent call to the EOF method must return true. If the cursor is successfully advanced to another row of content, then subsequent calls to EOF must return false.
my $value = $cursor->COLUMN($idxCol);
The SQLite core invokes this method in order to find the value for the N-th column of the current row. N is zero-based so the first column is numbered 0.
my $value = $cursor->ROWID;
Returns the rowid of row that the cursor is currently pointing at.
the SQLite::VirtualTable manpage is another module for virtual tables written in Perl, but designed for the reverse use case : instead of starting a Perl program, and embedding the SQLite library into it, the intended use is to start an sqlite program, and embed the Perl interpreter into it.
Laurent Dami <dami@cpan.org>
Copyright Laurent Dami, 2014.
Parts of the code are borrowed from the SQLite::VirtualTable manpage, copyright (C) 2006, 2009 by Qindel Formacion y Servicios, S. L.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
DBD::SQLite::VirtualTable -- SQLite virtual tables implemented in Perl |