| Rosetta-Engine-Generic documentation | Contained in the Rosetta-Engine-Generic distribution. |
Rosetta::Engine::Generic - A catch-all Engine for any DBI-supported SQL database
This document describes Rosetta::Engine::Generic version 0.22.0.
The previous SYNOPSIS was removed; a new one will be written later.
This module is a reference implementation of fundamental Rosetta features.
The Rosetta::Engine::Generic Perl 5 module is a functional but quickly built Rosetta Engine that interfaces with a wide variety of SQL databases. Mainly this is all databases that have a DBI driver module for them and that support SQL natively; multi-database DBD modules like DBD::ODBC are supported on equal terms as single-database ones like DBD::Oracle. I created this module to be a "first line of support" so that Rosetta works with a variety of databases as soon as possible.
While a better long term solution would probably be to make a separate Engine for each database, I will leave this up to other people that have the expertise and desire to make "better" support for each database; likewise, I leave it up to others to make Engines that don't use a DBI module, such as one built on Win32::ODBC, or Engines that talk to non-SQL databases like dBase (?), FoxPro (?) or FileMaker.
Rosetta::Engine::Generic has an external dependency in several Rosetta::Model::* modules, which do most of the actual work in SQL generating (usual task) or parsing; the latter is for some types of schema reverse engineering. However, reverse engineering from "information schemas" will likely be done in Generic itself or a third module, as those are not SQL based.
As with all Rosetta::Engine::* modules, you are not supposed to instantiate objects of Rosetta::Engine::Generic directly; rather, you use this module indirectly through the Rosetta::Interface class. Following this logic, there is no class function or method documentation here.
CAVEAT: THIS ENGINE IS "UNDER CONSTRUCTION" AND MANY FEATURES DESCRIBED BY Rosetta::Language AND Rosetta::Features ARE NOT YET IMPLEMENTED.
Rosetta::Engine::Generic explicitly declares the support levels for certain Rosetta Native Interface features at the Environment level, listed below. Those with 'yes' are always available regardless of any Connection circumstances; those with 'no' are never available.
CATALOG_LIST
yes
CATALOG_INFO
no
CONN_BASIC
yes
CONN_MULTI_SAME
yes
CONN_MULTI_DIFF
yes
CONN_PING
no
TRAN_MULTI_SIB
no
TRAN_MULTI_CHILD
no
USER_LIST
no
USER_INFO
no
SCHEMA_LIST
no
SCHEMA_INFO
no
DOMAIN_LIST
no
DOMAIN_INFO
no
DOMAIN_DEFN_VERIFY
no
DOMAIN_DEFN_BASIC
no
TABLE_LIST
no
TABLE_INFO
no
TABLE_DEFN_VERIFY
no
TABLE_DEFN_BASIC
no
TABLE_UKEY_BASIC
no
TABLE_UKEY_MULTI
no
TABLE_FKEY_BASIC
no
TABLE_FKEY_MULTI
no
QUERY_BASIC
no
QUERY_SCHEMA_VIEW
no
QUERY_RETURN_SPEC_COLS
no
QUERY_RETURN_COL_EXPRS
no
QUERY_WHERE
no
QUERY_COMPARE_PRED
no
QUERY_BOOLEAN_EXPR
no
QUERY_NUMERIC_EXPR
no
QUERY_STRING_EXPR
no
QUERY_LIKE_PRED
no
QUERY_JOIN_BASIC
no
QUERY_JOIN_OUTER_LEFT
no
QUERY_JOIN_ALL
no
QUERY_GROUP_BY_NONE
no
QUERY_GROUP_BY_SOME
no
QUERY_AGG_CONCAT
no
QUERY_AGG_EXIST
no
QUERY_OLAP
no
QUERY_HAVING
no
QUERY_WINDOW_ORDER
no
QUERY_WINDOW_LIMIT
no
QUERY_COMPOUND
no
QUERY_SUBQUERY
no
This Engine may contain code that supports additional features, but these have not been tested at all and so are not yet declared.
Rosetta::Engine::Generic explicitly declares the support levels for certain Rosetta Native Interface features at the Connection level, listed below. Whether or not each is available depends on what Connection you have. The conditions for each feature are listed with them, below and indented.
TRAN_BASIC
- If "auto_commit" ECO is true then:
no
- Else
don't know yet
TRAN_ROLLBACK_ON_DEATH
don't know yet
The Rosetta::Model objects that comprise Rosetta's inputs have special compartments for passing configuration options that are only recognizable to the chosen "data link product", which in Rosetta terms is an Engine. At the moment, all Engine Configuration Options are conceptually passed in at "catalog link realization time", which is usually when or before a Connection Interface is about to be made (by a prepare(CATALOG_OPEN)/execute() combination), or it can be when or before an analogous operation (such as a CATALOG_INFO). When a catalog link is realized, a short chain of related ROS M Nodes is consulted for their attributes or associated child *_opt Nodes, one each of: catalog_link_instance, catalog_instance, data_link_product, data_storage_product. Option values declared later in this list are increasingly global, and those declared earlier are increasingly local; any time there are name collisions, the most global values have precedence. The ROS M Nodes are read at prepare() time. At execute() time, any ROUTINE_ARGS values can fill in blanks, but they can not override any any ROS M Node option values. Once a Connection is created, the configuration settings for it can not be changed.
These options are explicitly defined by Rosetta::Model and have their own dedicated Node attributes; the options listed here have the same names (lower-case) as the attribute names in question. You can provide each of these options either in the dedicated attribute or in a *_opt Node having a same-named si_key; if both are set, the attribute takes precedence:
product_code - cstr - Corresponds to "data_storage_product.product_code".
is_memory_based - cstr - Corresponds to "data_storage_product.is_memory_based".
is_file_based - cstr - Corresponds to "data_storage_product.is_file_based".
is_local_proc - cstr - Corresponds to "data_storage_product.is_local_proc".
is_network_svc - cstr - Corresponds to "data_storage_product.is_network_svc".
file_path - cstr - Corresponds to "catalog_instance.file_path". When using a data storage product that is file based, this config option is required; it contains the file path for the data storage file. TODO: server_ip, server_domain, server_port.
local_dsn - cstr - Corresponds to "catalog_link_instance.local_dsn". This is the locally recognized "data source name" of the database/catalog that you want to connect to.
login_name - cstr - Corresponds to "catalog_link_instance.login_name". This is a database natively recognized "authorization identifier" or "user name" that your application wants to log-in to the database as every time it connects. You typically only set this if the user-name is hidden from the application user such as if it is stored in a application configuration file, and the user would not be prompted for a different one if it fails to work. If the database user name is provided by the user, then you typically pass it as a host parameter value at execute() time instead of storing it in the model. If you do not provide this value either in the model or at execute() time, we will assume the database doesn't require authentication, or we will try to log in anonymously.
login_pass - cstr - Corresponds to "catalog_link_instance.login_pass". This is the database natively recognized "password" that you provide along with the login_name. All parts of the above description for the "name" apply to the "pass" also.
Rosetta::Engine::Generic recognizes these options:
dbi_driver - cstr - Seeing as Rosetta::Engine::Generic is meant to sit on top of DBI and any of its drivers, this option lets you explicitely pick which one to use. If this is not set, then Generic will make an educated guess for which DBD module to use based on the product_code engine configuration option, or it will fall back to DBD::ODBC if possible.
auto_commit - bool - If this option is false (the default), Rosetta::Engine::Generic will always use transactions and require explicit commits for database actions to be saved; if this option is true, then it will instead auto-commit every database action, so separate commits are not necessary. When this option is true, then this module should behave as expected with every kind of data storage product; automatic explicit commits will be issued for transaction supporting databases, and this behaviour will just happen anyway on non-supporting ones. When this option is false, then you must make sure to only use database products with it that have native support for transactions; Generic won't even try to emulate transactions since that is too difficult to do properly; this module simply won't work properly with databases that lack native transaction support, even though it will incorrectly declare support for said activity.
ident_style - enum - If this "identifier style" option is 'YD_CS' (the default), then Rosetta::Engine::Generic will generate SQL identifiers (such as table or column or schema names) that are delimited, case-sensitive, and able to contain any characters (including whitespace). If this option is 'ND_CI_UP', then generated SQL identifiers will be non-delimited, case-insensitive, with latin characters folded to uppercase, and contain only a limited range of characters such as: letters, underscore, numbers (non-leading); these are "bare-word" identifiers. The 'ND_CI_DN' style is the same as 'ND_CI_UP' except that the identifier is folded to lowercase. Note that all of these formats are supported by the SQL standard but that the standard specifies all non-delimited identifiers will match as uppercase when compared to delimited identifiers. SQL using the bare-word format may look cleaner than the delimited format, and some databases support it only, if not both. As delimited identifiers carry more information (a full superset), that is what Rosetta and Rosetta::Model support internally. Movement from a delimited format to a bare-word one will fold the case of all alpha characters and strip the non-allowed characters, and both steps discard information; movement the other way will keep all information. Rosetta::Engine::Generic will generate SQL in either format, as determined either by a database product's abilities, or according to this Engine configuration option. Identifiers are usually delimited by double-quotes ('"', as distinct from string delimiting single-quotes), or back-ticks ('`').
More options will be added, or some will be changed, over time.
This module requires any version of Perl 5.x.y that is at least 5.8.1.
It also requires the Perl modules version and only, which would conceptually be built-in to Perl, but aren't, so they are on CPAN instead.
It also requires the Perl module List::Util, which would conceptually be built-in to Perl, but is bundled with it instead.
It also requires these modules that are on CPAN: Rosetta '0.71.0-', Rosetta::Utility::SQLBuilder '0.22.0-', Rosetta::Utility::SQLParser '0.3.0-', DBI '1.48-' (highest version recommended).
None reported.
perl(1), Rosetta, Rosetta::Model, Locale::KeyedText, Rosetta::Utility::SQLBuilder, Rosetta::Utility::SQLParser, DBI.
This module is currently in pre-alpha development status, meaning that some parts of it will be changed in the near future, perhaps in incompatible ways.
Darren R. Duncan (perl@DarrenDuncan.net)
This file is part of the Rosetta::Engine::Generic feature reference implementation of the Rosetta database portability library.
Rosetta::Engine::Generic is Copyright (c) 2002-2005, Darren R. Duncan. All
rights reserved. Address comments, suggestions, and bug reports to
perl@DarrenDuncan.net, or visit http://www.DarrenDuncan.net/ for more
information.
Rosetta::Engine::Generic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (GPL) as published by the Free Software Foundation (http://www.fsf.org/); either version 2 of the License, or (at your option) any later version. You should have received a copy of the GPL as part of the Rosetta::Engine::Generic distribution, in the file named "GPL"; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
Linking Rosetta::Engine::Generic statically or dynamically with other modules is making a combined work based on Rosetta::Engine::Generic. Thus, the terms and conditions of the GPL cover the whole combination. As a special exception, the copyright holders of Rosetta::Engine::Generic give you permission to link Rosetta::Engine::Generic with independent modules, regardless of the license terms of these independent modules, and to copy and distribute the resulting combined work under terms of your choice, provided that every copy of the combined work is accompanied by a complete copy of the source code of Rosetta::Engine::Generic (the version of Rosetta::Engine::Generic used to produce the combined work), being distributed under the terms of the GPL plus this exception. An independent module is a module which is not derived from or based on Rosetta::Engine::Generic, and which is fully useable when not linked to Rosetta::Engine::Generic in any form.
Any versions of Rosetta::Engine::Generic that you modify and distribute must carry prominent notices stating that you changed the files and the date of any changes, in addition to preserving this original copyright notice and other credits. Rosetta::Engine::Generic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
While it is by no means required, the copyright holders of Rosetta::Engine::Generic would appreciate being informed any time you create a modified version of Rosetta::Engine::Generic that you are willing to distribute, because that is a practical way of suggesting improvements to the standard version.
| Rosetta-Engine-Generic documentation | Contained in the Rosetta-Engine-Generic distribution. |
#!perl use 5.008001; use utf8; use strict; use warnings; use only 'Rosetta' => '0.71.0-'; use only 'Rosetta::Utility::SQLBuilder' => '0.22.0-'; # TODO: require at runtime instead use only 'Rosetta::Utility::SQLParser' => '0.3.0-'; # TODO: require at runtime instead use only 'DBI' => '1.48-'; # TODO: require at runtime instead package Rosetta::Engine::Generic; use version; our $VERSION = qv('0.22.0'); use base qw( Rosetta::Engine ); use List::Util qw( first ); ###################################################################### ###################################################################### # Names of properties for objects of the Rosetta::Engine::Generic class are # declared here: my $PROP_IN_PROGRESS_PREP_ENG = 'in_progress_prep_eng'; # Generic object - # This stores a brand new $prep_eng while it is being constructed # (rather than passing it internally as an argument). Our internal # routines can set properties in it while the $prep_routine is # being constructed, so that the compiled $prep_routine # can later reference them. This is set and cleared by prepare(); # it must always be undefined when prepare() of the current object # isn't executing. my $PROP_PREP_RTN = 'prep_rtn'; # ref to a Perl anonymous subroutine. This Perl closure is generated, # by prepare(), from the ROS M Node tree that RTN_NODE refers to; the # resulting Preparation's execute() will simply invoke the closure. my $PROP_ENV_PERL_RTNS = 'env_perl_rtns'; # hash (str,code) - For Environment Intfs - # This stores all of the ROS M routines that were compiled into Perl # code. Hash keys are unique generated ids that incorporate the # name-space hierarchy of a routine. # Hash values are Perl CODE refs, the result of "$r = sub { ... };" # One purpose this property serves is to be a cache so that if the same # ROS M routine is invoked multiple times, each additional call doesn't # have the compile overhead. # TODO: Make sure this works properly with closed and re-opened # connections, as old DBI $sth's created during the compile phase # probably wouldn't be valid anymore. # Another purpose this property serves is to make it easy for multiple # routines to invoke each other, including recursively. # Each 'routine' ROS M Node becomes a single element value in this # hash-list property. my $PROP_ENV_PERL_RTN_STRS = 'env_perl_rtn_strs'; # hash (str,code) - For Environment Intfs - # The Perl source code strs that compiled to the above CODE refs; # this prop is for debugging use; for now, it only has source that # compiled successfully; source for unsuccessful calls is included with # the Message object thrown on that failure. my $PROP_CONN_PREP_ECO = 'conn_prep_eco'; # hash (str,lit) - For Connection Prep Intfs - # These are the Engine Config Opts that apply to all Connection Intfs # made from this Conn Prep; they will override any Conn's # execute(ROUTINE_ARGS) values. They are copied here from the ROS M # Nodes partly for speed and partly to prevent tampering during an open # Connection due to modifying the original ROS M. # Note: At this moment there is no $PROP_ENV*ECO, as that would seem to # be counter-productive; eg, conflicting Env|Conn.features() values. my $PROP_CONN_IS_OPEN = 'conn_is_open'; # boolean - # Whether this is set to 1 or not determines whether the Conn state is # open or closed. my $PROP_CONN_ECO = 'conn_eco'; # hash (str,lit) - For Connection Intfs - # This is like the previous property, but it incorporates any given # ROUTINE_ARGS when making this specific Connection. # This property is set when a Connection context is set to an open # state; this property is cleared when a Connection context is set to # a closed state. Note: One of these opts says whether this Connection # will auto-commit or not; it is the definitive source for whether # Connection.features() will declare support for the TRAN_BASIC # feature or not (decl only at conn resolution, not env). my $PROP_CONN_DBH_OBJ = 'conn_dbh_obj'; # DBI $dbh object - For Connection Intfs - # This is the DBI-implemented "database handle" that we are using # behind the scenes. It is setup using up to 5 of the conn_eco values # (dsn, user, pass, driver, auto). my $PROP_CONN_SQL_BUILDER = 'conn_sql_builder'; # SQLBuilder object - For Connection Intfs - # This is used to generate all the SQL that will be sent through the # Connection. my $PROP_LIT_PREP_STH_OBJ = 'lit_prep_sth_obj'; # DBI $sth object - For Literal Prep Intfs - # This is the DBI-implemented "prepared statement handle" that we are # using behind the scenes. my $PROP_LIT_PAYLOAD = 'lit_payload'; # lit|ref|obj - For Literal Intfs - # This is the payload that the Literal Intf represents. my $PROP_CURS_PREP_STH_OBJ = 'curs_prep_sth_obj'; # DBI $sth object - For Cursor Prep Intfs - # This is the DBI-implemented "prepared statement handle" that we are # using behind the scenes. # Names of Rosetta::Engine::Generic Engine Configuration Options go here: my $ECO_LOCAL_DSN = 'local_dsn'; my $ECO_LOGIN_NAME = 'login_name'; my $ECO_LOGIN_PASS = 'login_pass'; my $ECO_DBI_DRIVER = 'dbi_driver'; my $ECO_AUTO_COMMIT = 'auto_commit'; my $ECO_IDENT_STYLE = 'ident_style'; # Declarations of feature support at Rosetta::Engine::Generic Environment # level: my %FEATURES_SUPP_BY_ENV = ( 'CATALOG_LIST' => 1, 'CATALOG_INFO' => 0, 'CONN_BASIC' => 1, 'CONN_MULTI_SAME' => 1, 'CONN_MULTI_DIFF' => 1, 'CONN_PING' => 0, 'TRAN_MULTI_SIB' => 0, 'TRAN_MULTI_CHILD' => 0, 'USER_LIST' => 0, 'USER_INFO' => 0, 'SCHEMA_LIST' => 0, 'SCHEMA_INFO' => 0, 'DOMAIN_LIST' => 0, 'DOMAIN_INFO' => 0, 'DOMAIN_DEFN_VERIFY' => 0, 'DOMAIN_DEFN_BASIC' => 0, 'TABLE_LIST' => 0, 'TABLE_INFO' => 0, 'TABLE_DEFN_VERIFY' => 0, 'TABLE_DEFN_BASIC' => 0, 'TABLE_UKEY_BASIC' => 0, 'TABLE_UKEY_MULTI' => 0, 'TABLE_FKEY_BASIC' => 0, 'TABLE_FKEY_MULTI' => 0, 'QUERY_BASIC' => 0, 'QUERY_SCHEMA_VIEW' => 0, 'QUERY_RETURN_SPEC_COLS' => 0, 'QUERY_RETURN_COL_EXPRS' => 0, 'QUERY_WHERE' => 0, 'QUERY_COMPARE_PRED' => 0, 'QUERY_BOOLEAN_EXPR' => 0, 'QUERY_NUMERIC_EXPR' => 0, 'QUERY_STRING_EXPR' => 0, 'QUERY_LIKE_PRED' => 0, 'QUERY_JOIN_BASIC' => 0, 'QUERY_JOIN_OUTER_LEFT' => 0, 'QUERY_JOIN_ALL' => 0, 'QUERY_GROUP_BY_NONE' => 0, 'QUERY_GROUP_BY_SOME' => 0, 'QUERY_AGG_CONCAT' => 0, 'QUERY_AGG_EXIST' => 0, 'QUERY_OLAP' => 0, 'QUERY_HAVING' => 0, 'QUERY_WINDOW_ORDER' => 0, 'QUERY_WINDOW_LIMIT' => 0, 'QUERY_COMPOUND' => 0, 'QUERY_SUBQUERY' => 0, ); # These features are conditionally supported at the Connection level: # TRAN_BASIC # TRAN_ROLLBACK_ON_DEATH # See the features() method for the conditions. # These are constant values used by this module. my $EMPTY_STR = q{}; ###################################################################### sub _throw_error_message { # This overrides the same-named method of 'Rosetta'. my ($engine, $msg_key, $msg_vars) = @_; ref $msg_vars eq 'HASH' or $msg_vars = {}; if (my $routine_node = $msg_vars->{'RNAME'}) { $msg_vars->{'RNAME'} = $engine->build_perl_identifier_rtn( $routine_node, 1 ); } $engine->SUPER::_throw_error_message( $msg_key, $msg_vars ); } ###################################################################### sub new_environment_engine { return Rosetta::Engine::Generic::Environment->new(); } sub new_connection_engine { return Rosetta::Engine::Generic::Connection->new(); } sub new_cursor_engine { return Rosetta::Engine::Generic::Cursor->new(); } sub new_literal_engine { return Rosetta::Engine::Generic::Literal->new(); } sub new_preparation_engine { return Rosetta::Engine::Generic::Preparation->new(); } ###################################################################### sub new { my ($class) = @_; my $engine = bless {}, ref $class || $class; $engine->{$PROP_IN_PROGRESS_PREP_ENG} = undef; $engine->{$PROP_PREP_RTN} = undef; $engine->{$PROP_ENV_PERL_RTNS} = undef; $engine->{$PROP_ENV_PERL_RTN_STRS} = undef; $engine->{$PROP_CONN_PREP_ECO} = undef; $engine->{$PROP_CONN_IS_OPEN} = undef; $engine->{$PROP_CONN_ECO} = undef; $engine->{$PROP_CONN_DBH_OBJ} = undef; $engine->{$PROP_CONN_SQL_BUILDER} = undef; $engine->{$PROP_LIT_PREP_STH_OBJ} = undef; $engine->{$PROP_LIT_PAYLOAD} = undef; $engine->{$PROP_CURS_PREP_STH_OBJ} = undef; return $engine; } ###################################################################### sub DESTROY { my ($engine) = @_; if ($engine->{$PROP_CONN_IS_OPEN}) { $engine->close_dbi_connection( $engine->{$PROP_CONN_DBH_OBJ}, $engine->{$PROP_CONN_ECO}->{$ECO_AUTO_COMMIT} ); } %{$engine} = (); } ###################################################################### sub features { my ($engine, $interface, $feature_name) = @_; my %feature_list = %FEATURES_SUPP_BY_ENV; if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Connection' )) { if ($engine->{$PROP_CONN_ECO}->{$ECO_AUTO_COMMIT}) { $feature_list{'TRAN_BASIC'} = 0; } # else TRAN_BASIC missing since don't know yet. if ($engine->{$PROP_CONN_IS_OPEN}) { # If we get here, Conn is in open state; more info available. if ($engine->{$PROP_CONN_ECO}->{$ECO_AUTO_COMMIT}) { $feature_list{'TRAN_BASIC'} = 0; } else { # Now query the db to know whether TRAN_BASIC is supported or not. } # Now query the db to know whether TRAN_ROLLBACK_ON_DEATH is supported or not. } else {} # Conn is in closed state; less info available. } else {} # Intf Type is Environment. return defined $feature_name ? $feature_list{$feature_name} : \%feature_list; } ###################################################################### sub prepare { # Assume we only get called off of Environment and Connection and Cursor interfaces. my ($engine, $interface, $routine_node) = @_; if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Environment' )) { $engine->{$PROP_ENV_PERL_RTNS} ||= {}; # This couldn't have been done at Env Eng creation time. $engine->{$PROP_ENV_PERL_RTN_STRS} ||= {}; # Ditto. } if ($routine_node->get_primary_parent_attribute()->get_node_type() ne 'application') { # Only externally visible routines in 'application space' can be directly # invoked by a user application; to invoke anything in 'database space', # you must have a separate app-space proxy routine invoke it. $engine->_throw_error_message( 'ROS_G_NEST_RTN_NO_INVOK', { 'RNAME' => $routine_node } ); } my $prep_intf = $interface->new_preparation_interface( $interface, $routine_node ); my $prep_eng = $prep_intf->get_engine(); $engine->{$PROP_IN_PROGRESS_PREP_ENG} = $prep_eng; my $prep_routine = eval { return $engine->build_perl_routine( $interface, $routine_node ); }; $engine->{$PROP_IN_PROGRESS_PREP_ENG} = undef; # must be empty before we exit die $@ if $@; $prep_eng->{$PROP_PREP_RTN} = $prep_routine; return $prep_intf; } ###################################################################### sub payload { my ($lit_eng, $lit_intf) = @_; return $lit_eng->{$PROP_LIT_PAYLOAD}; } ###################################################################### sub execute { my ($prep_eng, $prep_intf, $routine_args) = @_; return $prep_eng->{$PROP_PREP_RTN}->( $prep_eng, $prep_intf, $routine_args ); } ###################################################################### sub build_perl_routine { my ($engine, $interface, $routine_node) = @_; my ($env_eng, $env_intf) = $engine->get_env_cx_e_and_i( $interface ); my $routine_name = $engine->build_perl_identifier_rtn( $routine_node ); my $routine_name_debug = $engine->build_perl_identifier_rtn( $routine_node, 1 ); my $prep_routine = $env_eng->{$PROP_ENV_PERL_RTNS}->{$routine_name}; return $prep_routine if $prep_routine; # This routine was compiled previously; use that one. my $routine_type = $routine_node->get_attribute( 'routine_type' ); if ($routine_type ne 'FUNCTION' and $routine_type ne 'PROCEDURE') { # You can not directly invoke a trigger or other non-func/proc $engine->_throw_error_message( 'ROS_G_RTN_TP_NO_INVOK', { 'RNAME' => $routine_node, 'RTYPE' => $routine_type } ); } my $routine_str = <<__EOL; # This routine is a closure. return sub { # routine: "$routine_name_debug". my (\$rtv_prep_eng, \$rtv_prep_intf, \$rtv_args) = \@_; __EOL if (my $routine_cxt_node = $routine_node->get_child_nodes( 'routine_context' )->[0]) { my $routine_cxt_name = $engine->build_perl_identifier_rtn_var( $routine_cxt_node ); my $routine_cxt_name_eng = $routine_cxt_name . '_eng'; my $routine_cxt_name_debug = $engine->build_perl_identifier_rtn_var( $routine_cxt_node, 1 ); my $cont_type = $routine_cxt_node->get_attribute( 'cont_type' ); if ($cont_type eq 'CONN') { $routine_str .= <<__EOL; my ($routine_cxt_name_eng, $routine_cxt_name) # routine_cxt: $routine_cxt_name_debug = \$rtv_prep_eng->get_conn_cx_e_and_i( \$rtv_prep_intf ); __EOL } elsif ($cont_type eq 'CURSOR') { $routine_str .= <<__EOL; my (undef, $routine_cxt_name) # routine_cxt: $routine_cxt_name_debug = \$rtv_prep_eng->get_curs_cx_e_and_i( \$rtv_prep_intf ); __EOL } else {} } for my $routine_arg_node (@{$routine_node->get_child_nodes( 'routine_arg' )}) { my $routine_arg_name = $engine->build_perl_identifier_rtn_var( $routine_arg_node ); my $routine_arg_name_debug = $engine->build_perl_identifier_rtn_var( $routine_arg_node, 1 ); my $routine_arg_name_cstr = $engine->build_perl_literal_cstr_from_atvl( $routine_arg_node ); $routine_str .= <<__EOL; my $routine_arg_name = \$rtv_args->{$routine_arg_name_cstr}; # routine_arg: $routine_arg_name_debug __EOL } $routine_str .= $engine->build_perl_routine_body( $interface, $routine_node ); if ($routine_type eq 'PROCEDURE') { # All procedures conceptually return nothing, actually return SUCCESS when ok. $routine_str .= <<__EOL; return \$rtv_prep_intf->new_success_interface( \$rtv_prep_intf ); __EOL } $routine_str .= <<__EOL; # return }; __EOL if (my $trace_fh = $interface->get_trace_fh()) { my $class = ref $engine; print $trace_fh "$class built a new routine whose code is:\n----------\n$routine_str\n----------\n"; } $prep_routine = eval $routine_str; $engine->_throw_error_message( 'ROS_G_PERL_COMPILE_FAIL', { 'RNAME' => $routine_node, 'PERL_ERROR' => $@, 'PERL_CODE' => $routine_str } ) if $@; $env_eng->{$PROP_ENV_PERL_RTNS}->{$routine_name} = $prep_routine; $env_eng->{$PROP_ENV_PERL_RTN_STRS}->{$routine_name} = $routine_str; return $prep_routine; # This routine is now compiled for the first time. } ###################################################################### sub build_perl_routine_body { my ($engine, $interface, $routine_node) = @_; my $routine_str = $EMPTY_STR; for my $routine_var_node (@{$routine_node->get_child_nodes( 'routine_var' )}) { my $routine_var_name = $engine->build_perl_identifier_rtn_var( $routine_var_node ); my $routine_var_name_debug = $engine->build_perl_identifier_rtn_var( $routine_var_node, 1 ); $routine_str .= <<__EOL; my $routine_var_name = undef; # routine_var: $routine_var_name_debug __EOL my $cont_type = $routine_var_node->get_attribute( 'cont_type' ); if ($cont_type eq 'ERROR') { } elsif ($cont_type eq 'SCALAR') { my $init_val = $engine->build_perl_literal_cstr_from_atvl( $routine_var_node, 'init_lit_val' ); $routine_str .= <<__EOL; $routine_var_name = $init_val; __EOL } elsif ($cont_type eq 'ROW') { } elsif ($cont_type eq 'SC_ARY') { } elsif ($cont_type eq 'RW_ARY') { } elsif ($cont_type eq 'CONN') { $routine_str .= $engine->build_perl_declare_cx_conn( $interface, $routine_node, $routine_var_node ); } elsif ($cont_type eq 'CURSOR') { $routine_str .= $engine->build_perl_declare_cx_cursor( $interface, $routine_node, $routine_var_node ); } elsif ($cont_type eq 'LIST') { } elsif ($cont_type eq 'ROS_M_NODE') { } elsif ($cont_type eq 'ROS_M_NODE_LIST') { } else {} } for my $routine_stmt_node (@{$routine_node->get_child_nodes( 'routine_stmt' )}) { $routine_str .= $engine->build_perl_stmt( $interface, $routine_node, $routine_stmt_node ); } return $routine_str; } ###################################################################### sub build_perl_stmt { my ($engine, $interface, $routine_node, $routine_stmt_node) = @_; if (my $compound_stmt_routine = $routine_stmt_node->get_attribute( 'block_routine' )) { # Not implemented yet. } elsif (my $assign_dest_node = $routine_stmt_node->get_attribute( 'assign_dest' ) || $routine_stmt_node->get_attribute( 'assign_dest' )) { my $assign_dest_name = $engine->build_perl_identifier_rtn_var( $assign_dest_node ); my $expr_str = $engine->build_perl_expr( $interface, $routine_node, $routine_stmt_node->get_child_nodes( 'routine_expr' )->[0] ); return <<__EOL; $assign_dest_name = $expr_str; __EOL } elsif ($routine_stmt_node->get_attribute( 'call_sroutine' )) { return $engine->build_perl_stmt_srtn( $interface, $routine_node, $routine_stmt_node ); } elsif ($routine_stmt_node->get_attribute( 'call_uroutine' )) { return $engine->build_perl_stmt_urtn( $interface, $routine_node, $routine_stmt_node ); } else {} } ###################################################################### sub build_perl_stmt_srtn { my ($engine, $interface, $routine_node, $routine_stmt_node) = @_; my $sroutine = $routine_stmt_node->get_attribute( 'call_sroutine' ); my %child_cxt_exprs = map { ($_->get_attribute( 'call_sroutine_cxt' ) => $_) } grep { $_->get_attribute( 'call_sroutine_cxt' ) } @{$routine_stmt_node->get_child_nodes()}; my %child_arg_exprs = map { ($_->get_attribute( 'call_sroutine_arg' ) => $_) } grep { $_->get_attribute( 'call_sroutine_arg' ) } @{$routine_stmt_node->get_child_nodes()}; if ($sroutine eq 'CATALOG_OPEN') { my $conn_cx = $engine->build_perl_expr( $interface, $routine_node, $child_cxt_exprs{'CONN_CX'} ); my $login_name = $engine->build_perl_expr( $interface, $routine_node, $child_arg_exprs{'LOGIN_NAME'} ); my $login_pass = $engine->build_perl_expr( $interface, $routine_node, $child_arg_exprs{'LOGIN_PASS'} ); return <<__EOL; \$rtv_prep_eng->srtn_catalog_open( \$rtv_prep_intf, { 'CONN_CX' => $conn_cx, 'LOGIN_NAME' => $login_name, 'LOGIN_PASS' => $login_pass } ); __EOL } elsif ($sroutine eq 'CATALOG_CLOSE') { my $conn_cx = $engine->build_perl_expr( $interface, $routine_node, $child_cxt_exprs{'CONN_CX'} ); return <<__EOL; \$rtv_prep_eng->srtn_catalog_close( \$rtv_prep_intf, { 'CONN_CX' => $conn_cx } ); __EOL } elsif ($sroutine eq 'RETURN') { my $return_value = $engine->build_perl_expr( $interface, $routine_node, $child_arg_exprs{'RETURN_VALUE'} ); return <<__EOL; return $return_value; __EOL } else {} $engine->_throw_error_message( 'ROS_G_STD_RTN_NO_IMPL', { 'RNAME' => $routine_node, 'SRNAME' => $sroutine } ); } ###################################################################### sub build_perl_stmt_urtn { my ($engine, $interface, $routine_node, $routine_stmt_node) = @_; return $EMPTY_STR; } ###################################################################### sub build_perl_expr { my ($engine, $interface, $routine_node, $expr_node) = @_; return 'undef' if !$expr_node; my $cont_type = $expr_node->get_attribute( 'cont_type' ); if ($cont_type eq 'LIST') { return '(' . (join q{, }, map { $engine->build_perl_expr( $interface, $routine_node, $_ ) } @{$expr_node->get_child_nodes()}) . ')'; } else { if (my $valf_literal = $expr_node->get_attribute( 'valf_literal' )) { #my $domain_node = $expr_node->get_attribute( 'scalar_data_type' ); return $engine->build_perl_literal_cstr( $valf_literal ); } elsif (my $routine_item_node = $expr_node->get_attribute( 'valf_p_routine_item' )) { return $engine->build_perl_identifier_rtn_var( $routine_item_node ); } elsif ($expr_node->get_attribute( 'valf_call_sroutine' )) { return $engine->build_perl_expr_srtn( $interface, $routine_node, $expr_node ); } elsif ($expr_node->get_attribute( 'valf_call_uroutine' )) { return $engine->build_perl_expr_urtn( $interface, $routine_node, $expr_node ); } else {} } } ###################################################################### sub build_perl_expr_srtn { my ($engine, $interface, $routine_node, $routine_expr_node) = @_; my $sroutine = $routine_expr_node->get_attribute( 'valf_call_sroutine' ); my %child_cxt_exprs = map { ($_->get_attribute( 'call_sroutine_cxt' ) => $_) } grep { $_->get_attribute( 'call_sroutine_cxt' ) } @{$routine_expr_node->get_child_nodes()}; my %child_arg_exprs = map { ($_->get_attribute( 'call_sroutine_arg' ) => $_) } grep { $_->get_attribute( 'call_sroutine_arg' ) } @{$routine_expr_node->get_child_nodes()}; if ($sroutine eq 'CATALOG_LIST') { my $recursive = $engine->build_perl_expr( $interface, $routine_node, $child_arg_exprs{'RECURSIVE'} ); return "\$rtv_prep_eng->srtn_catalog_list( \$rtv_prep_intf, { 'RECURSIVE' => $recursive } )"; } else {} $engine->_throw_error_message( 'ROS_G_STD_RTN_NO_IMPL', { 'RNAME' => $routine_node, 'SRNAME' => $sroutine } ); } ###################################################################### sub build_perl_expr_urtn { my ($engine, $interface, $routine_node, $routine_stmt_node) = @_; return $EMPTY_STR; } ###################################################################### sub get_env_cx_e_and_i { my ($engine, $interface) = @_; if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Preparation' )) { my $p_intf = $interface->get_parent_by_creation_interface(); my $p_eng = $p_intf->get_engine(); return $p_eng->get_env_cx_e_and_i( $p_intf ); } if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Environment' )) { return $engine, $interface; } if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Connection' )) { my $env_intf = $interface->get_parent_by_context_interface(); my $env_eng = $env_intf->get_engine(); return $env_eng, $env_intf; } if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Cursor' )) { my $conn_intf = $interface->get_parent_by_context_interface(); my $env_intf = $conn_intf->get_parent_by_context_interface(); my $env_eng = $env_intf->get_engine(); return $env_eng, $env_intf; } # We should never get here. } sub get_conn_cx_e_and_i { my ($engine, $interface) = @_; if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Preparation' )) { my $p_intf = $interface->get_parent_by_creation_interface(); my $p_eng = $p_intf->get_engine(); return $p_eng->get_conn_cx_e_and_i( $p_intf ); } if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Connection' )) { return $engine, $interface; } if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Cursor' )) { my $conn_intf = $interface->get_parent_by_context_interface(); my $conn_eng = $conn_intf->get_engine(); return $conn_eng, $conn_intf; } return; # $interface isa Environment } sub get_curs_cx_e_and_i { my ($engine, $interface) = @_; if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Preparation' )) { my $p_intf = $interface->get_parent_by_creation_interface(); my $p_eng = $p_intf->get_engine(); return $p_eng->get_curs_cx_e_and_i( $p_intf ); } if (UNIVERSAL::isa( $interface, 'Rosetta::Interface::Cursor' )) { return $engine, $interface; } return; # $interface isa Environment or $interface isa Connection } ###################################################################### sub encode_perl_identifier { # This function allows users to put any values they want in names, and # they will turn into valid Perl var names, that are guaranteed to be # distinct between themselves and any variable names in Generic.pm. # If $debug is true, less encoding is done to make more human readable, for # generated comments or errors; don't use that as identifier names in Perl code. my ($engine, $name, $debug) = @_; if ($debug) { $name =~ s/[^a-zA-Z0-9]/*/xg; return $name; } else { return join $EMPTY_STR, map { unpack 'H2', $_ } split $EMPTY_STR, $name; } } sub build_perl_identifier_element { my ($engine, $object_node, $debug) = @_; return $engine->encode_perl_identifier( $object_node->get_attribute( 'si_name' ), $debug ); } sub build_perl_identifier_rtn { my ($engine, $routine_node, $debug) = @_; my $routine_name = $engine->build_perl_identifier_element( $routine_node, $debug ); my $routine_pp_node = $routine_node->get_primary_parent_attribute(); my $routine_pp_node_type = $routine_pp_node->get_node_type(); if ($routine_pp_node_type eq 'schema') { my $schema_name = $engine->build_perl_identifier_element( $routine_pp_node, $debug ); my $cat_node = $routine_pp_node->get_primary_parent_attribute(); my $cat_name = $engine->build_perl_identifier_element( $cat_node, $debug ); return 'cat_' . $cat_name . '_' . $schema_name . '_' . $routine_name } if ($routine_pp_node_type eq 'application') { my $app_name = $engine->build_perl_identifier_element( $routine_pp_node, $debug ); return 'app_' . $app_name . '_' . $routine_name } # $routine_pp_node_type eq 'routine' return $engine->build_perl_identifier_rtn( $routine_pp_node, $debug ) . '_' . $routine_name } sub build_perl_identifier_rtn_var { my ($engine, $routine_var_node, $debug) = @_; return "\$rtv_enc_" . $engine->build_perl_identifier_element( $routine_var_node, $debug ); } ###################################################################### sub encode_perl_literal_cstr { my ($engine, $literal) = @_; if (defined $literal) { $literal =~ s/\\/\\\\/xg; $literal =~ s/'/\'/xg; return q{'} . $literal . q{'}; } else { return 'undef'; } } sub build_perl_literal_cstr_from_atvl { my ($engine, $object_node, $attr_name) = @_; $attr_name ||= 'si_name'; return $engine->encode_perl_literal_cstr( $object_node->get_attribute( $attr_name ) ); } ###################################################################### sub open_dbi_connection { my ($engine, $dbi_driver, $local_dsn, $login_name, $login_pass, $auto_commit) = @_; my $dbi_dbh = DBI->connect( 'DBI:' . $dbi_driver . ':' . ($local_dsn||$EMPTY_STR), $login_name, $login_pass, { RaiseError => 1, AutoCommit => $auto_commit }, ); # throws exception on failure return $dbi_dbh; } sub close_dbi_connection { my ($engine, $dbi_dbh, $auto_commit) = @_; if (!$auto_commit) { $dbi_dbh->rollback(); # explicit call, since behaviour of disconnect undefined } $dbi_dbh->disconnect(); # throws exception on failure } ###################################################################### sub clean_up_dbi_driver_string { # This code is partly derived from part of DBI->install_driver(). my ($engine, $driver_name) = @_; # This line converts an undefined value to a defined empty string. defined $driver_name or $driver_name = $EMPTY_STR; # This line removes any leading or trailing whitespace. $driver_name =~ s/^ \s* (.*?) \s* $/$1/x; # This line extracts the 'driver' from 'dbi:driver:*' strings. $driver_name =~ m/^ DBI: (.*?) : /xi; $1 and $driver_name = $1; # This line extracts the 'driver' from 'DBD::driver' strings. $driver_name =~ m/^ DBD:: (.*) $/x; $1 and $driver_name = $1; # This line extracts the 'driver' from any other bounding characters. $driver_name =~ s/([a-zA-Z0-9_]*)/$1/x; return $driver_name; } ###################################################################### sub install_dbi_driver { my ($engine, $driver_hint) = @_; # This trims the hint to essentials if it is formatted like specific DBI driver strings. $driver_hint = $engine->clean_up_dbi_driver_string( $driver_hint ); # If driver hint is empty because it just contained junk characters before, then use a default. if (!$driver_hint) { $driver_hint = 'ODBC'; # This is the fall-back we use, as stated in module documentation. } # This tests whether the driver hint exactly matches the key part of the name of a # DBI driver that is installed on the system; the driver is also installed if it exists. eval { DBI->install_driver( $driver_hint ); }; return $driver_hint if !$@; # No errors, so the DBI driver exists and is now installed. my $semi_original_driver_hint = $driver_hint; # save for error strings if any # If we get here then the driver hint does not exactly match a DBI driver name, # so we will have to figure out one to use by ourselves. # Let's start by trying a few capitalization variants that look like typical DBI driver names. # If the given hint matches a driver name except for the capitalization, then these simple # tries should work for about 75% of the DBI drivers that I know about. $driver_hint = uc $driver_hint; eval { DBI->install_driver( $driver_hint ); }; return $driver_hint if !$@; $driver_hint = lc $driver_hint; eval { DBI->install_driver( $driver_hint ); }; return $driver_hint if !$@; $driver_hint = ucfirst lc $driver_hint; eval { DBI->install_driver( $driver_hint ); }; return $driver_hint if !$@; # Now ask DBI for a list of installed drivers, and compare each to the driver hint, # including some sub-string match attempts. my @available_drivers = DBI->available_drivers(); $engine->_throw_error_message( 'ROS_G_NO_DBI_DRIVER_HINT_MATCH', { 'NAME' => $semi_original_driver_hint } ) if !@available_drivers; for my $driver_name (@available_drivers) { if ($driver_name =~ m/$driver_hint/xi or $driver_hint =~ m/$driver_name/xi) { eval { DBI->install_driver( $driver_name ); }; return $driver_name if !$@; } } # If we get here then all attempts have failed, so give up. $engine->_throw_error_message( 'ROS_G_NO_DBI_DRIVER_HINT_MATCH', { 'NAME' => $semi_original_driver_hint } ); } ###################################################################### sub make_model_node { my ($engine, $node_type, $container) = @_; my $node = $container->new_node( $container, $node_type, $container->get_next_free_node_id() ); return $node; } sub make_child_model_node { my ($engine, $node_type, $pp_node, $pp_attr) = @_; my $container = $pp_node->get_container(); my $node = $pp_node->new_node( $container, $node_type, $container->get_next_free_node_id() ); $node->set_primary_parent_attribute( $pp_node ); return $node; } ###################################################################### sub build_perl_declare_cx_conn { my ($engine, $interface, $routine_node, $routine_var_node) = @_; my $prep_eng = $engine->{$PROP_IN_PROGRESS_PREP_ENG}; my $app_intf = $interface->get_root_interface(); my $cat_link_bp_node = $routine_var_node->get_attribute( 'conn_link' ); # Now figure out link target by cross-referencing app inst with cat link bp. my $app_inst_node = $app_intf->get_app_inst_node(); my ($cat_link_inst_node) = first { $_->get_attribute( 'blueprint' )->get_self_id() eq $cat_link_bp_node->get_self_id() } @{$app_inst_node->get_child_nodes( 'catalog_link_instance' )}; my $cat_inst_node = $cat_link_inst_node->get_attribute( 'target' ); my $dsp_node = $cat_inst_node->get_attribute( 'product' ); my %conn_prep_eco = ( 'product_code' => $dsp_node->get_attribute( 'product_code' ), 'is_memory_based' => $dsp_node->get_attribute( 'is_memory_based' ), 'is_file_based' => $dsp_node->get_attribute( 'is_file_based' ), 'is_local_proc' => $dsp_node->get_attribute( 'is_local_proc' ), 'is_network_svc' => $dsp_node->get_attribute( 'is_network_svc' ), 'file_path' => $cat_inst_node->get_attribute( 'file_path' ), 'local_dsn' => $cat_link_inst_node->get_attribute( 'local_dsn' ), 'login_name' => $cat_link_inst_node->get_attribute( 'login_name' ), 'login_pass' => $cat_link_inst_node->get_attribute( 'login_pass' ), ); for my $opt_node (@{$cat_inst_node->get_child_nodes( 'catalog_instance_opt' )}, @{$cat_link_inst_node->get_child_nodes( 'catalog_link_instance_opt' )}) { my $key = $opt_node->get_attribute( 'si_key' ); my $value = $opt_node->get_attribute( 'value' ); if (defined $value and !defined $conn_prep_eco{$key}) { $conn_prep_eco{$key} = $value; } } $conn_prep_eco{'dbi_driver'} # May modifiy DBI driver string; dies if DBI driver won't load. = $engine->install_dbi_driver( $conn_prep_eco{'dbi_driver'} || $conn_prep_eco{'product_code'} ); $conn_prep_eco{'local_dsn'} = $conn_prep_eco{'is_file_based'} ? $conn_prep_eco{'file_path'} # file_path must be set if is_file_based : $conn_prep_eco{'local_dsn'} # used for non-file-based ; my $rtn_var_nm = $engine->build_perl_identifier_rtn_var( $routine_var_node ); my $rtn_var_nm_p_intf = $rtn_var_nm . '_p_intf'; my $rtn_var_nm_p_eng = $rtn_var_nm . '_p_eng'; $prep_eng->{$PROP_CONN_PREP_ECO} = \%conn_prep_eco; my $cat_link_bp_node_id = $cat_link_bp_node->get_node_id(); return <<__EOL; my ($rtn_var_nm_p_eng, $rtn_var_nm_p_intf) = \$rtv_prep_eng->get_env_cx_e_and_i( \$rtv_prep_intf ); $rtn_var_nm = \$rtv_prep_intf->new_connection_interface( \$rtv_prep_intf, $rtn_var_nm_p_intf, \$rtv_prep_intf->get_model_container()->find_node_by_id( $cat_link_bp_node_id ) ); __EOL } ###################################################################### sub srtn_catalog_list { my ($prep_eng, $prep_intf, $args) = @_; my ($env_eng, $env_intf) = $prep_eng->get_env_cx_e_and_i( $prep_intf ); my $recursive = $args->{'RECURSIVE'}; # TODO: implement this # TODO: Each MySQL "database" is actually a "schema"; there is one "catalog" per server. # TODO: As for SQLite, we'll continue to see each database file as a 1-sch catalog for now. # For file-based dbs, a file is a catalog; # For client-server based dbs with one specific spot for data, all they manage is 1 catalog. # Note: the treatment for MySQL is confirmed as the official conception by their developers. my $app_inst_node = $prep_intf->get_root_interface()->get_app_inst_node(); my $app_bp_node = $app_inst_node->get_attribute( 'blueprint' ); my $container = $app_inst_node->get_container(); my @cat_link_bp_nodes = (); my $dlp_node = $env_intf->get_link_prod_node(); # A 'data_link_product' Node (repr ourself). DBI_DRIVER: for my $dbi_driver (DBI->available_drivers()) { # Tested $dbi_driver values on my system are (space-delimited): # [DBM ExampleP File Proxy SQLite Sponge mysql]; they are ready to use as is. eval { DBI->install_driver( $dbi_driver ); }; $@ and next DBI_DRIVER; # Skip bad driver. # If we get here, then the $dbi_driver will load without problems. $dbi_driver eq 'ExampleP' and next DBI_DRIVER; # Skip useless DBI-bundled driver. $dbi_driver eq 'File' and next DBI_DRIVER; # Skip useless DBI-bundled driver. # If we get here, then the $dbi_driver is something "normal". my $dsp_node = $env_eng->make_model_node( 'data_storage_product', $container ); $dsp_node->set_attribute( 'si_name', $dbi_driver ); $dsp_node->set_attribute( 'product_code', $dbi_driver ); if ($dbi_driver eq 'Sponge') { $dsp_node->set_attribute( 'is_memory_based', 1 ); # common setting for DBDs } elsif ($dbi_driver eq 'DBM' or $dbi_driver eq 'SQLite2' or $dbi_driver eq 'SQLite') { $dsp_node->set_attribute( 'is_file_based', 1 ); # common setting for DBDs } elsif ($dbi_driver eq 'mysql') { $dsp_node->set_attribute( 'is_local_proc', 1 ); # common setting for DBDs } elsif (0) { $dsp_node->set_attribute( 'is_network_svc', 1 ); # common setting for DBDs } else { $dsp_node->set_attribute( 'is_local_proc', 1 ); # may not be correct } for my $dbi_data_source (DBI->data_sources( $dbi_driver )) { #Examples of $dbi_data_source formats are: #dbi:DriverName:database_name #dbi:DriverName:database_name@hostname:port #dbi:DriverName:database=database_name;host=hostname;port=port my (undef, undef, $local_dsn) = split ':', $dbi_data_source; my $cat_bp_node = $env_eng->make_model_node( 'catalog', $container ); $cat_bp_node->set_attribute( 'si_name', $dbi_data_source ); my $cat_link_bp_node = $env_eng->make_child_model_node( 'catalog_link', $app_bp_node ); $cat_link_bp_node->set_attribute( 'si_name', $dbi_data_source ); $cat_link_bp_node->set_attribute( 'target', $cat_bp_node ); my $cat_inst_node = $env_eng->make_model_node( 'catalog_instance', $container ); $cat_inst_node->set_attribute( 'product', $dsp_node ); $cat_inst_node->set_attribute( 'blueprint', $cat_bp_node ); $cat_inst_node->set_attribute( 'si_name', $dbi_data_source ); if ($dbi_driver eq 'DBM' or $dbi_driver eq 'SQLite2' or $dbi_driver eq 'SQLite') { # is_file_based always uses file_path. my $file_path = $local_dsn; if ($dbi_driver eq 'DBM') { $file_path =~ s/ f_dir = (.*) /$1/x; } $cat_inst_node->set_attribute( 'file_path', $file_path ); } my $cat_link_inst_node = $env_eng->make_child_model_node( 'catalog_link_instance', $app_inst_node ); $cat_link_inst_node->set_attribute( 'product', $dlp_node ); $cat_link_inst_node->set_attribute( 'blueprint', $cat_link_bp_node ); $cat_link_inst_node->set_attribute( 'target', $cat_inst_node ); if ($dbi_driver ne 'DBM' and $dbi_driver ne 'SQLite2' and $dbi_driver ne 'SQLite') { # non file-based currently uses local_dsn. $cat_link_inst_node->set_attribute( 'local_dsn', $local_dsn ); } push @cat_link_bp_nodes, $cat_link_bp_node; } } my $lit_intf = $prep_intf->new_literal_interface( $prep_intf ); my $lit_eng = $lit_intf->get_engine(); $lit_eng->{$PROP_LIT_PAYLOAD} = \@cat_link_bp_nodes; return $lit_intf; } ###################################################################### sub srtn_catalog_open { my ($prep_eng, $prep_intf, $args) = @_; my $conn_intf = $args->{'CONN_CX'}; my $conn_eng = $conn_intf->get_engine(); my $conn_prep_intf = $conn_intf->get_parent_by_creation_interface(); my $conn_prep_eng = $conn_prep_intf->get_engine(); if ($conn_eng->{$PROP_CONN_IS_OPEN}) { my $routine_node = $prep_intf->get_routine_node(); $prep_eng->_throw_error_message( 'ROS_G_CATALOG_OPEN_CONN_STATE_OPEN', { 'RNAME' => $routine_node } ); } my %conn_eco = %{$conn_prep_eng->{$PROP_CONN_PREP_ECO}}; defined $conn_eco{'login_name'} or $conn_eco{'login_name'} = $args->{'LOGIN_NAME'}; defined $conn_eco{'login_pass'} or $conn_eco{'login_pass'} = $args->{'LOGIN_PASS'}; my $dbi_driver = $conn_eco{'dbi_driver'}; # product_code merged in by build_perl_declare_cx_conn() my $local_dsn = $conn_eco{'local_dsn'}; # file_path merged in by build_perl_declare_cx_conn() my $login_name = $conn_eco{'login_name'}; my $login_pass = $conn_eco{'login_pass'}; my $auto_commit = $conn_eco{'auto_commit'}; my $dbi_dbh = $prep_eng->open_dbi_connection( $dbi_driver, $local_dsn, $login_name, $login_pass, $auto_commit ); my $builder = Rosetta::Utility::SQLBuilder->new(); if (defined $conn_eco{'ident_style'}) { $builder->delimited_identifiers( $conn_eco{'ident_style'} ); } $conn_eng->{$PROP_CONN_IS_OPEN} = 1; $conn_eng->{$PROP_CONN_ECO} = \%conn_eco; $conn_eng->{$PROP_CONN_DBH_OBJ} = $dbi_dbh; $conn_eng->{$PROP_CONN_SQL_BUILDER} = $builder; } ###################################################################### sub srtn_catalog_close { my ($prep_eng, $prep_intf, $args) = @_; my $conn_intf = $args->{'CONN_CX'}; my $conn_eng = $conn_intf->get_engine(); if (!$conn_eng->{$PROP_CONN_IS_OPEN}) { my $routine_node = $prep_intf->get_routine_node(); $prep_eng->_throw_error_message( 'ROS_G_CATALOG_CLOSE_CONN_STATE_CLOSED', { 'RNAME' => $routine_node } ); } $conn_eng->close_dbi_connection( $conn_eng->{$PROP_CONN_DBH_OBJ}, $conn_eng->{$PROP_CONN_ECO}->{$ECO_AUTO_COMMIT} ); $conn_eng->{$PROP_CONN_IS_OPEN} = undef; $conn_eng->{$PROP_CONN_ECO} = undef; $conn_eng->{$PROP_CONN_DBH_OBJ} = undef; $conn_eng->{$PROP_CONN_SQL_BUILDER} = undef; } ###################################################################### ###################################################################### package Rosetta::Engine::Generic::Environment; use base qw( Rosetta::Engine::Generic ); ###################################################################### package Rosetta::Engine::Generic::Connection; use base qw( Rosetta::Engine::Generic ); ###################################################################### package Rosetta::Engine::Generic::Cursor; use base qw( Rosetta::Engine::Generic ); ###################################################################### package Rosetta::Engine::Generic::Literal; use base qw( Rosetta::Engine::Generic ); ###################################################################### package Rosetta::Engine::Generic::Preparation; use base qw( Rosetta::Engine::Generic ); ###################################################################### ###################################################################### 1; __END__