Created
May 2, 2017 09:17
-
-
Save rcgoodfellow/02ebb7767e4f685a672cf39f34f6908d to your computer and use it in GitHub Desktop.
domain.go with domain attributes added
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This file is part of the libvirt-go-xml 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) 2016 Red Hat, Inc. | |
* | |
*/ | |
package libvirtxml | |
import ( | |
"encoding/xml" | |
) | |
type DomainController struct { | |
Type string `xml:"type,attr"` | |
Index string `xml:"index,attr"` | |
} | |
type DomainDiskSecret struct { | |
Type string `xml:"type,attr,omitempty"` | |
Usage string `xml:"usage,attr,omitempty"` | |
UUID string `xml:"uuid,attr,omitempty"` | |
} | |
type DomainDiskAuth struct { | |
Username string `xml:"username,attr,omitempty"` | |
Secret *DomainDiskSecret `xml:"secret"` | |
} | |
type DomainDiskSourceHost struct { | |
Transport string `xml:"transport,attr,omitempty"` | |
Name string `xml:"name,attr,omitempty"` | |
Port string `xml:"port,attr,omitempty"` | |
Socket string `xml:"socket,attr,omitempty"` | |
} | |
type DomainDiskSource struct { | |
File string `xml:"file,attr,omitempty"` | |
Device string `xml:"dev,attr,omitempty"` | |
Protocol string `xml:"protocol,attr,omitempty"` | |
Name string `xml:"name,attr,omitempty"` | |
Hosts []DomainDiskSourceHost `xml:"host"` | |
StartupPolicy string `xml:"startupPolicy,attr,omitempty"` | |
} | |
type DomainDiskDriver struct { | |
Name string `xml:"name,attr,omitempty"` | |
Type string `xml:"type,attr,omitempty"` | |
} | |
type DomainDiskTarget struct { | |
Dev string `xml:"dev,attr,omitempty"` | |
Bus string `xml:"bus,attr,omitempty"` | |
} | |
type DomainDisk struct { | |
Type string `xml:"type,attr"` | |
Device string `xml:"device,attr"` | |
Snapshot string `xml:"snapshot,attr,omitempty"` | |
Driver *DomainDiskDriver `xml:"driver"` | |
Auth *DomainDiskAuth `xml:"auth"` | |
Source *DomainDiskSource `xml:"source"` | |
Target *DomainDiskTarget `xml:"target"` | |
} | |
type DomainFilesystemDriver struct { | |
Type string `xml:"type,attr"` | |
Name string `xml:"name,attr,omitempty"` | |
WRPolicy string `xml:"wrpolicy,attr,omitempty"` | |
} | |
type DomainFilesystemSource struct { | |
Dir string `xml:"dir,attr,omitempty"` | |
File string `xml:"file,attr,omitempty"` | |
} | |
type DomainFilesystemTarget struct { | |
Dir string `xml:"dir,attr"` | |
} | |
type DomainFilesystemReadOnly struct { | |
} | |
type DomainFilesystemSpaceHardLimit struct { | |
Value int `xml:",chardata"` | |
Unit string `xml:"unit,attr,omitempty"` | |
} | |
type DomainFilesystemSpaceSoftLimit struct { | |
Value int `xml:",chardata"` | |
Unit string `xml:"unit,attr,omitempty"` | |
} | |
type DomainFilesystem struct { | |
Type string `xml:"type,attr"` | |
AccessMode string `xml:"accessmode,attr"` | |
Driver *DomainFilesystemDriver `xml:"driver"` | |
Source *DomainFilesystemSource `xml:"source"` | |
Target *DomainFilesystemTarget `xml:"target"` | |
ReadOnly *DomainFilesystemReadOnly `xml:"readonly"` | |
SpaceHardLimit *DomainFilesystemSpaceHardLimit `xml:"space_hard_limit"` | |
SpaceSoftLimit *DomainFilesystemSpaceSoftLimit `xml:"space_soft_limit"` | |
} | |
type DomainInterfaceMAC struct { | |
Address string `xml:"address,attr"` | |
} | |
type DomainInterfaceModel struct { | |
Type string `xml:"type,attr"` | |
} | |
type DomainInterfaceSource struct { | |
Bridge string `xml:"bridge,attr,omitempty"` | |
Network string `xml:"network,attr,omitempty"` | |
Address string `xml:"address,attr,omitempty"` | |
Type string `xml:"type,attr,omitempty"` | |
Path string `xml:"path,attr,omitempty"` | |
Mode string `xml:"mode,attr,omitempty"` | |
Port uint `xml:"port,attr,omitempty"` | |
} | |
type DomainInterfaceTarget struct { | |
Dev string `xml:"dev,attr"` | |
} | |
type DomainInterfaceAlias struct { | |
Name string `xml:"name,attr"` | |
} | |
type DomainInterfaceLink struct { | |
State string `xml:"state,attr"` | |
} | |
type DomainInterfaceBoot struct { | |
Order int `xml:"order,attr"` | |
} | |
type DomainInterfaceScript struct { | |
Path string `xml:"path,attr"` | |
} | |
type DomainInterfaceDriver struct { | |
Name string `xml:"name,attr"` | |
Queues uint `xml:"queues,attr,omitempty"` | |
} | |
type DomainInterface struct { | |
Type string `xml:"type,attr"` | |
MAC *DomainInterfaceMAC `xml:"mac"` | |
Model *DomainInterfaceModel `xml:"model"` | |
Source *DomainInterfaceSource `xml:"source"` | |
Target *DomainInterfaceTarget `xml:"target"` | |
Alias *DomainInterfaceAlias `xml:"alias"` | |
Link *DomainInterfaceLink `xml:"link"` | |
Boot *DomainInterfaceBoot `xml:"boot"` | |
Script *DomainInterfaceScript `xml:"script"` | |
Driver *DomainInterfaceDriver `xml:"driver"` | |
} | |
type DomainChardevSource struct { | |
Mode string `xml:"mode,attr"` | |
Path string `xml:"path,attr"` | |
} | |
type DomainChardevTarget struct { | |
Type string `xml:"type,attr"` | |
Name string `xml:"name,attr"` | |
State string `xml:"state,attr,omitempty"` // is guest agent connected? | |
} | |
type DomainAlias struct { | |
Name string `xml:"name,attr"` | |
} | |
type DomainAddress struct { | |
Type string `xml:"type,attr"` | |
Controller *uint `xml:"controller,attr"` | |
Bus *uint `xml:"bus,attr"` | |
Port *uint `xml:"port,attr"` | |
} | |
type DomainChardev struct { | |
Type string `xml:"type,attr"` | |
Source *DomainChardevSource `xml:"source"` | |
Target *DomainChardevTarget `xml:"target"` | |
Alias *DomainAlias `xml:"alias"` | |
Address *DomainAddress `xml:"address"` | |
} | |
type DomainInput struct { | |
Type string `xml:"type,attr"` | |
Bus string `xml:"bus,attr"` | |
} | |
type DomainGraphicListener struct { | |
Type string `xml:"type,attr"` | |
Address string `xml:"address,attr,omitempty"` | |
Network string `xml:"network,attr,omitempty"` | |
Socket string `xml:"socket,attr,omitempty"` | |
} | |
type DomainGraphic struct { | |
Type string `xml:"type,attr"` | |
AutoPort string `xml:"autoport,attr,omitempty"` | |
Port int `xml:"port,attr,omitempty"` | |
TLSPort int `xml:"tlsPort,attr,omitempty"` | |
WebSocket int `xml:"websocket,attr,omitempty"` | |
Listen string `xml:"listen,attr,omitempty"` | |
Socket string `xml:"socket,attr,omitempty"` | |
Keymap string `xml:"keymap,attr,omitempty"` | |
Passwd string `xml:"passwd,attr,omitempty"` | |
PasswdValidTo string `xml:"passwdValidTo,attr,omitempty"` | |
Connected string `xml:"connected,attr,omitempty"` | |
SharePolicy string `xml:"sharePolicy,attr,omitempty"` | |
DefaultMode string `xml:"defaultMode,attr,omitempty"` | |
Display string `xml:"display,attr,omitempty"` | |
XAuth string `xml:"xauth,attr,omitempty"` | |
FullScreen string `xml:"fullscreen,attr,omitempty"` | |
ReplaceUser string `xml:"replaceUser,attr,omitempty"` | |
MultiUser string `xml:"multiUser,attr,omitempty"` | |
Listeners []DomainGraphicListener `xml:"listen"` | |
} | |
type DomainVideoModel struct { | |
Type string `xml:"type,attr"` | |
} | |
type DomainVideo struct { | |
Model DomainVideoModel `xml:"model"` | |
} | |
type DomainDeviceList struct { | |
Controllers []DomainController `xml:"controller"` | |
Disks []DomainDisk `xml:"disk"` | |
Filesystems []DomainFilesystem `xml:"filesystem"` | |
Interfaces []DomainInterface `xml:"interface"` | |
Serials []DomainChardev `xml:"serial"` | |
Consoles []DomainChardev `xml:"console"` | |
Inputs []DomainInput `xml:"input"` | |
Graphics []DomainGraphic `xml:"graphics"` | |
Videos []DomainVideo `xml:"video"` | |
Channels []DomainChardev `xml:"channel"` | |
} | |
type DomainMemory struct { | |
Value int `xml:",chardata"` | |
Unit string `xml:"unit,attr,omitempty"` | |
} | |
type DomainMaxMemory struct { | |
Value int `xml:",chardata"` | |
Unit string `xml:"unit,attr,omitempty"` | |
Slots int `xml:"slots,attr,omitempty"` | |
} | |
type DomainOSType struct { | |
Arch string `xml:"arch,attr,omitempty"` | |
Machine string `xml:"machine,attr,omitempty"` | |
Type string `xml:",chardata"` | |
} | |
type DomainSMBios struct { | |
Mode string `xml:"mode,attr"` | |
} | |
type DomainNVRam struct { | |
NVRam string `xml:",chardata"` | |
Template string `xml:"template,attr"` | |
} | |
type DomainBootDevice struct { | |
Dev string `xml:"dev,attr"` | |
} | |
type DomainBootMenu struct { | |
Enabled string `xml:"enabled,attr"` | |
Timeout string `xml:"timeout,attr"` | |
} | |
type DomainSysInfo struct { | |
Type string `xml:"type,attr"` | |
System []DomainSysInfoEntry `xml:"system>entry"` | |
BIOS []DomainSysInfoEntry `xml:"bios>entry"` | |
BaseBoard []DomainSysInfoEntry `xml:"baseBoard>entry"` | |
} | |
type DomainSysInfoEntry struct { | |
Name string `xml:"name,attr"` | |
Value string `xml:",chardata"` | |
} | |
type DomainBIOS struct { | |
UseSerial string `xml:"useserial,attr"` | |
RebootTimeout string `xml:"rebootTimeout,attr"` | |
} | |
type DomainLoader struct { | |
Path string `xml:",chardata"` | |
Readonly string `xml:"readonly,attr"` | |
Secure string `xml:"secure,attr"` | |
Type string `xml:"type,attr"` | |
} | |
type DomainOS struct { | |
Type *DomainOSType `xml:"type"` | |
Loader *DomainLoader `xml:"loader"` | |
NVRam *DomainNVRam `xml:"nvram"` | |
Kernel string `xml:"kernel,omitempty"` | |
Initrd string `xml:"initrd,omitempty"` | |
KernelArgs string `xml:"cmdline,omitempty"` | |
BootDevices []DomainBootDevice `xml:"boot"` | |
BootMenu *DomainBootMenu `xml:"bootmenu"` | |
SMBios *DomainSMBios `xml:"smbios"` | |
BIOS *DomainBIOS `xml:"bios"` | |
Init string `xml:"init,omitempty"` | |
InitArgs []string `xml:"initarg"` | |
} | |
type DomainResource struct { | |
Partition string `xml:"partition,omitempty"` | |
} | |
type DomainVCPU struct { | |
Placement string `xml:"placement,attr,omitempty"` | |
CPUSet string `xml:"cpuset,attr,omitempty"` | |
Current string `xml:"current,attr,omitempty"` | |
Value int `xml:",chardata"` | |
} | |
type DomainCPUModel struct { | |
Fallback string `xml:"fallback,attr,omitempty"` | |
Value string `xml:",chardata"` | |
} | |
type DomainCPUTopology struct { | |
Sockets int `xml:"sockets,attr,omitempty"` | |
Cores int `xml:"cores,attr,omitempty"` | |
Threads int `xml:"threads,attr,omitempty"` | |
} | |
type DomainCPUFeature struct { | |
Policy string `xml:"policy,attr,omitempty"` | |
Name string `xml:"name,attr,omitempty"` | |
} | |
type DomainCPU struct { | |
Match string `xml:"match,attr,omitempty"` | |
Mode string `xml:"mode,attr,omitempty"` | |
Model *DomainCPUModel `xml:"model"` | |
Vendor string `xml:"vendor,omitempty"` | |
Topology *DomainCPUTopology `xml:"topology"` | |
Features []DomainCPUFeature `xml:"feature"` | |
} | |
type DomainFeature struct { | |
State string `xml:"state,attr,omitempty"` | |
} | |
type DomainFeatureAPIC struct { | |
DomainFeature | |
EOI string `xml:"eio,attr,omitempty"` | |
} | |
type DomainFeatureVendorId struct { | |
DomainFeature | |
Value string `xml:"value,attr,omitempty"` | |
} | |
type DomainFeatureSpinlocks struct { | |
DomainFeature | |
Retries uint `xml:"retries,attr,omitempty"` | |
} | |
type DomainFeatureHyperV struct { | |
DomainFeature | |
Relaxed *DomainFeature `xml:"relaxed,omitempty"` | |
VAPIC *DomainFeature `xml:"vapic,omitempty"` | |
Spinlocks *DomainFeatureSpinlocks `xml:"spinlocks,omitempty"` | |
VPIndex *DomainFeature `xml:"vpindex,omitempty"` | |
Runtime *DomainFeature `xml:"runtime,omitempty"` | |
Synic *DomainFeature `xml:"synic,omitempty"` | |
STimer *DomainFeature `xml:"stimer,omitempty"` | |
Reset *DomainFeature `xml:"reset,omitempty"` | |
VendorId *DomainFeatureVendorId `xml:"vendor_id,omitempty"` | |
} | |
type DomainFeatureKVM struct { | |
DomainFeature | |
Hidden *DomainFeature `xml:"hidden,omitempty"` | |
} | |
type DomainFeatureGIC struct { | |
DomainFeature | |
Version string `xml:"version,attr,omitempty"` | |
} | |
type DomainFeatureList struct { | |
PAE *DomainFeature `xml:"pae,omitempty"` | |
ACPI *DomainFeature `xml:"acpi,omitempty"` | |
APIC *DomainFeatureAPIC `xml:"apic,omitempty"` | |
HAP *DomainFeature `xml:"hap,omitempty"` | |
Viridian *DomainFeature `xml:"viridian,omitempty"` | |
PrivNet *DomainFeature `xml:"privnet,omitempty"` | |
HyperV *DomainFeatureHyperV `xml:"hyperv,omitempty"` | |
KVM *DomainFeatureKVM `xml:"kvm,omitempty"` | |
PVSpinlock *DomainFeature `xml:"pvspinlock,omitempty"` | |
PMU *DomainFeature `xml:"pmu,omitempty"` | |
VMPort *DomainFeature `xml:"vmport,omitempty"` | |
GIC *DomainFeatureGIC `xml:"gic,omitempty"` | |
SMM *DomainFeature `xml:"smm,omitempty"` | |
} | |
type Domain struct { | |
XMLName xml.Name `xml:"domain"` | |
Type string `xml:"type,attr,omitempty"` | |
Name string `xml:"name"` | |
UUID string `xml:"uuid,omitempty"` | |
Memory *DomainMemory `xml:"memory"` | |
CurrentMemory *DomainMemory `xml:"currentMemory"` | |
MaximumMemory *DomainMaxMemory `xml:"maxMemory"` | |
VCPU *DomainVCPU `xml:"vcpu"` | |
CPU *DomainCPU `xml:"cpu"` | |
Resource *DomainResource `xml:"resource"` | |
Devices *DomainDeviceList `xml:"devices"` | |
OS *DomainOS `xml:"os"` | |
SysInfo *DomainSysInfo `xml:"sysinfo"` | |
OnPoweroff string `xml:"on_poweroff,omitempty"` | |
OnReboot string `xml:"on_reboot,omitempty"` | |
OnCrash string `xml:"on_crash,omitempty"` | |
Features *DomainFeatureList `xml:"features,omitempty"` | |
} | |
func (d *Domain) Unmarshal(doc string) error { | |
return xml.Unmarshal([]byte(doc), d) | |
} | |
func (d *Domain) Marshal() (string, error) { | |
doc, err := xml.MarshalIndent(d, "", " ") | |
if err != nil { | |
return "", err | |
} | |
return string(doc), nil | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment