func (p *VirStoragePool) GetUUIDString() (string, error) { var cUuid [C.VIR_UUID_STRING_BUFLEN](C.char) cuidPtr := unsafe.Pointer(&cUuid) result := C.virStoragePoolGetUUIDString(p.ptr, (*C.char)(cuidPtr)) if result != 0 { return "", errors.New(GetLastError()) } return C.GoString((*C.char)(cuidPtr)), nil }
// UUID fetches the globally unique ID of the storage pool as a string. func (pool StoragePool) UUID() (string, error) { cUUID := (*C.char)(C.malloc(C.size_t(C.VIR_UUID_STRING_BUFLEN))) defer C.free(unsafe.Pointer(cUUID)) pool.log.Println("reading storage pool UUID...") cRet := C.virStoragePoolGetUUIDString(pool.virStoragePool, cUUID) ret := int32(cRet) if ret == -1 { err := LastError() pool.log.Printf("an error occurred: %v\n", err) return "", err } uuid := C.GoString(cUUID) pool.log.Printf("UUID: %v\n", uuid) return uuid, nil }