/home/mjc1/public_html/ej_sql/libraries/import/sql.php


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
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * SQL import plugin for phpMyAdmin
 *
 * @version $Id$
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
 *
 */
if (isset($plugin_list)) {
    
$plugin_list['sql'] = array(
        
'text' => 'strSQL',
        
'extension' => 'sql',
        
'options_text' => 'strOptions',
        );
    
$compats PMA_DBI_getCompatibilities();
    if (
count($compats) > 0) {
        
$values = array();
        foreach(
$compats as $val) {
            
$values[$val] = $val;
        }
        
$plugin_list['sql']['options'] = array(
            array(
'type' => 'select''name' => 'compatibility''text' => 'strSQLCompatibility''values' => $values'doc' => array('manual_MySQL_Database_Administration''Server_SQL_mode'))
            );
    }

    
/* We do not define function when plugin is just queried for information above */
    
return;
}

$buffer '';
// Defaults for parser
$sql '';
$start_pos 0;
$i 0;
$len0;
if (isset(
$_POST['sql_delimiter'])) {
    
$sql_delimiter $_POST['sql_delimiter'];
} else {
    
$sql_delimiter ';';
}

// Handle compatibility option
if (isset($_REQUEST['sql_compatibility'])) {
    
PMA_DBI_try_query('SET SQL_MODE="' $_REQUEST['sql_compatibility'] . '"');
}
while (!(
$finished && $i >= $len) && !$error && !$timeout_passed) {
    
$data PMA_importGetNextChunk();
    if (
$data === FALSE) {
        
// subtract data we didn't handle yet and stop processing
        
$offset -= 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 ((strpos($buffer$sql_delimiter$i) === FALSE) && !$finished)  {
            continue;
        }
    }
    
// Current length of our buffer
    
$len strlen($buffer);
    
// prepare an uppercase copy of buffer for PHP < 5
    // outside of the loop
    // (but on Windows and PHP 5.2.5, stripos() is very slow
    //  so prepare this buffer also in this case)
    
if (PMA_PHP_INT_VERSION 50000 || PMA_IS_WINDOWS) {
        
$buffer_upper strtoupper($buffer);
    }
    
// Grab some SQL queries out of it
     
while ($i $len) {
        
$found_delimiter false;
        
// Find first interesting character, several strpos seem to be faster than simple loop in php:
        //while (($i < $len) && (strpos('\'";#-/', $buffer[$i]) === FALSE)) $i++;
        //if ($i == $len) break;
        
$oi $i;
        
$big_value 2147483647;
        
$first_quote strpos($buffer'\''$i);
        if (
$first_quote === FALSE) {
            
$first_quote $big_value;
        }
        
$p2 strpos($buffer'"'$i);
        if (
$p2 === FALSE) {
            
$p2 $big_value;
        }
        
/**
         * @todo it's a shortcoming to look for a delimiter that might be
         *       inside quotes (or even double-quotes)
         */
        
$first_sql_delimiter strpos($buffer$sql_delimiter$i);
        if (
$first_sql_delimiter === FALSE) {
            
$first_sql_delimiter $big_value;
        } else {
            
$found_delimiter true;
        }
        
$p4 strpos($buffer'#'$i);
        if (
$p4 === FALSE) {
            
$p4 $big_value;
        }
        
$p5 strpos($buffer'--'$i);
        if (
$p5 === FALSE || $p5 >= ($len 2) || $buffer[$p5 2] > ' ') {
            
$p5 $big_value;
        }
        
$p6 strpos($buffer'/*'$i);
        if (
$p6 === FALSE) {
            
$p6 $big_value;
        }
        
$p7 strpos($buffer'`'$i);
        if (
$p7 === FALSE) {
            
$p7 $big_value;
        }
        
// catch also "delimiter"
        // stripos() very slow on Windows (at least on PHP 5.2.5)
        
if (PMA_PHP_INT_VERSION >= 50000 && ! PMA_IS_WINDOWS) {
            
$p8 stripos($buffer'DELIMITER'$i);
        } else {
            
$p8 strpos($buffer_upper'DELIMITER'$i);
        }
        if (
$p8 === FALSE || $p8 >= ($len 11) || $buffer[$p8 9] > ' ') {
            
$p8 $big_value;
        }
        
$i min ($first_quote$p2$first_sql_delimiter$p4$p5$p6$p7$p8);
        unset(
$first_quote$p2$p4$p5$p6$p7$p8);
        if (
$i == $big_value) {
            
$i $oi;
            if (!
$finished) {
                break;
            }
            
// at the end there might be some whitespace...
            
if (trim($buffer) == '') {
                
$buffer '';
                
$len 0;
                break;
            }
            
// We hit end of query, go there!
            
$i strlen($buffer) - 1;
        }

        
// Grab current character
        
$ch $buffer[$i];

        
// Quotes
        
if (strpos('\'"`'$ch) !== FALSE) {
            
$quote $ch;
            
$endq FALSE;
            while (!
$endq) {
                
// Find next quote
                
$pos strpos($buffer$quote$i 1);
                
// No quote? Too short string
                
if ($pos === FALSE) {
                    
// We hit end of string => unclosed quote, but we handle it as end of query
                    
if ($finished) {
                        
$endq TRUE;
                        
$i $len 1;
                    }
                    
$found_delimiter false;
                    break;
                }
                
// Was not the quote escaped?
                
$j $pos 1;
                while (
$buffer[$j] == '\\'$j--;
                
// Even count means it was not escaped
                
$endq = (((($pos 1) - $j) % 2) == 0);
                
// Skip the string
                
$i $pos;

                if (
$first_sql_delimiter $pos) {
                    
$found_delimiter false;
                }
            }
            if (!
$endq) {
                break;
            }
            
$i++;
            
// Aren't we at the end?
            
if ($finished && $i == $len) {
                
$i--;
            } else {
                continue;
            }
        }

        
// Not enough data to decide
        
if ((($i == ($len 1) && ($ch == '-' || $ch == '/'))
          || (
$i == ($len 2) && (($ch == '-' && $buffer[$i 1] == '-')
            || (
$ch == '/' && $buffer[$i 1] == '*')))) && !$finished) {
            break;
        }

        
// Comments
        
if ($ch == '#'
                
|| ($i < ($len 1) && $ch == '-' && $buffer[$i 1] == '-' && (($i < ($len 2) && $buffer[$i 2] <= ' ') || ($i == ($len 1) && $finished)))
                || (
$i < ($len 1) && $ch == '/' && $buffer[$i 1] == '*')
                ) {
            
// Copy current string to SQL
            
if ($start_pos != $i) {
                
$sql .= substr($buffer$start_pos$i $start_pos);
            }
            
// Skip the rest
            
$j $i;
            
$i strpos($buffer$ch == '/' '*/' "\n"$i);
            
// didn't we hit end of string?
            
if ($i === FALSE) {
                if (
$finished) {
                    
$i $len 1;
                } else {
                    break;
                }
            }
            
// Skip *
            
if ($ch == '/') {
                
// Check for MySQL conditional comments and include them as-is
                
if ($buffer[$j 2] == '!') {
                    
$comment substr($buffer$j 3$i $j 3);
                    if (
preg_match('/^[0-9]{5}/'$comment$version)) {
                        if (
$version[0] <= PMA_MYSQL_INT_VERSION) {
                            
$sql .= substr($comment5);
                        }
                    } else {
                        
$sql .= $comment;
                    }
                }
                
$i++;
            }
            
// Skip last char
            
$i++;
            
// Next query part will start here
            
$start_pos $i;
            
// Aren't we at the end?
            
if ($i == $len) {
                
$i--;
            } else {
                continue;
            }
        }
       
// Change delimiter, if redefined, and skip it (don't send to server!)
       
if ((strtoupper(substr($buffer$i9)) == "DELIMITER") && ($buffer[$i 9] <= ' ') && ($i<$len-11) && (!(strpos($buffer,"\n",$i+11)===FALSE))) {
           
$new_line_pos strpos($buffer"\n"$i 10);
           
$sql_delimiter substr($buffer$i+10$new_line_pos $i -10);
           
$i$new_line_pos 1;
           
// Next query part will start here
           
$start_pos $i;
           continue;
        }

        
// End of SQL
        
if ($found_delimiter || ($finished && ($i == $len 1))) {
            
$tmp_sql $sql;
            if (
$start_pos $len) {
                
$length_to_grab $i $start_pos;
                if (!
$found_delimiter) {
                    
$length_to_grab++;
                }
                
$tmp_sql .= 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($sqlsubstr($buffer0$i strlen($sql_delimiter)));
                
$buffer substr($buffer$i strlen($sql_delimiter));
                
// Reset parser:
                
$len strlen($buffer);
                
$sql '';
                
$i 0;
                
$start_pos 0;
                
// Any chance we will get a complete query?
                //if ((strpos($buffer, ';') === FALSE) && !$finished) {
                
if ((strpos($buffer$sql_delimiter) === FALSE) && !$finished) {
                    break;
                }
            } else {
                
$i++;
                
$start_pos $i;
            }
        }

    } 
// End of parser loop
// End of import loop
// Commit any possible data in buffers
PMA_importRunQuery(''substr($buffer0$len));
PMA_importRunQuery();
?>