tool.py 21.5 KB
Newer Older
O
oceanbase-admin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

# 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

R
Rongfeng Fu 已提交
24
import os
O
oceanbase-admin 已提交
25
import bz2
R
Rongfeng Fu 已提交
26
import random
O
oceanbase-admin 已提交
27 28 29
import sys
import stat
import gzip
R
Rongfeng Fu 已提交
30
import fcntl
R
Rongfeng Fu 已提交
31
import signal
O
oceanbase-admin 已提交
32
import shutil
F
v1.5.0  
frf12 已提交
33 34
import re
import json
F
v1.6.0  
frf12 已提交
35
import hashlib
R
Rongfeng Fu 已提交
36
import socket
F
v1.6.0  
frf12 已提交
37
from io import BytesIO
O
oceanbase-admin 已提交
38

R
Rongfeng Fu 已提交
39
import string
R
Rongfeng Fu 已提交
40
from ruamel.yaml import YAML, YAMLContextManager, representer
O
oceanbase-admin 已提交
41

F
v1.5.0  
frf12 已提交
42 43
from _stdio import SafeStdio
_open = open
O
oceanbase-admin 已提交
44
if sys.version_info.major == 2:
R
Rongfeng Fu 已提交
45
    from collections import OrderedDict
O
oceanbase-admin 已提交
46
    from backports import lzma
F
v1.5.0  
frf12 已提交
47 48 49 50 51 52 53 54 55
    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)

R
Rongfeng Fu 已提交
56
    class TimeoutError(OSError):
F
v1.5.0  
frf12 已提交
57

R
Rongfeng Fu 已提交
58 59
        def __init__(self, *args, **kwargs):
            super(TimeoutError, self).__init__(*args, **kwargs)
F
v1.5.0  
frf12 已提交
60

O
oceanbase-admin 已提交
61 62
else:
    import lzma
F
v1.5.0  
frf12 已提交
63
    encoding_open = open
O
oceanbase-admin 已提交
64

R
Rongfeng Fu 已提交
65 66 67 68
    class OrderedDict(dict):
        pass


F
v1.5.0  
frf12 已提交
69
__all__ = ("timeout", "DynamicLoading", "ConfigUtil", "DirectoryUtil", "FileUtil", "YamlLoader", "OrderedDict", "COMMAND_ENV")
O
oceanbase-admin 已提交
70 71 72 73

_WINDOWS = os.name == 'nt'


F
v1.5.0  
frf12 已提交
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
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


R
Rongfeng Fu 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
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


O
oceanbase-admin 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
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
R
Rongfeng Fu 已提交
138
        if DynamicLoading.LIBS_PATH[lib] == 0:
O
oceanbase-admin 已提交
139 140 141 142 143 144 145
            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)
R
Rongfeng Fu 已提交
146

O
oceanbase-admin 已提交
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
    @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]
R
Rongfeng Fu 已提交
205
            return transform_func(value) if value is not None and transform_func else value
O
oceanbase-admin 已提交
206 207 208
        except:
            return default

F
v1.5.0  
frf12 已提交
209 210 211 212 213 214 215 216 217 218 219
    @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 []

R
Rongfeng Fu 已提交
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
    @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):
        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('(._+@#%)')
        pwd_list = list(pwd)
        random.shuffle(pwd_list)
        return ''.join(pwd_list)

    @staticmethod
    def passwd_format(passwd):
        return "'{}'".format(passwd.replace("'", "'\"'\"'"))

O
oceanbase-admin 已提交
247 248 249

class DirectoryUtil(object):

R
Rongfeng Fu 已提交
250 251 252 253
    @staticmethod
    def get_owner(path):
        return os.stat(path)[stat.ST_UID]

R
Rongfeng Fu 已提交
254 255 256
    @staticmethod
    def list_dir(path, stdio=None):
        files = []
R
Rongfeng Fu 已提交
257 258 259 260 261 262 263
        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)
R
Rongfeng Fu 已提交
264 265
        return files

O
oceanbase-admin 已提交
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
    @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:
R
Rongfeng Fu 已提交
292
                FileUtil.copy(src_name, dst_name, stdio)
O
oceanbase-admin 已提交
293
        for link_dest, dst_name in links:
R
Rongfeng Fu 已提交
294
            FileUtil.symlink(link_dest, dst_name, stdio)
O
oceanbase-admin 已提交
295 296 297 298
        return ret

    @staticmethod
    def mkdir(path, mode=0o755, stdio=None):
R
Rongfeng Fu 已提交
299
        stdio and getattr(stdio, 'verbose', print)('mkdir %s' % path)
O
oceanbase-admin 已提交
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
        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):
R
Rongfeng Fu 已提交
318
        stdio and getattr(stdio, 'verbose', print)('rm %s' % path)
O
oceanbase-admin 已提交
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
        try:
            if os.path.exists(path):
                if os.path.islink(path):
                    os.remove(path)
                else:
                    shutil.rmtree(path)
            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

F
v1.6.0  
frf12 已提交
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
    @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())

O
oceanbase-admin 已提交
355 356 357 358 359 360 361 362 363 364 365 366
    @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):
