为libvirt中的每个事件调用两次事件回调函数

2024-05-17 05:05:46 发布

您现在位置:Python中文网/ 问答频道 /正文

newVM是一个创建新VM的函数。对于每个来宾VM,事件回调函数被执行2次,尽管计时器回调在每个间隔仅正确执行一次。我无法找出同样的原因

eventLoopThread = None
libvirt.virEventRegisterDefaultImpl()

def virEventLoopNativeStart():
    global eventLoopThread
    eventLoopThread = threading.Thread(target=virEventLoopNativeRun, name="libvirtEventLoop")
    eventLoopThread.setDaemon(True)
    eventLoopThread.start()

def domainEventCallback(conn, dom, event, detail, opaque):
    print(" event callback %s %s %s", event, dom.name(), dom.state())

def domainTimeoutCalllback(timer, opaque):
    print(" Timeout ")

def virEventLoopNativeRun():
    while True:
        libvirt.virEventRunDefaultImpl()

virEventLoopNativeStart()
conn = libvirt.open('qemu:///system')
if conn == None:
    print('Failed to open connection to qemu:///system', file=sys.stderr)
    exit(1)
conn.domainEventRegister(domainEventCallback, None)
conn.setKeepAlive(5, 3)

def newVM(xmldata): #xmldata is XML to define guest machine
    try: 
        conn = libvirt.open('qemu:///system')
        if conn == None:
            print('Failed to open connection to qemu:///system', file=sys.stderr)
            exit(1)

        dom = conn.defineXML(xmldata)
        if dom == None:
            print('Failed to define a domain from an XML definition.', file=sys.stderr)
            exit(1)

        if dom.create() < 0:
            print('Can not boot guest domain.', file=sys.stderr)
            exit(1)
    
        libvirt.virEventAddTimeout(runTime, domainTimeoutCalllback, None)
    except libvirt.libvirtError:
        abort(404, "Libvirt could not be configured")



Tags: tononeifdefstderrsysopenconn