service_manager.py 38.2 KB
Newer Older
1 2
from __future__ import annotations

3 4 5
import os
import io
import sys
6
from enum import Enum
7 8 9 10
import threading
import signal
import logging
import time
11
from subprocess import PIPE, Popen, TimeoutExpired
12 13
from typing import BinaryIO, Generator, IO, List, NewType, Optional
import typing
14 15 16 17 18 19 20

try:
    import psutil
except:
    print("Psutil module needed, please install: sudo pip3 install psutil")
    sys.exit(-1)
from queue import Queue, Empty
21

22 23 24
from .shared.config import Config
from .shared.db import DbTarget, DbConn
from .shared.misc import Logging, Helper, CrashGenError, Status, Progress, Dice
25
from .shared.types import DirPath, IpcStream
26 27 28 29 30

# from crash_gen.misc import CrashGenError, Dice, Helper, Logging, Progress, Status
# from crash_gen.db import DbConn, DbTarget
# from crash_gen.settings import Config
# from crash_gen.types import DirPath
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58

class TdeInstance():
    """
    A class to capture the *static* information of a TDengine instance,
    including the location of the various files/directories, and basica
    configuration.
    """

    @classmethod
    def _getBuildPath(cls):
        selfPath = os.path.dirname(os.path.realpath(__file__))
        if ("community" in selfPath):
            projPath = selfPath[:selfPath.find("communit")]
        else:
            projPath = selfPath[:selfPath.find("tests")]

        buildPath = None
        for root, dirs, files in os.walk(projPath):
            if ("taosd" in files):
                rootRealPath = os.path.dirname(os.path.realpath(root))
                if ("packaging" not in rootRealPath):
                    buildPath = root[:len(root) - len("/build/bin")]
                    break
        if buildPath == None:
            raise RuntimeError("Failed to determine buildPath, selfPath={}, projPath={}"
                .format(selfPath, projPath))
        return buildPath

S
Steven Li 已提交
59 60 61 62
    @classmethod
    def prepareGcovEnv(cls, env):
        # Ref: https://gcc.gnu.org/onlinedocs/gcc/Cross-profiling.html
        bPath = cls._getBuildPath() # build PATH
63 64 65 66
        numSegments = len(bPath.split('/')) # "/x/TDengine/build" should yield 3
        # numSegments += 2 # cover "/src" after build
        # numSegments = numSegments - 1 # DEBUG only
        env['GCOV_PREFIX'] = bPath + '/src_s' # Server side source
S
Steven Li 已提交
67
        env['GCOV_PREFIX_STRIP'] = str(numSegments) # Strip every element, plus, ENV needs strings
68
        # VERY VERY important note: GCOV data collection NOT effective upon SIG_KILL
S
Steven Li 已提交
69 70 71
        Logging.info("Preparing GCOV environement to strip {} elements and use path: {}".format(
            numSegments, env['GCOV_PREFIX'] ))

72
    def __init__(self, subdir='test', tInstNum=0, port=6030, fepPort=6030):
73 74 75 76 77
        self._buildDir  = self._getBuildPath()
        self._subdir    = '/' + subdir # TODO: tolerate "/"
        self._port      = port # TODO: support different IP address too
        self._fepPort   = fepPort

78
        self._tInstNum    = tInstNum
79 80 81 82

        # An "Tde Instance" will *contain* a "sub process" object, with will/may use a thread internally
        # self._smThread    = ServiceManagerThread()
        self._subProcess  = None # type: Optional[TdeSubProcess]
83

84 85 86 87 88
    def getDbTarget(self):
        return DbTarget(self.getCfgDir(), self.getHostAddr(), self._port)

    def getPort(self):
        return self._port
89 90

    def __repr__(self):
