Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 1 | import os |
| 2 | import base64 |
Tony Mack | 4fa85fb | 2013-09-25 14:39:57 -0400 | [diff] [blame] | 3 | from datetime import datetime |
Scott Baker | 76a840e | 2015-02-11 21:38:09 -0800 | [diff] [blame] | 4 | from xos.config import Config |
Andy Bavier | e7abb62 | 2013-10-18 15:11:56 -0400 | [diff] [blame] | 5 | from util.logger import Logger, logging |
Sapan Bhatia | eba0843 | 2014-04-28 23:58:36 -0400 | [diff] [blame] | 6 | from observer.steps import * |
Sapan Bhatia | d9468eb | 2014-08-20 03:03:12 -0400 | [diff] [blame] | 7 | from django.db.models import F, Q |
Scott Baker | 8bbc77c | 2015-06-22 10:56:16 -0700 | [diff] [blame^] | 8 | from core.models import * |
| 9 | from django.db import reset_queries |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 10 | import json |
| 11 | import time |
| 12 | import pdb |
Andy Bavier | e7abb62 | 2013-10-18 15:11:56 -0400 | [diff] [blame] | 13 | |
Andy Bavier | 04111b7 | 2013-10-22 16:47:10 -0400 | [diff] [blame] | 14 | logger = Logger(level=logging.INFO) |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 15 | |
Sapan Bhatia | 2192fec | 2015-02-08 06:36:32 +0000 | [diff] [blame] | 16 | def f7(seq): |
| 17 | seen = set() |
| 18 | seen_add = seen.add |
| 19 | return [ x for x in seq if not (x in seen or seen_add(x))] |
| 20 | |
| 21 | def elim_dups(backend_str): |
| 22 | strs = backend_str.split(' // ') |
| 23 | strs2 = f7(strs) |
| 24 | return ' // '.join(strs2) |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 25 | |
Sapan Bhatia | 709bebd | 2015-02-08 06:35:36 +0000 | [diff] [blame] | 26 | def deepgetattr(obj, attr): |
| 27 | return reduce(getattr, attr.split('.'), obj) |
| 28 | |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 29 | |
| 30 | class InnocuousException(Exception): |
| 31 | pass |
| 32 | |
Sapan Bhatia | 13c7f11 | 2013-09-02 14:19:35 -0400 | [diff] [blame] | 33 | class FailedDependency(Exception): |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 34 | pass |
Sapan Bhatia | 13c7f11 | 2013-09-02 14:19:35 -0400 | [diff] [blame] | 35 | |
Tony Mack | b469d24 | 2015-01-03 19:37:39 -0500 | [diff] [blame] | 36 | class SyncStep(object): |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 37 | """ An XOS Sync step. |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 38 | |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 39 | Attributes: |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 40 | psmodel Model name the step synchronizes |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 41 | dependencies list of names of models that must be synchronized first if the current model depends on them |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 42 | """ |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 43 | slow=False |
Tony Mack | fbdae1b | 2015-02-24 14:16:43 -0500 | [diff] [blame] | 44 | def get_prop(self, prop): |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 45 | try: |
| 46 | sync_config_dir = Config().sync_config_dir |
| 47 | except: |
Scott Baker | b8059c9 | 2015-02-19 22:25:49 -0800 | [diff] [blame] | 48 | sync_config_dir = '/etc/xos/sync' |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 49 | prop_config_path = '/'.join(sync_config_dir,self.name,prop) |
| 50 | return open(prop_config_path).read().rstrip() |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 51 | |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 52 | def __init__(self, **args): |
| 53 | """Initialize a sync step |
| 54 | Keyword arguments: |
| 55 | name -- Name of the step |
Scott Baker | 286a78f | 2015-02-18 16:13:48 -0800 | [diff] [blame] | 56 | provides -- XOS models sync'd by this step |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 57 | """ |
| 58 | dependencies = [] |
Tony Mack | 387a73f | 2013-09-18 07:59:14 -0400 | [diff] [blame] | 59 | self.driver = args.get('driver') |
Sapan Bhatia | eba0843 | 2014-04-28 23:58:36 -0400 | [diff] [blame] | 60 | self.error_map = args.get('error_map') |
| 61 | |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 62 | try: |
| 63 | self.soft_deadline = int(self.get_prop('soft_deadline_seconds')) |
| 64 | except: |
| 65 | self.soft_deadline = 5 # 5 seconds |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 66 | |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 67 | return |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 68 | |
Sapan Bhatia | e17bc5b | 2014-04-30 00:53:06 -0400 | [diff] [blame] | 69 | def fetch_pending(self, deletion=False): |
Sapan Bhatia | 2176566 | 2014-07-23 08:59:30 -0400 | [diff] [blame] | 70 | # This is the most common implementation of fetch_pending |
| 71 | # Steps should override it if they have their own logic |
| 72 | # for figuring out what objects are outstanding. |
Sapan Bhatia | 99f4968 | 2015-01-29 20:58:25 +0000 | [diff] [blame] | 73 | main_obj = self.observes |
Sapan Bhatia | d9468eb | 2014-08-20 03:03:12 -0400 | [diff] [blame] | 74 | if (not deletion): |
Sapan Bhatia | d6e3884 | 2015-04-21 17:47:07 -0400 | [diff] [blame] | 75 | objs = main_obj.objects.filter(Q(enacted__lt=F('updated')) | Q(enacted=None),Q(lazy_blocked=False)) |
Sapan Bhatia | 2176566 | 2014-07-23 08:59:30 -0400 | [diff] [blame] | 76 | else: |
| 77 | objs = main_obj.deleted_objects.all() |
| 78 | |
| 79 | return objs |
Sapan Bhatia | ca2e21f | 2013-10-02 01:10:02 -0400 | [diff] [blame] | 80 | #return Sliver.objects.filter(ip=None) |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 81 | |
Sapan Bhatia | ca2e21f | 2013-10-02 01:10:02 -0400 | [diff] [blame] | 82 | def check_dependencies(self, obj, failed): |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 83 | for dep in self.dependencies: |
Scott Baker | 105b6b7 | 2014-05-12 10:40:25 -0700 | [diff] [blame] | 84 | peer_name = dep[0].lower() + dep[1:] # django names are camelCased with the first letter lower |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 85 | |
Sapan Bhatia | cfef6ef | 2014-08-20 03:04:03 -0400 | [diff] [blame] | 86 | try: |
Sapan Bhatia | 709bebd | 2015-02-08 06:35:36 +0000 | [diff] [blame] | 87 | peer_object = deepgetattr(obj, peer_name) |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 88 | try: |
| 89 | peer_objects = peer_object.all() |
Sapan Bhatia | 709bebd | 2015-02-08 06:35:36 +0000 | [diff] [blame] | 90 | except AttributeError: |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 91 | peer_objects = [peer_object] |
Sapan Bhatia | cfef6ef | 2014-08-20 03:04:03 -0400 | [diff] [blame] | 92 | except: |
Sapan Bhatia | 709bebd | 2015-02-08 06:35:36 +0000 | [diff] [blame] | 93 | peer_objects = [] |
Sapan Bhatia | cfef6ef | 2014-08-20 03:04:03 -0400 | [diff] [blame] | 94 | |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 95 | if (hasattr(obj,'controller')): |
| 96 | try: |
| 97 | peer_objects = filter(lambda o:o.controller==obj.controller, peer_objects) |
| 98 | except AttributeError: |
| 99 | pass |
| 100 | |
Sapan Bhatia | 709bebd | 2015-02-08 06:35:36 +0000 | [diff] [blame] | 101 | if (failed in peer_objects): |
| 102 | if (obj.backend_status!=failed.backend_status): |
| 103 | obj.backend_status = failed.backend_status |
Sapan Bhatia | 7e482de | 2014-08-22 03:05:13 -0400 | [diff] [blame] | 104 | obj.save(update_fields=['backend_status']) |
Scott Baker | 4fd314e | 2015-03-04 21:31:14 -0800 | [diff] [blame] | 105 | raise FailedDependency("Failed dependency for %s:%s peer %s:%s failed %s:%s" % (obj.__class__.__name__, str(getattr(obj,"pk","no_pk")), peer_object.__class__.__name__, str(getattr(peer_object,"pk","no_pk")), failed.__class__.__name__, str(getattr(failed,"pk","no_pk")))) |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 106 | |
Sapan Bhatia | 6082336 | 2014-04-30 00:52:32 -0400 | [diff] [blame] | 107 | def call(self, failed=[], deletion=False): |
| 108 | pending = self.fetch_pending(deletion) |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 109 | for o in pending: |
Scott Baker | 8bbc77c | 2015-06-22 10:56:16 -0700 | [diff] [blame^] | 110 | # another spot to clean up debug state |
| 111 | try: |
| 112 | reset_queries() |
| 113 | except: |
| 114 | # this shouldn't happen, but in case it does, catch it... |
| 115 | logger.log_exc("exception in reset_queries") |
| 116 | |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 117 | sync_failed = False |
Tony Mack | 68e818d | 2013-09-25 13:34:17 -0400 | [diff] [blame] | 118 | try: |
Sapan Bhatia | 24a2a29 | 2015-02-10 17:21:33 -0500 | [diff] [blame] | 119 | backoff_disabled = Config().observer_backoff_disabled |
Sapan Bhatia | 9cd17be | 2015-02-10 17:16:07 -0500 | [diff] [blame] | 120 | except: |
| 121 | backoff_disabled = 0 |
| 122 | |
| 123 | try: |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 124 | scratchpad = json.loads(o.backend_register) |
| 125 | if (scratchpad): |
| 126 | next_run = scratchpad['next_run'] |
Sapan Bhatia | 9cd17be | 2015-02-10 17:16:07 -0500 | [diff] [blame] | 127 | if (not backoff_disabled and next_run>time.time()): |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 128 | sync_failed = True |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 129 | except: |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 130 | logger.log_exc("Exception while loading scratchpad") |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 131 | pass |
| 132 | |
| 133 | if (not sync_failed): |
Sapan Bhatia | eba0843 | 2014-04-28 23:58:36 -0400 | [diff] [blame] | 134 | try: |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 135 | for f in failed: |
| 136 | self.check_dependencies(o,f) # Raises exception if failed |
| 137 | if (deletion): |
| 138 | self.delete_record(o) |
| 139 | o.delete(purge=True) |
| 140 | else: |
| 141 | self.sync_record(o) |
| 142 | o.enacted = datetime.now() # Is this the same timezone? XXX |
| 143 | scratchpad = {'next_run':0, 'exponent':0} |
| 144 | o.backend_register = json.dumps(scratchpad) |
| 145 | o.backend_status = "1 - OK" |
| 146 | o.save(update_fields=['enacted','backend_status','backend_register']) |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 147 | except (InnocuousException,Exception) as e: |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 148 | logger.log_exc("sync step failed!") |
Sapan Bhatia | 2175c1d | 2015-02-08 06:31:42 +0000 | [diff] [blame] | 149 | try: |
| 150 | if (o.backend_status.startswith('2 - ')): |
| 151 | str_e = '%s // %r'%(o.backend_status[4:],e) |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 152 | str_e = elim_dups(str_e) |
Sapan Bhatia | 2175c1d | 2015-02-08 06:31:42 +0000 | [diff] [blame] | 153 | else: |
| 154 | str_e = '%r'%e |
| 155 | except: |
| 156 | str_e = '%r'%e |
| 157 | |
Sapan Bhatia | 9c308fc | 2014-08-22 03:07:59 -0400 | [diff] [blame] | 158 | try: |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 159 | error = self.error_map.map(str_e) |
Sapan Bhatia | 9c308fc | 2014-08-22 03:07:59 -0400 | [diff] [blame] | 160 | except: |
Sapan Bhatia | c368d4a | 2015-06-09 14:14:12 -0400 | [diff] [blame] | 161 | error = '%s'%str_e |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 162 | |
| 163 | if isinstance(e, InnocuousException) and not force_error: |
| 164 | o.backend_status = '1 - %s'%error |
| 165 | else: |
Sapan Bhatia | 5e2f87a | 2015-05-13 15:52:45 +0200 | [diff] [blame] | 166 | o.backend_status = '2 - %s'%error |
Sapan Bhatia | eba0843 | 2014-04-28 23:58:36 -0400 | [diff] [blame] | 167 | |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 168 | try: |
| 169 | scratchpad = json.loads(o.backend_register) |
| 170 | scratchpad['exponent'] |
| 171 | except: |
Sapan Bhatia | e6376de | 2015-05-13 15:51:03 +0200 | [diff] [blame] | 172 | logger.log_exc("Exception while updating scratchpad") |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 173 | scratchpad = {'next_run':0, 'exponent':0} |
| 174 | |
| 175 | # Second failure |
| 176 | if (scratchpad['exponent']): |
| 177 | delay = scratchpad['exponent'] * 600 # 10 minutes |
| 178 | if (delay<1440): |
| 179 | delay = 1440 |
| 180 | scratchpad['next_run'] = time.time() + delay |
| 181 | |
| 182 | scratchpad['exponent']+=1 |
| 183 | |
| 184 | o.backend_register = json.dumps(scratchpad) |
| 185 | |
| 186 | # TOFIX: |
| 187 | # DatabaseError: value too long for type character varying(140) |
| 188 | if (o.pk): |
| 189 | try: |
Sapan Bhatia | 2175c1d | 2015-02-08 06:31:42 +0000 | [diff] [blame] | 190 | o.backend_status = o.backend_status[:1024] |
Sapan Bhatia | 5e2f87a | 2015-05-13 15:52:45 +0200 | [diff] [blame] | 191 | o.save(update_fields=['backend_status','backend_register','updated']) |
Sapan Bhatia | 4700611 | 2015-01-29 20:55:40 +0000 | [diff] [blame] | 192 | except: |
| 193 | print "Could not update backend status field!" |
| 194 | pass |
| 195 | sync_failed = True |
| 196 | |
| 197 | |
| 198 | if (sync_failed): |
Tony Mack | 68e818d | 2013-09-25 13:34:17 -0400 | [diff] [blame] | 199 | failed.append(o) |
Sapan Bhatia | ca2e21f | 2013-10-02 01:10:02 -0400 | [diff] [blame] | 200 | |
Tony Mack | ce79de0 | 2013-09-24 10:12:33 -0400 | [diff] [blame] | 201 | return failed |
Sapan Bhatia | 24836f1 | 2013-08-27 10:16:05 -0400 | [diff] [blame] | 202 | |
Sapan Bhatia | 9028c9a | 2015-05-09 18:14:40 +0200 | [diff] [blame] | 203 | def sync_record(self, o): |
| 204 | return |
| 205 | |
| 206 | def delete_record(self, o): |
| 207 | return |
| 208 | |
Tony Mack | 16f0474 | 2013-09-25 08:53:28 -0400 | [diff] [blame] | 209 | def __call__(self, **args): |
| 210 | return self.call(**args) |