utils.py 4.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#   Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
14 15
import sys
from contextlib import contextmanager
B
Bo Zhou 已提交
16
import os
B
Bo Zhou 已提交
17
from parl.utils import isnotebook
18

B
Bo Zhou 已提交
19 20 21
__all__ = [
    'load_remote_class', 'redirect_stdout_to_file', 'locate_remote_file'
]
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38


def simplify_code(code, end_of_file):
    """
  @parl.remote_actor has to use this function to simplify the code.
  To create a remote object, PARL has to import the module that contains the decorated class.
  It may run some unnecessary code when importing the module, and this is why we use this function
  to simplify the code.

  For example.
  @parl.remote_actor
  class A(object):
    def add(self, a, b):
    return a + b
  def data_process():
    XXXX
  ------------------>
B
Bo Zhou 已提交
39
  The last two lines of the above code block will be removed as they are not class-related.
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
  """
    to_write_lines = []
    for i, line in enumerate(code):
        if line.startswith('parl.connect'):
            continue
        if i < end_of_file - 1:
            to_write_lines.append(line)
        else:
            break
    return to_write_lines


def load_remote_class(file_name, class_name, end_of_file):
    """
  load a class given its file_name and class_name.

  Args:
    file_name: specify the file to load the class
    class_name: specify the class to be loaded
    end_of_file: line ID to indicate the last line that defines the class.

  Return:
    cls: the class to load
  """
    with open(file_name + '.py') as t_file:
        code = t_file.readlines()
    code = simplify_code(code, end_of_file)
B
Bo Zhou 已提交
67 68 69 70 71 72 73
    #folder/xx.py -> folder/xparl_xx.py
    file_name = file_name.split(os.sep)
    prefix = os.sep.join(file_name[:-1])
    if prefix == "":
        prefix = '.'
    module_name = prefix + os.sep + 'xparl_' + file_name[-1]
    tmp_file_name = module_name + '.py'
74 75 76
    with open(tmp_file_name, 'w') as t_file:
        for line in code:
            t_file.write(line)
B
Bo Zhou 已提交
77 78
    module_name = module_name.lstrip('.' + os.sep).replace(os.sep, '.')
    mod = __import__(module_name, globals(), locals(), [class_name], 0)
79 80
    cls = getattr(mod, class_name)
    return cls
81 82 83 84 85 86


@contextmanager
def redirect_stdout_to_file(file_path):
    """Redirect stdout (e.g., `print`) to specified file.

B
Bo Zhou 已提交
87 88 89
    Args:
        file_path: Path of the file to output the stdout.

90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
    Example:
    >>> print('test')
    test
    >>> with redirect_stdout_to_file('test.log'):
    ...     print('test')  # Output nothing, `test` is printed to `test.log`.
    >>> print('test')
    test
    """
    tmp = sys.stdout
    f = open(file_path, 'a')
    sys.stdout = f
    try:
        yield
    finally:
        sys.stdout = tmp
        f.close()
B
Bo Zhou 已提交
106 107 108 109 110


def locate_remote_file(module_path):
    """xparl has to locate the file that has the class decorated by parl.remote_class. 
    This function returns the relative path between this file and the entry file.
B
Bo Zhou 已提交
111
    Note that this function should support the jupyter-notebook environment.
B
Bo Zhou 已提交
112 113 114 115 116

    Args:
        module_path: Absolute path of the module.

    Example:
117
        module_path: /home/user/dir/subdir/my_module (or) ./dir/main
B
Bo Zhou 已提交
118 119 120
        entry_file: /home/user/dir/main.py
        --------> relative_path: subdir/my_module
  """
B
Bo Zhou 已提交
121 122 123 124 125 126 127 128 129 130 131
    if isnotebook():
        entry_path = os.getcwd()
    else:
        entry_file = sys.argv[0]
        entry_file = entry_file.split(os.sep)[-1]
        entry_path = None
        for path in sys.path:
            to_check_path = os.path.join(path, entry_file)
            if os.path.isfile(to_check_path):
                entry_path = path
                break
132 133 134
    # transfer the relative path to the absolute path
    if not os.path.isabs(module_path):
        module_path = os.path.abspath(module_path)
B
Bo Zhou 已提交
135 136 137 138 139 140 141 142
    if entry_path is None or \
        (module_path.startswith(os.sep) and entry_path != module_path[:len(entry_path)]):
        raise FileNotFoundError("cannot locate the remote file")
    if module_path.startswith(os.sep):
        relative_module_path = '.' + module_path[len(entry_path):]
    else:
        relative_module_path = module_path
    return relative_module_path