91 92
        return "[TdeInstance: {}, subdir={}]".format(
            self._buildDir, Helper.getFriendlyPath(self._subdir))
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    
    def generateCfgFile(self):       
        # print("Logger = {}".format(logger))
        # buildPath = self.getBuildPath()
        # taosdPath = self._buildPath + "/build/bin/taosd"

        cfgDir  = self.getCfgDir()
        cfgFile = cfgDir + "/taos.cfg" # TODO: inquire if this is fixed
        if os.path.exists(cfgFile):
            if os.path.isfile(cfgFile):
                Logging.warning("Config file exists already, skip creation: {}".format(cfgFile))
                return # cfg file already exists, nothing to do
            else:
                raise CrashGenError("Invalid config file: {}".format(cfgFile))
        # Now that the cfg file doesn't exist
        if os.path.exists(cfgDir):
            if not os.path.isdir(cfgDir):
                raise CrashGenError("Invalid config dir: {}".format(cfgDir))
            # else: good path
        else: 
            os.makedirs(cfgDir, exist_ok=True) # like "mkdir -p"
        # Now we have a good cfg dir
        cfgValues = {
116 117 118 119
            'runDir':   self.getRunDir(),
            'ip':       '127.0.0.1', # TODO: change to a network addressable ip
            'port':     self._port,
            'fepPort':  self._fepPort,
120 121 122 123 124 125 126
        }
        cfgTemplate = """
dataDir {runDir}/data
logDir  {runDir}/log

charset UTF-8

127
firstEp {ip}:{fepPort}
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
fqdn {ip}
serverPort {port}

# was all 135 below
dDebugFlag 135
cDebugFlag 135
rpcDebugFlag 135
qDebugFlag 135
# httpDebugFlag 143
# asyncLog 0
# tables 10
maxtablesPerVnode 10
rpcMaxTime 101
# cache 2
keep 36500
# walLevel 2
walLevel 1
#
# maxConnections 100
147
quorum 2
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
"""
        cfgContent = cfgTemplate.format_map(cfgValues)
        f = open(cfgFile, "w")
        f.write(cfgContent)
        f.close()

    def rotateLogs(self):
        logPath = self.getLogDir()
        # ref: https://stackoverflow.com/questions/1995373/deleting-all-files-in-a-directory-with-python/1995397
        if os.path.exists(logPath):
            logPathSaved = logPath + "_" + time.strftime('%Y-%m-%d-%H-%M-%S')
            Logging.info("Saving old log files to: {}".format(logPathSaved))
            os.rename(logPath, logPathSaved)
        # os.mkdir(logPath) # recreate, no need actually, TDengine will auto-create with proper perms


    def getExecFile(self): # .../taosd
        return self._buildDir + "/build/bin/taosd"

167 168
    def getRunDir(self) -> DirPath : # TODO: rename to "root dir" ?!
        return DirPath(self._buildDir + self._subdir)
169

170 171
    def getCfgDir(self) -> DirPath : # path, not file
        return DirPath(self.getRunDir() + "/cfg")
172

173 174
    def getLogDir(self) -> DirPath :
        return DirPath(self.getRunDir() + "/log")
175 176 177 178

    def getHostAddr(self):
        return "127.0.0.1"

179
    def getServiceCmdLine(self): # to start the instance
180
        if Config.getConfig().track_memory_leaks:
181
            Logging.info("Invoking VALGRIND on service...")
182
            return ['exec valgrind', '--leak-check=yes', self.getExecFile(), '-c', self.getCfgDir()]
183 184 185
        else:
            # TODO: move "exec -c" into Popen(), we can both "use shell" and NOT fork so ask to lose kill control
            return ["exec " + self.getExecFile(), '-c', self.getCfgDir()] # used in subproce.Popen()
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
    
    def _getDnodes(self, dbc):
        dbc.query("show dnodes")
        cols = dbc.getQueryResult() #  id,end_point,vnodes,cores,status,role,create_time,offline reason
        return {c[1]:c[4] for c in cols} # {'xxx:6030':'ready', 'xxx:6130':'ready'}

    def createDnode(self, dbt: DbTarget):
        """
        With a connection to the "first" EP, let's create a dnode for someone else who
        wants to join.
        """
        dbc = DbConn.createNative(self.getDbTarget())
        dbc.open()

        if dbt.getEp() in self._getDnodes(dbc):
            Logging.info("Skipping DNode creation for: {}".format(dbt))
            dbc.close()
            return

        sql = "CREATE DNODE \"{}\"".format(dbt.getEp())
        dbc.execute(sql)
        dbc.close()

    def getStatus(self):
210 211 212 213
        # return self._smThread.getStatus()
        if self._subProcess is None:
            return Status(Status.STATUS_EMPTY)
        return self._subProcess.getStatus()
214

215 216
    # def getSmThread(self):
    #     return self._smThread
217 218

    def start(self):
219
        if self.getStatus().isActive():
220 221 222 223 224 225
            raise CrashGenError("Cannot start instance from status: {}".format(self.getStatus()))

        Logging.info("Starting TDengine instance: {}".format(self))
        self.generateCfgFile() # service side generates config file, client does not
        self.rotateLogs()

226 227
        # self._smThread.start(self.getServiceCmdLine(), self.getLogDir()) # May raise exceptions
        self._subProcess = TdeSubProcess(self.getServiceCmdLine(),  self.getLogDir())
228 229

    def stop(self):
230 231
        self._subProcess.stop()
        self._subProcess = None
232 233 234

    def isFirst(self):
        return self._tInstNum == 0
235

236 237 238 239 240 241 242 243 244 245 246 247 248 249
    def printFirst10Lines(self):
        if self._subProcess is None:
            Logging.warning("Incorrect TI status for procIpcBatch-10 operation")
            return
        self._subProcess.procIpcBatch(trimToTarget=10, forceOutput=True)  

    def procIpcBatch(self):
        if self._subProcess is None:
            Logging.warning("Incorrect TI status for procIpcBatch operation")
            return
        self._subProcess.procIpcBatch() # may enounter EOF and change status to STOPPED
        if self._subProcess.getStatus().isStopped():
            self._subProcess.stop()
            self._subProcess = None
250 251 252 253 254 255 256 257

