X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=scripts%2Fmysql2sql;h=3766c971ba0499fb49c9ef6d54273a7a314673a2;hb=6f433a4531f0e301f3534de7f0278afbcf79d50e;hp=5ba8fd741e1f021e7133aa9f79393c108f161505;hpb=dbc9220a2b29725f94637607f8d8b00c762deb67;p=sqlconvert.git diff --git a/scripts/mysql2sql b/scripts/mysql2sql index 5ba8fd7..3766c97 100755 --- a/scripts/mysql2sql +++ b/scripts/mysql2sql @@ -8,8 +8,8 @@ import sys from sqlparse.compat import text_type from sqlconvert.print_tokens import print_tokens -from sqlconvert.process_mysql import requote_names -from sqlconvert.process_tokens import StatementGrouper +from sqlconvert.process_mysql import is_directive_statement, process_statement +from sqlconvert.process_tokens import is_newline_statement, StatementGrouper from m_lib.defenc import default_encoding from m_lib.pbar.tty_pbar import ttyProgressBar @@ -25,7 +25,7 @@ def get_fsize(fp): return size -def main(infile, encoding, outfile, output_encoding, use_pbar): +def main(infile, encoding, outfile, output_encoding, use_pbar, quoting_style): if use_pbar: size = get_fsize(infile) if size is None: @@ -39,6 +39,7 @@ def main(infile, encoding, outfile, output_encoding, use_pbar): cur_pos = 0 grouper = StatementGrouper(encoding=encoding) + got_directive = False for line in infile: if use_pbar: if isinstance(line, text_type): @@ -47,9 +48,15 @@ def main(infile, encoding, outfile, output_encoding, use_pbar): cur_pos += len(line) pbar.display(cur_pos) grouper.process_line(line) - if grouper.statements: - for statement in grouper.get_statements(): - requote_names(statement) + for statement in grouper.get_statements(): + if got_directive and is_newline_statement(statement): + # Condense a sequence of newlines after a /*! directive */; + got_directive = False + continue + got_directive = is_directive_statement(statement) + if got_directive: + continue + for statement in process_statement(statement, quoting_style): print_tokens(statement, outfile=outfile, encoding=output_encoding) tokens = grouper.close() @@ -69,6 +76,13 @@ if __name__ == '__main__': help='separate output encoding, default is the same ' 'as -e except for console; for console output ' 'charset from the current locale is used') + parser.add_argument('-m', '--mysql', action='store_true', + help='MySQL/MariaDB quoting style') + parser.add_argument('-p', '--pg', '--postgres', action='store_true', + help='PostgreSQL quoting style') + parser.add_argument('-s', '--sqlite', action='store_true', + help='Generic SQL/SQLite quoting style; ' + 'this is the default') parser.add_argument('-o', '--outfile', help='output file name') parser.add_argument('-P', '--no-pbar', action='store_true', help='inhibit progress bar') @@ -76,6 +90,13 @@ if __name__ == '__main__': parser.add_argument('output_file', nargs='?', help='output file name') args = parser.parse_args() + if int(args.mysql) + int(args.postgres) + int(args.sqlite) > 1: + print("Error: options -m/-p/-s are mutually incompatible, " + "use only one of them", + file=sys.stderr) + parser.print_help() + sys.exit(1) + if args.infile: if args.infile == '-': infile = sys.stdin @@ -120,4 +141,12 @@ if __name__ == '__main__': infile.close() raise - main(infile, args.encoding, outfile, output_encoding, not args.no_pbar) + if args.mysql: + quoting_style = 'mysql' + elif args.postgres: + quoting_style = 'postgres' + else: + quoting_style = 'sqlite' + + main(infile, args.encoding, outfile, output_encoding, not args.no_pbar, + quoting_style)