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

ImportSql.class.php « import « plugins « libraries - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02a30f94b6394b95a8965967deeee2f469672567 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * SQL import plugin for phpMyAdmin
 *
 * @package    PhpMyAdmin-Import
 * @subpackage SQL
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/* Get the import interface */
require_once 'libraries/plugins/ImportPlugin.class.php';

/**
 * Handles the import for the SQL format
 *
 * @package    PhpMyAdmin-Import
 * @subpackage SQL
 */
class ImportSql extends ImportPlugin
{
    /**
     * Constructor
     */
    public function __construct()
    {
        $this->setProperties();
    }

    /**
     * Sets the import plugin properties.
     * Called in the constructor.
     *
     * @return void
     */
    protected function setProperties()
    {
        $props = 'libraries/properties/';
        include_once "$props/plugins/ImportPluginProperties.class.php";
        include_once "$props/options/groups/OptionsPropertyRootGroup.class.php";
        include_once "$props/options/groups/OptionsPropertyMainGroup.class.php";
        include_once "$props/options/items/SelectPropertyItem.class.php";
        include_once "$props/options/items/BoolPropertyItem.class.php";

        $importPluginProperties = new ImportPluginProperties();
        $importPluginProperties->setText('SQL');
        $importPluginProperties->setExtension('sql');
        $importPluginProperties->setOptionsText(__('Options'));

        $compats = $GLOBALS['dbi']->getCompatibilities();
        if (count($compats) > 0) {
            $values = array();
            foreach ($compats as $val) {
                $values[$val] = $val;
            }

            // create the root group that will be the options field for
            // $importPluginProperties
            // this will be shown as "Format specific options"
            $importSpecificOptions = new OptionsPropertyRootGroup();
            $importSpecificOptions->setName("Format Specific Options");

            // general options main group
            $generalOptions = new OptionsPropertyMainGroup();
            $generalOptions->setName("general_opts");
            // create primary items and add them to the group
            $leaf = new SelectPropertyItem();
            $leaf->setName("compatibility");
            $leaf->setText(__('SQL compatibility mode:'));
            $leaf->setValues($values);
            $leaf->setDoc(
                array(
                    'manual_MySQL_Database_Administration',
                    'Server_SQL_mode',
                )
            );
            $generalOptions->addProperty($leaf);
            $leaf = new BoolPropertyItem();
            $leaf->setName("no_auto_value_on_zero");
            $leaf->setText(
                __('Do not use <code>AUTO_INCREMENT</code> for zero values')
            );
            $leaf->setDoc(
                array(
                    'manual_MySQL_Database_Administration',
                    'Server_SQL_mode',
                    'sqlmode_no_auto_value_on_zero'
                )
            );
            $generalOptions->addProperty($leaf);

            // add the main group to the root group
            $importSpecificOptions->addProperty($generalOptions);
            // set the options for the import plugin property item
            $importPluginProperties->setOptions($importSpecificOptions);
        }

        $this->properties = $importPluginProperties;
    }