class TdeSubProcess:
    """
    A class to to represent the actual sub process that is the run-time
    of a TDengine instance. 

    It takes a TdeInstance object as its parameter, with the rationale being
    "a sub process runs an instance".
258 259 260

    We aim to ensure that this object has exactly the same life-cycle as the 
    underlying sub process.
261 262
    """

263 264 265 266
    # RET_ALREADY_STOPPED = -1
    # RET_TIME_OUT = -3
    # RET_SUCCESS = -4

267 268 269 270 271 272 273 274 275
    def __init__(self, cmdLine: List[str], logDir: DirPath):
        # Create the process + managing thread immediately

        Logging.info("Attempting to start TAOS sub process...")
        self._popen     = self._start(cmdLine) # the actual sub process
        self._smThread  = ServiceManagerThread(self, logDir)  # A thread to manage the sub process, mostly to process the IO
        Logging.info("Successfully started TAOS process: {}".format(self))


276

S
Steven Li 已提交
277
    def __repr__(self):
278 279
        # if self.subProcess is None:
        #     return '[TdeSubProc: Empty]'
280 281
        return '[TdeSubProc: pid = {}, status = {}]'.format(
            self.getPid(), self.getStatus() )
S
Steven Li 已提交
282

283
    def getIpcStdOut(self) -> IpcStream :
284 285 286
        if self._popen.universal_newlines : # alias of text_mode
            raise CrashGenError("We need binary mode for STDOUT IPC")
        # Logging.info("Type of stdout is: {}".format(type(self._popen.stdout)))
287
        return typing.cast(IpcStream, self._popen.stdout)
288

289
    def getIpcStdErr(self) -> IpcStream :
290 291
        if self._popen.universal_newlines : # alias of text_mode
            raise CrashGenError("We need binary mode for STDERR IPC")
292
        return typing.cast(IpcStream, self._popen.stderr)
293

294 295 296
    # Now it's always running, since we matched the life cycle
    # def isRunning(self):
    #     return self.subProcess is not None
297 298

    def getPid(self):
299
        return self._popen.pid
300

301
    def _start(self, cmdLine) -> Popen :
302
        ON_POSIX = 'posix' in sys.builtin_module_names
303
        
S
Steven Li 已提交
304 305 306 307 308 309
        # Prepare environment variables for coverage information
        # Ref: https://stackoverflow.com/questions/2231227/python-subprocess-popen-with-a-modified-environment
        myEnv = os.environ.copy()
        TdeInstance.prepareGcovEnv(myEnv)

        # print(myEnv)
310
        # print("Starting TDengine with env: ", myEnv.items())
311
        print("Starting TDengine: {}".format(cmdLine))
S
Steven Li 已提交
312

313
        ret = Popen(            
314 315 316 317
            ' '.join(cmdLine), # ' '.join(cmdLine) if useShell else cmdLine,
            shell=True, # Always use shell, since we need to pass ENV vars
            stdout=PIPE,
            stderr=PIPE,
S
Steven Li 已提交
318 319
            close_fds=ON_POSIX,
            env=myEnv
320
            )  # had text=True, which interferred with reading EOF
321 322 323 324
        time.sleep(0.01) # very brief wait, then let's check if sub process started successfully.
        if ret.poll():
            raise CrashGenError("Sub process failed to start with command line: {}".format(cmdLine))
        return ret
325

326
    STOP_SIGNAL = signal.SIGINT # signal.SIGKILL/SIGINT # What signal to use (in kill) to stop a taosd process?
327
    SIG_KILL_RETCODE = 137 # ref: https://stackoverflow.com/questions/43268156/process-finished-with-exit-code-137-in-pycharm
S
Steven Li 已提交
328

329
    def stop(self):
330
        """
331 332 333
        Stop a sub process, DO NOT return anything, process all conditions INSIDE.

        Calling function should immediately delete/unreference the object
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350

        Common POSIX signal values (from man -7 signal):
        SIGHUP           1
        SIGINT           2 
        SIGQUIT          3 
        SIGILL           4
        SIGTRAP          5
        SIGABRT          6 
        SIGIOT           6 
        SIGBUS           7 
        SIGEMT           - 
        SIGFPE           8  
        SIGKILL          9  
        SIGUSR1         10 
        SIGSEGV         11
        SIGUSR2         12
        """
351 352
        # self._popen should always be valid.

353 354 355 356 357 358 359 360 361
        Logging.info("Terminating TDengine service running as the sub process...")
        if self.getStatus().isStopped():
            Logging.info("Service already stopped")
            return
        if self.getStatus().isStopping():
            Logging.info("Service is already being stopped, pid: {}".format(self.getPid()))
            return

        self.setStatus(Status.STATUS_STOPPING)
362

363
        retCode = self._popen.poll() # ret -N means killed with signal N, otherwise it's from exit(N)
364
        if retCode:  # valid return code, process ended
365
            # retCode = -retCode # only if valid
366
            Logging.warning("TSP.stop(): process ended itself")
367
            # self.subProcess = None
368
            return
369 370

        # process still alive, let's interrupt it
371
        self._stopForSure(self._popen, self.STOP_SIGNAL) # success if no exception
372

