use of org.ovirt.engine.core.common.scheduling.PolicyUnit in project ovirt-engine by oVirt.
the class ClusterModel method clusterPolicyChanged.
private void clusterPolicyChanged() {
ClusterPolicy clusterPolicy = getClusterPolicy().getSelectedItem();
Map<String, String> policyProperties = new HashMap<>();
Map<Guid, PolicyUnit> allPolicyUnits = new HashMap<>();
if (clusterPolicy.getFilters() != null) {
for (Guid policyUnitId : clusterPolicy.getFilters()) {
allPolicyUnits.put(policyUnitId, policyUnitMap.get(policyUnitId));
}
}
if (clusterPolicy.getFunctions() != null) {
for (Pair<Guid, Integer> pair : clusterPolicy.getFunctions()) {
allPolicyUnits.put(pair.getFirst(), policyUnitMap.get(pair.getFirst()));
}
}
if (clusterPolicy.getBalance() != null) {
allPolicyUnits.put(clusterPolicy.getBalance(), policyUnitMap.get(clusterPolicy.getBalance()));
}
for (PolicyUnit policyUnit : allPolicyUnits.values()) {
if (policyUnit.getParameterRegExMap() != null) {
policyProperties.putAll(policyUnit.getParameterRegExMap());
}
}
getCustomPropertySheet().setKeyValueMap(policyProperties);
if (getIsEdit() && clusterPolicy.getId().equals(getEntity().getClusterPolicyId())) {
getCustomPropertySheet().deserialize(KeyValueModel.convertProperties(getEntity().getClusterPolicyProperties()));
} else {
getCustomPropertySheet().deserialize(KeyValueModel.convertProperties(clusterPolicy.getParameterMap()));
}
}
use of org.ovirt.engine.core.common.scheduling.PolicyUnit in project ovirt-engine by oVirt.
the class ClusterModel method init.
public void init(final boolean isEdit) {
setIsEdit(isEdit);
setName(new EntityModel<>());
setDescription(new EntityModel<>());
setComment(new EntityModel<>());
setEnableTrustedService(new EntityModel<>(false));
setEnableHaReservation(new EntityModel<>(false));
setEnableOptionalReason(new EntityModel<>(false));
setMigrationPolicies(new ListModel<>());
getMigrationPolicies().getSelectedItemChangedEvent().addListener(this);
getEnableOptionalReason().setIsAvailable(ApplicationModeHelper.isModeSupported(ApplicationMode.VirtOnly));
setEnableHostMaintenanceReason(new EntityModel<>(false));
setAllowClusterWithVirtGlusterEnabled(true);
setGlusterTunedProfile(new ListModel<>());
AsyncDataProvider.getInstance().getAllowClusterWithVirtGlusterEnabled(new AsyncQuery<>(this::setAllowClusterWithVirtGlusterEnabled));
setEnableOvirtService(new EntityModel<>());
setEnableGlusterService(new EntityModel<>());
setAdditionalClusterFeatures(new ListModel<>());
List<List<AdditionalFeature>> additionalFeatures = new ArrayList<>();
additionalFeatures.add(Collections.emptyList());
getAdditionalClusterFeatures().setItems(additionalFeatures, null);
setSpiceProxyEnabled(new EntityModel<>());
getSpiceProxyEnabled().setEntity(false);
getSpiceProxyEnabled().getEntityChangedEvent().addListener(this);
setSpiceProxy(new EntityModel<>());
getSpiceProxy().setIsChangeable(false);
setFencingEnabledModel(new EntityModel<>());
getFencingEnabledModel().setEntity(true);
getFencingEnabledModel().getEntityChangedEvent().addListener((ev, sender, args) -> updateFencingPolicyContent(getVersion() == null ? null : getVersion().getSelectedItem()));
setSkipFencingIfSDActiveEnabled(new EntityModel<>());
getSkipFencingIfSDActiveEnabled().setEntity(true);
setSkipFencingIfGlusterBricksUp(new EntityModel<>());
getSkipFencingIfGlusterBricksUp().setEntity(false);
getSkipFencingIfGlusterBricksUp().setIsAvailable(false);
setSkipFencingIfGlusterQuorumNotMet(new EntityModel<>());
getSkipFencingIfGlusterQuorumNotMet().setEntity(false);
getSkipFencingIfGlusterQuorumNotMet().setIsAvailable(false);
setSkipFencingIfConnectivityBrokenEnabled(new EntityModel<>());
getSkipFencingIfConnectivityBrokenEnabled().setEntity(true);
setEnableOvirtService(new EntityModel<>());
setEnableGlusterService(new EntityModel<>());
setSerialNumberPolicy(new SerialNumberPolicyModel());
setAutoConverge(new ListModel<>());
getAutoConverge().setItems(Arrays.asList(null, true, false));
setMigrateCompressed(new ListModel<>());
getMigrateCompressed().setItems(Arrays.asList(null, true, false));
getEnableOvirtService().getEntityChangedEvent().addListener((ev, sender, args) -> {
refreshAdditionalClusterFeaturesList();
if (!getAllowClusterWithVirtGlusterEnabled() && getEnableOvirtService().getEntity()) {
getEnableGlusterService().setEntity(Boolean.FALSE);
}
updateGlusterFencingPolicyAvailability();
getEnableGlusterService().setIsChangeable(true);
getEnableTrustedService().setEntity(false);
if (getEnableOvirtService().getEntity() != null && getEnableOvirtService().getEntity()) {
if (getEnableGlusterService().getEntity() != null && !getEnableGlusterService().getEntity()) {
getEnableTrustedService().setIsChangeable(true);
} else {
getEnableTrustedService().setIsChangeable(false);
}
} else {
getEnableTrustedService().setIsChangeable(false);
}
});
getEnableOvirtService().setEntity(ApplicationModeHelper.isModeSupported(ApplicationMode.VirtOnly));
getEnableOvirtService().setIsAvailable(ApplicationModeHelper.getUiMode() != ApplicationMode.VirtOnly && ApplicationModeHelper.isModeSupported(ApplicationMode.VirtOnly));
setRngHwrngSourceRequired(new EntityModel<>());
getRngHwrngSourceRequired().setIsAvailable(ApplicationModeHelper.isModeSupported(ApplicationMode.VirtOnly));
initImportCluster();
getEnableGlusterService().getEntityChangedEvent().addListener((ev, sender, args) -> {
refreshAdditionalClusterFeaturesList();
if (!getAllowClusterWithVirtGlusterEnabled() && getEnableGlusterService().getEntity()) {
getEnableOvirtService().setEntity(Boolean.FALSE);
}
if (!isEdit && getEnableGlusterService().getEntity() != null && getEnableGlusterService().getEntity()) {
getIsImportGlusterConfiguration().setIsAvailable(true);
getGlusterHostAddress().setIsAvailable(true);
getGlusterHostFingerprint().setIsAvailable(true);
getGlusterHostPassword().setIsAvailable(true);
} else {
getIsImportGlusterConfiguration().setIsAvailable(false);
getIsImportGlusterConfiguration().setEntity(false);
getGlusterHostAddress().setIsAvailable(false);
getGlusterHostFingerprint().setIsAvailable(false);
getGlusterHostPassword().setIsAvailable(false);
}
if (getEnableGlusterService().getEntity() != null && getEnableGlusterService().getEntity()) {
getEnableTrustedService().setEntity(false);
getEnableTrustedService().setIsChangeable(false);
} else {
if (getEnableOvirtService().getEntity() != null && getEnableOvirtService().getEntity()) {
getEnableTrustedService().setIsChangeable(true);
} else {
getEnableTrustedService().setIsChangeable(false);
}
}
getGlusterTunedProfile().setIsAvailable(getEnableGlusterService().getEntity());
updateGlusterFencingPolicyAvailability();
if (getEnableGlusterService().getEntity()) {
initTunedProfiles();
}
});
getEnableTrustedService().getEntityChangedEvent().addListener((ev, sender, args) -> {
if (getEnableTrustedService().getEntity() != null && getEnableTrustedService().getEntity()) {
getEnableGlusterService().setEntity(false);
getEnableGlusterService().setIsChangeable(false);
} else {
getEnableGlusterService().setIsChangeable(true);
}
});
getEnableGlusterService().setEntity(ApplicationModeHelper.getUiMode() == ApplicationMode.GlusterOnly);
getEnableGlusterService().setIsAvailable(ApplicationModeHelper.getUiMode() != ApplicationMode.GlusterOnly && ApplicationModeHelper.isModeSupported(ApplicationMode.GlusterOnly));
getGlusterTunedProfile().setIsAvailable(getEnableGlusterService().getEntity());
setOptimizationNone(new EntityModel<>());
setOptimizationForServer(new EntityModel<>());
setOptimizationForDesktop(new EntityModel<>());
setOptimizationCustom(new EntityModel<>());
EntityModel<Boolean> tempVar = new EntityModel<>();
tempVar.setEntity(false);
setOptimizationNone_IsSelected(tempVar);
getOptimizationNone_IsSelected().getEntityChangedEvent().addListener(this);
EntityModel<Boolean> tempVar2 = new EntityModel<>();
tempVar2.setEntity(false);
setOptimizationForServer_IsSelected(tempVar2);
getOptimizationForServer_IsSelected().getEntityChangedEvent().addListener(this);
EntityModel<Boolean> tempVar3 = new EntityModel<>();
tempVar3.setEntity(false);
setOptimizationForDesktop_IsSelected(tempVar3);
getOptimizationForDesktop_IsSelected().getEntityChangedEvent().addListener(this);
EntityModel<Boolean> tempVar4 = new EntityModel<>();
tempVar4.setEntity(false);
tempVar4.setIsAvailable(false);
setOptimizationCustom_IsSelected(tempVar4);
getOptimizationCustom_IsSelected().getEntityChangedEvent().addListener(this);
EntityModel<Boolean> tempVar5 = new EntityModel<>();
tempVar5.setEntity(false);
setMigrateOnErrorOption_YES(tempVar5);
getMigrateOnErrorOption_YES().getEntityChangedEvent().addListener(this);
EntityModel<Boolean> tempVar6 = new EntityModel<>();
tempVar6.setEntity(false);
setMigrateOnErrorOption_NO(tempVar6);
getMigrateOnErrorOption_NO().getEntityChangedEvent().addListener(this);
EntityModel<Boolean> tempVar7 = new EntityModel<>();
tempVar7.setEntity(false);
setMigrateOnErrorOption_HA_ONLY(tempVar7);
getMigrateOnErrorOption_HA_ONLY().getEntityChangedEvent().addListener(this);
// KSM feature
setEnableKsm(new EntityModel<>());
getEnableKsm().setEntity(false);
getKsmPolicyForNumaSelection().setIsChangeable(false);
getEnableKsm().getEntityChangedEvent().addListener((ev, sender, args) -> {
if (getEnableKsm().getEntity() == null) {
return;
}
if (getEnableKsm().getEntity()) {
getKsmPolicyForNumaSelection().setIsChangeable(true);
}
if (!getEnableKsm().getEntity()) {
getKsmPolicyForNumaSelection().setIsChangeable(false);
}
});
setEnableBallooning(new EntityModel<>());
getEnableBallooning().setEntity(false);
// Optimization methods:
// default value =100;
setDefaultMemoryOvercommit(AsyncDataProvider.getInstance().getClusterDefaultMemoryOverCommit());
setCountThreadsAsCores(new EntityModel<>(AsyncDataProvider.getInstance().getClusterDefaultCountThreadsAsCores()));
setVersionSupportsCpuThreads(new EntityModel<>(true));
setOptimizeForUtilization(new EntityModel<>());
setOptimizeForSpeed(new EntityModel<>());
getOptimizeForUtilization().setEntity(true);
getOptimizeForSpeed().setEntity(false);
getOptimizeForUtilization().getEntityChangedEvent().addListener(this);
getOptimizeForSpeed().getEntityChangedEvent().addListener(this);
setGuarantyResources(new EntityModel<>());
setAllowOverbooking(new EntityModel<>());
getGuarantyResources().setEntity(true);
getAllowOverbooking().setEntity(false);
getAllowOverbooking().getEntityChangedEvent().addListener(this);
getGuarantyResources().getEntityChangedEvent().addListener(this);
boolean overbookingSupported = AsyncDataProvider.getInstance().getScheudulingAllowOverbookingSupported();
getAllowOverbooking().setIsAvailable(overbookingSupported);
if (overbookingSupported) {
getOptimizeForSpeed().getEntityChangedEvent().addListener((ev, sender, args) -> {
Boolean entity = getOptimizeForSpeed().getEntity();
if (entity) {
getGuarantyResources().setEntity(true);
}
getAllowOverbooking().setIsChangeable(!entity);
});
getAllowOverbooking().getEntityChangedEvent().addListener((ev, sender, args) -> {
Boolean entity = getAllowOverbooking().getEntity();
if (entity) {
getOptimizeForUtilization().setEntity(true);
}
getOptimizeForSpeed().setIsChangeable(!entity);
});
}
setHostsWithBrokenConnectivityThreshold(new ListModel<>());
getHostsWithBrokenConnectivityThreshold().setIsAvailable(true);
getHostsWithBrokenConnectivityThreshold().getSelectedItemChangedEvent().addListener(this);
initHostsWithBrokenConnectivityThreshold();
AsyncDataProvider.getInstance().getClusterDesktopMemoryOverCommit(new AsyncQuery<>(result -> {
setDesktopOverCommit(result);
AsyncDataProvider.getInstance().getClusterServerMemoryOverCommit(new AsyncQuery<>(r -> {
setServerOverCommit(r);
// temp is used for conversion purposes
EntityModel temp;
temp = getOptimizationNone();
temp.setEntity(getDefaultMemoryOvercommit());
// res1, res2 is used for conversion purposes.
boolean res1 = getDesktopOverCommit() != getDefaultMemoryOvercommit();
boolean res2 = getServerOverCommit() != getDefaultMemoryOvercommit();
temp = getOptimizationNone_IsSelected();
setIsSelected(res1 && res2);
temp.setEntity(getIsSelected());
temp = getOptimizationForServer();
temp.setEntity(getServerOverCommit());
temp = getOptimizationForServer_IsSelected();
temp.setEntity(getServerOverCommit() == getDefaultMemoryOvercommit());
temp = getOptimizationForDesktop();
temp.setEntity(getDesktopOverCommit());
temp = getOptimizationForDesktop_IsSelected();
temp.setEntity(getDesktopOverCommit() == getDefaultMemoryOvercommit());
temp = getOptimizationCustom();
temp.setIsAvailable(false);
temp.setIsChangeable(false);
if (getIsEdit()) {
postInit();
}
}));
}));
setDataCenter(new ListModel<>());
getDataCenter().getSelectedItemChangedEvent().addListener(this);
getDataCenter().setIsAvailable(ApplicationModeHelper.getUiMode() != ApplicationMode.GlusterOnly);
setArchitecture(new ListModel<>());
getArchitecture().setIsAvailable(ApplicationModeHelper.isModeSupported(ApplicationMode.VirtOnly));
setManagementNetwork(new ListModel<>());
if (isEdit && !isClusterDetached()) {
getManagementNetwork().setChangeProhibitionReason(ConstantsManager.getInstance().getConstants().prohibitManagementNetworkChangeInEditClusterInfoMessage());
getManagementNetwork().setIsChangeable(false);
}
setCPU(new FilteredListModel<>());
getCPU().setIsAvailable(ApplicationModeHelper.getUiMode() != ApplicationMode.GlusterOnly);
getCPU().getSelectedItemChangedEvent().addListener(this);
setVersion(new ListModel<>());
getVersion().getSelectedItemChangedEvent().addListener(this);
setMigrateOnErrorOption(MigrateOnErrorOptions.YES);
setFirewallType(new ListModel<>());
initFirewallType();
setDefaultNetworkProvider(new ListModel<>());
initDefaultNetworkProvider();
setSwitchType(new ListModel<>());
initSwitchType();
getRngHwrngSourceRequired().setEntity(false);
setValidTab(TabName.GENERAL_TAB, true);
setMigrationTabAvailable(true);
setClusterPolicy(new ListModel<>());
setCustomPropertySheet(new KeyValueModel());
getClusterPolicy().getSelectedItemChangedEvent().addListener(this);
Frontend.getInstance().runQuery(QueryType.GetAllPolicyUnits, new QueryParametersBase(), new AsyncQuery<QueryReturnValue>(returnValue -> {
ArrayList<PolicyUnit> policyUnits = returnValue.getReturnValue();
policyUnitMap = new LinkedHashMap<>();
for (PolicyUnit policyUnit : policyUnits) {
policyUnitMap.put(policyUnit.getId(), policyUnit);
}
Frontend.getInstance().runQuery(QueryType.GetClusterPolicies, new QueryParametersBase(), new AsyncQuery<QueryReturnValue>(retVal -> {
ArrayList<ClusterPolicy> list = retVal.getReturnValue();
getClusterPolicy().setItems(list);
ClusterPolicy defaultClusterPolicy = null;
ClusterPolicy selectedClusterPolicy = null;
for (ClusterPolicy clusterPolicy : list) {
if (getIsEdit() && getEntity() != null && clusterPolicy.getId().equals(getEntity().getClusterPolicyId())) {
selectedClusterPolicy = clusterPolicy;
}
if (clusterPolicy.isDefaultPolicy()) {
defaultClusterPolicy = clusterPolicy;
}
}
if (selectedClusterPolicy != null) {
getClusterPolicy().setSelectedItem(selectedClusterPolicy);
} else {
getClusterPolicy().setSelectedItem(defaultClusterPolicy);
}
clusterPolicyChanged();
}));
}));
setCustomMigrationNetworkBandwidth(new EntityModel<>());
setMigrationBandwidthLimitType(new ListModel<>());
}
use of org.ovirt.engine.core.common.scheduling.PolicyUnit in project ovirt-engine by oVirt.
the class NewClusterPolicyModel method refreshCustomProperties.
private void refreshCustomProperties(PolicyUnit toRemove, boolean reset) {
if (!customPropertiesInitialized) {
return;
}
Map<String, String> policyProperties = new HashMap<>();
Map<Guid, PolicyUnit> allPolicyUnits = new HashMap<>();
for (PolicyUnit policyUnit : getUsedFilters()) {
allPolicyUnits.put(policyUnit.getId(), policyUnit);
}
for (Pair<PolicyUnit, Integer> pair : getUsedFunctions()) {
allPolicyUnits.put(pair.getFirst().getId(), pair.getFirst());
}
if (toRemove != null && !allPolicyUnits.containsKey(toRemove.getId())) {
if (toRemove.getParameterRegExMap() != null) {
for (Entry<String, String> entry : toRemove.getParameterRegExMap().entrySet()) {
getCustomProperties().remove(entry.getKey());
}
}
}
PolicyUnit selectedItem = loadBalanceList.getSelectedItem();
allPolicyUnits.put(selectedItem.getId(), selectedItem);
for (PolicyUnit policyUnit : allPolicyUnits.values()) {
if (policyUnit.getParameterRegExMap() != null) {
policyProperties.putAll(policyUnit.getParameterRegExMap());
}
}
Map<String, String> defaultMap = new HashMap<>(getCustomProperties());
if (!reset) {
defaultMap.putAll(KeyValueModel.convertProperties(getCustomPropertySheet().serialize()));
}
getCustomPropertySheet().setKeyValueMap(policyProperties);
getCustomPropertySheet().deserialize(KeyValueModel.convertProperties(defaultMap));
}
use of org.ovirt.engine.core.common.scheduling.PolicyUnit in project ovirt-engine by oVirt.
the class NewClusterPolicyModel method initFilters.
private void initFilters() {
getUsedFilters().clear();
getUnusedFilters().clear();
if (clusterPolicy.getFilters() == null) {
getUnusedFilters().addAll(getFilterPolicyUnits(policyUnits));
return;
}
HashMap<Guid, PolicyUnit> map = (HashMap<Guid, PolicyUnit>) ((HashMap<Guid, PolicyUnit>) policyUnitsMap).clone();
for (Guid policyUnitId : clusterPolicy.getFilters()) {
map.remove(policyUnitId);
getUsedFilters().add(policyUnitsMap.get(policyUnitId));
}
initFilterPositions();
getUnusedFilters().addAll(getFilterPolicyUnits(new ArrayList<>(map.values())));
}
use of org.ovirt.engine.core.common.scheduling.PolicyUnit in project ovirt-engine by oVirt.
the class ManagePolicyUnitPopupView method initTable.
private void initTable() {
policyUnitTable = new ListModelObjectCellTable<>();
policyUnitTable.enableColumnResizing();
policyUnitTableContainer.add(policyUnitTable);
policyUnitTable.addColumn(new AbstractImageResourceColumn<PolicyUnit>() {
@Override
public ImageResource getValue(PolicyUnit object) {
if (object.isInternal()) {
return resources.lockImage();
}
return resources.exteranlPolicyUnitImage();
}
@Override
public SafeHtml getTooltip(PolicyUnit object) {
String tooltipContent = null;
if (object.isInternal()) {
tooltipContent = constants.internalPolicyUnit();
} else {
tooltipContent = constants.externalPolicyUnit();
}
return SafeHtmlUtils.fromSafeConstant(tooltipContent);
}
}, constants.empty(), // $NON-NLS-1$
"20px");
policyUnitTable.addColumn(new AbstractTextColumn<PolicyUnit>() {
@Override
public String getValue(PolicyUnit object) {
return object.getName();
}
}, constants.policyUnitName(), // $NON-NLS-1$
"180px");
policyUnitTable.addColumn(new AbstractTextColumn<PolicyUnit>() {
@Override
public String getValue(PolicyUnit object) {
return EnumTranslator.getInstance().translate(object.getPolicyUnitType());
}
}, constants.policyUnitType(), // $NON-NLS-1$
"100px");
policyUnitTable.addColumn(new AbstractTextColumn<PolicyUnit>() {
@Override
public String getValue(PolicyUnit object) {
return object.isEnabled() ? constants.enabledPolicyUnit() : constants.disabledPolicyUnit();
}
}, constants.policyUnitEnabledStatus(), // $NON-NLS-1$
"75px");
Column<PolicyUnit, String> removeButtonColumn = new Column<PolicyUnit, String>(new NullableButtonCell()) {
@Override
public String getValue(PolicyUnit object) {
if (!object.isEnabled()) {
return constants.removePolicyUnit();
}
return null;
}
};
// $NON-NLS-1$
policyUnitTable.addColumn(removeButtonColumn, constants.removePolicyUnit(), "80px");
removeButtonColumn.setFieldUpdater((index, object, value) -> model.remove(object));
}
Aggregations