R
Rongfeng Fu 已提交
367
        stdio and getattr(stdio, 'verbose', print)('copy %s %s' % (src, dst))
O
oceanbase-admin 已提交
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
        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)
R
Rongfeng Fu 已提交
389

O
oceanbase-admin 已提交
390 391
        try:
            if os.path.islink(src):
R
Rongfeng Fu 已提交
392
                FileUtil.symlink(os.readlink(src), dst)
O
oceanbase-admin 已提交
393
                return True
R
Rongfeng Fu 已提交
394
            with FileUtil.open(src, 'rb') as fsrc, FileUtil.open(dst, 'wb') as fdst:
O
oceanbase-admin 已提交
395
                    FileUtil.copy_fileobj(fsrc, fdst)
R
Rongfeng Fu 已提交
396
                    os.chmod(dst, os.stat(src).st_mode)
O
oceanbase-admin 已提交
397 398
                    return True
        except Exception as e:
R
Rongfeng Fu 已提交
399
            if int(getattr(e, 'errno', -1)) == 26:
R
Rongfeng Fu 已提交
400
                from ssh import LocalClient
R
Rongfeng Fu 已提交
401 402 403
                if LocalClient.execute_command('/usr/bin/cp -f %s %s' % (src, dst), stdio=stdio):
                    return True
            elif stdio:
R
Rongfeng Fu 已提交
404
                getattr(stdio, 'exception', print)('copy error: %s' % e)
O
oceanbase-admin 已提交
405 406 407 408
            else:
                raise e
        return False

R
Rongfeng Fu 已提交
409 410 411 412 413 414 415 416 417
    @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:
R
Rongfeng Fu 已提交
418
                getattr(stdio, 'exception', print)('link error: %s' % e)
R
Rongfeng Fu 已提交
419 420 421 422
            else:
                raise e
        return False

O
oceanbase-admin 已提交
423
    @staticmethod
R
Rongfeng Fu 已提交
424
    def open(path, _type='r', encoding=None, stdio=None):
R
Rongfeng Fu 已提交
425
        stdio and getattr(stdio, 'verbose', print)('open %s for %s' % (path, _type))
O
oceanbase-admin 已提交
426 427
        if os.path.exists(path):
            if os.path.isfile(path):
F
v1.5.0  
frf12 已提交
428
                return encoding_open(path, _type, encoding=encoding)
O
oceanbase-admin 已提交
429 430 431 432 433 434 435 436
            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):
F
v1.5.0  
frf12 已提交
437
            return encoding_open(path, _type, encoding=encoding)
O
oceanbase-admin 已提交
438 439 440 441 442 443 444 445 446
        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):
R
Rongfeng Fu 已提交
447
        stdio and getattr(stdio, 'verbose', print)('unzip %s' % source)
O
oceanbase-admin 已提交
448 449 450 451 452 453 454 455 456 457
        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:
R
Rongfeng Fu 已提交
458
                s_fn = open(source, 'r')
O
oceanbase-admin 已提交
459 460 461 462 463 464 465
            return s_fn
        except:
            stdio and getattr(stdio, 'exception', print)('failed to unzip %s' % source)
        return None

    @staticmethod
    def rm(path, stdio=None):
R
Rongfeng Fu 已提交
466
        stdio and getattr(stdio, 'verbose', print)('rm %s' % path)
O
oceanbase-admin 已提交
467 468 469 470 471 472 473 474
        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
R
Rongfeng Fu 已提交
475

O
oceanbase-admin 已提交
476 477 478 479
    @staticmethod
    def move(src, dst, stdio=None):
        return shutil.move(src, dst)

R
Rongfeng Fu 已提交
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
    @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

O
oceanbase-admin 已提交
506 507 508 509 510 511

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
R
Rongfeng Fu 已提交
512 513
        if not self.Representer.yaml_multi_representers and self.Representer.yaml_representers:
            self.Representer.yaml_multi_representers = self.Representer.yaml_representers
R
Rongfeng Fu 已提交
514

O
oceanbase-admin 已提交
515 516 517 518 519 520 521 522
    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

F
v1.6.0  
frf12 已提交
523 524 525 526 527 528 529 530 531 532 533 534
    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

O
oceanbase-admin 已提交
535 536 537 538 539 540 541
    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
F
v1.5.0  
frf12 已提交
542

F
v1.6.0  
frf12 已提交
543 544 545 546 547 548 549 550 551 552 553 554 555 556
    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

F
v1.5.0  
frf12 已提交
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 594 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

_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


R
Rongfeng Fu 已提交
668 669 670 671 672 673 674 675
class NetUtil(object):
    @staticmethod
    def get_host_ip():
        hostname = socket.gethostname()
        ip = socket.gethostbyname(hostname)
        return ip

COMMAND_ENV=CommandEnv()
R
Rongfeng Fu 已提交
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693


class TimeUtils(SafeStdio):

    def parse_time_sec(time_str, stdio=None):
        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:
            stdio.error('%s parse time to second fialed:' % (time_str))
        return int(value)