forked from oceanbase/obdeploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tool.py
838 lines (708 loc) · 27.2 KB
/
tool.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
863
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
# coding: utf-8
# OceanBase Deploy.
# Copyright (C) 2021 OceanBase
#
# This file is part of OceanBase Deploy.
#
# OceanBase Deploy is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OceanBase Deploy is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OceanBase Deploy. If not, see <https://www.gnu.org/licenses/>.
from __future__ import absolute_import, division, print_function
import os
import bz2
import random
import sys
import stat
import gzip
import fcntl
import signal
import shutil
import re
import json
import hashlib
import socket
import datetime
from io import BytesIO
from copy import copy
import string
from ruamel.yaml import YAML, YAMLContextManager, representer
from _errno import EC_SQL_EXECUTE_FAILED
from _stdio import SafeStdio
_open = open
if sys.version_info.major == 2:
import MySQLdb as mysql
from collections import OrderedDict
from backports import lzma
from io import open as _open
def encoding_open(path, _type, encoding=None, *args, **kwrags):
if encoding:
kwrags['encoding'] = encoding
return _open(path, _type, *args, **kwrags)
else:
return open(path, _type, *args, **kwrags)
class TimeoutError(OSError):
def __init__(self, *args, **kwargs):
super(TimeoutError, self).__init__(*args, **kwargs)
else:
import lzma
import pymysql as mysql
encoding_open = open
class OrderedDict(dict):
pass
__all__ = ("timeout", "DynamicLoading", "ConfigUtil", "DirectoryUtil", "FileUtil", "YamlLoader", "OrderedDict", "COMMAND_ENV", "TimeUtils", "Cursor")
_WINDOWS = os.name == 'nt'
class Timeout(object):
def __init__(self, seconds=1, error_message='Timeout'):
self.seconds = seconds
self.error_message = error_message
def handle_timeout(self, signum, frame):
raise TimeoutError(self.error_message)
def _is_timeout(self):
return self.seconds and self.seconds > 0
def __enter__(self):
if self._is_timeout():
signal.signal(signal.SIGALRM, self.handle_timeout)
signal.alarm(self.seconds)
def __exit__(self, type, value, traceback):
if self._is_timeout():
signal.alarm(0)
timeout = Timeout
class Timeout:
def __init__(self, seconds=1, error_message='Timeout'):
self.seconds = seconds
self.error_message = error_message
def handle_timeout(self, signum, frame):
raise TimeoutError(self.error_message)
def _is_timeout(self):
return self.seconds and self.seconds > 0
def __enter__(self):
if self._is_timeout():
signal.signal(signal.SIGALRM, self.handle_timeout)
signal.alarm(self.seconds)
def __exit__(self, type, value, traceback):
if self._is_timeout():
signal.alarm(0)
timeout = Timeout
class DynamicLoading(object):
class Module(object):
def __init__(self, module):
self.module = module
self.count = 0
LIBS_PATH = {}
MODULES = {}
@staticmethod
def add_lib_path(lib):
if lib not in DynamicLoading.LIBS_PATH:
DynamicLoading.LIBS_PATH[lib] = 0
if DynamicLoading.LIBS_PATH[lib] == 0:
sys.path.insert(0, lib)
DynamicLoading.LIBS_PATH[lib] = 1
@staticmethod
def add_libs_path(libs):
for lib in libs:
DynamicLoading.add_lib_path(lib)
@staticmethod
def remove_lib_path(lib):
if lib not in DynamicLoading.LIBS_PATH:
return
if DynamicLoading.LIBS_PATH[lib] < 1:
return
try:
DynamicLoading.LIBS_PATH[lib] -= 1
if DynamicLoading.LIBS_PATH[lib] == 0:
idx = sys.path.index(lib)
del sys.path[idx]
except:
pass
@staticmethod
def remove_libs_path(libs):
for lib in libs:
DynamicLoading.remove_lib_path(lib)
@staticmethod
def import_module(name, stdio=None):
if name not in DynamicLoading.MODULES:
try:
stdio and getattr(stdio, 'verbose', print)('import %s' % name)
module = __import__(name)
DynamicLoading.MODULES[name] = DynamicLoading.Module(module)
except:
stdio and getattr(stdio, 'exception', print)('import %s failed' % name)
stdio and getattr(stdio, 'verbose', print)('sys.path: %s' % sys.path)
return None
DynamicLoading.MODULES[name].count = 1
stdio and getattr(stdio, 'verbose', print)('add %s ref count to %s' % (name, DynamicLoading.MODULES[name].count))
return DynamicLoading.MODULES[name].module
@staticmethod
def export_module(name, stdio=None):
if name not in DynamicLoading.MODULES:
return
if DynamicLoading.MODULES[name].count < 1:
return
try:
DynamicLoading.MODULES[name].count -= 1
stdio and getattr(stdio, 'verbose', print)('sub %s ref count to %s' % (name, DynamicLoading.MODULES[name].count))
if DynamicLoading.MODULES[name].count == 0:
stdio and getattr(stdio, 'verbose', print)('export %s' % name)
del sys.modules[name]
del DynamicLoading.MODULES[name]
except:
stdio and getattr(stdio, 'exception', print)('export %s failed' % name)
class ConfigUtil(object):
@staticmethod
def get_value_from_dict(conf, key, default=None, transform_func=None):
try:
# 不要使用 conf.get(key, default)来替换,这里还有类型转换的需求
value = conf[key]
return transform_func(value) if value is not None and transform_func else value
except:
return default
@staticmethod
def get_list_from_dict(conf, key, transform_func=None):
try:
return_list = conf[key]
if transform_func:
return [transform_func(value) for value in return_list]
else:
return return_list
except:
return []
@staticmethod
def get_random_pwd_by_total_length(pwd_length=10):
char = string.ascii_letters string.digits
pwd = ""
for i in range(pwd_length):
pwd = pwd random.choice(char)
return pwd
@staticmethod
def get_random_pwd_by_rule(lowercase_length=2, uppercase_length=2, digits_length=2, punctuation_length=2, punctuation_chars='(._ @#%)'):
pwd = ""
for i in range(lowercase_length):
pwd = random.choice(string.ascii_lowercase)
for i in range(uppercase_length):
pwd = random.choice(string.ascii_uppercase)
for i in range(digits_length):
pwd = random.choice(string.digits)
for i in range(punctuation_length):
pwd = random.choice(punctuation_chars)
pwd_list = list(pwd)
random.shuffle(pwd_list)
return ''.join(pwd_list)
@staticmethod
def passwd_format(passwd):
return "'{}'".format(passwd.replace("'", "'\"'\"'"))
class DirectoryUtil(object):
@staticmethod
def get_owner(path):
return os.stat(path)[stat.ST_UID]
@staticmethod
def list_dir(path, stdio=None):
files = []
if os.path.isdir(path):
for fn in os.listdir(path):
fp = os.path.join(path, fn)
if os.path.isdir(fp):
files = DirectoryUtil.list_dir(fp)
else:
files.append(fp)
return files
@staticmethod
def copy(src, dst, stdio=None):
if not os.path.isdir(src):
stdio and getattr(stdio, 'error', print)("cannot copy tree '%s': not a directory" % src)
return False
try:
names = os.listdir(src)
except:
stdio and getattr(stdio, 'exception', print)("error listing files in '%s':" % (src))
return False
if DirectoryUtil.mkdir(dst, stdio):
return False
ret = True
links = []
for n in names:
src_name = os.path.join(src, n)
dst_name = os.path.join(dst, n)
if os.path.islink(src_name):
link_dest = os.readlink(src_name)
links.append((link_dest, dst_name))
elif os.path.isdir(src_name):
ret = DirectoryUtil.copy(src_name, dst_name, stdio) and ret
else:
FileUtil.copy(src_name, dst_name, stdio)
for link_dest, dst_name in links:
FileUtil.symlink(link_dest, dst_name, stdio)
return ret
@staticmethod
def mkdir(path, mode=0o755, stdio=None):
stdio and getattr(stdio, 'verbose', print)('mkdir %s' % path)
try:
os.makedirs(path, mode=mode)
return True
except OSError as e:
if e.errno == 17:
return True
elif e.errno == 20:
stdio and getattr(stdio, 'error', print)('%s is not a directory', path)
else:
stdio and getattr(stdio, 'error', print)('failed to create directory %s', path)
stdio and getattr(stdio, 'exception', print)('')
except:
stdio and getattr(stdio, 'exception', print)('')
stdio and getattr(stdio, 'error', print)('failed to create directory %s', path)
return False
@staticmethod
def rm(path, stdio=None):
stdio and getattr(stdio, 'verbose', print)('rm %s' % path)
try:
if os.path.islink(path):
os.remove(path)
elif os.path.exists(path):
shutil.rmtree(path)
else:
pass
return True
except Exception as e:
stdio and getattr(stdio, 'exception', print)('')
stdio and getattr(stdio, 'error', print)('failed to remove %s', path)
return False
class FileUtil(object):
COPY_BUFSIZE = 1024 * 1024 if _WINDOWS else 64 * 1024
@staticmethod
def checksum(target_path, stdio=None):
from ssh import LocalClient
if not os.path.isfile(target_path):
info = 'No such file: ' target_path
if stdio:
getattr(stdio, 'error', print)(info)
return False
else:
raise IOError(info)
ret = LocalClient.execute_command('md5sum {}'.format(target_path), stdio=stdio)
if ret:
return ret.stdout.strip().split(' ')[0].encode('utf-8')
else:
m = hashlib.md5()
with open(target_path, 'rb') as f:
m.update(f.read())
return m.hexdigest().encode(sys.getdefaultencoding())
@staticmethod
def copy_fileobj(fsrc, fdst):
fsrc_read = fsrc.read
fdst_write = fdst.write
while True:
buf = fsrc_read(FileUtil.COPY_BUFSIZE)
if not buf:
break
fdst_write(buf)
@staticmethod
def copy(src, dst, stdio=None):
stdio and getattr(stdio, 'verbose', print)('copy %s %s' % (src, dst))
if os.path.exists(src) and os.path.exists(dst) and os.path.samefile(src, dst):
info = "`%s` and `%s` are the same file" % (src, dst)
if stdio:
getattr(stdio, 'error', print)(info)
return False
else:
raise IOError(info)
for fn in [src, dst]:
try:
st = os.stat(fn)
except OSError:
pass
else:
if stat.S_ISFIFO(st.st_mode):
info = "`%s` is a named pipe" % fn
if stdio:
getattr(stdio, 'error', print)(info)
return False
else:
raise IOError(info)
try:
if os.path.islink(src):
FileUtil.symlink(os.readlink(src), dst)
return True
with FileUtil.open(src, 'rb') as fsrc, FileUtil.open(dst, 'wb') as fdst:
FileUtil.copy_fileobj(fsrc, fdst)
os.chmod(dst, os.stat(src).st_mode)
return True
except Exception as e:
if int(getattr(e, 'errno', -1)) == 26:
from ssh import LocalClient
if LocalClient.execute_command('/usr/bin/cp -f %s %s' % (src, dst), stdio=stdio):
return True
elif stdio:
getattr(stdio, 'exception', print)('copy error: %s' % e)
else:
raise e
return False
@staticmethod
def symlink(src, dst, stdio=None):
stdio and getattr(stdio, 'verbose', print)('link %s %s' % (src, dst))
try:
if DirectoryUtil.rm(dst, stdio):
os.symlink(src, dst)
return True
except Exception as e:
if stdio:
getattr(stdio, 'exception', print)('link error: %s' % e)
else:
raise e
return False
@staticmethod
def open(path, _type='r', encoding=None, stdio=None):
stdio and getattr(stdio, 'verbose', print)('open %s for %s' % (path, _type))
if os.path.exists(path):
if os.path.isfile(path):
return encoding_open(path, _type, encoding=encoding)
info = '%s is not file' % path
if stdio:
getattr(stdio, 'error', print)(info)
return None
else:
raise IOError(info)
dir_path, file_name = os.path.split(path)
if not dir_path or DirectoryUtil.mkdir(dir_path, stdio=stdio):
return encoding_open(path, _type, encoding=encoding)
info = '%s is not file' % path
if stdio:
getattr(stdio, 'error', print)(info)
return None
else:
raise IOError(info)
@staticmethod
def unzip(source, ztype=None, stdio=None):
stdio and getattr(stdio, 'verbose', print)('unzip %s' % source)
if not ztype:
ztype = source.split('.')[-1]
try:
if ztype == 'bz2':
s_fn = bz2.BZ2File(source, 'r')
elif ztype == 'xz':
s_fn = lzma.LZMAFile(source, 'r')
elif ztype == 'gz':
s_fn = gzip.GzipFile(source, 'r')
else:
s_fn = open(source, 'r')
return s_fn
except:
stdio and getattr(stdio, 'exception', print)('failed to unzip %s' % source)
return None
@staticmethod
def rm(path, stdio=None):
stdio and getattr(stdio, 'verbose', print)('rm %s' % path)
if not os.path.exists(path):
return True
try:
os.remove(path)
return True
except:
stdio and getattr(stdio, 'exception', print)('failed to remove %s' % path)
return False
@staticmethod
def move(src, dst, stdio=None):
return shutil.move(src, dst)
@staticmethod
def share_lock_obj(obj, stdio=None):
stdio and getattr(stdio, 'verbose', print)('try to get share lock %s' % obj.name)
fcntl.flock(obj, fcntl.LOCK_SH | fcntl.LOCK_NB)
return obj
@classmethod
def share_lock(cls, path, _type='w', stdio=None):
return cls.share_lock_obj(cls.open(path, _type=_type, stdio=stdio))
@staticmethod
def exclusive_lock_obj(obj, stdio=None):
stdio and getattr(stdio, 'verbose', print)('try to get exclusive lock %s' % obj.name)
fcntl.flock(obj, fcntl.LOCK_EX | fcntl.LOCK_NB)
return obj
@classmethod
def exclusive_lock(cls, path, _type='w', stdio=None):
return cls.exclusive_lock_obj(cls.open(path, _type=_type, stdio=stdio))
@staticmethod
def unlock(obj, stdio=None):
stdio and getattr(stdio, 'verbose', print)('unlock %s' % obj.name)
fcntl.flock(obj, fcntl.LOCK_UN)
return obj
class YamlLoader(YAML):
def __init__(self, stdio=None, typ=None, pure=False, output=None, plug_ins=None):
super(YamlLoader, self).__init__(typ=typ, pure=pure, output=output, plug_ins=plug_ins)
self.stdio = stdio
if not self.Representer.yaml_multi_representers and self.Representer.yaml_representers:
self.Representer.yaml_multi_representers = self.Representer.yaml_representers
def load(self, stream):
try:
return super(YamlLoader, self).load(stream)
except Exception as e:
if getattr(self.stdio, 'exception', False):
self.stdio.exception('Parsing error:\n%s' % e)
raise e
def loads(self, yaml_content):
try:
stream = BytesIO()
yaml_content = str(yaml_content).encode()
stream.write(yaml_content)
stream.seek(0)
return self.load(stream)
except Exception as e:
if getattr(self.stdio, 'exception', False):
self.stdio.exception('Parsing error:\n%s' % e)
raise e
def dump(self, data, stream=None, transform=None):
try:
return super(YamlLoader, self).dump(data, stream=stream, transform=transform)
except Exception as e:
if getattr(self.stdio, 'exception', False):
self.stdio.exception('dump error:\n%s' % e)
raise e
def dumps(self, data, transform=None):
try:
stream = BytesIO()
self.dump(data, stream=stream, transform=transform)
stream.seek(0)
content = stream.read()
if sys.version_info.major == 2:
return content
return content.decode()
except Exception as e:
if getattr(self.stdio, 'exception', False):
self.stdio.exception('dumps error:\n%s' % e)
raise e
_KEYCRE = re.compile(r"\$(\w )")
def var_replace(string, var, pattern=_KEYCRE):
if not var:
return string
done = []
while string:
m = pattern.search(string)
if not m:
done.append(string)
break
varname = m.group(1).lower()
replacement = var.get(varname, m.group())
start, end = m.span()
done.append(string[:start])
done.append(str(replacement))
string = string[end:]
return ''.join(done)
class CommandEnv(SafeStdio):
def __init__(self):
self.source_path = None
self._env = os.environ.copy()
self._cmd_env = {}
def load(self, source_path, stdio=None):
if self.source_path:
stdio.error("Source path of env already set.")
return False
self.source_path = source_path
try:
if os.path.exists(source_path):
with FileUtil.open(source_path, 'r') as f:
self._cmd_env = json.load(f)
except:
stdio.exception("Failed to load environments from {}".format(source_path))
return False
return True
def save(self, stdio=None):
if self.source_path is None:
stdio.error("Command environments need to load at first.")
return False
stdio.verbose("save environment variables {}".format(self._cmd_env))
try:
with FileUtil.open(self.source_path, 'w', stdio=stdio) as f:
json.dump(self._cmd_env, f)
except:
stdio.exception('Failed to save environment variables')
return False
return True
def get(self, key, default=""):
try:
return self.__getitem__(key)
except KeyError:
return default
def set(self, key, value, save=False, stdio=None):
stdio.verbose("set environment variable {} value {}".format(key, value))
self._cmd_env[key] = str(value)
if save:
return self.save(stdio=stdio)
return True
def delete(self, key, save=False, stdio=None):
stdio.verbose("delete environment variable {}".format(key))
if key in self._cmd_env:
del self._cmd_env[key]
if save:
return self.save(stdio=stdio)
return True
def clear(self, save=True, stdio=None):
self._cmd_env = {}
if save:
return self.save(stdio=stdio)
return True
def __getitem__(self, item):
value = self._cmd_env.get(item)
if value is None:
value = self._env.get(item)
if value is None:
raise KeyError(item)
return value
def __contains__(self, item):
if item in self._cmd_env:
return True
elif item in self._env:
return True
else:
return False
def copy(self):
result = dict(self._env)
result.update(self._cmd_env)
return result
def show_env(self):
return self._cmd_env
class NetUtil(object):
@staticmethod
def get_host_ip():
hostname = socket.gethostname()
ip = socket.gethostbyname(hostname)
return ip
COMMAND_ENV=CommandEnv()
class TimeUtils(SafeStdio):
@staticmethod
def parse_time_sec(time_str):
unit = time_str[-1]
value = int(time_str[:-1])
if unit == "s":
value *= 1
elif unit == "m":
value *= 60
elif unit == "h":
value *= 3600
elif unit == "d":
value *= 3600 * 24
else:
raise Exception('%s parse time to second fialed:' % (time_str))
return value
@staticmethod
def get_format_time(time_str, stdio=None):
try:
return datetime.datetime.strptime(time_str, "%Y-%m-%d %H:%M:%S")
except Exception as e:
stdio.exception('%s parse time fialed, error:\n%s, time format need to be %s' % (time_str, e, '%Y-%m-%d %H:%M:%S'))
@staticmethod
def sub_minutes(t, delta, stdio=None):
try:
return (t - datetime.timedelta(minutes=delta)).strftime('%Y-%m-%d %H:%M:%S')
except Exception as e:
stdio.exception('%s get time fialed, error:\n%s' % (t, e))
@staticmethod
def add_minutes(t, delta, stdio=None):
try:
return (t datetime.timedelta(minutes=delta)).strftime('%Y-%m-%d %H:%M:%S')
except Exception as e:
stdio.exception('%s get time fialed, error:\n%s' % (t, e))
@staticmethod
def parse_time_from_to(from_time=None, to_time=None, stdio=None):
format_from_time = None
format_to_time = None
sucess = False
if from_time:
format_from_time = TimeUtils.get_format_time(from_time, stdio)
format_to_time = TimeUtils.get_format_time(to_time, stdio) if to_time else TimeUtils.add_minutes(format_from_time, 30)
else:
if to_time:
format_to_time = TimeUtils.get_format_time(to_time, stdio)
format_from_time = TimeUtils.sub_minutes(format_to_time, 30)
if format_from_time and format_to_time:
sucess = True
return format_from_time, format_to_time, sucess
@staticmethod
def parse_time_since(since=None, stdio=None):
now_time = datetime.datetime.now()
format_to_time = (now_time datetime.timedelta(minutes=1)).strftime('%Y-%m-%d %H:%M:%S')
try:
format_from_time = (now_time - datetime.timedelta(seconds=TimeUtils.parse_time_sec(since))).strftime('%Y-%m-%d %H:%M:%S')
except Exception as e:
stdio.exception('%s parse time fialed, error:\n%s' % (since, e))
format_from_time = TimeUtils.sub_minutes(format_to_time, 30)
return format_from_time, format_to_time
class Cursor(SafeStdio):
def __init__(self, ip, port, user='root', tenant='sys', password='', stdio=None):
self.stdio = stdio
self.ip = ip
self.port = port
self._user = user
self.tenant = tenant
self.password = password
self.cursor = None
self.db = None
self._connect()
self._raise_exception = False
self._raise_cursor = None
@property
def user(self):
if "@" in self._user:
return self._user
if self.tenant:
return "{}@{}".format(self._user, self.tenant)
else:
return self._user
@property
def raise_cursor(self):
if self._raise_cursor:
return self._raise_cursor
raise_cursor = copy(self)
raise_cursor._raise_exception = True
self._raise_cursor = raise_cursor
return raise_cursor
if sys.version_info.major == 2:
def _connect(self):
self.stdio.verbose('connect %s -P%s -u%s -p%s' % (self.ip, self.port, self.user, self.password))
self.db = mysql.connect(host=self.ip, user=self.user, port=int(self.port), passwd=str(self.password))
self.cursor = self.db.cursor(cursorclass=mysql.cursors.DictCursor)
else:
def _connect(self):
self.stdio.verbose('connect %s -P%s -u%s -p%s' % (self.ip, self.port, self.user, self.password))
self.db = mysql.connect(host=self.ip, user=self.user, port=int(self.port), password=str(self.password),
cursorclass=mysql.cursors.DictCursor)
self.cursor = self.db.cursor()
def new_cursor(self, tenant='sys', user='root', password='', ip='', port='', print_exception=True):
try:
ip = ip if ip else self.ip
port = port if port else self.port
return Cursor(ip=ip, port=port, user=user, tenant=tenant, password=password, stdio=self.stdio)
except:
print_exception and self.stdio.exception('')
self.stdio.verbose('fail to connect %s -P%s -u%s@%s -p%s' % (ip, port, user, tenant, password))
return None
def execute(self, sql, args=None, execute_func=None, raise_exception=False, exc_level='error', stdio=None):
try:
stdio.verbose('execute sql: %s. args: %s' % (sql, args))
self.cursor.execute(sql, args)
if not execute_func:
return self.cursor
return getattr(self.cursor, execute_func)()
except Exception as e:
getattr(stdio, exc_level)(EC_SQL_EXECUTE_FAILED.format(sql=sql))
if raise_exception is None:
raise_exception = self._raise_exception
if raise_exception:
stdio.exception('')
raise e
return False
def fetchone(self, sql, args=None, raise_exception=False, exc_level='error', stdio=None):
return self.execute(sql, args=args, execute_func='fetchone', raise_exception=raise_exception, exc_level=exc_level, stdio=stdio)
def fetchall(self, sql, args=None, raise_exception=False, exc_level='error', stdio=None):
return self.execute(sql, args=args, execute_func='fetchall', raise_exception=raise_exception, exc_level=exc_level, stdio=stdio)
def close(self):
if self.cursor:
self.cursor.close()
self.cursor = None
if self.db:
self.db.close()
self.db = None