Пример #1
0
    def run_code(self, code):
        result = dict()
        file_path = fx_file_utils.write_file(fx_file_utils.make_temp_dir(),
                                             self.get_file_name(), code)
        try:
            # subprocess.check_output waiting sub process, and return output results
            # stderr is type of standard output
            out_data = fx_string_utils.decode_utf_8(
                subprocess.check_output(['php', file_path],
                                        stderr=subprocess.STDOUT,
                                        timeout=5))

            # return success data
            result[fx_constants.KEY_OUTPUT] = out_data
            result[fx_constants.KEY_CODE] = fx_constants.KEY_CODE_SUCCESS
            return result
        except subprocess.CalledProcessError as e:
            # return error data
            result[fx_constants.KEY_CODE] = fx_constants.KEY_CODE_ERROR
            result[fx_constants.KEY_OUTPUT] = fx_string_utils.decode_utf_8(
                e.output)
            return result
        finally:
            # delete temp file
            try:
                os.remove(file_path)
            except Exception as e:
                logging.error('Remove file failed: %s' % e)
Пример #2
0
    def run_code(self, code):
        result = dict()
        file_name = self.get_file_name(code)
        file_dir = fx_file_utils.make_temp_dir()
        file_path = fx_file_utils.write_file(file_dir, file_name, code)
        try:
            # subprocess.check_output waiting sub process, and return output results
            # stderr is type of standard output
            out_data = fx_string_utils.decode_utf_8(
                subprocess.check_output([fx_constants.JAVAC_EXEC, file_path],
                                        stderr=subprocess.STDOUT,
                                        timeout=5))
            java_name = file_name.replace('.java', '')
            out_data = fx_string_utils.decode_utf_8(
                subprocess.check_output([
                    self.bash_file, file_dir, fx_constants.JAVA_EXEC, java_name
                ],
                                        stderr=subprocess.STDOUT,
                                        timeout=5))

            # return success data
            result[fx_constants.KEY_OUTPUT] = out_data
            result[fx_constants.KEY_CODE] = fx_constants.KEY_CODE_SUCCESS
            return result
        except subprocess.CalledProcessError as e:
            # return error data
            logging.error(e.output)
            result[fx_constants.KEY_CODE] = fx_constants.KEY_CODE_ERROR
            error_output = fx_string_utils.decode_utf_8(e.output)
            if '.java' in error_output:
                error_output = 'Line' + error_output.split('.java')[1]
            result[fx_constants.KEY_OUTPUT] = error_output
            return result
        finally:
            # delete temp file
            try:
                os.remove(file_path)
            except Exception as e:
                logging.error('Remove file failed: %s' % e)
Пример #3
0
def get_javac_path():
    javac_path = fx_string_utils.decode_utf_8(
        subprocess.check_output(['whereis', 'javac'])).replace('\n', '')
    return javac_path