7 use English qw(-no_match_vars);
 
   9 use Rose::DBx::Cache::Anywhere;
 
  11 use base qw(Rose::DB);
 
  13 __PACKAGE__->db_cache_class('Rose::DBx::Cache::Anywhere');
 
  14 __PACKAGE__->use_private_registry;
 
  21   # runtime require to break circular include
 
  22   require SL::DBConnect;
 
  23   return SL::DBConnect->connect(@_);
 
  27   my $domain = shift || SL::DB->default_domain;
 
  28   my $type   = shift || SL::DB->default_type;
 
  30   ($domain, $type) = _register_db($domain, $type);
 
  32   my $db = __PACKAGE__->new_or_cached(domain => $domain, type => $type);
 
  41   require SL::DBConnect;
 
  42   my %specific_connect_settings;
 
  43   my %common_connect_settings = (
 
  45     european_dates   => ((SL::DBConnect->get_datestyle || '') =~ m/european/i) ? 1 : 0,
 
  51   if (($type eq 'KIVITENDO_AUTH') && $::auth && $::auth->{DB_config} && $::auth->session_tables_present) {
 
  52     %specific_connect_settings = (
 
  53       database        => $::auth->{DB_config}->{db},
 
  54       host            => $::auth->{DB_config}->{host} || 'localhost',
 
  55       port            => $::auth->{DB_config}->{port} || 5432,
 
  56       username        => $::auth->{DB_config}->{user},
 
  57       password        => $::auth->{DB_config}->{password},
 
  60   } elsif ($::auth && $::auth->client) {
 
  61     my $client        = $::auth->client;
 
  62     %specific_connect_settings = (
 
  63       database        => $client->{dbname},
 
  64       host            => $client->{dbhost} || 'localhost',
 
  65       port            => $client->{dbport} || 5432,
 
  66       username        => $client->{dbuser},
 
  67       password        => $client->{dbpasswd},
 
  70   } elsif (%::myconfig && $::myconfig{dbname}) {
 
  71     %specific_connect_settings = (
 
  72       database        => $::myconfig{dbname},
 
  73       host            => $::myconfig{dbhost} || 'localhost',
 
  74       port            => $::myconfig{dbport} || 5432,
 
  75       username        => $::myconfig{dbuser},
 
  76       password        => $::myconfig{dbpasswd},
 
  80     $type = 'KIVITENDO_EMPTY';
 
  83   my %connect_settings   = (%common_connect_settings, %specific_connect_settings);
 
  84   my %flattened_settings = _flatten_settings(%connect_settings);
 
  86   $domain                = 'KIVITENDO' if $type =~ m/^KIVITENDO/;
 
  87   $type                 .= join($SUBSCRIPT_SEPARATOR, map { ($_, $flattened_settings{$_} || '') } sort grep { $_ ne 'dbpasswd' } keys %flattened_settings);
 
  88   my $idx                = "${domain}::${type}";
 
  90   if (!$_db_registered{$idx}) {
 
  91     $_db_registered{$idx} = 1;
 
  93     __PACKAGE__->register_db(domain => $domain,
 
  99   return ($domain, $type);
 
 102 sub _flatten_settings {
 
 106   while (my ($key, $value) = each %settings) {
 
 107     if ('HASH' eq ref $value) {
 
 108       %flattened = ( %flattened, _flatten_settings(%{ $value }) );
 
 110       $flattened{$key} = $value;
 
 117 sub with_transaction {
 
 118   my ($self, $code, @args) = @_;
 
 120   return $code->(@args) if $self->in_transaction;
 
 123     return $self->do_transaction(sub { @result = $code->(@args) }) ? @result : ();
 
 127     return $self->do_transaction(sub { $result = $code->(@args) }) ? $result : undef;
 
 140 SL::DB - Database access class for all RDB objects
 
 146 =item C<create $domain, $type>
 
 148 Registers the database information with Rose, creates a cached
 
 149 connection and executes initial SQL statements. Those can include
 
 150 setting the time & date format to the user's preferences.
 
 152 =item C<dbi_connect $dsn, $login, $password, $options>
 
 154 Forwards the call to L<SL::DBConnect/connect> which connects to the
 
 155 database. This indirection allows L<SL::DBConnect/connect> to route
 
 156 the calls through L<DBIx::Log4Perl> if this is enabled in the
 
 159 =item C<with_transaction $code_ref, @args>
 
 161 Executes C<$code_ref> with parameters C<@args> within a transaction,
 
 162 starting one only if none is currently active. Example:
 
 164   return $self->db->with_transaction(sub {
 
 165     # do stuff with $self
 
 168 There are two big differences between C<with_transaction> and
 
 169 L<Rose::DB/do_transaction>: the handling of an already-running
 
 170 transaction and the handling of return values.
 
 172 The first difference revolves around when a transaction is started and
 
 173 committed/rolled back. Rose's C<do_transaction> will always start one,
 
 174 then execute the code reference and commit afterwards (or roll back if
 
 175 an exception occurs).
 
 177 This prevents the caller from combining several pieces of code using
 
 178 C<do_transaction> reliably as results committed by an inner
 
 179 transaction will be permanent even if the outer transaction is rolled
 
 182 Therefore our C<with_transaction> works differently: it will only
 
 183 start a transaction if no transaction is currently active on the
 
 186 The second big difference to L<Rose::DB/do_transaction> is the
 
 187 handling of returned values. Basically our C<with_transaction> will
 
 188 return the values that the code reference C<$code_ref> returns (or
 
 189 C<undef> if the transaction was rolled back). Rose's C<do_transaction>
 
 190 on the other hand will only return a value signaling the transaction's
 
 197 =item * If a transaction is already active then C<with_transaction>
 
 198 will simply return the result of calling C<$code_ref> as-is preserving
 
 201 =item * If no transaction is started then C<$code_ref> will be wrapped
 
 202 in one. C<with_transaction>'s return value depends on the result of
 
 203 that transaction. If the it succeeds then the return value of
 
 204 C<$code_ref> will be returned preserving context. Otherwise C<undef>
 
 205 will be returned in scalar context and an empty list in list context.
 
 209 So if you want to differentiate between "transaction failed" and
 
 210 "succeeded" then your C<$code_ref> should never return C<undef>
 
 221 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>