Example #1
0
def mainProcess(rootpath):
    """mainProcess:main process"""
    logQueue = multiprocessing.Queue(-1)
    logObj = MultiLogHandle(logQueue, rootpath, "MainControl")

    debugProcess = multiprocessing.Process(target=writeDebugProcess,
            args=[logQueue, rootpath])
    errorProcess = multiprocessing.Process(target=writeErrorProcess,
            args=[logQueue, rootpath])
    debugProcess.start()
    errorProcess.start()

    while 1:
        try:
            if not logObj.receive():
                break
        except Exception, msg:
            print "Main control occur error, msg:{0}.".format(msg)
            break
Example #2
0
def writeErrorProcess(logQueue, rootpath):
    """writeErrorProcess:Write error msg process.

    :param logQueue:share queue
    """
    logObj = MultiLogHandle(logQueue, rootpath, "Error-process")
    for i in range(10):
        msg = "Error msg number({0}).".format(i)
        logObj.sendError(logObj.ERROR, msg)
        logObj.sendError(logObj.WARN, msg)
        logObj.sendError(logObj.INFO, msg)
    time.sleep(2)
    logObj.stop()