/* Copyright (c) 2016 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.api.v3.adapters; import static java.util.stream.Collectors.toList; import static org.ovirt.engine.api.v3.adapters.V3OutAdapters.adaptOut; import java.util.HashSet; import java.util.List; import java.util.Set; import org.ovirt.engine.api.model.Host; import org.ovirt.engine.api.model.HostType; import org.ovirt.engine.api.model.Link; import org.ovirt.engine.api.model.Spm; import org.ovirt.engine.api.model.SpmStatus; import org.ovirt.engine.api.v3.V3Adapter; import org.ovirt.engine.api.v3.types.V3Hooks; import org.ovirt.engine.api.v3.types.V3Host; import org.ovirt.engine.api.v3.types.V3KatelloErrata; import org.ovirt.engine.api.v3.types.V3Statistics; import org.ovirt.engine.api.v3.types.V3Status; import org.ovirt.engine.api.v3.types.V3StorageConnectionExtensions; import org.ovirt.engine.api.v3.types.V3StorageManager; public class V3HostOutAdapter implements V3Adapter<Host, V3Host> { // The list of "rels" that should be removed from the set of links created by version 4 of the API, as they are // new and shouldn't appear in version 3 of the API: private static final Set<String> RELS_TO_REMOVE = new HashSet<>(); static { RELS_TO_REMOVE.add("affinitylabels"); } @Override public V3Host adapt(Host from) { V3Host to = new V3Host(); // Remove the links for "rels" that are new in version 4 of the API: if (from.isSetLinks()) { List<Link> links = from.getLinks().stream() .filter(link -> !RELS_TO_REMOVE.contains(link.getRel())) .collect(toList()); to.getLinks().addAll(adaptOut(links)); } if (from.isSetActions()) { to.setActions(adaptOut(from.getActions())); } if (from.isSetAddress()) { to.setAddress(from.getAddress()); } if (from.isSetAutoNumaStatus()) { to.setAutoNumaStatus(from.getAutoNumaStatus().value()); } if (from.isSetCertificate()) { to.setCertificate(adaptOut(from.getCertificate())); } if (from.isSetCluster()) { to.setCluster(adaptOut(from.getCluster())); } if (from.isSetComment()) { to.setComment(from.getComment()); } if (from.isSetCpu()) { to.setCpu(adaptOut(from.getCpu())); } if (from.isSetDescription()) { to.setDescription(from.getDescription()); } if (from.isSetDevicePassthrough()) { to.setDevicePassthrough(adaptOut(from.getDevicePassthrough())); } if (from.isSetDisplay()) { to.setDisplay(adaptOut(from.getDisplay())); } if (from.isSetExternalHostProvider()) { to.setExternalHostProvider(adaptOut(from.getExternalHostProvider())); } if (from.isSetExternalStatus()) { V3Status status = new V3Status(); status.setState(from.getExternalStatus().value()); to.setExternalStatus(status); } if (from.isSetHardwareInformation()) { to.setHardwareInformation(adaptOut(from.getHardwareInformation())); } if (from.isSetHooks()) { to.setHooks(new V3Hooks()); to.getHooks().getHooks().addAll(adaptOut(from.getHooks().getHooks())); } if (from.isSetHostedEngine()) { to.setHostedEngine(adaptOut(from.getHostedEngine())); } if (from.isSetId()) { to.setId(from.getId()); } if (from.isSetHref()) { to.setHref(from.getHref()); } if (from.isSetIscsi()) { to.setIscsi(adaptOut(from.getIscsi())); } if (from.isSetKatelloErrata()) { to.setKatelloErrata(new V3KatelloErrata()); to.getKatelloErrata().getKatelloErrata().addAll(adaptOut(from.getKatelloErrata().getKatelloErrata())); } if (from.isSetKdumpStatus()) { to.setKdumpStatus(from.getKdumpStatus().value()); } if (from.isSetKsm()) { to.setKsm(adaptOut(from.getKsm())); } if (from.isSetLibvirtVersion()) { to.setLibvirtVersion(adaptOut(from.getLibvirtVersion())); } // All hosts support live snapshots now to.setLiveSnapshotSupport(true); if (from.isSetMaxSchedulingMemory()) { to.setMaxSchedulingMemory(from.getMaxSchedulingMemory()); } if (from.isSetMemory()) { to.setMemory(from.getMemory()); } if (from.isSetName()) { to.setName(from.getName()); } if (from.isSetNumaSupported()) { to.setNumaSupported(from.isNumaSupported()); } if (from.isSetOs()) { to.setOs(adaptOut(from.getOs())); } if (from.isSetOverrideIptables()) { to.setOverrideIptables(from.isOverrideIptables()); } if (from.isSetPort()) { to.setPort(from.getPort()); } if (from.isSetPowerManagement()) { to.setPowerManagement(adaptOut(from.getPowerManagement())); } if (from.isSetProtocol()) { to.setProtocol(from.getProtocol().value()); } if (from.isSetRootPassword()) { to.setRootPassword(from.getRootPassword()); } if (from.isSetSeLinux()) { to.setSelinux(adaptOut(from.getSeLinux())); } Spm spm = from.getSpm(); if (spm != null) { // This is for the old and deprecated "storage_manager" element: V3StorageManager storageManager = new V3StorageManager(); SpmStatus status = spm.getStatus(); if (status != null) { storageManager.setValue(status == SpmStatus.SPM); } if (spm.isSetPriority()) { storageManager.setPriority(spm.getPriority()); } to.setStorageManager(storageManager); // This is for the new and recommended "spm" element (the order here isn't relevant, as we are populating // both output elements): to.setSpm(adaptOut(spm)); } if (from.isSetSsh()) { to.setSsh(adaptOut(from.getSsh())); } if (from.isSetStatistics()) { to.setStatistics(new V3Statistics()); to.getStatistics().getStatistics().addAll(adaptOut(from.getStatistics().getStatistics())); } if (from.isSetStatus()) { V3Status status = to.getStatus(); if (status == null) { status = new V3Status(); to.setStatus(status); } status.setState(from.getStatus().value()); } if (from.isSetStatusDetail()) { V3Status status = to.getStatus(); if (status == null) { status = new V3Status(); to.setStatus(status); } status.setDetail(from.getStatusDetail()); } if (from.isSetStorageConnectionExtensions()) { to.setStorageConnectionExtensions(new V3StorageConnectionExtensions()); to.getStorageConnectionExtensions().getStorageConnectionExtension().addAll(adaptOut(from.getStorageConnectionExtensions().getStorageConnectionExtensions())); } if (from.isSetSummary()) { to.setSummary(adaptOut(from.getSummary())); } if (from.isSetTransparentHugepages()) { to.setTransparentHugepages(adaptOut(from.getTransparentHugepages())); } if (from.isSetType()) { // In version 3 of the API the string for the RHEV_H value was "rhev-h", with a dash instead of an // underscore, and we need to preserve that for backwards compatibility: HostType fromType = from.getType(); String toType = fromType == HostType.RHEV_H? "rhev-h": fromType.value(); to.setType(toType); } if (from.isSetUpdateAvailable()) { to.setUpdateAvailable(from.isUpdateAvailable()); } if (from.isSetVersion()) { to.setVersion(adaptOut(from.getVersion())); } return to; } }