Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.ovirt.engine.sdk4.internal.services.VmServiceImpl Maven / Gradle / Ivy
/*
Copyright (c) 2015 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.ovirt.engine.sdk4.internal.services;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpDelete;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.client.utils.URIBuilder;
import org.apache.http.entity.ByteArrayEntity;
import org.apache.http.util.EntityUtils;
import org.ovirt.api.metamodel.runtime.xml.XmlReader;
import org.ovirt.api.metamodel.runtime.xml.XmlWriter;
import org.ovirt.engine.sdk4.BaseRequest;
import org.ovirt.engine.sdk4.Error;
import org.ovirt.engine.sdk4.Service;
import org.ovirt.engine.sdk4.builders.ActionBuilder;
import org.ovirt.engine.sdk4.builders.ClusterBuilder;
import org.ovirt.engine.sdk4.builders.DiskBuilder;
import org.ovirt.engine.sdk4.builders.HostBuilder;
import org.ovirt.engine.sdk4.builders.SnapshotBuilder;
import org.ovirt.engine.sdk4.builders.StorageDomainBuilder;
import org.ovirt.engine.sdk4.builders.TicketBuilder;
import org.ovirt.engine.sdk4.builders.VmBuilder;
import org.ovirt.engine.sdk4.internal.HttpConnection;
import org.ovirt.engine.sdk4.internal.xml.XmlActionWriter;
import org.ovirt.engine.sdk4.internal.xml.XmlVmReader;
import org.ovirt.engine.sdk4.internal.xml.XmlVmWriter;
import org.ovirt.engine.sdk4.services.AssignedAffinityLabelsService;
import org.ovirt.engine.sdk4.services.AssignedPermissionsService;
import org.ovirt.engine.sdk4.services.AssignedTagsService;
import org.ovirt.engine.sdk4.services.DiskAttachmentsService;
import org.ovirt.engine.sdk4.services.KatelloErrataService;
import org.ovirt.engine.sdk4.services.SnapshotsService;
import org.ovirt.engine.sdk4.services.StatisticsService;
import org.ovirt.engine.sdk4.services.VmApplicationsService;
import org.ovirt.engine.sdk4.services.VmCdromsService;
import org.ovirt.engine.sdk4.services.VmGraphicsConsolesService;
import org.ovirt.engine.sdk4.services.VmHostDevicesService;
import org.ovirt.engine.sdk4.services.VmNicsService;
import org.ovirt.engine.sdk4.services.VmNumaNodesService;
import org.ovirt.engine.sdk4.services.VmReportedDevicesService;
import org.ovirt.engine.sdk4.services.VmService;
import org.ovirt.engine.sdk4.services.VmSessionsService;
import org.ovirt.engine.sdk4.services.VmWatchdogsService;
import org.ovirt.engine.sdk4.types.Action;
import org.ovirt.engine.sdk4.types.Cluster;
import org.ovirt.engine.sdk4.types.Disk;
import org.ovirt.engine.sdk4.types.Host;
import org.ovirt.engine.sdk4.types.Snapshot;
import org.ovirt.engine.sdk4.types.StorageDomain;
import org.ovirt.engine.sdk4.types.Ticket;
import org.ovirt.engine.sdk4.types.Vm;
public class VmServiceImpl extends ServiceImpl implements VmService {
public VmServiceImpl(HttpConnection connection, String path) {
super(connection, path);
}
private class CancelMigrationRequestImpl extends BaseRequest implements CancelMigrationRequest {
private Boolean async;
public CancelMigrationRequest async(Boolean async) {
this.async = async;
return this;
}
public CancelMigrationResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/cancelmigration");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new CancelMigrationResponseImpl();
}
}
private class CancelMigrationResponseImpl implements CancelMigrationResponse {
}
public CancelMigrationRequest cancelMigration() {
return new CancelMigrationRequestImpl();
}
private class CloneRequestImpl extends BaseRequest implements CloneRequest {
private Boolean async;
public CloneRequest async(Boolean async) {
this.async = async;
return this;
}
private Vm vm;
public CloneRequest vm(Vm vm) {
this.vm = vm;
return this;
}
public CloneRequest vm(VmBuilder vm) {
this.vm = vm.build();
return this;
}
public CloneResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/clone");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
action.vm(vm);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new CloneResponseImpl();
}
}
private class CloneResponseImpl implements CloneResponse {
}
public CloneRequest clone_() {
return new CloneRequestImpl();
}
private class CommitSnapshotRequestImpl extends BaseRequest implements CommitSnapshotRequest {
private Boolean async;
public CommitSnapshotRequest async(Boolean async) {
this.async = async;
return this;
}
public CommitSnapshotResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/commitsnapshot");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new CommitSnapshotResponseImpl();
}
}
private class CommitSnapshotResponseImpl implements CommitSnapshotResponse {
}
public CommitSnapshotRequest commitSnapshot() {
return new CommitSnapshotRequestImpl();
}
private class DetachRequestImpl extends BaseRequest implements DetachRequest {
private Boolean async;
public DetachRequest async(Boolean async) {
this.async = async;
return this;
}
public DetachResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/detach");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new DetachResponseImpl();
}
}
private class DetachResponseImpl implements DetachResponse {
}
public DetachRequest detach() {
return new DetachRequestImpl();
}
private class ExportRequestImpl extends BaseRequest implements ExportRequest {
private Boolean async;
public ExportRequest async(Boolean async) {
this.async = async;
return this;
}
private Boolean discardSnapshots;
public ExportRequest discardSnapshots(Boolean discardSnapshots) {
this.discardSnapshots = discardSnapshots;
return this;
}
private Boolean exclusive;
public ExportRequest exclusive(Boolean exclusive) {
this.exclusive = exclusive;
return this;
}
private StorageDomain storageDomain;
public ExportRequest storageDomain(StorageDomain storageDomain) {
this.storageDomain = storageDomain;
return this;
}
public ExportRequest storageDomain(StorageDomainBuilder storageDomain) {
this.storageDomain = storageDomain.build();
return this;
}
public ExportResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/export");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
action.discardSnapshots(discardSnapshots);
action.exclusive(exclusive);
action.storageDomain(storageDomain);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new ExportResponseImpl();
}
}
private class ExportResponseImpl implements ExportResponse {
}
public ExportRequest export() {
return new ExportRequestImpl();
}
private class FreezeFilesystemsRequestImpl extends BaseRequest implements FreezeFilesystemsRequest {
private Boolean async;
public FreezeFilesystemsRequest async(Boolean async) {
this.async = async;
return this;
}
public FreezeFilesystemsResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/freezefilesystems");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new FreezeFilesystemsResponseImpl();
}
}
private class FreezeFilesystemsResponseImpl implements FreezeFilesystemsResponse {
}
public FreezeFilesystemsRequest freezeFilesystems() {
return new FreezeFilesystemsRequestImpl();
}
private class GetRequestImpl extends BaseRequest implements GetRequest {
private Boolean allContent;
public GetRequest allContent(Boolean allContent) {
this.allContent = allContent;
return this;
}
private Boolean filter;
public GetRequest filter(Boolean filter) {
this.filter = filter;
return this;
}
private Boolean nextRun;
public GetRequest nextRun(Boolean nextRun) {
this.nextRun = nextRun;
return this;
}
public GetResponse send() {
HttpGet request = null;
try {
URIBuilder uriBuilder = new URIBuilder(getConnection().getUrl() + getPath());
if (allContent != null) {
uriBuilder.addParameter("all_content", XmlWriter.renderBoolean(allContent));
}
if (filter != null) {
uriBuilder.addParameter("filter", XmlWriter.renderBoolean(filter));
}
if (nextRun != null) {
uriBuilder.addParameter("next_run", XmlWriter.renderBoolean(nextRun));
}
if (query != null) {
for (Map.Entry queryParam : query.entrySet()) {
uriBuilder.addParameter(queryParam.getKey(), queryParam.getValue());
}
}
request = new HttpGet(uriBuilder.build());
}
catch (URISyntaxException ex) {
throw new Error("Failed to build URL", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
if (
response.getStatusLine().getStatusCode() == 200
) {
try (
XmlReader reader = new XmlReader(response.getEntity().getContent())
) {
return new GetResponseImpl(XmlVmReader.readOne(reader));
}
catch (IOException ex) {
throw new Error("Failed to read response", ex);
}
finally {
EntityUtils.consumeQuietly(response.getEntity());
}
}
else {
checkFault(response);
return new GetResponseImpl(null);
}
}
}
private class GetResponseImpl implements GetResponse {
private Vm vm;
public GetResponseImpl(Vm vm) {
this.vm = vm;
}
public Vm vm() {
return vm;
}
}
public GetRequest get() {
return new GetRequestImpl();
}
private class LogonRequestImpl extends BaseRequest implements LogonRequest {
private Boolean async;
public LogonRequest async(Boolean async) {
this.async = async;
return this;
}
public LogonResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/logon");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new LogonResponseImpl();
}
}
private class LogonResponseImpl implements LogonResponse {
}
public LogonRequest logon() {
return new LogonRequestImpl();
}
private class MaintenanceRequestImpl extends BaseRequest implements MaintenanceRequest {
private Boolean async;
public MaintenanceRequest async(Boolean async) {
this.async = async;
return this;
}
private Boolean maintenanceEnabled;
public MaintenanceRequest maintenanceEnabled(Boolean maintenanceEnabled) {
this.maintenanceEnabled = maintenanceEnabled;
return this;
}
public MaintenanceResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/maintenance");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
action.maintenanceEnabled(maintenanceEnabled);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new MaintenanceResponseImpl();
}
}
private class MaintenanceResponseImpl implements MaintenanceResponse {
}
public MaintenanceRequest maintenance() {
return new MaintenanceRequestImpl();
}
private class MigrateRequestImpl extends BaseRequest implements MigrateRequest {
private Boolean async;
public MigrateRequest async(Boolean async) {
this.async = async;
return this;
}
private Cluster cluster;
public MigrateRequest cluster(Cluster cluster) {
this.cluster = cluster;
return this;
}
public MigrateRequest cluster(ClusterBuilder cluster) {
this.cluster = cluster.build();
return this;
}
private Boolean force;
public MigrateRequest force(Boolean force) {
this.force = force;
return this;
}
private Host host;
public MigrateRequest host(Host host) {
this.host = host;
return this;
}
public MigrateRequest host(HostBuilder host) {
this.host = host.build();
return this;
}
public MigrateResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/migrate");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
action.cluster(cluster);
action.force(force);
action.host(host);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new MigrateResponseImpl();
}
}
private class MigrateResponseImpl implements MigrateResponse {
}
public MigrateRequest migrate() {
return new MigrateRequestImpl();
}
private class PreviewSnapshotRequestImpl extends BaseRequest implements PreviewSnapshotRequest {
private Boolean async;
public PreviewSnapshotRequest async(Boolean async) {
this.async = async;
return this;
}
private List disks;
public PreviewSnapshotRequest disks(List disks) {
this.disks = disks;
return this;
}
public PreviewSnapshotRequest disks(Disk... disks) {
this.disks = Arrays.asList(disks);
return this;
}
public PreviewSnapshotRequest disks(DiskBuilder... disks) {
this.disks = new ArrayList<>(disks.length);
for (DiskBuilder element : disks) {
this.disks.add(element.build());
}
return this;
}
private Boolean restoreMemory;
public PreviewSnapshotRequest restoreMemory(Boolean restoreMemory) {
this.restoreMemory = restoreMemory;
return this;
}
private Snapshot snapshot;
public PreviewSnapshotRequest snapshot(Snapshot snapshot) {
this.snapshot = snapshot;
return this;
}
public PreviewSnapshotRequest snapshot(SnapshotBuilder snapshot) {
this.snapshot = snapshot.build();
return this;
}
private Vm vm;
public PreviewSnapshotRequest vm(Vm vm) {
this.vm = vm;
return this;
}
public PreviewSnapshotRequest vm(VmBuilder vm) {
this.vm = vm.build();
return this;
}
public PreviewSnapshotResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/previewsnapshot");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
action.disks(disks);
action.restoreMemory(restoreMemory);
action.snapshot(snapshot);
action.vm(vm);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new PreviewSnapshotResponseImpl();
}
}
private class PreviewSnapshotResponseImpl implements PreviewSnapshotResponse {
}
public PreviewSnapshotRequest previewSnapshot() {
return new PreviewSnapshotRequestImpl();
}
private class RebootRequestImpl extends BaseRequest implements RebootRequest {
private Boolean async;
public RebootRequest async(Boolean async) {
this.async = async;
return this;
}
public RebootResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/reboot");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new RebootResponseImpl();
}
}
private class RebootResponseImpl implements RebootResponse {
}
public RebootRequest reboot() {
return new RebootRequestImpl();
}
private class RemoveRequestImpl extends BaseRequest implements RemoveRequest {
private Boolean async;
public RemoveRequest async(Boolean async) {
this.async = async;
return this;
}
private Boolean detachOnly;
public RemoveRequest detachOnly(Boolean detachOnly) {
this.detachOnly = detachOnly;
return this;
}
private Boolean force;
public RemoveRequest force(Boolean force) {
this.force = force;
return this;
}
public RemoveResponse send() {
HttpDelete request = null;
try {
URIBuilder uriBuilder = new URIBuilder(getConnection().getUrl() + getPath());
if (async != null) {
uriBuilder.addParameter("async", XmlWriter.renderBoolean(async));
}
if (detachOnly != null) {
uriBuilder.addParameter("detach_only", XmlWriter.renderBoolean(detachOnly));
}
if (force != null) {
uriBuilder.addParameter("force", XmlWriter.renderBoolean(force));
}
if (query != null) {
for (Map.Entry queryParam : query.entrySet()) {
uriBuilder.addParameter(queryParam.getKey(), queryParam.getValue());
}
}
request = new HttpDelete(uriBuilder.build());
}
catch (URISyntaxException ex) {
throw new Error("Failed to build URL", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
if (
response.getStatusLine().getStatusCode() == 200
) {
EntityUtils.consumeQuietly(response.getEntity());
return new RemoveResponseImpl();
}
else {
checkFault(response);
return new RemoveResponseImpl();
}
}
}
private class RemoveResponseImpl implements RemoveResponse {
}
public RemoveRequest remove() {
return new RemoveRequestImpl();
}
private class ReorderMacAddressesRequestImpl extends BaseRequest implements ReorderMacAddressesRequest {
private Boolean async;
public ReorderMacAddressesRequest async(Boolean async) {
this.async = async;
return this;
}
public ReorderMacAddressesResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/reordermacaddresses");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new ReorderMacAddressesResponseImpl();
}
}
private class ReorderMacAddressesResponseImpl implements ReorderMacAddressesResponse {
}
public ReorderMacAddressesRequest reorderMacAddresses() {
return new ReorderMacAddressesRequestImpl();
}
private class ShutdownRequestImpl extends BaseRequest implements ShutdownRequest {
private Boolean async;
public ShutdownRequest async(Boolean async) {
this.async = async;
return this;
}
public ShutdownResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/shutdown");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new ShutdownResponseImpl();
}
}
private class ShutdownResponseImpl implements ShutdownResponse {
}
public ShutdownRequest shutdown() {
return new ShutdownRequestImpl();
}
private class StartRequestImpl extends BaseRequest implements StartRequest {
private Boolean async;
public StartRequest async(Boolean async) {
this.async = async;
return this;
}
private Boolean filter;
public StartRequest filter(Boolean filter) {
this.filter = filter;
return this;
}
private Boolean pause;
public StartRequest pause(Boolean pause) {
this.pause = pause;
return this;
}
private Boolean useCloudInit;
public StartRequest useCloudInit(Boolean useCloudInit) {
this.useCloudInit = useCloudInit;
return this;
}
private Boolean useSysprep;
public StartRequest useSysprep(Boolean useSysprep) {
this.useSysprep = useSysprep;
return this;
}
private Vm vm;
public StartRequest vm(Vm vm) {
this.vm = vm;
return this;
}
public StartRequest vm(VmBuilder vm) {
this.vm = vm.build();
return this;
}
public StartResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/start");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
action.filter(filter);
action.pause(pause);
action.useCloudInit(useCloudInit);
action.useSysprep(useSysprep);
action.vm(vm);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new StartResponseImpl();
}
}
private class StartResponseImpl implements StartResponse {
}
public StartRequest start() {
return new StartRequestImpl();
}
private class StopRequestImpl extends BaseRequest implements StopRequest {
private Boolean async;
public StopRequest async(Boolean async) {
this.async = async;
return this;
}
public StopResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/stop");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new StopResponseImpl();
}
}
private class StopResponseImpl implements StopResponse {
}
public StopRequest stop() {
return new StopRequestImpl();
}
private class SuspendRequestImpl extends BaseRequest implements SuspendRequest {
private Boolean async;
public SuspendRequest async(Boolean async) {
this.async = async;
return this;
}
public SuspendResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/suspend");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new SuspendResponseImpl();
}
}
private class SuspendResponseImpl implements SuspendResponse {
}
public SuspendRequest suspend() {
return new SuspendRequestImpl();
}
private class ThawFilesystemsRequestImpl extends BaseRequest implements ThawFilesystemsRequest {
private Boolean async;
public ThawFilesystemsRequest async(Boolean async) {
this.async = async;
return this;
}
public ThawFilesystemsResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/thawfilesystems");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new ThawFilesystemsResponseImpl();
}
}
private class ThawFilesystemsResponseImpl implements ThawFilesystemsResponse {
}
public ThawFilesystemsRequest thawFilesystems() {
return new ThawFilesystemsRequestImpl();
}
private class TicketRequestImpl extends BaseRequest implements TicketRequest {
private Boolean async;
public TicketRequest async(Boolean async) {
this.async = async;
return this;
}
private Ticket ticket;
public TicketRequest ticket(Ticket ticket) {
this.ticket = ticket;
return this;
}
public TicketRequest ticket(TicketBuilder ticket) {
this.ticket = ticket.build();
return this;
}
public TicketResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/ticket");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
action.ticket(ticket);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new TicketResponseImpl(action.ticket());
}
}
private class TicketResponseImpl implements TicketResponse {
private Ticket ticket;
public TicketResponseImpl(Ticket ticket) {
this.ticket = ticket;
}
public Ticket ticket() {
return ticket;
}
}
public TicketRequest ticket() {
return new TicketRequestImpl();
}
private class UndoSnapshotRequestImpl extends BaseRequest implements UndoSnapshotRequest {
private Boolean async;
public UndoSnapshotRequest async(Boolean async) {
this.async = async;
return this;
}
public UndoSnapshotResponse send() {
HttpPost request = new HttpPost(getConnection().getUrl() + getPath() + "/undosnapshot");
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
ActionBuilder action = new ActionBuilder();
action.async(async);
XmlActionWriter.writeOne(action.build(), xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to write request", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
Action action = checkAction(response);
EntityUtils.consumeQuietly(response.getEntity());
return new UndoSnapshotResponseImpl();
}
}
private class UndoSnapshotResponseImpl implements UndoSnapshotResponse {
}
public UndoSnapshotRequest undoSnapshot() {
return new UndoSnapshotRequestImpl();
}
private class UpdateRequestImpl extends BaseRequest implements UpdateRequest {
private Boolean async;
public UpdateRequest async(Boolean async) {
this.async = async;
return this;
}
private Boolean nextRun;
public UpdateRequest nextRun(Boolean nextRun) {
this.nextRun = nextRun;
return this;
}
private Vm vm;
public UpdateRequest vm(Vm vm) {
this.vm = vm;
return this;
}
public UpdateRequest vm(VmBuilder vm) {
this.vm = vm.build();
return this;
}
public UpdateResponse send() {
HttpPut request = null;
try {
URIBuilder uriBuilder = new URIBuilder(getConnection().getUrl() + getPath());
if (async != null) {
uriBuilder.addParameter("async", XmlWriter.renderBoolean(async));
}
if (nextRun != null) {
uriBuilder.addParameter("next_run", XmlWriter.renderBoolean(nextRun));
}
if (query != null) {
for (Map.Entry queryParam : query.entrySet()) {
uriBuilder.addParameter(queryParam.getKey(), queryParam.getValue());
}
}
request = new HttpPut(uriBuilder.build());
}
catch (URISyntaxException ex) {
throw new Error("Failed to build URL", ex);
}
try (
ByteArrayOutputStream output = new ByteArrayOutputStream();
XmlWriter xmlWriter = new XmlWriter(output, true)
) {
XmlVmWriter.writeOne(vm, xmlWriter);
xmlWriter.flush();
request.setEntity(new ByteArrayEntity(output.toByteArray()));
}
catch (IOException ex) {
throw new Error("Failed to parse response", ex);
}
if (headers != null) {
for (Map.Entry header : headers.entrySet()) {
request.setHeader(header.getKey(), header.getValue());
}
}
HttpResponse response = getConnection().send(request);
if (
response.getStatusLine().getStatusCode() == 200
) {
try (
XmlReader reader = new XmlReader(response.getEntity().getContent())
) {
return new UpdateResponseImpl(XmlVmReader.readOne(reader));
}
catch (IOException ex) {
throw new Error("Failed to read response", ex);
}
finally {
EntityUtils.consumeQuietly(response.getEntity());
}
}
else {
checkFault(response);
return new UpdateResponseImpl(null);
}
}
}
private class UpdateResponseImpl implements UpdateResponse {
private Vm vm;
public UpdateResponseImpl(Vm vm) {
this.vm = vm;
}
public Vm vm() {
return vm;
}
}
public UpdateRequest update() {
return new UpdateRequestImpl();
}
public AssignedAffinityLabelsService affinityLabelsService() {
return new AssignedAffinityLabelsServiceImpl(getConnection(), getPath() + "/affinitylabels");
}
public VmApplicationsService applicationsService() {
return new VmApplicationsServiceImpl(getConnection(), getPath() + "/applications");
}
public VmCdromsService cdromsService() {
return new VmCdromsServiceImpl(getConnection(), getPath() + "/cdroms");
}
public DiskAttachmentsService diskAttachmentsService() {
return new DiskAttachmentsServiceImpl(getConnection(), getPath() + "/diskattachments");
}
public VmGraphicsConsolesService graphicsConsolesService() {
return new VmGraphicsConsolesServiceImpl(getConnection(), getPath() + "/graphicsconsoles");
}
public VmHostDevicesService hostDevicesService() {
return new VmHostDevicesServiceImpl(getConnection(), getPath() + "/hostdevices");
}
public KatelloErrataService katelloErrataService() {
return new KatelloErrataServiceImpl(getConnection(), getPath() + "/katelloerrata");
}
public VmNicsService nicsService() {
return new VmNicsServiceImpl(getConnection(), getPath() + "/nics");
}
public VmNumaNodesService numaNodesService() {
return new VmNumaNodesServiceImpl(getConnection(), getPath() + "/numanodes");
}
public AssignedPermissionsService permissionsService() {
return new AssignedPermissionsServiceImpl(getConnection(), getPath() + "/permissions");
}
public VmReportedDevicesService reportedDevicesService() {
return new VmReportedDevicesServiceImpl(getConnection(), getPath() + "/reporteddevices");
}
public VmSessionsService sessionsService() {
return new VmSessionsServiceImpl(getConnection(), getPath() + "/sessions");
}
public SnapshotsService snapshotsService() {
return new SnapshotsServiceImpl(getConnection(), getPath() + "/snapshots");
}
public StatisticsService statisticsService() {
return new StatisticsServiceImpl(getConnection(), getPath() + "/statistics");
}
public AssignedTagsService tagsService() {
return new AssignedTagsServiceImpl(getConnection(), getPath() + "/tags");
}
public VmWatchdogsService watchdogsService() {
return new VmWatchdogsServiceImpl(getConnection(), getPath() + "/watchdogs");
}
public Service service(String path) {
if (path == null) {
return this;
}
if (path.equals("affinitylabels")) {
return affinityLabelsService();
}
if (path.startsWith("affinitylabels/")) {
return affinityLabelsService().service(path.substring(15));
}
if (path.equals("applications")) {
return applicationsService();
}
if (path.startsWith("applications/")) {
return applicationsService().service(path.substring(13));
}
if (path.equals("cdroms")) {
return cdromsService();
}
if (path.startsWith("cdroms/")) {
return cdromsService().service(path.substring(7));
}
if (path.equals("diskattachments")) {
return diskAttachmentsService();
}
if (path.startsWith("diskattachments/")) {
return diskAttachmentsService().service(path.substring(16));
}
if (path.equals("graphicsconsoles")) {
return graphicsConsolesService();
}
if (path.startsWith("graphicsconsoles/")) {
return graphicsConsolesService().service(path.substring(17));
}
if (path.equals("hostdevices")) {
return hostDevicesService();
}
if (path.startsWith("hostdevices/")) {
return hostDevicesService().service(path.substring(12));
}
if (path.equals("katelloerrata")) {
return katelloErrataService();
}
if (path.startsWith("katelloerrata/")) {
return katelloErrataService().service(path.substring(14));
}
if (path.equals("nics")) {
return nicsService();
}
if (path.startsWith("nics/")) {
return nicsService().service(path.substring(5));
}
if (path.equals("numanodes")) {
return numaNodesService();
}
if (path.startsWith("numanodes/")) {
return numaNodesService().service(path.substring(10));
}
if (path.equals("permissions")) {
return permissionsService();
}
if (path.startsWith("permissions/")) {
return permissionsService().service(path.substring(12));
}
if (path.equals("reporteddevices")) {
return reportedDevicesService();
}
if (path.startsWith("reporteddevices/")) {
return reportedDevicesService().service(path.substring(16));
}
if (path.equals("sessions")) {
return sessionsService();
}
if (path.startsWith("sessions/")) {
return sessionsService().service(path.substring(9));
}
if (path.equals("snapshots")) {
return snapshotsService();
}
if (path.startsWith("snapshots/")) {
return snapshotsService().service(path.substring(10));
}
if (path.equals("statistics")) {
return statisticsService();
}
if (path.startsWith("statistics/")) {
return statisticsService().service(path.substring(11));
}
if (path.equals("tags")) {
return tagsService();
}
if (path.startsWith("tags/")) {
return tagsService().service(path.substring(5));
}
if (path.equals("watchdogs")) {
return watchdogsService();
}
if (path.startsWith("watchdogs/")) {
return watchdogsService().service(path.substring(10));
}
throw new Error("The path " + path + " doesn't correspond to any service");
}
public String toString() {
return "VmService:" + getPath();
}
}