    /**
     * Handles the whole import logic
     *
     * @param array &$sql_data 2-element array with sql data
     *
     * @return void
     */
    public function doImport(&$sql_data = array())
    {
        global $error, $timeout_passed;

        /** @var PMA_String $pmaString */
        $pmaString = $GLOBALS['PMA_String'];

        $buffer = '';
        // Defaults for parser
        $sql = '';
        $start_pos = 0;
        $posInQueryString = 0;
        $len= 0;
        $big_value = 2147483647;
        // include the space because it's mandatory
        $delimiter_keyword = 'DELIMITER ';
        $length_of_delimiter_keyword = $pmaString->strlen($delimiter_keyword);

        if (isset($_POST['sql_delimiter'])) {
            $sql_delimiter = $_POST['sql_delimiter'];
        } else {
            $sql_delimiter = ';';
        }

        // Handle compatibility options
        $sql_modes = array();
        if (isset($_REQUEST['sql_compatibility'])
            && 'NONE' != $_REQUEST['sql_compatibility']
        ) {
            $sql_modes[] = $_REQUEST['sql_compatibility'];
        }
        if (isset($_REQUEST['sql_no_auto_value_on_zero'])) {
            $sql_modes[] = 'NO_AUTO_VALUE_ON_ZERO';
        }
        if (count($sql_modes) > 0) {
            $GLOBALS['dbi']->tryQuery(
                'SET SQL_MODE="' . implode(',', $sql_modes) . '"'
            );
        }
        unset($sql_modes);

        /**
         * will be set in PMA_importGetNextChunk()
         *
         * @global boolean $GLOBALS['finished']
         */
        $GLOBALS['finished'] = false;

        while (! ($GLOBALS['finished'] && $posInQueryString >= $len)
            && ! $error
            && ! $timeout_passed
        ) {
            $data = PMA_importGetNextChunk();
            if ($data === false) {
                // subtract data we didn't handle yet and stop processing
                $GLOBALS['offset'] -= $pmaString->strlen($buffer);
                break;
            } elseif ($data === true) {
                // Handle rest of buffer
            } else {
                // Append new data to buffer
                $buffer .= $data;
                // free memory
                unset($data);
                // Do not parse string when we're not at the end
                // and don't have ; inside
                if ($pmaString->strpos($buffer, $sql_delimiter, $posInQueryString) === false
                    && ! $GLOBALS['finished']
                ) {
                    continue;
                }
            }

            // Convert CR (but not CRLF) to LF otherwise all queries
            // may not get executed on some platforms
            $buffer = preg_replace("/\r($|[^\n])/", "\n$1", $buffer);

            // Current length of our buffer
            $len = $pmaString->strlen($buffer);

            // Grab some SQL queries out of it
            while ($posInQueryString < $len) {
                $found_delimiter = false;
                // Find first interesting character
                $old_i = $posInQueryString;
                // this is about 7 times faster that looking for each sequence i
                // one by one with strpos()
                $posPattern = $pmaString->pregStrpos(
                    '/(\'|"|#|-- |\/\*|`|(?i)(?<![A-Z0-9_])'
                    . $delimiter_keyword . ')/',
                    $buffer,
                    $posInQueryString
                );
                if (false !== $posPattern) {
                    // in $matches, index 0 contains the match for the complete
                    // expression but we don't use it
                    $first_position = $posPattern;
                } else {
                    $first_position = $big_value;
                }

                // the cost of doing this one with preg_match() would be too high
                $first_sql_delimiter = $pmaString->strpos(
                    $buffer,
                    $sql_delimiter,
                    $posInQueryString
                );
                if ($first_sql_delimiter === false) {
                    $first_sql_delimiter = $big_value;
                } else {
                    $found_delimiter = true;
                }

                // set $i to the position of the first quote,
                // comment.start or delimiter found
                $posInQueryString = min($first_position, $first_sql_delimiter);

                if ($posInQueryString == $big_value) {
                    // none of the above was found in the string

                    $posInQueryString = $old_i;
                    if (! $GLOBALS['finished']) {
                        break;
                    }
                    // at the end there might be some whitespace...
                    if (trim($buffer) == '') {
                        $buffer = '';
                        $len = 0;
                        break;
                    }
                    // We hit end of query, go there!
                    $posInQueryString = $pmaString->strlen($buffer) - 1;
                }

                // Grab current character
                //$ch = $buffer[$i]; //Don't use this syntax, because of UTF8 strings
                $ch = $pmaString->substr($buffer, $posInQueryString, 1);

                // Quotes
                if ($pmaString->strpos('\'"`', $ch) !== false) {
                    $quote = $ch;
                    $endq = false;
                    while (! $endq) {
                        // Find next quote
                        $posQuote = $pmaString
                            ->strpos($buffer, $quote, $posInQueryString + 1);
                        /*
                         * Behave same as MySQL and accept end of query as end
                         * of backtick.
                         * I know this is sick, but MySQL behaves like this:
                         *
                         * SELECT * FROM `table
                         *
                         * is treated like
                         *
                         * SELECT * FROM `table`
                         */
                        if ($posQuote === false && $quote == '`'
                            && $found_delimiter
                        ) {
                            $posQuote = $first_sql_delimiter - 1;
                        } elseif ($posQuote === false) {// No quote? Too short string
                            // We hit end of string => unclosed quote,
                            // but we handle it as end of query
                            list($endq, $posInQueryString) = $this
                                ->getEndQuoteAndPos($len, $endq, $posInQueryString);
                            $found_delimiter = false;
                            break;
                        }
                        // Was not the quote escaped?
                        $posEscape = $posQuote - 1;
                        while ($pmaString->substr($buffer, $posEscape, 1) == '\\') {
                            $posEscape--;
                        }
                        // Even count means it was not escaped
                        $endq = (((($posQuote - 1) - $posEscape) % 2) == 0);
                        // Skip the string
                        $posInQueryString = $posQuote;

                        if ($first_sql_delimiter < $posQuote) {
                            $found_delimiter = false;
                        }
                    }
                    if (! $endq) {
                        break;
                    }
                    $posInQueryString++;
                    // Aren't we at the end?
                    if ($GLOBALS['finished'] && $posInQueryString == $len) {
                        $posInQueryString--;
                    } else {
                        continue;
                    }
                }

                // Not enough data to decide
                if ((($posInQueryString == ($len - 1) && ($ch == '-' || $ch == '/'))
                    || ($posInQueryString == ($len - 2) && (($ch == '-'
                    && $pmaString->substr($buffer, $posInQueryString + 1, 1) == '-')
                    || ($ch == '/'
                    && $pmaString->substr($buffer, $posInQueryString + 1, 1) == '*'))))
                    && ! $GLOBALS['finished']
                ) {
                    break;
                }

                // Comments
                if ($ch == '#'
                    || ($posInQueryString < ($len - 1) && $ch == '-'
                    && $pmaString->substr($buffer, $posInQueryString + 1, 1) == '-'
                    && (($posInQueryString < ($len - 2)
                    && $pmaString->substr($buffer, $posInQueryString + 2, 1) <= ' ')
                    || ($posInQueryString == ($len - 1) && $GLOBALS['finished'])))
                    || ($posInQueryString < ($len - 1) && $ch == '/'
                    && $pmaString->substr($buffer, $posInQueryString + 1, 1) == '*')
                ) {
                    // Copy current string to SQL
                    if ($start_pos != $posInQueryString) {
                        $sql .= $pmaString->substr(
                            $buffer,
                            $start_pos,
                            $posInQueryString - $start_pos
                        );
                    }
                    // Skip the rest
                    $start_of_comment = $posInQueryString;
                    // do not use PHP_EOL here instead of "\n", because the export
                    // file might have been produced on a different system
                    $posInQueryString = $pmaString->strpos(
                        $buffer,
                        $ch == '/' ? '*/' : "\n",
                        $posInQueryString
                    );
                    // didn't we hit end of string?
                    if ($posInQueryString === false) {
                        if ($GLOBALS['finished']) {
                            $posInQueryString = $len - 1;
                        } else {
                            break;
                        }
                    }
                    // Skip *
                    if ($ch == '/') {
                        $posInQueryString++;
                    }
                    // Skip last char
                    $posInQueryString++;
                    // We need to send the comment part in case we are defining
                    // a procedure or function and comments in it are valuable
                    $sql .= $pmaString->substr(
                        $buffer,
                        $start_of_comment,
                        $posInQueryString - $start_of_comment
                    );
                    // Next query part will start here
                    $start_pos = $posInQueryString;
                    // Aren't we at the end?
                    if ($posInQueryString == $len) {
                        $posInQueryString--;
                    } else {
                        continue;
                    }
                }
                // Change delimiter, if redefined, and skip it
                // (don't send to server!)
                if (($posInQueryString + $length_of_delimiter_keyword < $len)
                    && $pmaString->strtoupper(
                        $pmaString->substr($buffer, $posInQueryString, $length_of_delimiter_keyword)
                    ) == $delimiter_keyword
                ) {
                     // look for EOL on the character immediately after 'DELIMITER '
                     // (see previous comment about PHP_EOL)
                    $new_line_pos = $pmaString->strpos(
                        $buffer,
                        "\n",
                        $posInQueryString + $length_of_delimiter_keyword
                    );
                    // it might happen that there is no EOL
                    if (false === $new_line_pos) {
                        $new_line_pos = $len;
                    }
                    $sql_delimiter = $pmaString->substr(
                        $buffer,
                        $posInQueryString + $length_of_delimiter_keyword,
                        $new_line_pos - $posInQueryString - $length_of_delimiter_keyword
                    );
                    $posInQueryString = $new_line_pos + 1;
                    // Next query part will start here
                    $start_pos = $posInQueryString;
                    continue;
                }

                // End of SQL
                if ($found_delimiter
                    || ($GLOBALS['finished']
                    && ($posInQueryString == $len - 1))
                ) {
                    $tmp_sql = $sql;
                    if ($start_pos < $len) {
                        $length_to_grab = $posInQueryString - $start_pos;

                        if (! $found_delimiter) {
                            $length_to_grab++;
                        }
                        $tmp_sql .= $pmaString->substr(
                            $buffer,
                            $start_pos,
                            $length_to_grab
                        );
                        unset($length_to_grab);
                    }
                    // Do not try to execute empty SQL
                    if (! preg_match('/^([\s]*;)*$/', trim($tmp_sql))) {
                        $sql = $tmp_sql;
                        PMA_importRunQuery(
                            $sql,
                            $pmaString->substr(
                                $buffer,
                                0,
                                $posInQueryString + $pmaString->strlen($sql_delimiter)
                            ),
                            false,
                            $sql_data
                        );
                        $buffer = $pmaString->substr(
                            $buffer,
                            $posInQueryString + $pmaString->strlen($sql_delimiter)
                        );
                        // Reset parser:
                        $len = $pmaString->strlen($buffer);
                        $sql = '';
                        $posInQueryString = 0;
                        $start_pos = 0;
                        // Any chance we will get a complete query?
                        //if ((strpos($buffer, ';') === false)
                        //&& ! $GLOBALS['finished']) {
                        if ($pmaString->strpos($buffer, $sql_delimiter) === false
                            && ! $GLOBALS['finished']
                        ) {
                            break;
                        }
                    } else {
                        $posInQueryString++;
                        $start_pos = $posInQueryString;
                    }
                }
            } // End of parser loop
        } // End of import loop
        // Commit any possible data in buffers
        PMA_importRunQuery(
            '',
            $pmaString->substr($buffer, 0, $len),
            false,
            $sql_data
        );
        PMA_importRunQuery('', '', false, $sql_data);
    }

    /**
     * Get end quote and position
     *
     * @param int  $len      Length
     * @param bool $endq     End quote
     * @param int  $position Position
     *
     * @return array End quote, position
     */
    protected function getEndQuoteAndPos($len, $endq, $position)
    {
        if ($GLOBALS['finished']) {
            $endq = true;
            $position = $len - 1;
        }
        return array($endq, $position);
    }
}