|
| 1 | +import logging |
| 2 | + |
| 3 | +from pyhpcc.config import ( |
| 4 | + CLUSTER_OPTION, |
| 5 | + COMPILE_OPTIONS, |
| 6 | + JOB_NAME_OPTION, |
| 7 | + LIMIT_OPTION, |
| 8 | + MASKED_PASSWORD, |
| 9 | + OUTPUT_FILE_OPTION, |
| 10 | + PASSWORD_OPTIONS, |
| 11 | + PORT_OPTION, |
| 12 | + RUN_AUTH_OPTIONS, |
| 13 | + RUN_OPTIONS, |
| 14 | + SERVER_OPTIONS, |
| 15 | + USER_OPTIONS, |
| 16 | +) |
| 17 | +from pyhpcc.errors import CompileConfigException, RunConfigException |
| 18 | +from pyhpcc.models.auth import Auth |
| 19 | + |
| 20 | +log = logging.getLogger(__name__) |
| 21 | + |
| 22 | + |
| 23 | +class CompileConfig(object): |
| 24 | + """ |
| 25 | + Class for eclcc option configuration |
| 26 | +
|
| 27 | + Attributes: |
| 28 | + ---------- |
| 29 | + options: |
| 30 | + Dictionary of keys (option), values (value) |
| 31 | +
|
| 32 | + Methods: |
| 33 | + ------- |
| 34 | + validate_options: |
| 35 | + Validate if the compiler options are supported or not |
| 36 | +
|
| 37 | + set_output_file: |
| 38 | + Set name of output file (default a.out if linking to |
| 39 | +
|
| 40 | + create_compile_bash_command: |
| 41 | + Generate the eclcc command for the given options and input_file |
| 42 | +
|
| 43 | + get_option: |
| 44 | + Retrieves the compile config option |
| 45 | +
|
| 46 | +
|
| 47 | + """ |
| 48 | + |
| 49 | + def __init__(self, options: dict): |
| 50 | + self.options = options.copy() |
| 51 | + |
| 52 | + def validate_options(self): |
| 53 | + """Validate if the compiler options are supported or not""" |
| 54 | + invalid_options = [] |
| 55 | + for option in self.options: |
| 56 | + if option not in COMPILE_OPTIONS and not ( |
| 57 | + option.startswith("-R") or option.startswith("-f") |
| 58 | + ): |
| 59 | + invalid_options.append(option) |
| 60 | + if len(invalid_options) > 0: |
| 61 | + raise CompileConfigException(str(invalid_options)) |
| 62 | + |
| 63 | + def set_output_file(self, output_file): |
| 64 | + """Set name of output file (default a.out if linking to""" |
| 65 | + self.options[OUTPUT_FILE_OPTION] = output_file |
| 66 | + |
| 67 | + def create_compile_bash_command(self, input_file): |
| 68 | + """Generate the eclcc command for the given options and input_file""" |
| 69 | + self.validate_options() |
| 70 | + eclcc_command = "eclcc" |
| 71 | + for key, value in self.options.items(): |
| 72 | + if value is bool: |
| 73 | + eclcc_command += f" {key}" |
| 74 | + else: |
| 75 | + eclcc_command += f" {key} {value}" |
| 76 | + eclcc_command = f"{eclcc_command} {input_file}" |
| 77 | + return eclcc_command |
| 78 | + |
| 79 | + def get_option(self, option): |
| 80 | + """Get the option available for the option""" |
| 81 | + return self.options[option] |
| 82 | + |
| 83 | + |
| 84 | +class RunConfig(object): |
| 85 | + """ |
| 86 | + Class for ecl run option configuration |
| 87 | +
|
| 88 | + Attributes: |
| 89 | + ---------- |
| 90 | + options: |
| 91 | + Dictionary of keys (option), values (value) |
| 92 | +
|
| 93 | + Methods: |
| 94 | + ------- |
| 95 | + validate_options: |
| 96 | + Validate if the compiler options are supported or not |
| 97 | +
|
| 98 | + create_run_bash_command: |
| 99 | + Generate the ecl command for the given options and target_file |
| 100 | +
|
| 101 | + set_auth_params: |
| 102 | + Set the auth parameters from the auth object passed |
| 103 | +
|
| 104 | + set_target: |
| 105 | + Specify the job name for the workunit |
| 106 | +
|
| 107 | + set_limit: |
| 108 | + Sets the result limit for the query |
| 109 | +
|
| 110 | + set_server: |
| 111 | + Set IP of server running ecl services (eclwatch) |
| 112 | +
|
| 113 | + set_port: |
| 114 | + Set ECL services port |
| 115 | +
|
| 116 | + set_username: |
| 117 | + Set username for accessing ecl services |
| 118 | +
|
| 119 | + set_password: |
| 120 | + Set password for accessing ecl services |
| 121 | +
|
| 122 | + get_option: |
| 123 | + Retrieves the run config option |
| 124 | +
|
| 125 | + """ |
| 126 | + |
| 127 | + def __init__(self, options: dict): |
| 128 | + self.options = options.copy() |
| 129 | + |
| 130 | + def validate_options(self): |
| 131 | + """Validate if the runtime options are supported or not""" |
| 132 | + invalid_options = set() |
| 133 | + for option in self.options: |
| 134 | + if option not in RUN_OPTIONS and not ( |
| 135 | + option.startswith("-X") or option.startswith("-f") |
| 136 | + ): |
| 137 | + invalid_options.add(option) |
| 138 | + if len(invalid_options) > 0: |
| 139 | + log.error("Entered invalid options %s", str(invalid_options)) |
| 140 | + raise RunConfigException( |
| 141 | + f"Invalid options not supported by pyhpcc {str(invalid_options)}" |
| 142 | + ) |
| 143 | + |
| 144 | + def create_run_bash_command(self, target_file, password_mask=False): |
| 145 | + """Generate the ecl command for the given options and target_file""" |
| 146 | + self.validate_options() |
| 147 | + ecl_command = "ecl run" |
| 148 | + params = "" |
| 149 | + for key, value in self.options.items(): |
| 150 | + if value is bool: |
| 151 | + params += f" {key}" |
| 152 | + else: |
| 153 | + if key in PASSWORD_OPTIONS and password_mask: |
| 154 | + params += f" {key} {MASKED_PASSWORD}" |
| 155 | + else: |
| 156 | + params += f" {key} {value}" |
| 157 | + ecl_command = f"{ecl_command} {target_file}{params}" |
| 158 | + log.info(ecl_command) |
| 159 | + return ecl_command |
| 160 | + |
| 161 | + def set_auth_params(self, auth: Auth): |
| 162 | + """Set the auth parameters from the auth object passed""" |
| 163 | + for option in list(self.options): |
| 164 | + if option in RUN_AUTH_OPTIONS: |
| 165 | + log.warning(f"Overriding option {option} with Auth object parameters") |
| 166 | + del self.options[option] |
| 167 | + self.set_server(auth.ip) |
| 168 | + self.set_port(auth.port) |
| 169 | + self.set_username(auth.oauth[0]) |
| 170 | + self.set_password(auth.oauth[1]) |
| 171 | + |
| 172 | + def set_target(self, target): |
| 173 | + """Set the target""" |
| 174 | + self.options[CLUSTER_OPTION] = target |
| 175 | + |
| 176 | + def set_job_name(self, job_name): |
| 177 | + """Specify the job name for the workunit""" |
| 178 | + self.options[JOB_NAME_OPTION] = job_name |
| 179 | + |
| 180 | + def set_limit(self, limit): |
| 181 | + """Sets the result limit for the query""" |
| 182 | + self.options[LIMIT_OPTION] = limit |
| 183 | + |
| 184 | + def set_server(self, server): |
| 185 | + """Set IP of server running ecl services (eclwatch)""" |
| 186 | + self.options[SERVER_OPTIONS[0]] = server |
| 187 | + |
| 188 | + def set_port(self, port): |
| 189 | + """Set ECL services port""" |
| 190 | + self.options[PORT_OPTION] = port |
| 191 | + |
| 192 | + def set_username(self, username): |
| 193 | + """Set username for accessing ecl services""" |
| 194 | + self.options[USER_OPTIONS[0]] = username |
| 195 | + |
| 196 | + def set_password(self, password): |
| 197 | + """Set password for accessing ecl services""" |
| 198 | + self.options[PASSWORD_OPTIONS[0]] = password |
| 199 | + |
| 200 | + def get_option(self, option): |
| 201 | + """Get the option available for the option""" |
| 202 | + return self.options[option] |
0 commit comments