373 374 375 376
        # sub process should end, then IPC queue should end, causing IO thread to end  
        self._smThread.stop() # stop for sure too

        self.setStatus(Status.STATUS_STOPPED)
377 378

    @classmethod
379
    def _stopForSure(cls, proc: Popen, sig: int):
380 381 382
        ''' 
        Stop a process and all sub processes with a singal, and SIGKILL if necessary
        '''
383
        def doKillTdService(proc: Popen, sig: int):
384 385 386 387 388 389 390 391 392 393 394
            Logging.info("Killing sub-sub process {} with signal {}".format(proc.pid, sig))
            proc.send_signal(sig)
            try:            
                retCode = proc.wait(20)
                if (- retCode) == signal.SIGSEGV: # Crashed
                    Logging.warning("Process {} CRASHED, please check CORE file!".format(proc.pid))
                elif (- retCode) == sig : 
                    Logging.info("TD service terminated with expected return code {}".format(sig))
                else:
                    Logging.warning("TD service terminated, EXPECTING ret code {}, got {}".format(sig, -retCode))
                return True # terminated successfully
395
            except TimeoutExpired as err:
396 397 398 399 400 401 402 403
                Logging.warning("Failed to kill sub-sub process {} with signal {}".format(proc.pid, sig))
            return False # failed to terminate


        def doKillChild(child: psutil.Process, sig: int):
            Logging.info("Killing sub-sub process {} with signal {}".format(child.pid, sig))
            child.send_signal(sig)
            try:            
404 405
                retCode = child.wait(20) # type: ignore
                if (- retCode) == signal.SIGSEGV: # type: ignore # Crashed
406
                    Logging.warning("Process {} CRASHED, please check CORE file!".format(child.pid))
407
                elif (- retCode) == sig : # type: ignore
408 409
                    Logging.info("Sub-sub process terminated with expected return code {}".format(sig))
                else:
410
                    Logging.warning("Process terminated, EXPECTING ret code {}, got {}".format(sig, -retCode)) # type: ignore
411 412 413 414 415
                return True # terminated successfully
            except psutil.TimeoutExpired as err:
                Logging.warning("Failed to kill sub-sub process {} with signal {}".format(child.pid, sig))
            return False # did not terminate

416
        def doKill(proc: Popen, sig: int):
417 418
            pid = proc.pid
            try:
419
                topSubProc = psutil.Process(pid) # Now that we are doing "exec -c", should not have children any more
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
                for child in topSubProc.children(recursive=True):  # or parent.children() for recursive=False
                    Logging.warning("Unexpected child to be killed")
                    doKillChild(child, sig)
            except psutil.NoSuchProcess as err:
                Logging.info("Process not found, can't kill, pid = {}".format(pid))
            
            return doKillTdService(proc, sig)
            # TODO: re-examine if we need to kill the top process, which is always the SHELL for now
            # try:
            #     proc.wait(1) # SHELL process here, may throw subprocess.TimeoutExpired exception
            #     # expRetCode = self.SIG_KILL_RETCODE if sig==signal.SIGKILL else (-sig)
            #     # if retCode == expRetCode:
            #     #     Logging.info("Process terminated with expected return code {}".format(retCode))
            #     # else:
            #     #     Logging.warning("Process terminated, EXPECTING ret code {}, got {}".format(expRetCode, retCode))
            #     # return True # success
            # except subprocess.TimeoutExpired as err:
            #     Logging.warning("Failed to kill process {} with signal {}".format(pid, sig))
            # return False # failed to kill

        def softKill(proc, sig):
            return doKill(proc, sig)

        def hardKill(proc):
444
            return doKill(proc, signal.SIGKILL) 
445 446 447 448

        pid = proc.pid
        Logging.info("Terminate running processes under {}, with SIG #{} and wait...".format(pid, sig))
        if softKill(proc, sig):            
449
            return # success
450 451
        if sig != signal.SIGKILL: # really was soft above            
            if hardKill(proc):
452
                return 
453
        raise CrashGenError("Failed to stop process, pid={}".format(pid))
454

455 456 457 458 459 460 461 462 463
    def getStatus(self):
        return self._smThread.getStatus()

    def setStatus(self, status):
        self._smThread.setStatus(status)

    def procIpcBatch(self, trimToTarget=0, forceOutput=False):
        self._smThread.procIpcBatch(trimToTarget, forceOutput)

464 465 466
class ServiceManager:
    PAUSE_BETWEEN_IPC_CHECK = 1.2  # seconds between checks on STDOUT of sub process

467
    def __init__(self, numDnodes): # >1 when we run a cluster
468 469
        Logging.info("TDengine Service Manager (TSM) created")
        self._numDnodes = numDnodes # >1 means we have a cluster
470
        self._lock = threading.Lock()
471 472 473 474 475 476 477
        # signal.signal(signal.SIGTERM, self.sigIntHandler) # Moved to MainExec
        # signal.signal(signal.SIGINT, self.sigIntHandler)
        # signal.signal(signal.SIGUSR1, self.sigUsrHandler)  # different handler!

        self.inSigHandler = False
        # self._status = MainExec.STATUS_RUNNING # set inside
        # _startTaosService()
