// Licensed to the Apache Software Foundation (ASF) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The ASF licenses this file // to you 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 com.cloud.hypervisor.xenserver.resource; import java.util.Map; import javax.ejb.Local; import org.apache.xmlrpc.XmlRpcException; import com.cloud.resource.ServerResource; import com.xensource.xenapi.Connection; import com.xensource.xenapi.Host; import com.xensource.xenapi.Types.XenAPIException; @Local(value = ServerResource.class) public class XenServer56FP1Resource extends XenServer56Resource { @Override protected String getPatchFilePath() { return "scripts/vm/hypervisor/xenserver/xenserver56fp1/patch"; } /** * When Dynamic Memory Control (DMC) is enabled - * xenserver allows scaling the guest memory while the guest is running * * This is determined by the 'restrict_dmc' option on the host. * When false, scaling is allowed hence DMC is enabled */ @Override public boolean isDmcEnabled(final Connection conn, final Host host) throws XenAPIException, XmlRpcException { final Map<String, String> hostParams = host.getLicenseParams(conn); final Boolean isDmcEnabled = hostParams.get("restrict_dmc").equalsIgnoreCase("false"); return isDmcEnabled; } }