Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setRodsErrorCodes.php « src « prods « irodsphp « 3rdparty « files_external « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5c4377384525434aa7e0e42db41bbfe0f1bb841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
$RODS_tree_root = dirname(__FILE__) . "/../../..";

$capi_error_table_file = $RODS_tree_root . "/lib/core/include/rodsErrorTable.h";
$prods_error_table_file = $RODS_tree_root . "/clients/prods/src/RodsErrorTable.inc.php";

// Add more error code here, if you wish. It will be added to the default
// RODS error code. Note that these errors code are for web server/client
// only. RODS server does not recongnize them.
$new_error_codes = array(
    array("GENERAL_PRODS_ERR", -3000000),
    array("PERR_INTERNAL_ERR", -3100000),
    array("PERR_UNEXPECTED_PACKET_FORMAT", -3101000),
    array("PERR_PATH_DOES_NOT_EXISTS", -3102000),
    array("PERR_UNSUPPORTED_PROTOCOL_SCHEME", -3103000),
    array("PERR_USER_INPUT_ERROR", -3104000),
    array("PERR_USER_INPUT_PATH_ERROR", -3105000),
    array("PERR_CONN_NOT_ACTIVE", -3106000)
);

$value_pairs = array();

$lines = explode("\n", file_get_contents($capi_error_table_file));

foreach ($lines as $line) {
    if (strlen($line) < 8) continue;
    if (substr($line, 0, 7) == '#define') {
        $rest = trim(substr($line, 7));
        $tokens = preg_split("/\s+/", $rest);
        if (count($tokens) < 2)
            continue;
        $val1 = NULL;
        $val2 = NULL;
        foreach ($tokens as $token) {
            if (strlen($token) > 3) {
                if (empty($val1)) $val1 = trim($token);
                else $val2 = trim($token);
            }
        }
        if ((!empty($val1)) && (!empty($val2))) {
            array_push($value_pairs, array($val1, $val2));
        }
    }
}

foreach ($new_error_codes as $new_code_pair) {
    if ((!is_array($new_code_pair)) || (count($new_code_pair) != 2))
        die("unexpected new_code_pair:$new_code_pair\n");
    array_push($value_pairs, $new_code_pair);
}

$outputstr = "<?php \n" .
    "/* This file is generated by setRodsErrorCodes.php. " .
    "   Please modify that file if you wish to update the " .
    "   error codes.            */\n";
$outputstr = $outputstr . '$GLOBALS[\'PRODS_ERR_CODES\']=array(' . "\n";
foreach ($value_pairs as $value_pair) {
    $val1 = $value_pair[0];
    $val2 = $value_pair[1];
    $outputstr = $outputstr . "  '$val1' => '$val2',\n";
}
$outputstr = $outputstr . ");\n";

$outputstr = $outputstr . '$GLOBALS[\'PRODS_ERR_CODES_REV\']=array(' . "\n";
foreach ($value_pairs as $value_pair) {
    $val1 = $value_pair[0];
    $val2 = $value_pair[1];
    $outputstr = $outputstr . "  '$val2' => '$val1',\n";
}
$outputstr = $outputstr . ");\n";

$outputstr = $outputstr . "?>\n";
file_put_contents($prods_error_table_file, $outputstr);

?>