478
        self._runCluster = (numDnodes > 1)
479
        self._tInsts : List[TdeInstance] = []
480
        for i in range(0, numDnodes):
481 482 483 484 485 486 487
            ti = self._createTdeInstance(i) # construct tInst
            self._tInsts.append(ti)

        # self.svcMgrThreads : List[ServiceManagerThread] = []
        # for i in range(0, numDnodes):
        #     thread = self._createThread(i) # construct tInst
        #     self.svcMgrThreads.append(thread)
488

489
    def _createTdeInstance(self, dnIndex):
490 491 492 493
        if not self._runCluster: # single instance 
            subdir = 'test'
        else:        # Create all threads in a cluster
            subdir = 'cluster_dnode_{}'.format(dnIndex)
494 495
        fepPort= 6030 # firstEP Port
        port   = fepPort + dnIndex * 100
496 497
        return TdeInstance(subdir, dnIndex, port, fepPort)
        # return ServiceManagerThread(dnIndex, ti)
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559

    def _doMenu(self):
        choice = ""
        while True:
            print("\nInterrupting Service Program, Choose an Action: ")
            print("1: Resume")
            print("2: Terminate")
            print("3: Restart")
            # Remember to update the if range below
            # print("Enter Choice: ", end="", flush=True)
            while choice == "":
                choice = input("Enter Choice: ")
                if choice != "":
                    break  # done with reading repeated input
            if choice in ["1", "2", "3"]:
                break  # we are done with whole method
            print("Invalid choice, please try again.")
            choice = ""  # reset
        return choice

    def sigUsrHandler(self, signalNumber, frame):
        print("Interrupting main thread execution upon SIGUSR1")
        if self.inSigHandler:  # already
            print("Ignoring repeated SIG...")
            return  # do nothing if it's already not running
        self.inSigHandler = True

        choice = self._doMenu()
        if choice == "1":            
            self.sigHandlerResume() # TODO: can the sub-process be blocked due to us not reading from queue?
        elif choice == "2":
            self.stopTaosServices()
        elif choice == "3": # Restart
            self.restart()
        else:
            raise RuntimeError("Invalid menu choice: {}".format(choice))

        self.inSigHandler = False

    def sigIntHandler(self, signalNumber, frame):
        print("ServiceManager: INT Signal Handler starting...")
        if self.inSigHandler:
            print("Ignoring repeated SIG_INT...")
            return
        self.inSigHandler = True

        self.stopTaosServices()
        print("ServiceManager: INT Signal Handler returning...")
        self.inSigHandler = False

    def sigHandlerResume(self):
        print("Resuming TDengine service manager (main thread)...\n\n")

    # def _updateThreadStatus(self):
    #     if self.svcMgrThread:  # valid svc mgr thread
    #         if self.svcMgrThread.isStopped():  # done?
    #             self.svcMgrThread.procIpcBatch()  # one last time. TODO: appropriate?
    #             self.svcMgrThread = None  # no more

    def isActive(self):
        """
        Determine if the service/cluster is active at all, i.e. at least
560
        one instance is active
561
        """
562
        for ti in self._tInsts:
563
            if ti.getStatus().isActive():
564 565 566
                return True
        return False

567 568 569 570 571 572 573
    def isRunning(self):
        for ti in self._tInsts:
            if not ti.getStatus().isRunning():
                return False
        return True


574 575 576 577 578 579 580 581 582 583 584 585 586 587 588
    # def isRestarting(self):
    #     """
    #     Determine if the service/cluster is being "restarted", i.e., at least
    #     one thread is in "restarting" status
    #     """
    #     for thread in self.svcMgrThreads:
    #         if thread.isRestarting():
    #             return True
    #     return False

    def isStable(self):
        """
        Determine if the service/cluster is "stable", i.e. all of the
        threads are in "stable" status.
        """
589
        for ti in self._tInsts:
590
            if not ti.getStatus().isStable():
591 592 593 594 595
                return False
        return True

    def _procIpcAll(self):
        while self.isActive():
596 597
            Progress.emit(Progress.SERVICE_HEART_BEAT)
            for ti in self._tInsts: # all thread objects should always be valid
598
            # while self.isRunning() or self.isRestarting() :  # for as long as the svc mgr thread is still here
599 600
                status = ti.getStatus()
                if  status.isRunning():
601 602
                    # th = ti.getSmThread()
                    ti.procIpcBatch()  # regular processing,
603
                    if  status.isStopped():
604
                        ti.procIpcBatch() # one last time?
605 606 607 608
                    # self._updateThreadStatus()
                    
            time.sleep(self.PAUSE_BETWEEN_IPC_CHECK)  # pause, before next round
        # raise CrashGenError("dummy")
S
Steven Li 已提交
609
        Logging.info("Service Manager Thread (with subprocess) ended, main thread exiting...")
610

611 612 613
    def _getFirstInstance(self):
        return self._tInsts[0]

