mirror of
				https://github.com/centreon/centreon-plugins.git
				synced 2025-11-04 13:14:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			97 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			Perl
		
	
	
	
	
	
#
 | 
						|
# Copyright 2020 Centreon (http://www.centreon.com/)
 | 
						|
#
 | 
						|
# Centreon is a full-fledged industry-strength solution that meets
 | 
						|
# the needs in IT infrastructure and application monitoring for
 | 
						|
# service performance.
 | 
						|
#
 | 
						|
# Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
# you may not use this file except in compliance with the License.
 | 
						|
# You may obtain a copy of the License at
 | 
						|
#
 | 
						|
#     http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
#
 | 
						|
# Unless required by applicable law or agreed to in writing, software
 | 
						|
# distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
# See the License for the specific language governing permissions and
 | 
						|
# limitations under the License.
 | 
						|
#
 | 
						|
 | 
						|
package database::oracle::dbi;
 | 
						|
 | 
						|
use base qw(centreon::plugins::dbi);
 | 
						|
 | 
						|
use strict;
 | 
						|
use warnings;
 | 
						|
use POSIX qw(:signal_h);
 | 
						|
 | 
						|
sub connect_oracle {
 | 
						|
    my ($self, %options) = @_;
 | 
						|
    
 | 
						|
    $self->{instance} = DBI->connect(
 | 
						|
        'DBI:' . $self->{data_source},
 | 
						|
        $self->{username},
 | 
						|
        $self->{password},
 | 
						|
        { RaiseError => 0, PrintError => 0, AutoCommit => 1, %{$self->{connect_options_hash}} }
 | 
						|
    );
 | 
						|
}
 | 
						|
 | 
						|
sub check_options {
 | 
						|
    my ($self, %options) = @_;
 | 
						|
 | 
						|
    $self->{container} = defined($self->{option_results}->{container}[0]) ? $self->{option_results}->{container}[0] : undef;
 | 
						|
    return $self->SUPER::check_options(%options);
 | 
						|
}
 | 
						|
 | 
						|
sub connect {
 | 
						|
    my ($self, %options) = @_;
 | 
						|
    my $dontquit = (defined($options{dontquit}) && $options{dontquit} == 1) ? 1 : 0;
 | 
						|
 | 
						|
    # Set ENV
 | 
						|
    if (defined($self->{env})) {
 | 
						|
        foreach (keys %{$self->{env}}) {
 | 
						|
            $ENV{$_} = $self->{env}->{$_};
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    if (defined($self->{timeout})) {
 | 
						|
        my $mask = POSIX::SigSet->new(SIGALRM);
 | 
						|
        my $action = POSIX::SigAction->new(
 | 
						|
            sub { $self->handle_ALRM() },
 | 
						|
            $mask,
 | 
						|
        );
 | 
						|
        my $oldaction = POSIX::SigAction->new();
 | 
						|
        sigaction(SIGALRM, $action, $oldaction);
 | 
						|
        eval {
 | 
						|
            eval {
 | 
						|
                alarm($self->{timeout});
 | 
						|
                $self->connect_oracle();
 | 
						|
            };
 | 
						|
            alarm(0);
 | 
						|
        };
 | 
						|
        sigaction(SIGALRM, $oldaction);
 | 
						|
    } else {
 | 
						|
        $self->connect_oracle();
 | 
						|
    }
 | 
						|
 | 
						|
    if (!defined($self->{instance})) {
 | 
						|
        my $err_msg = sprintf('Cannot connect: %s', defined($DBI::errstr) ? $DBI::errstr : '(no error string)');
 | 
						|
        if ($dontquit == 0) {
 | 
						|
            $self->{output}->add_option_msg(short_msg => $err_msg);
 | 
						|
            $self->{output}->option_exit(exit_litteral => $self->{sql_errors_exit});
 | 
						|
        }
 | 
						|
        return (-1, $err_msg);
 | 
						|
    }
 | 
						|
 | 
						|
    $self->set_version();
 | 
						|
    if (defined($self->{container}) and $self->{container} ne '') {
 | 
						|
        $self->query(query => "alter session set container=$self->{container}");
 | 
						|
    }
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
1;
 | 
						|
 | 
						|
__END__
 |