From 9a0da726e2172321cdc1dcd21441f4ffc41e7931 Mon Sep 17 00:00:00 2001 From: bescoto Date: Mon, 23 Dec 2002 06:53:18 +0000 Subject: Major refactoring - avoid use of 'from XX import *' in favor of more normal 'import XXX' syntax. The previous way was an artifact from earlier versions where the whole program fit in one file. git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup/trunk@252 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109 --- rdiff-backup/rdiff_backup/SetConnections.py | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'rdiff-backup/rdiff_backup/SetConnections.py') diff --git a/rdiff-backup/rdiff_backup/SetConnections.py b/rdiff-backup/rdiff_backup/SetConnections.py index 3bdc36f..495aa87 100644 --- a/rdiff-backup/rdiff_backup/SetConnections.py +++ b/rdiff-backup/rdiff_backup/SetConnections.py @@ -25,6 +25,10 @@ the related connections. """ +import os +from log import Log +import Globals, FilenameMapping, connection, rpath + # This is the schema that determines how rdiff-backup will open a # pipe to the remote system. If the file is given as A::B, %s will # be substituted with A in the schema. @@ -68,7 +72,7 @@ def cmdpair2rp(cmd_pair): cmd, filename = cmd_pair if cmd: conn = init_connection(cmd) else: conn = Globals.local_connection - return RPath(conn, filename).normalize() + return rpath.RPath(conn, filename).normalize() def desc2cmd_pairs(desc_pair): """Return pair (remote_cmd, filename) from desc_pair""" @@ -127,7 +131,7 @@ def init_connection(remote_cmd): Log("Executing " + remote_cmd, 4) stdin, stdout = os.popen2(remote_cmd) conn_number = len(Globals.connections) - conn = PipeConnection(stdout, stdin, conn_number) + conn = connection.PipeConnection(stdout, stdin, conn_number) check_connection_version(conn, remote_cmd) Log("Registering connection %d" % conn_number, 7) @@ -138,7 +142,7 @@ def init_connection(remote_cmd): def check_connection_version(conn, remote_cmd): """Log warning if connection has different version""" try: remote_version = conn.Globals.get('version') - except ConnectionReadError, exception: + except connection.ConnectionReadError, exception: Log.FatalError("""%s Couldn't start up the remote connection by executing @@ -184,7 +188,7 @@ def init_connection_remote(conn_number): def add_redirected_conn(conn_number): """Run on server side - tell about redirected connection""" Globals.connection_dict[conn_number] = \ - RedirectedConnection(conn_number) + connection.RedirectedConnection(conn_number) def UpdateGlobal(setting_name, val): """Update value of global variable across all connections""" @@ -230,9 +234,3 @@ Local version: %s Remote version: %s""" % (Globals.version, version) else: print "Server OK" - -from log import * -from rpath import * -from connection import * -import Globals, FilenameMapping - -- cgit v1.2.1