// 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.resource; import java.util.List; import java.util.Map; import com.cloud.agent.api.StartupCommand; import com.cloud.agent.api.StartupRoutingCommand; import com.cloud.dc.DataCenterVO; import com.cloud.dc.HostPodVO; import com.cloud.dc.PodCluster; import com.cloud.exception.AgentUnavailableException; import com.cloud.host.Host; import com.cloud.host.Host.Type; import com.cloud.host.HostStats; import com.cloud.host.HostVO; import com.cloud.host.Status; import com.cloud.hypervisor.Hypervisor.HypervisorType; import com.cloud.resource.ResourceState.Event; import com.cloud.utils.fsm.NoTransitionException; /** * ResourceManager manages how physical resources are organized within the * CloudStack. It also manages the life cycle of the physical resources. */ public interface ResourceManager extends ResourceService { /** * Register a listener for different types of resource life cycle events. * There can only be one type of listener per type of host. * * @param Event type see ResourceListener.java, allow combination of multiple events. * @param listener the listener to notify. */ public void registerResourceEvent(Integer event, ResourceListener listener); public void unregisterResourceEvent(ResourceListener listener); /** * * @param name of adapter * @param adapter * @param hates, a list of names which will be eliminated by this adapter. Especially for the case where * can be only one adapter responds to an event, e.g. startupCommand */ public void registerResourceStateAdapter(String name, ResourceStateAdapter adapter); public void unregisterResourceStateAdapter(String name); public Host createHostAndAgent(Long hostId, ServerResource resource, Map details, boolean old, List hostTags, boolean forRebalance); public Host addHost(long zoneId, ServerResource resource, Type hostType, Map hostDetails); public HostVO createHostVOForConnectedAgent(StartupCommand[] cmds); public void checkCIDR(HostPodVO pod, DataCenterVO dc, String serverPrivateIP, String serverPrivateNetmask); public HostVO fillRoutingHostVO(HostVO host, StartupRoutingCommand ssCmd, HypervisorType hyType, Map details, List hostTags); public void deleteRoutingHost(HostVO host, boolean isForced, boolean forceDestroyStorage) throws UnableDeleteHostException; public boolean executeUserRequest(long hostId, ResourceState.Event event) throws AgentUnavailableException; boolean resourceStateTransitTo(Host host, Event event, long msId) throws NoTransitionException; boolean umanageHost(long hostId); boolean maintenanceFailed(long hostId); public boolean maintain(final long hostId) throws AgentUnavailableException; @Override public boolean deleteHost(long hostId, boolean isForced, boolean isForceDeleteStorage); public List findDirectlyConnectedHosts(); public List listAllUpAndEnabledHosts(Host.Type type, Long clusterId, Long podId, long dcId); public List listAllHostsInCluster(long clusterId); public List listHostsInClusterByStatus(long clusterId, Status status); public List listAllUpAndEnabledHostsInOneZoneByType(Host.Type type, long dcId); public List listAllUpAndEnabledHostsInOneZoneByHypervisor(HypervisorType type, long dcId); public List listAllHostsInOneZoneByType(Host.Type type, long dcId); public List listAllHostsInAllZonesByType(Type type); public List listAvailHypervisorInZone(Long hostId, Long zoneId); public HostVO findHostByGuid(String guid); public HostVO findHostByName(String name); public List listHostsByNameLike(String name); HostStats getHostStatistics(long hostId); Long getGuestOSCategoryId(long hostId); String getHostTags(long hostId); List listByDataCenter(long dcId); List listAllNotInMaintenanceHostsInOneZone(Type type, Long dcId); HypervisorType getDefaultHypervisor(long zoneId); HypervisorType getAvailableHypervisor(long zoneId); Discoverer getMatchingDiscover(HypervisorType hypervisorType); List findHostByGuid(long dcId, String guid); /** * @param type * @param clusterId * @param podId * @param dcId * @return */ List listAllUpAndEnabledNonHAHosts(Type type, Long clusterId, Long podId, long dcId); }