Failed Conditions
Push — master ( 656579...2742cd )
by Marco
11:55
created

SQLAnywhereException   A

Complexity

Total Complexity 12

Size/Duplication

Total Lines 62
Duplicated Lines 9.68 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 12
dl 6
loc 62
ccs 0
cts 27
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
C fromSQLAnywhereError() 6 50 12

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
/*
3
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
 *
15
 * This software consists of voluntary contributions made by many individuals
16
 * and is licensed under the MIT license. For more information, see
17
 * <http://www.doctrine-project.org>.
18
 */
19
20
namespace Doctrine\DBAL\Driver\SQLAnywhere;
21
22
use Doctrine\DBAL\Driver\AbstractDriverException;
23
24
/**
25
 * SAP Sybase SQL Anywhere driver exception.
26
 *
27
 * @author Steve Müller <[email protected]>
28
 * @link   www.doctrine-project.org
29
 * @since  2.5
30
 */
31
class SQLAnywhereException extends AbstractDriverException
32
{
33
    /**
34
     * Helper method to turn SQL Anywhere error into exception.
35
     *
36
     * @param resource|null $conn The SQL Anywhere connection resource to retrieve the last error from.
37
     * @param resource|null $stmt The SQL Anywhere statement resource to retrieve the last error from.
38
     *
39
     * @return SQLAnywhereException
40
     *
41
     * @throws \InvalidArgumentException
42
     */
43
    public static function fromSQLAnywhereError($conn = null, $stmt = null)
44
    {
45 View Code Duplication
        if (null !== $conn && ! (is_resource($conn))) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
46
            throw new \InvalidArgumentException('Invalid SQL Anywhere connection resource given: ' . $conn);
47
        }
48
49 View Code Duplication
        if (null !== $stmt && ! (is_resource($stmt))) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
50
            throw new \InvalidArgumentException('Invalid SQL Anywhere statement resource given: ' . $stmt);
51
        }
52
53
        $state   = $conn ? sasql_sqlstate($conn) : sasql_sqlstate();
0 ignored issues
show
Bug introduced by
The function sasql_sqlstate was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

53
        $state   = $conn ? /** @scrutinizer ignore-call */ sasql_sqlstate($conn) : sasql_sqlstate();
Loading history...
54
        $code    = null;
55
        $message = null;
56
57
        /**
58
         * Try retrieving the last error from statement resource if given
59
         */
60
        if ($stmt) {
61
            $code    = sasql_stmt_errno($stmt);
0 ignored issues
show
Bug introduced by
The function sasql_stmt_errno was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

61
            $code    = /** @scrutinizer ignore-call */ sasql_stmt_errno($stmt);
Loading history...
62
            $message = sasql_stmt_error($stmt);
0 ignored issues
show
Bug introduced by
The function sasql_stmt_error was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

62
            $message = /** @scrutinizer ignore-call */ sasql_stmt_error($stmt);
Loading history...
63
        }
64
65
        /**
66
         * Try retrieving the last error from the connection resource
67
         * if either the statement resource is not given or the statement
68
         * resource is given but the last error could not be retrieved from it (fallback).
69
         * Depending on the type of error, it is sometimes necessary to retrieve
70
         * it from the connection resource even though it occurred during
71
         * a prepared statement.
72
         */
73
        if ($conn && ! $code) {
74
            $code    = sasql_errorcode($conn);
0 ignored issues
show
Bug introduced by
The function sasql_errorcode was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

74
            $code    = /** @scrutinizer ignore-call */ sasql_errorcode($conn);
Loading history...
75
            $message = sasql_error($conn);
0 ignored issues
show
Bug introduced by
The function sasql_error was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

75
            $message = /** @scrutinizer ignore-call */ sasql_error($conn);
Loading history...
76
        }
77
78
        /**
79
         * Fallback mode if either no connection resource is given
80
         * or the last error could not be retrieved from the given
81
         * connection / statement resource.
82
         */
83
        if ( ! $conn || ! $code) {
84
            $code    = sasql_errorcode();
85
            $message = sasql_error();
86
        }
87
88
        if ($message) {
89
            return new self('SQLSTATE [' . $state . '] [' . $code . '] ' . $message, $state, $code);
90
        }
91
92
        return new self('SQL Anywhere error occurred but no error message was retrieved from driver.', $state, $code);
93
    }
94
}
95