summaryrefslogtreecommitdiff
path: root/vendor/github.com/dmacvicar/libvirt-go/secret.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/dmacvicar/libvirt-go/secret.go')
-rw-r--r--vendor/github.com/dmacvicar/libvirt-go/secret.go78
1 files changed, 78 insertions, 0 deletions
diff --git a/vendor/github.com/dmacvicar/libvirt-go/secret.go b/vendor/github.com/dmacvicar/libvirt-go/secret.go
new file mode 100644
index 00000000..f96360dd
--- /dev/null
+++ b/vendor/github.com/dmacvicar/libvirt-go/secret.go
@@ -0,0 +1,78 @@
+package libvirt
+
+/*
+#cgo LDFLAGS: -lvirt
+#include <libvirt/libvirt.h>
+#include <libvirt/virterror.h>
+#include <stdlib.h>
+*/
+import "C"
+
+import (
+ "unsafe"
+)
+
+type VirSecret struct {
+ ptr C.virSecretPtr
+}
+
+func (s *VirSecret) Free() error {
+ if result := C.virSecretFree(s.ptr); result != 0 {
+ return GetLastError()
+ }
+ return nil
+}
+
+func (s *VirSecret) Undefine() error {
+ result := C.virSecretUndefine(s.ptr)
+ if result == -1 {
+ return GetLastError()
+ }
+ return nil
+}
+
+func (s *VirSecret) GetUUID() ([]byte, error) {
+ var cUuid [C.VIR_UUID_BUFLEN](byte)
+ cuidPtr := unsafe.Pointer(&cUuid)
+ result := C.virSecretGetUUID(s.ptr, (*C.uchar)(cuidPtr))
+ if result != 0 {
+ return []byte{}, GetLastError()
+ }
+ return C.GoBytes(cuidPtr, C.VIR_UUID_BUFLEN), nil
+}
+
+func (s *VirSecret) GetUUIDString() (string, error) {
+ var cUuid [C.VIR_UUID_STRING_BUFLEN](C.char)
+ cuidPtr := unsafe.Pointer(&cUuid)
+ result := C.virSecretGetUUIDString(s.ptr, (*C.char)(cuidPtr))
+ if result != 0 {
+ return "", GetLastError()
+ }
+ return C.GoString((*C.char)(cuidPtr)), nil
+}
+
+func (s *VirSecret) GetUsageID() (string, error) {
+ result := C.virSecretGetUsageID(s.ptr)
+ if result == nil {
+ return "", GetLastError()
+ }
+ return C.GoString(result), nil
+}
+
+func (s *VirSecret) GetUsageType() (int, error) {
+ result := int(C.virSecretGetUsageType(s.ptr))
+ if result == -1 {
+ return 0, GetLastError()
+ }
+ return result, nil
+}
+
+func (s *VirSecret) GetXMLDesc(flags uint32) (string, error) {
+ result := C.virSecretGetXMLDesc(s.ptr, C.uint(flags))
+ if result == nil {
+ return "", GetLastError()
+ }
+ xml := C.GoString(result)
+ C.free(unsafe.Pointer(result))
+ return xml, nil
+}