1
0
Fork 0
pgcli/pgcli/main.py

89 lines
3.3 KiB
Python
Raw Normal View History

2014-10-12 17:31:54 +00:00
#!/usr/bin/env python
from __future__ import unicode_literals
from __future__ import print_function
2014-10-12 22:07:34 +00:00
2014-11-27 23:02:54 +00:00
import os.path
2014-11-23 23:31:34 +00:00
2014-10-12 22:07:34 +00:00
import click
2014-10-12 17:31:54 +00:00
2014-10-12 17:45:35 +00:00
from prompt_toolkit import CommandLineInterface, AbortAction, Exit
2014-10-12 17:31:54 +00:00
from prompt_toolkit.layout import Layout
from prompt_toolkit.layout.prompt import DefaultPrompt
from prompt_toolkit.layout.menus import CompletionsMenu
2014-11-23 23:31:34 +00:00
from prompt_toolkit.history import FileHistory
2014-11-24 07:30:17 +00:00
from pygments.lexers.sql import SqlLexer
from tabulate import tabulate
import sqlparse
from .pgcompleter import PGCompleter
from .pgstyle import PGStyle
from .pgexecute import PGExecute
from .pgline import PGLine
from .config import write_default_config, load_config
2014-10-12 17:31:54 +00:00
2014-10-12 22:07:34 +00:00
@click.command()
@click.option('-h', '--host', default='localhost')
2014-11-22 07:43:11 +00:00
@click.option('-p', '--port', default=5432)
@click.option('-U', '--user', prompt=True, envvar='USER')
2014-11-23 08:09:00 +00:00
@click.password_option('-W', '--password', default='',
confirmation_prompt=False)
@click.argument('database', envvar='USER')
def cli(database, user, password, host, port):
2014-11-27 23:02:54 +00:00
from pgcli import __file__ as package_root
package_root = os.path.dirname(package_root)
default_config = os.path.join(package_root, 'pgclirc')
# Write default config.
write_default_config(default_config, '~/.pgclirc')
# Load config.
config = load_config('~/.pgclirc')
# Connect to the database.
2014-11-23 08:09:00 +00:00
try:
pgexecute = PGExecute(database, user, password, host, port)
except Exception as e:
click.secho(e.message, err=True, fg='red')
exit(1)
layout = Layout(before_input=DefaultPrompt('%s> ' % pgexecute.dbname),
menus=[CompletionsMenu()],
2014-10-12 17:45:35 +00:00
lexer=SqlLexer)
2014-11-28 06:06:31 +00:00
completer = PGCompleter(config.getboolean('main', 'smart_completion'))
2014-11-29 06:13:51 +00:00
completer.extend_special_commands(pgexecute.special_commands.keys())
completer.extend_table_names(pgexecute.tables())
completer.extend_column_names(pgexecute.all_columns())
2014-12-02 05:55:13 +00:00
line = PGLine(completer=completer,
2014-11-27 23:02:54 +00:00
history=FileHistory(os.path.expanduser('~/.pgcli-history')))
cli = CommandLineInterface(style=PGStyle, layout=layout, line=line)
2014-10-12 17:31:54 +00:00
2014-10-12 17:45:35 +00:00
try:
while True:
cli.layout.before_input = DefaultPrompt('%s> ' % pgexecute.dbname)
2014-10-12 17:45:35 +00:00
document = cli.read_input(on_exit=AbortAction.RAISE_EXCEPTION)
2014-12-06 06:04:39 +00:00
# The reason we check here instead of inside the pgexecute is
# because we want to raise the Exit exception which will be caught
# by the try/except block that wraps the pgexecute.run() statement.
if (document.text.strip().lower() == 'exit'
or document.text.strip().lower() == 'quit'):
2014-12-06 06:04:39 +00:00
raise Exit
2014-11-23 08:09:00 +00:00
try:
rows, headers, status = pgexecute.run(document.text)
if rows:
print(tabulate(rows, headers, tablefmt='psql'))
print(status)
2014-11-23 08:09:00 +00:00
except Exception as e:
click.secho(e.message, err=True, fg='red')
# Refresh the table names and column names if necessary.
if need_completion_refresh(document.text):
completer.extend_table_names(pgexecute.tables())
completer.extend_column_names(pgexecute.all_columns())
2014-10-12 17:45:35 +00:00
except Exit:
print ('GoodBye!')
def need_completion_refresh(sql):
parsed = sqlparse.parse(sql)
return parsed and parsed[0].token_first().value in ('alter', 'create')