use of org.ovirt.engine.core.common.businessentities.StorageDomainType in project ovirt-engine by oVirt.
the class AttachStorageDomainToPoolCommand method executeCommand.
@Override
protected void executeCommand() {
if (isCinderStorageDomain()) {
handleCinderDomain();
return;
}
if (getStoragePool().getStatus() == StoragePoolStatus.Uninitialized) {
StoragePoolWithStoragesParameter parameters = new StoragePoolWithStoragesParameter(getStoragePool(), Collections.singletonList(getStorageDomain().getId()), getParameters().getSessionId());
parameters.setIsInternal(true);
parameters.setTransactionScopeOption(TransactionScopeOption.Suppress);
ActionReturnValue returnValue = runInternalAction(ActionType.AddStoragePoolWithStorages, parameters, getContext().clone().withoutCompensationContext());
setSucceeded(returnValue.getSucceeded());
if (!returnValue.getSucceeded()) {
getReturnValue().setFault(returnValue.getFault());
}
} else {
map = storagePoolIsoMapDao.get(new StoragePoolIsoMapId(getStorageDomain().getId(), getParameters().getStoragePoolId()));
if (map == null) {
executeInNewTransaction(() -> {
map = new StoragePoolIsoMap(getStorageDomain().getId(), getParameters().getStoragePoolId(), StorageDomainStatus.Locked);
storagePoolIsoMapDao.save(map);
getCompensationContext().snapshotNewEntity(map);
getCompensationContext().stateChanged();
return null;
});
List<Pair<Guid, Boolean>> hostsConnectionResults = connectHostsInUpToDomainStorageServer();
if (isAllHostConnectionFailed(hostsConnectionResults)) {
log.error("Cannot connect storage connection server, aborting attach storage domain operation.");
setSucceeded(false);
return;
}
// Forcibly detach only data storage domains.
if (getStorageDomain().getStorageDomainType() == StorageDomainType.Data) {
@SuppressWarnings("unchecked") Pair<StorageDomainStatic, Guid> domainFromIrs = (Pair<StorageDomainStatic, Guid>) runVdsCommand(VDSCommandType.HSMGetStorageDomainInfo, new HSMGetStorageDomainInfoVDSCommandParameters(getVdsId(), getParameters().getStorageDomainId())).getReturnValue();
// If the storage domain is already related to another Storage Pool, detach it by force.
Guid storagePoolId = domainFromIrs.getSecond();
if (storagePoolId != null) {
// Master domain version is not relevant since force remove at
// DetachStorageDomainVdsCommand does not use it.
// Storage pool id can be empty
DetachStorageDomainVDSCommandParameters detachParams = new DetachStorageDomainVDSCommandParameters(getStoragePoolIdFromVds(), getParameters().getStorageDomainId(), Guid.Empty, 0);
detachParams.setForce(true);
detachParams.setDetachFromOldStoragePool(true);
try {
runVdsCommand(VDSCommandType.DetachStorageDomain, detachParams);
} catch (EngineException e) {
log.warn("Detaching Storage Domain '{}' from it's previous storage pool '{}'" + " has failed. The meta data of the Storage Domain might still" + " indicate that it is attached to a different Storage Pool.", getParameters().getStorageDomainId(), Guid.Empty, 0);
throw e;
}
}
if (diskProfileDao.getAllForStorageDomain(getStorageDomain().getId()).isEmpty()) {
createDefaultDiskProfile();
}
}
runVdsCommand(VDSCommandType.AttachStorageDomain, new AttachStorageDomainVDSCommandParameters(getParameters().getStoragePoolId(), getParameters().getStorageDomainId()));
final List<OvfEntityData> unregisteredEntitiesFromOvfDisk = new ArrayList<>();
if (getStorageDomain().getStorageDomainType().isDataDomain()) {
List<OvfEntityData> returnValueFromStorageOvfDisk = getEntitiesFromStorageOvfDisk(getParameters().getStorageDomainId(), getStoragePoolIdFromVds());
unregisteredEntitiesFromOvfDisk.addAll(returnValueFromStorageOvfDisk);
}
List<DiskImage> ovfStoreDiskImages = getAllOVFDisks(getParameters().getStorageDomainId(), getStoragePoolIdFromVds());
executeInNewTransaction(() -> {
final StorageDomainType sdType = getStorageDomain().getStorageDomainType();
map.setStatus(StorageDomainStatus.Maintenance);
storagePoolIsoMapDao.updateStatus(map.getId(), map.getStatus());
if (sdType == StorageDomainType.Master) {
calcStoragePoolStatusByDomainsStatus();
}
if (getStorageDomain().getStorageDomainType().isDataDomain()) {
registerAllOvfDisks(ovfStoreDiskImages, getParameters().getStorageDomainId());
// Update unregistered entities
for (OvfEntityData ovf : unregisteredEntitiesFromOvfDisk) {
unregisteredOVFDataDao.removeEntity(ovf.getEntityId(), getParameters().getStorageDomainId());
unregisteredOVFDataDao.saveOVFData(ovf);
log.info("Adding OVF data of entity id '{}' and entity name '{}'", ovf.getEntityId(), ovf.getEntityName());
}
initUnregisteredDisksToDB(getParameters().getStorageDomainId());
}
// upgrade the domain format to the storage pool format
updateStorageDomainFormatIfNeeded(getStorageDomain());
return null;
});
if (getParameters().getActivate()) {
attemptToActivateDomain();
}
setSucceeded(true);
}
}
}
use of org.ovirt.engine.core.common.businessentities.StorageDomainType in project ovirt-engine by oVirt.
the class StorageHandlingCommandBase method updateStorageDomainFormatIfNeeded.
protected void updateStorageDomainFormatIfNeeded(StorageDomain domain) {
final StorageDomainType sdType = domain.getStorageDomainType();
if (!sdType.isDataDomain()) {
log.debug("Skipping format update for domain '{}' (type '{}')", getStorageDomain().getId(), sdType);
return;
}
final StorageDomainStatic storageStaticData = domain.getStorageStaticData();
final StorageFormatType targetFormat = getStoragePool().getStoragePoolFormatType();
if (storageStaticData.getStorageFormat() != targetFormat) {
log.info("Updating storage domain '{}' (type '{}') to format '{}'", getStorageDomain().getId(), sdType, targetFormat);
storageStaticData.setStorageFormat(targetFormat);
storageDomainStaticDao.update(storageStaticData);
} else {
log.debug("Skipping format update for domain '{}' format is '{}'", getStorageDomain().getId(), storageStaticData.getStorageFormat());
}
}
use of org.ovirt.engine.core.common.businessentities.StorageDomainType in project ovirt-engine by oVirt.
the class StorageDomainToPoolRelationValidatorTest method testCanAttachMultipleISOOrExport.
@Test
public void testCanAttachMultipleISOOrExport() {
for (StorageDomainType type : Arrays.asList(StorageDomainType.ISO, StorageDomainType.ImportExport)) {
storageDomain.setStorageDomainType(type);
// Make the pool to have already a domain with the same type of the domain we want to attach.
StorageDomain domainWithSameType = new StorageDomain();
domainWithSameType.setStorageDomainType(type);
when(storageDomainDao.getAllForStoragePool(storagePool.getId())).thenReturn(Collections.singletonList(domainWithSameType));
ValidationResult attachMultipleISOOrExportResult = validator.validateDomainCanBeAttachedToPool();
assertThat("Attaching domain of type " + type + " succeeded though another domain of the same type already exists in the pool", attachMultipleISOOrExportResult, failsWith(type == StorageDomainType.ISO ? EngineMessage.ERROR_CANNOT_ATTACH_MORE_THAN_ONE_ISO_DOMAIN : EngineMessage.ERROR_CANNOT_ATTACH_MORE_THAN_ONE_EXPORT_DOMAIN));
}
}
use of org.ovirt.engine.core.common.businessentities.StorageDomainType in project ovirt-engine by oVirt.
the class StorageDomainToPoolRelationValidatorTest method testCanAttachSingleISOOrExport.
/**
* Tests attaching an ISO/Export domain to a pool first to a pool without an ISO/Export domain attached (should succeed)
* then to a pool with an ISO/Export domain attached (should fail)
*/
@Test
public void testCanAttachSingleISOOrExport() {
for (StorageDomainType type : Arrays.asList(StorageDomainType.ISO, StorageDomainType.ImportExport)) {
storageDomain.setStorageDomainType(type);
assertThat(validator.validateDomainCanBeAttachedToPool(), isValid());
}
}
use of org.ovirt.engine.core.common.businessentities.StorageDomainType in project ovirt-engine by oVirt.
the class UpdateStoragePoolCommand method updateMemberDomainsFormat.
private void updateMemberDomainsFormat(StorageFormatType targetFormat) {
Guid spId = getStoragePool().getId();
List<StorageDomainStatic> domains = storageDomainStaticDao.getAllForStoragePool(spId);
for (StorageDomainStatic domain : domains) {
StorageDomainType sdType = domain.getStorageDomainType();
if (sdType == StorageDomainType.Data || sdType == StorageDomainType.Master) {
log.info("Setting storage domain '{}' (type '{}') to format '{}'", domain.getId(), sdType, targetFormat);
domain.setStorageFormat(targetFormat);
storageDomainStaticDao.update(domain);
}
}
}
Aggregations