Sat, 20 Jan 2018 14:04:51 +0000
Also listen to stdout
|
1
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
1 | # |
|
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
2 | # Borgend Backup instance |
|
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
3 | # |
|
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
4 | |
| 2 | 5 | import config |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
6 | import logging |
| 5 | 7 | import time |
| 2 | 8 | from instance import BorgInstance |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
9 | from queue import Queue |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
10 | from threading import Thread, Lock |
| 2 | 11 | |
| 6 | 12 | loglevel_translation={ |
| 13 | 'CRITICAL': logging.CRITICAL, | |
| 14 | 'ERROR': logging.ERROR, | |
| 15 | 'WARNING': logging.WARNING, | |
| 16 | 'DEBUG': logging.DEBUG, | |
| 17 | 'INFO': logging.INFO | |
| 18 | } | |
| 19 | ||
| 20 | def translate_loglevel(x): | |
| 21 | if x in loglevel_translation: | |
| 22 | return loglevel_translation[x] | |
| 23 | else: | |
| 24 | return logging.ERROR | |
| 25 | ||
|
1
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
26 | class Backup: |
|
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
27 | |
| 2 | 28 | def __decode_config(self, cfg): |
| 29 | loc0='backup target %d' % self.identifier | |
| 30 | ||
| 31 | self.name=config.check_string(cfg, 'name', 'Name', loc0) | |
| 32 | ||
| 33 | self.loc='backup target "%s"' % self.name | |
| 34 | ||
| 35 | self.repository=config.check_string(cfg, 'repository', | |
| 36 | 'Target repository', self.loc) | |
| 37 | ||
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
38 | self.archive_prefix=config.check_string(cfg, 'archive_prefix', |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
39 | 'Archive prefix', self.loc) |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
40 | |
| 2 | 41 | self.archive_template=config.check_string(cfg, 'archive_template', |
| 42 | 'Archive template', self.loc) | |
| 43 | ||
| 44 | self.backup_interval=config.check_nonneg_int(cfg, 'backup_interval', | |
| 45 | 'Backup interval', self.loc, | |
| 46 | config.defaults['backup_interval']) | |
| 47 | ||
| 48 | self.retry_interval=config.check_nonneg_int(cfg, 'retry_interval', | |
| 49 | 'Retry interval', self.loc, | |
| 50 | config.defaults['retry_interval']) | |
| 51 | ||
| 52 | self.paths=config.check_nonempty_list_of_strings(cfg, 'paths', 'Paths', self.loc) | |
| 53 | ||
| 6 | 54 | self.common_parameters=config.check_list_of_dicts(cfg, 'common_parameters', |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
55 | 'Borg parameters', self.loc, |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
56 | default=[]) |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
57 | |
| 6 | 58 | self.create_parameters=config.check_list_of_dicts(cfg, 'create_parameters', |
| 59 | 'Create parameters', self.loc, | |
| 60 | default=[]) | |
| 61 | ||
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
62 | self.prune_parameters=config.check_list_of_dicts(cfg, 'prune_parameters', |
| 6 | 63 | 'Prune parameters', self.loc, |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
64 | default=[]) |
| 2 | 65 | |
| 66 | ||
| 67 | def __init__(self, identifier, cfg): | |
| 68 | self.identifier=identifier | |
| 69 | ||
| 70 | self.__decode_config(cfg) | |
| 71 | ||
|
1
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
72 | self.config=config |
|
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
73 | self.lastrun=None |
| 5 | 74 | self.lastrun_success=None |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
75 | self.borg_instance=None |
| 5 | 76 | self.current_operation=None |
| 7 | 77 | self.thread_log=None |
| 78 | self.thread_err=None | |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
79 | self.lock=Lock() |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
80 | |
| 7 | 81 | def is_running(self): |
| 82 | with self.lock: | |
| 83 | running=self.borg_instance or self.thread_log or self.thread_err | |
| 84 | return running | |
| 85 | ||
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
86 | def __block_when_running(self): |
| 7 | 87 | running=self.is_running() |
| 88 | assert(not running) | |
| 2 | 89 | |
| 7 | 90 | def __log_listener(self): |
| 91 | logging.debug('Log listener thread waiting for entries') | |
| 92 | success=True | |
| 93 | for status in iter(self.borg_instance.read_log, None): | |
| 94 | logging.debug(str(status)) | |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
95 | t=status['type'] |
| 7 | 96 | #may_indicate_finished=False |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
97 | if t=='progress_percent': |
| 7 | 98 | #may_indicate_finished=True |
| 99 | # Temporary output | |
| 100 | if 'current' not in status: | |
| 101 | status['current']=0 | |
| 102 | if 'total' not in status: | |
| 103 | status['total']=0 | |
| 104 | print('%d / %d' % (status['current'], status['total'])) | |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
105 | elif t=='archive_progress': |
|
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
106 | pass |
|
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
107 | elif t=='progress_message': |
| 7 | 108 | #may_indicate_finished=True |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
109 | pass |
|
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
110 | elif t=='file_status': |
|
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
111 | pass |
|
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
112 | elif t=='log_message': |
| 6 | 113 | if 'levelname' not in status: |
| 114 | status['levelname']='ERROR' | |
| 115 | if 'message' not in status: | |
| 116 | status['message']='UNKNOWN' | |
| 117 | if 'name' not in status: | |
| 118 | status['name']='borg' | |
| 119 | logging.log(translate_loglevel(status['levelname']), | |
| 120 | status['name'] + ': ' + status['message']) | |
| 7 | 121 | # set success=False? |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
122 | elif t=='exception': |
| 7 | 123 | success=False |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
124 | elif t=='unparsed_error': |
| 7 | 125 | success=False |
| 6 | 126 | |
| 7 | 127 | #if (may_indicate_finished and 'finished' in status and |
| 128 | # status['finished']): | |
| 129 | # logging.info('Borg subprocess finished succesfully') | |
| 130 | # success=status['finished'] | |
| 131 | ||
| 132 | logging.debug('Waiting for borg subprocess to terminate in log thread') | |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
133 | |
| 6 | 134 | self.borg_instance.wait() |
| 135 | ||
| 7 | 136 | logging.debug('Borg subprocess terminated; terminating log listener thread') |
| 137 | ||
| 138 | with self.lock: | |
| 139 | self.thread_log=None | |
| 140 | self.__cleanup_if_both_listeners_terminated() | |
| 141 | ||
| 142 | ||
| 143 | def __result_listener(self): | |
| 144 | logging.debug('Result listener thread waiting for result') | |
| 145 | ||
| 146 | res=self.borg_instance.read_result() | |
| 147 | ||
| 148 | success=True | |
| 149 | ||
| 150 | logging.debug('Borg result: %s' % str(res)) | |
| 151 | ||
| 152 | if res==None: | |
| 153 | success=False | |
| 154 | ||
| 155 | logging.debug('Waiting for borg subprocess to terminate in result thread') | |
| 156 | ||
| 157 | self.borg_instance.wait() | |
| 158 | ||
| 159 | logging.debug('Borg subprocess terminated; terminating result listener thread') | |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
160 | |
| 5 | 161 | with self.lock: |
| 162 | if self.current_operation=='create': | |
| 163 | self.lastrun=self.time_started | |
| 164 | self.lastrun_success=success | |
| 7 | 165 | self.thread_res=None |
| 166 | self.__cleanup_if_both_listeners_terminated() | |
| 167 | ||
| 168 | def __cleanup_if_both_listeners_terminated(self): | |
| 169 | if self.thread_res==None and self.thread_log==None: | |
| 170 | logging.debug('Both threads terminated') | |
| 5 | 171 | self.borg_instance=None |
| 172 | self.current_operation=None | |
| 173 | self.time_started=None | |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
174 | |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
175 | def __launch(self, queue, operation, archive_or_repository, *args): |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
176 | |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
177 | inst=BorgInstance(operation, archive_or_repository, *args) |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
178 | inst.launch() |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
179 | |
| 7 | 180 | t_log=Thread(target=self.__log_listener) |
| 181 | t_log.daemon=True | |
| 2 | 182 | |
| 7 | 183 | t_res=Thread(target=self.__result_listener) |
| 184 | t_res.daemon=True | |
| 185 | ||
| 186 | self.thread_log=t_log | |
| 187 | self.thread_res=t_res | |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
188 | self.borg_instance=inst |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
189 | self.queue=queue |
| 5 | 190 | self.current_operation=operation |
| 191 | self.time_started=time.monotonic() | |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
192 | |
| 7 | 193 | t_log.start() |
| 194 | t_res.start() | |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
195 | |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
196 | def create(self, queue): |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
197 | self.__block_when_running() |
| 2 | 198 | |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
199 | archive="%s::%s%s" % (self.repository, |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
200 | self.archive_prefix, |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
201 | self.archive_template) |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
202 | |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
203 | self.__launch(queue, 'create', archive, |
| 6 | 204 | self.common_parameters+self.create_parameters, |
| 205 | self.paths) | |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
206 | |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
207 | def prune(self, queue): |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
208 | self.__block_when_running() |
|
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
209 | self.__launch(queue, 'prune', self.repository, |
| 6 | 210 | ([{'prefix': self.archive_prefix}] + |
| 211 | self.common_parameters + | |
| 212 | self.prune_parameters)) | |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
213 | |
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
214 | # TODO: Decide exact (manual) abort mechanism. Perhaps two stages |
|
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
215 | def abort(self): |
| 5 | 216 | with self.lock: |
| 217 | if self.borg_instance: | |
| 218 | self.borg_instance.terminate() | |
| 7 | 219 | thread_log=self.thread_log |
| 220 | thread_res=self.thread_res | |
| 221 | ||
| 222 | if thread_log: | |
| 223 | thread_log.terminate() | |
| 224 | ||
| 225 | if thread_res: | |
| 226 | thread_res.terminate() | |
| 227 | ||
|
4
d72c4844e791
Better borg output processing and some logging
Tuomo Valkonen <tuomov@iki.fi>
parents:
3
diff
changeset
|
228 | |
|
3
4cad934aa9ce
Can launch borg now; output not yet processed
Tuomo Valkonen <tuomov@iki.fi>
parents:
2
diff
changeset
|
229 | def join(self): |
| 7 | 230 | logging.debug('Waiting for borg listener thread to terminate') |
| 231 | ||
| 232 | with self.lock: | |
| 233 | thread_log=self.thread_log | |
| 234 | thread_res=self.thread_res | |
| 235 | ||
| 236 | if thread_log: | |
| 237 | thread_log.join() | |
| 238 | ||
| 239 | if thread_res: | |
| 240 | thread_res.join() | |
| 241 | ||
| 242 | assert(self.thread_log==None and self.thread_res==None) | |
|
1
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
243 | |
| 5 | 244 | def next_action(): |
| 7 | 245 | __block_when_running() |
| 5 | 246 | # TODO pruning as well |
| 247 | now=time.monotonic() | |
| 248 | if not self.lastrun: | |
| 249 | return 'create', now+self.retry_interval | |
| 250 | elif not self.lastrun_success: | |
| 251 | return 'create', self.lastrun+self.retry_interval | |
| 252 | else: | |
| 253 | if self.backup_interval==0: | |
| 254 | return 'none', 0 | |
| 255 | else: | |
| 256 | return 'create', self.lastrun+self.backup_interval | |
|
1
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
257 | |
|
4cdc9c1f6b28
basic scheduler structure draft, etc.
Tuomo Valkonen <tuomov@iki.fi>
parents:
diff
changeset
|
258 |