|
| 1 | +#!/usr/bin/env python3 |
| 2 | +# OpenPOWER Automated Test Project |
| 3 | +# |
| 4 | +# Contributors Listed Below - COPYRIGHT 2019 |
| 5 | +# [+] International Business Machines Corp. |
| 6 | +# |
| 7 | +# |
| 8 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | +# you may not use this file except in compliance with the License. |
| 10 | +# You may obtain a copy of the License at |
| 11 | +# |
| 12 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | +# |
| 14 | +# Unless required by applicable law or agreed to in writing, software |
| 15 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
| 17 | +# implied. See the License for the specific language governing |
| 18 | +# permissions and limitations under the License. |
| 19 | +# |
| 20 | + |
| 21 | +''' |
| 22 | +Profiler library |
| 23 | +--------------------- |
| 24 | +This adds a support to add user defined profilers |
| 25 | +''' |
| 26 | + |
| 27 | +import os |
| 28 | +import time |
| 29 | +import threading |
| 30 | + |
| 31 | +import OpTestConfiguration |
| 32 | +from .OpTestSystem import OpSystemState |
| 33 | +from .Exceptions import CommandFailed |
| 34 | + |
| 35 | +import OpTestLogger |
| 36 | +log = OpTestLogger.optest_logger_glob.get_logger(__name__) |
| 37 | + |
| 38 | + |
| 39 | +class profilerThread(threading.Thread): |
| 40 | + def __init__(self, cmd): |
| 41 | + threading.Thread.__init__(self) |
| 42 | + self.env = cmd['env'] |
| 43 | + self.cmd = cmd['cmd'] |
| 44 | + self.freq = int(cmd['freq']) |
| 45 | + self.name = cmd['name'] if cmd['name'] else self.cmd.replace(' ', '_') |
| 46 | + self._stop_event = threading.Event() |
| 47 | + self.conf = OpTestConfiguration.conf |
| 48 | + # TODO: consider adding all profiler output into seperate folder |
| 49 | + self.host = self.conf.host() |
| 50 | + self.system = self.conf.system() |
| 51 | + self.console = None |
| 52 | + if self.env == 'sut': |
| 53 | + try: |
| 54 | + self.console = self.host.get_new_ssh_connection(self.name) |
| 55 | + except Exception as err: |
| 56 | + # might not be yet in OS state |
| 57 | + pass |
| 58 | + elif self.env == 'server': |
| 59 | + pass |
| 60 | + elif self.env == 'bmc': |
| 61 | + pass |
| 62 | + else: |
| 63 | + log.warning("Unknown env given to run profilers, give either sut to" |
| 64 | + "run inside host or server to run ipmi commands") |
| 65 | + |
| 66 | + def run(self): |
| 67 | + log.info("Starting profile %s" % self.name) |
| 68 | + self.executed = False |
| 69 | + while True: |
| 70 | + if self.freq > 0: |
| 71 | + if self.env == 'sut': |
| 72 | + if self.system.state != OpSystemState.OS: |
| 73 | + continue |
| 74 | + if self.console: |
| 75 | + try: |
| 76 | + output = self.console.run_command(self.cmd) |
| 77 | + except CommandFailed as cf: |
| 78 | + log.warning('Profiler cmd failed to run %s', self.cmd) |
| 79 | + else: |
| 80 | + # try to reconnect |
| 81 | + log.warning('Reconnecting SSH console...') |
| 82 | + self.console = self.host.get_new_ssh_connection(self.name) |
| 83 | + |
| 84 | + elif self.env == 'server': |
| 85 | + # TODO: |
| 86 | + log.warning("Yet to implement") |
| 87 | + break |
| 88 | + elif self.env == 'bmc': |
| 89 | + # TODO: |
| 90 | + log.warning("Yet to implement") |
| 91 | + break |
| 92 | + time.sleep(self.freq) |
| 93 | + if self.is_stopped(): |
| 94 | + break |
| 95 | + |
| 96 | + else: |
| 97 | + if not self.executed: |
| 98 | + # FIXME: NEED add support for running long run cmds |
| 99 | + if self.env == 'sut': |
| 100 | + if self.system.state != OpSystemState.OS: |
| 101 | + continue |
| 102 | + if self.console: |
| 103 | + try: |
| 104 | + output = self.console.run_command(self.cmd) |
| 105 | + except CommandFailed as cf: |
| 106 | + log.warning('Profiler cmd failed to run %s', self.cmd) |
| 107 | + else: |
| 108 | + self.console = self.host.get_new_ssh_connection(self.name) |
| 109 | + try: |
| 110 | + output = self.console.run_command(self.cmd) |
| 111 | + except CommandFailed as cf: |
| 112 | + log.warning('Profiler cmd failed to run %s', self.cmd) |
| 113 | + elif self.env == 'server': |
| 114 | + # TODO: |
| 115 | + log.warning("Yet to implement") |
| 116 | + break |
| 117 | + elif self.env == 'bmc': |
| 118 | + # TODO: |
| 119 | + log.warning("Yet to implement") |
| 120 | + break |
| 121 | + self.executed = True |
| 122 | + if self.is_stopped(): |
| 123 | + break |
| 124 | + |
| 125 | + def stop(self): |
| 126 | + log.info("Stopping profile %s", self.name) |
| 127 | + self._stop_event.set() |
| 128 | + |
| 129 | + def is_stopped(self): |
| 130 | + return self._stop_event.is_set() |
| 131 | + |
| 132 | + def wait(self, delaysec=5): |
| 133 | + self._stop_event.wait(delaysec) |
| 134 | + |
| 135 | + |
| 136 | +class Profilers(object): |
| 137 | + def __init__(self, profiler_cmd_path=None, profiler_cmd=None): |
| 138 | + """ |
| 139 | + Profiler class to create profiler threads |
| 140 | + params: profiler_cmd_path: file with profiler information,by default it |
| 141 | + will use the 'profilers' file kept in basepath |
| 142 | + params: profiler_cmd: dict type optional profile, if given will take the |
| 143 | + precedence over profiler_cmd_path argument, |
| 144 | + can be used inside testcase, E:g:- |
| 145 | + {'cmd': vmstat, |
| 146 | + 'freq': 2, |
| 147 | + 'env': 'sut', |
| 148 | + 'name': 'vmstat-1'} |
| 149 | + """ |
| 150 | + self.conf = OpTestConfiguration.conf |
| 151 | + self.path = profiler_cmd_path if profiler_cmd_path else os.join(os.path.dirname(os.path.abspath(__file__)), 'profilers') |
| 152 | + if not os.path.isfile(self.path): |
| 153 | + log.warning("Check the profiler command path, given path is not valid: %s", self.path) |
| 154 | + self.profilers = [] |
| 155 | + # Optional and if given takes precedence |
| 156 | + if profiler_cmd: |
| 157 | + self.profilers.append(profiler_cmd) |
| 158 | + else: |
| 159 | + self.profilers = self.parse_profilers() |
| 160 | + self.host = self.conf.host() |
| 161 | + self.system = self.conf.system() |
| 162 | + self.profilethreads = [] |
| 163 | + |
| 164 | + def parse_profilers(self): |
| 165 | + profile_content = [] |
| 166 | + profile_list = [] |
| 167 | + profile = {'cmd': None, |
| 168 | + 'freq': 0, |
| 169 | + 'env': 'sut', |
| 170 | + 'name': None} |
| 171 | + temp = profile.copy() |
| 172 | + try: |
| 173 | + with open(self.path) as profile_obj: |
| 174 | + profile_content = [line.strip('\n') for line in profile_obj.readlines()] |
| 175 | + except Exception as err: |
| 176 | + log.warning("Error reading profiler cmd file") |
| 177 | + pass |
| 178 | + else: |
| 179 | + for item in profile_content: |
| 180 | + if item.startswith("#"): |
| 181 | + continue |
| 182 | + try: |
| 183 | + temp['cmd'] = item.split(',')[0] |
| 184 | + temp['freq'] = int(item.split(',')[1]) |
| 185 | + temp['env'] = item.split(',')[2] |
| 186 | + temp['name'] = item.split(',')[3] |
| 187 | + except IndexError: |
| 188 | + pass |
| 189 | + profile_list.append(temp.copy()) |
| 190 | + temp = profile.copy() |
| 191 | + finally: |
| 192 | + return profile_list |
| 193 | + |
| 194 | + def create_profile_threads(self): |
| 195 | + profiler_threads = [] |
| 196 | + for prof in self.profilers: |
| 197 | + self.profilethreads.append(profilerThread(prof)) |
| 198 | + return self.profilethreads |
| 199 | + |
| 200 | + def run(self): |
| 201 | + self.create_profile_threads() |
| 202 | + for thread in self.profilethreads: |
| 203 | + thread.start() |
| 204 | + |
| 205 | + def stop(self): |
| 206 | + for thread in self.profilethreads: |
| 207 | + thread.stop() |
| 208 | + |
| 209 | + def join(self): |
| 210 | + for thread in self.profilethreads: |
| 211 | + thread.join() |
0 commit comments