diff options
author | TinWoodman92 <chrhodgden@gmail.com> | 2023-06-25 08:10:27 -0500 |
---|---|---|
committer | TinWoodman92 <chrhodgden@gmail.com> | 2023-06-25 08:10:27 -0500 |
commit | 7bdb2353587111754ce351c595412b7f248aee2b (patch) | |
tree | 1c91e125027597da2ee8bb67e5bb22d8b9815aa8 | |
parent | 126c31f0da53d1d9be67291feb41ebe4aaa2c704 (diff) |
consolidated open and close methods
-rw-r--r-- | dialoguer/__init__.py | 23 | ||||
-rw-r--r-- | test_import_variable.py | 1 |
2 files changed, 7 insertions, 17 deletions
diff --git a/dialoguer/__init__.py b/dialoguer/__init__.py index f83e44a..ddff309 100644 --- a/dialoguer/__init__.py +++ b/dialoguer/__init__.py @@ -18,7 +18,7 @@ server.bind(ADDR) # could there be a defined sub-class that has all the sockets connection functions? # then the dialogue class launches and connects and loops class Dialogue: - def __init__(self, file_name): + def __init__(self, file_name, wait = True): self.file_name = file_name self.file_path = os.path.join(os.getcwd(), file_name) self.ext = file_name.split('.')[-1] @@ -27,6 +27,8 @@ class Dialogue: self.addr = None self.connected = False self.active = False + if wait: + self.open() def execute_context_script(self): context_file = __file__.replace('__init__.py', 'context_script.r') @@ -47,9 +49,7 @@ class Dialogue: if not self.connected: self.conn.close() - # I could call this method in the init method - # perhaps use a wait arg? there are two points it could wait. - def launch_and_connect(self): + def open(self): self._connect = threading.Thread(target=self.establish_connection) self._launch = threading.Thread(target=self.execute_context_script) @@ -61,11 +61,6 @@ class Dialogue: #This was not updated. self.active = (data == 'TRUE') - def open(self, wait = True): - self._open = threading.Thread(target=self.launch_and_connect) - if wait: self._open.run() - else: self._open.start() - def send(self, data, send_data_type = False): if send_data_type: data_type_name = type(data) @@ -102,16 +97,12 @@ class Dialogue: def evaluate_expression(self, expr): pass - #perhaps should consolidate the last two methods here - def disconnect_and_close(self): + def close(self): self.send('!DISCONNECT') self._launch.join() self.conn.close() + self.conn = None + self.addr = None self.connected = False self.active = False - def close(self, wait = True): - self._close = threading.Thread(target=self.disconnect_and_close) - if wait: self._close.run() - else: self._close.start() - diff --git a/test_import_variable.py b/test_import_variable.py index 4fa45e9..d6fd683 100644 --- a/test_import_variable.py +++ b/test_import_variable.py @@ -14,7 +14,6 @@ class TestImportVariable(unittest.TestCase): def setUp(self): self.src_fil_r = dialoguer.Dialogue('test_import_variable.r') - self.src_fil_r.open() def tearDown(self): self.src_fil_r.close() |