schemadiff.py
author Radek Brich <radek.brich@devl.cz>
Wed, 10 Aug 2011 18:34:54 +0200
changeset 6 4ab077c93b2d
parent 5 57cf8fdff5ed
child 7 685b20d2d3ab
permissions -rwxr-xr-x
Add table diff tool.

#!/usr/bin/env python3.2

from pgtools import pgmanager, pgbrowser, pgdiff
from toolbase import SrcDstTool


class SchemaDiffTool(SrcDstTool):
    def __init__(self):
        SrcDstTool.__init__(self, name='schemadiff', desc='Database schema diff.')
        
        self.parser.add_argument('-s', dest='schema', nargs='*', help='Schema filter')
        self.parser.add_argument('-t', dest='table', nargs='*', help='Table filter')
        
        self.init()

    def main(self):
        srcbrowser = pgbrowser.PgBrowser(self.pgm.get_conn('src'))
        dstbrowser = pgbrowser.PgBrowser(self.pgm.get_conn('dst'))
        
        pgd = pgdiff.PgDiff(srcbrowser, dstbrowser)

        if self.args.schema:
            pgd.filter_schemas(include=self.args.schema)
        
        if self.args.table:
            pgd.filter_tables(include=self.args.table)

        pgd.print_diff()


tool = SchemaDiffTool()
tool.main()