compute/vendor/libvirt.org/go/libvirt/node_device_events.go

153 lines
4.5 KiB
Go

/*
* This file is part of the libvirt-go-module project
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* Copyright (c) 2013 Alex Zorin
* Copyright (C) 2016 Red Hat, Inc.
*
*/
package libvirt
import (
"fmt"
"unsafe"
)
/*
#cgo !libvirt_dlopen pkg-config: libvirt
#cgo libvirt_dlopen LDFLAGS: -ldl
#cgo libvirt_dlopen CFLAGS: -DLIBVIRT_DLOPEN
#include "node_device_events_helper.h"
*/
import "C"
type NodeDeviceEventGenericCallback func(c *Connect, d *NodeDevice)
type NodeDeviceEventLifecycle struct {
Event NodeDeviceEventLifecycleType
// TODO: we can make Detail typesafe somehow ?
Detail int
}
type NodeDeviceEventLifecycleCallback func(c *Connect, n *NodeDevice, event *NodeDeviceEventLifecycle)
//export nodeDeviceEventLifecycleCallback
func nodeDeviceEventLifecycleCallback(c C.virConnectPtr, s C.virNodeDevicePtr,
event int, detail int,
goCallbackId int) {
node_device := &NodeDevice{ptr: s}
connection := &Connect{ptr: c}
eventDetails := &NodeDeviceEventLifecycle{
Event: NodeDeviceEventLifecycleType(event),
Detail: detail,
}
callbackFunc := getCallbackId(goCallbackId)
callback, ok := callbackFunc.(NodeDeviceEventLifecycleCallback)
if !ok {
panic("Inappropriate callback type called")
}
callback(connection, node_device, eventDetails)
}
//export nodeDeviceEventGenericCallback
func nodeDeviceEventGenericCallback(c C.virConnectPtr, d C.virNodeDevicePtr,
goCallbackId int) {
node_device := &NodeDevice{ptr: d}
connection := &Connect{ptr: c}
callbackFunc := getCallbackId(goCallbackId)
callback, ok := callbackFunc.(NodeDeviceEventGenericCallback)
if !ok {
panic("Inappropriate callback type called")
}
callback(connection, node_device)
}
func (c *Connect) NodeDeviceEventLifecycleRegister(device *NodeDevice, callback NodeDeviceEventLifecycleCallback) (int, error) {
goCallBackId := registerCallbackId(callback)
callbackPtr := unsafe.Pointer(C.nodeDeviceEventLifecycleCallbackHelper)
var cdevice C.virNodeDevicePtr
if device != nil {
cdevice = device.ptr
}
var err C.virError
ret := C.virConnectNodeDeviceEventRegisterAnyHelper(c.ptr, cdevice,
C.VIR_NODE_DEVICE_EVENT_ID_LIFECYCLE,
C.virConnectNodeDeviceEventGenericCallback(callbackPtr),
C.long(goCallBackId), &err)
if ret == -1 {
freeCallbackId(goCallBackId)
return 0, makeError(&err)
}
return int(ret), nil
}
func (c *Connect) NodeDeviceEventUpdateRegister(device *NodeDevice, callback NodeDeviceEventGenericCallback) (int, error) {
goCallBackId := registerCallbackId(callback)
callbackPtr := unsafe.Pointer(C.nodeDeviceEventGenericCallbackHelper)
var cdevice C.virNodeDevicePtr
if device != nil {
cdevice = device.ptr
}
var err C.virError
ret := C.virConnectNodeDeviceEventRegisterAnyHelper(c.ptr, cdevice,
C.VIR_NODE_DEVICE_EVENT_ID_UPDATE,
C.virConnectNodeDeviceEventGenericCallback(callbackPtr),
C.long(goCallBackId), &err)
if ret == -1 {
freeCallbackId(goCallBackId)
return 0, makeError(&err)
}
return int(ret), nil
}
func (c *Connect) NodeDeviceEventDeregister(callbackId int) error {
// Deregister the callback
var err C.virError
ret := int(C.virConnectNodeDeviceEventDeregisterAnyWrapper(c.ptr, C.int(callbackId), &err))
if ret < 0 {
return makeError(&err)
}
return nil
}
func (e NodeDeviceEventLifecycle) String() string {
var event string
switch e.Event {
case NODE_DEVICE_EVENT_CREATED:
event = "created"
case NODE_DEVICE_EVENT_DELETED:
event = "deleted"
default:
event = "unknown"
}
return fmt.Sprintf("NodeDevice event=%q", event)
}