614 615 616 617 618 619 620
    def startTaosServices(self):
        with self._lock:
            if self.isActive():
                raise RuntimeError("Cannot start TAOS service(s) when one/some may already be running")

            # Find if there's already a taosd service, and then kill it
            for proc in psutil.process_iter():
621
                if proc.name() == 'taosd' or proc.name() == 'memcheck-amd64-': # Regular or under Valgrind
S
Steven Li 已提交
622
                    Logging.info("Killing an existing TAOSD process in 2 seconds... press CTRL-C to interrupt")
623 624 625 626 627
                    time.sleep(2.0)
                    proc.kill()
                # print("Process: {}".format(proc.name()))
            
            # self.svcMgrThread = ServiceManagerThread()  # create the object
628 629 630 631 632 633
            
            for ti in self._tInsts:
                ti.start()  
                if not ti.isFirst():                                    
                    tFirst = self._getFirstInstance()
                    tFirst.createDnode(ti.getDbTarget())
634 635
                ti.printFirst10Lines()
                # ti.getSmThread().procIpcBatch(trimToTarget=10, forceOutput=True)  # for printing 10 lines                                     
636 637 638 639 640 641 642

    def stopTaosServices(self):
        with self._lock:
            if not self.isActive():
                Logging.warning("Cannot stop TAOS service(s), already not active")
                return

643 644
            for ti in self._tInsts:
                ti.stop()
645 646 647 648 649 650 651 652
                
    def run(self):
        self.startTaosServices()
        self._procIpcAll()  # pump/process all the messages, may encounter SIG + restart
        if  self.isActive():  # if sig handler hasn't destroyed it by now
            self.stopTaosServices()  # should have started already

    def restart(self):
653
        if not self.isStable():
654 655 656 657 658 659 660 661 662
            Logging.warning("Cannot restart service/cluster, when not stable")
            return

        # self._isRestarting = True
        if  self.isActive():
            self.stopTaosServices()
        else:
            Logging.warning("Service not active when restart requested")

663
        self.startTaosServices()
664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680
        # self._isRestarting = False

    # def isRunning(self):
    #     return self.svcMgrThread != None

    # def isRestarting(self):
    #     return self._isRestarting

class ServiceManagerThread:
    """
    A class representing a dedicated thread which manages the "sub process"
    of the TDengine service, interacting with its STDOUT/ERR.

    It takes a TdeInstance parameter at creation time, or create a default    
    """
    MAX_QUEUE_SIZE = 10000

681
    def __init__(self, subProc: TdeSubProcess, logDir: str):
682
        # Set the sub process
683
        # self._tdeSubProcess = None # type: TdeSubProcess
684 685

        # Arrange the TDengine instance
686 687
        # self._tInstNum = tInstNum # instance serial number in cluster, ZERO based
        # self._tInst    = tInst or TdeInstance() # Need an instance
688

689 690
        # self._thread  = None # type: Optional[threading.Thread]  # The actual thread, # type: threading.Thread
        # self._thread2 = None # type: Optional[threading.Thread] Thread  # watching stderr
691
        self._status = Status(Status.STATUS_STOPPED) # The status of the underlying service, actually.
692

693 694
        self._start(subProc, logDir)

695
    def __repr__(self):
696 697 698
        raise CrashGenError("SMT status moved to TdeSubProcess")
        # return "[SvcMgrThread: status={}, subProc={}]".format(
        #     self.getStatus(), self._tdeSubProcess)
699 700

    def getStatus(self):
701 702 703
        '''
        Get the status of the process being managed. (misnomer alert!)
        '''
704 705
        return self._status

706 707 708
    def setStatus(self, statusVal: int):
        self._status.set(statusVal)

709 710
    # Start the thread (with sub process), and wait for the sub service
    # to become fully operational
711
    def _start(self, subProc :TdeSubProcess, logDir: str):
712 713 714 715 716 717
        '''
        Request the manager thread to start a new sub process, and manage it.

        :param cmdLine: the command line to invoke
        :param logDir: the logging directory, to hold stdout/stderr files
        '''
718 719 720 721
        # if self._thread:
        #     raise RuntimeError("Unexpected _thread")
        # if self._tdeSubProcess:
        #     raise RuntimeError("TDengine sub process already created/running")
722

723 724
        # Moved to TdeSubProcess
        # Logging.info("Attempting to start TAOS service: {}".format(self))
725

726
        self._status.set(Status.STATUS_STARTING)
727
        # self._tdeSubProcess = TdeSubProcess.start(cmdLine) # TODO: verify process is running
728

729
        self._ipcQueue = Queue() # type: Queue
730 731
        self._thread = threading.Thread( # First thread captures server OUTPUT
            target=self.svcOutputReader,
732
            args=(subProc.getIpcStdOut(), self._ipcQueue, logDir))
733 734
        self._thread.daemon = True  # thread dies with the program
        self._thread.start()
735 736
        time.sleep(0.01)
        if not self._thread.is_alive(): # What happened?
737
            Logging.info("Failed to start process to monitor STDOUT")
