Package libvirt provides a pure Go interface for interacting with Libvirt. Apache 2.0 Licensed.
Go to file
Geoff Hickey deb7a54ff8 Generate libvirt procedure wrappers.
The generated wrappers have an argument for every field in their "Args"
struct, and return everything in their "Ret" struct (these structs are
defined in the protocol file, and identified by procedure name).
Marshaling and unmarshaling is handled inside the generated procedures.
2017-11-13 15:18:18 -05:00
.travis Add Secrets() (#29) 2017-01-19 20:40:31 -06:00
internal Generate libvirt procedure wrappers. 2017-11-13 15:18:18 -05:00
libvirttest Generate libvirt constants from libvirt sources. 2017-11-02 19:42:44 -04:00
scripts Replaced scripts/golint.sh with built-in golint flag. (#17) 2016-10-04 20:26:25 -04:00
.travis.yml Adds libvirt 3.1.0 integration test target (#34) 2017-04-19 10:00:23 -06:00
AUTHORS Generate libvirt procedure wrappers. 2017-11-13 15:18:18 -05:00
CONTRIBUTING.md CONTRIBUTING, README: add IRC channel information 2016-10-04 12:31:26 -04:00
doc.go Initial Commit 2016-05-19 19:40:34 -06:00
libvirt_integration_test.go fix a trio of compiler warnings 2017-08-01 16:52:12 -04:00
libvirt_test.go Generate libvirt procedure wrappers. 2017-11-13 15:18:18 -05:00
libvirt.gen.go Generate libvirt procedure wrappers. 2017-11-13 15:18:18 -05:00
libvirt.go Generate libvirt procedure wrappers. 2017-11-13 15:18:18 -05:00
libvirtd.conf ci: install libvirt for integration testing 2016-10-20 14:53:29 -06:00
LICENSE.md Initial Commit 2016-05-19 19:40:34 -06:00
README.md Updates README (#43) 2017-06-22 10:04:46 -06:00
rpc_test.go Generate libvirt procedure wrappers. 2017-11-13 15:18:18 -05:00
rpc.go Generate libvirt constants from libvirt sources. 2017-11-02 19:42:44 -04:00

libvirt GoDoc Build Status Report Card

Package libvirt provides a pure Go interface for interacting with Libvirt.

Rather than using Libvirt's C bindings, this package makes use of Libvirt's RPC interface, as documented here. Connections to the libvirt server may be local, or remote. RPC packets are encoded using the XDR standard as defined by RFC 4506.

This should be considered a work in progress. Most functionaly provided by the C bindings have not yet made their way into this library. Pull requests are welcome! The definition of the RPC protocol is in the libvirt source tree under src/rpc/virnetprotocol.x.

Feel free to join us in #go-qemu on freenode if you'd like to discuss the project.

Warning

The libvirt project strongly recommends against talking to the RPC interface directly. They consider it to be a private implementation detail with the possibility of being entirely rearchitected in the future.

While these package are reasonably well-tested and have seen some use inside of DigitalOcean, there may be subtle bugs which could cause the packages to act in unexpected ways. Use at your own risk!

In addition, the API is not considered stable at this time. If you would like to include package libvirt in a project, we highly recommend vendoring it into your project.

Example

package main

import (
	"fmt"
	"log"
	"net"
	"time"

	"github.com/digitalocean/go-libvirt"
)

func main() {
	//c, err := net.DialTimeout("tcp", "127.0.0.1:16509", 2*time.Second)
	//c, err := net.DialTimeout("tcp", "192.168.1.12:16509", 2*time.Second)
	c, err := net.DialTimeout("unix", "/var/run/libvirt/libvirt-sock", 2*time.Second)
	if err != nil {
		log.Fatalf("failed to dial libvirt: %v", err)
	}

	l := libvirt.New(c)
	if err := l.Connect(); err != nil {
		log.Fatalf("failed to connect: %v", err)
	}

	v, err := l.Version()
	if err != nil {
		log.Fatalf("failed to retrieve libvirt version: %v", err)
	}
	fmt.Println("Version:", v)

	domains, err := l.Domains()
	if err != nil {
		log.Fatalf("failed to retrieve domains: %v", err)
	}

	fmt.Println("ID\tName\t\tUUID")
	fmt.Printf("--------------------------------------------------------\n")
	for _, d := range domains {
		fmt.Printf("%d\t%s\t%x\n", d.ID, d.Name, d.UUID)
	}

	if err := l.Disconnect(); err != nil {
		log.Fatal("failed to disconnect: %v", err)
	}
}

Version: 1.3.4
ID	Name		UUID
--------------------------------------------------------
1	Test-1		dc329f87d4de47198cfd2e21c6105b01
2	Test-2		dc229f87d4de47198cfd2e21c6105b01