738 739 740
            self.stop()
            raise CrashGenError("Failed to start thread to monitor STDOUT")
        Logging.info("Successfully started process to monitor STDOUT")
741 742 743

        self._thread2 = threading.Thread( # 2nd thread captures server ERRORs
            target=self.svcErrorReader,
744
            args=(subProc.getIpcStdErr(), self._ipcQueue, logDir))
745 746
        self._thread2.daemon = True  # thread dies with the program
        self._thread2.start()
747 748 749 750
        time.sleep(0.01)
        if not self._thread2.is_alive():
            self.stop()
            raise CrashGenError("Failed to start thread to monitor STDERR")
751 752 753 754 755

        # wait for service to start
        for i in range(0, 100):
            time.sleep(1.0)
            # self.procIpcBatch() # don't pump message during start up
S
Steven Li 已提交
756 757
            Progress.emit(Progress.SERVICE_START_NAP)
            # print("_zz_", end="", flush=True)
758
            if self._status.isRunning():
759 760
                Logging.info("[] TDengine service READY to process requests: pid={}".format(subProc.getPid()))
                # Logging.info("[] TAOS service started: {}".format(self))
761 762
                # self._verifyDnode(self._tInst) # query and ensure dnode is ready
                # Logging.debug("[] TAOS Dnode verified: {}".format(self))
763 764 765
                return  # now we've started
        # TODO: handle failure-to-start  better?
        self.procIpcBatch(100, True) # display output before cronking out, trim to last 20 msgs, force output
766
        raise RuntimeError("TDengine service DID NOT achieve READY status: pid={}".format(subProc.getPid()))
767

768 769 770 771 772 773 774 775 776
    def _verifyDnode(self, tInst: TdeInstance):
        dbc = DbConn.createNative(tInst.getDbTarget())
        dbc.open()
        dbc.query("show dnodes")
        # dbc.query("DESCRIBE {}.{}".format(dbName, self._stName))
        cols = dbc.getQueryResult() #  id,end_point,vnodes,cores,status,role,create_time,offline reason
        # ret = {row[0]:row[1] for row in stCols if row[3]=='TAG'} # name:type
        isValid = False
        for col in cols:
777
            # print("col = {}".format(col))
778
            ep = col[1].split(':') # 10.1.30.2:6030
779
            print("Found ep={}".format(ep))
780
            if tInst.getPort() == int(ep[1]): # That's us
781
                # print("Valid Dnode matched!")
782 783 784
                isValid = True # now we are valid
                break
        if not isValid:
785
            print("Failed to start dnode, sleep for a while")
786
            time.sleep(10.0)
787 788
            raise RuntimeError("Failed to start Dnode, expected port not found: {}".
                format(tInst.getPort()))
789 790
        dbc.close()

791 792
    def stop(self):
        # can be called from both main thread or signal handler
793

794
        # Linux will send Control-C generated SIGINT to the TDengine process already, ref:
795
        # https://unix.stackexchange.com/questions/176235/fork-and-how-signals-are-delivered-to-processes
796 797

        self.join()  # stop the thread, status change moved to TdeSubProcess
798 799

        # Check if it's really stopped
800 801
        outputLines = 10 # for last output
        if  self.getStatus().isStopped():
802
            self.procIpcBatch(outputLines)  # one last time
803
            Logging.debug("End of TDengine Service Output")
804
            Logging.info("----- TDengine Service (managed by SMT) is now terminated -----\n")
805
        else:
806
            print("WARNING: SMT did not terminate as expected")
807 808 809

    def join(self):
        # TODO: sanity check
810 811 812 813 814 815 816 817 818 819 820 821
        s = self.getStatus()
        if s.isStopping() or s.isStopped(): # we may be stopping ourselves, or have been stopped/killed by others
            if self._thread or self._thread2 :
                if self._thread:
                    self._thread.join()
                    self._thread = None
                if self._thread2: # STD ERR thread            
                    self._thread2.join()
                    self._thread2 = None
            else:
                Logging.warning("Joining empty thread, doing nothing")
        else:
822
            raise RuntimeError(
823
                "SMT.Join(): Unexpected status: {}".format(self._status))
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842

    def _trimQueue(self, targetSize):
        if targetSize <= 0:
            return  # do nothing
        q = self._ipcQueue
        if (q.qsize() <= targetSize):  # no need to trim
            return

        Logging.debug("Triming IPC queue to target size: {}".format(targetSize))
        itemsToTrim = q.qsize() - targetSize
        for i in range(0, itemsToTrim):
            try:
                q.get_nowait()
            except Empty:
                break  # break out of for loop, no more trimming

    TD_READY_MSG = "TDengine is initialized successfully"

    def procIpcBatch(self, trimToTarget=0, forceOutput=False):
843 844
        '''
        Process a batch of STDOUT/STDERR data, until we read EMPTY from
845
        the queue.
846
        '''
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861
        self._trimQueue(trimToTarget)  # trim if necessary
        # Process all the output generated by the underlying sub process,
        # managed by IO thread
        print("<", end="", flush=True)
        while True:
            try:
                line = self._ipcQueue.get_nowait()  # getting output at fast speed
                self._printProgress("_o")
            except Empty:
                # time.sleep(2.3) # wait only if there's no output
                # no more output
                print(".>", end="", flush=True)
                return  # we are done with THIS BATCH
            else:  # got line, printing out
                if forceOutput:
S
Steven Li 已提交
862
                    Logging.info('[TAOSD] ' + line)
863
                else:
S
Steven Li 已提交
864
                    Logging.debug('[TAOSD] ' + line)
865 866 867 868 869 870 871 872 873 874
        print(">", end="", flush=True)

    _ProgressBars = ["--", "//", "||", "\\\\"]

    def _printProgress(self, msg):  # TODO: assuming 2 chars
        print(msg, end="", flush=True)
        pBar = self._ProgressBars[Dice.throw(4)]
        print(pBar, end="", flush=True)
        print('\b\b\b\b', end="", flush=True)

875 876 877
    BinaryChunk = NewType('BinaryChunk', bytes) # line with binary data, directly from STDOUT, etc.
    TextChunk   = NewType('TextChunk', str) # properly decoded, suitable for printing, etc.
   
878
    @classmethod
879
    def _decodeBinaryChunk(cls, bChunk: bytes) -> Optional[TextChunk] :
880
        try:
881 882
            tChunk = bChunk.decode("utf-8").rstrip() 
            return cls.TextChunk(tChunk)
883
        except UnicodeError:
884
            print("\nNon-UTF8 server output: {}\n".format(bChunk.decode('cp437')))
885 886
            return None

887
    def _textChunkGenerator(self, streamIn: IpcStream, logDir: str, logFile: str
888 889
            ) -> Generator[TextChunk, None, None]:
        '''
890 891 892 893
        Take an input stream with binary data (likely from Popen), produced a generator of decoded
        "text chunks".
        
        Side effect: it also save the original binary data in a log file.
894 895 896
        '''
        os.makedirs(logDir, exist_ok=True)
        logF = open(os.path.join(logDir, logFile), 'wb')
897 898 899
        if logF is None:
            Logging.error("Failed to open log file (binary write): {}/{}".format(logDir, logFile))
            return
900 901 902 903 904 905 906
        for bChunk in iter(streamIn.readline, b''):
            logF.write(bChunk) # Write to log file immediately
            tChunk = self._decodeBinaryChunk(bChunk) # decode
            if tChunk is not None:
                yield tChunk # TODO: split into actual text lines

        # At the end...
907 908
        streamIn.close() # Close the incoming stream
        logF.close() # Close the log file
909

910
    def svcOutputReader(self, ipcStdOut: IpcStream, queue, logDir: str):
911 912 913
        '''
        The infinite routine that processes the STDOUT stream for the sub process being managed.

914
        :param ipcStdOut: the IO stream object used to fetch the data from
915
        :param queue: the queue where we dump the roughly parsed chunk-by-chunk text data
916 917
        :param logDir: where we should dump a verbatim output file
        '''
918
        
919 920
        # Important Reference: https://stackoverflow.com/questions/375427/non-blocking-read-on-a-subprocess-pipe-in-python
        # print("This is the svcOutput Reader...")
921
        # stdOut.readline() # Skip the first output? TODO: remove?
922
        for tChunk in self._textChunkGenerator(ipcStdOut, logDir, 'stdout.log') :
923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
            queue.put(tChunk) # tChunk garanteed not to be None
            self._printProgress("_i")

            if self._status.isStarting():  # we are starting, let's see if we have started
                if tChunk.find(self.TD_READY_MSG) != -1:  # found
                    Logging.info("Waiting for the service to become FULLY READY")
                    time.sleep(1.0) # wait for the server to truly start. TODO: remove this
                    Logging.info("Service is now FULLY READY") # TODO: more ID info here?
                    self._status.set(Status.STATUS_RUNNING)

            # Trim the queue if necessary: TODO: try this 1 out of 10 times
            self._trimQueue(self.MAX_QUEUE_SIZE * 9 // 10)  # trim to 90% size

            if self._status.isStopping():  # TODO: use thread status instead
                # WAITING for stopping sub process to finish its outptu
                print("_w", end="", flush=True)
939 940

            # queue.put(line)
941
        # stdOut has no more data, meaning sub process must have died
942 943
        Logging.info("EOF found TDengine STDOUT, marking the process as terminated")
        self.setStatus(Status.STATUS_STOPPED)
944

945
    def svcErrorReader(self, ipcStdErr: IpcStream, queue, logDir: str):
946 947 948 949
        # os.makedirs(logDir, exist_ok=True)
        # logFile = os.path.join(logDir,'stderr.log')
        # fErr = open(logFile, 'wb')
        # for line in iter(err.readline, b''):
950
        for tChunk in self._textChunkGenerator(ipcStdErr, logDir, 'stderr.log') :
951 952 953
            queue.put(tChunk) # tChunk garanteed not to be None
            # fErr.write(line)
            Logging.info("TDengine STDERR: {}".format(tChunk))
954
        Logging.info("EOF for TDengine STDERR")