All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.netxms.client.maps.NetworkMapPage Maven / Gradle / Ivy

There is a newer version: 5.0.6
Show newest version
/**
 * NetXMS - open source network management system
 * Copyright (C) 2003-2010 Victor Kirhenshtein
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
package org.netxms.client.maps;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.netxms.client.maps.elements.NetworkMapElement;
import org.netxms.client.maps.elements.NetworkMapObject;

/**
 * Network map object representation used by visualisation tools
 *
 */
public class NetworkMapPage
{
	private String id;
	private long nextElementId;
	private Map elements = new HashMap(0);
	private Set links = new HashSet(0);

	/**
	 * Create empty named page
	 */
	public NetworkMapPage(final String id)
	{
		this.id = id;
		nextElementId = 1;
	}
	
	/**
	 * Add element to map
	 */
	public void addElement(final NetworkMapElement element)
	{
		elements.put(element.getId(), element);
		if (element.getId() >= nextElementId)
			nextElementId = element.getId() + 1;
	}
	
	/**
	 * Add all elements from given collection
	 * @param set
	 */
	public void addAllElements(Collection set)
	{
		for(NetworkMapElement e : set)
			addElement(e);
	}

	/**
	 * Add link between elements to map
	 */
	public void addLink(final NetworkMapLink link)
	{
		links.add(link);
	}
	
	/**
	 * Add all links from given collection
	 * 
	 * @param set
	 */
	public void addAllLinks(Collection set)
	{
		links.addAll(set);
	}
	
	/**
	 * Get map element by element ID.
	 * 
	 * @param elementId element ID
	 * @param requiredClass optional class filter (set to null to disable filtering)
	 * @return map element or null
	 */
	public NetworkMapElement getElement(long elementId, Class requiredClass)
	{
		NetworkMapElement e = elements.get(elementId);
		if ((e == null) || (requiredClass == null))
			return e;
		return requiredClass.isInstance(e) ? e : null;
	}
	
	/**
	 * Remove element from map
	 * 
	 * @param elementId map element ID
	 */
	public void removeElement(long elementId)
	{
		elements.remove(elementId);

		Iterator it = links.iterator();
		while(it.hasNext())
		{
			NetworkMapLink l = it.next();
			if ((l.getElement1() == elementId) || (l.getElement2() == elementId))
			{
				it.remove();
			}
		}
	}
	
	/**
	 * Remove map element representing NetXMS object by NetXMS object ID.
	 * 
	 * @param objectId NetXMS object ID
	 */
	public void removeObjectElement(long objectId)
	{
		long elementId = -1;
		for(NetworkMapElement element : elements.values())
		{
			if (element instanceof NetworkMapObject)
			{
				if (((NetworkMapObject)element).getObjectId() == objectId)
				{
					elementId = element.getId();
					break;
				}
			}
		}

		if (elementId != -1)
		{
			removeElement(elementId);
		}
	}
	
	/**
	 * Remove link between objects
	 * 
	 * @param link
	 */
	public void removeLink(NetworkMapLink link)
	{
		links.remove(link);
	}

	/**
	 * @return the name
	 */
	public String getId()
	{
		return id;
	}

	/**
	 * @param id the id to set
	 */
	public void setId(String id)
	{
		this.id = id;
	}

	/**
	 * @return the objects
	 */
	public Collection getElements()
	{
		return elements.values();
	}

	/**
	 * @return the links
	 */
	public Collection getLinks()
	{
		return links;
	}
	
	/**
	 * Get IDs of all objects on map
	 * 
	 * @return IDs of all objects on map
	 */
	public List getObjectIds()
	{
	   List objects = new ArrayList();
	   for(NetworkMapElement e : elements.values())
	   {
	      if (e.getType() == NetworkMapElement.MAP_ELEMENT_OBJECT)
	         objects.add(((NetworkMapObject)e).getObjectId());
	   }
	   return objects;
	}
	
   /**
    * Get all object elements
    * 
    * @return all object elements
    */
   public List getObjectElements()
   {
      List objects = new ArrayList();
      for(NetworkMapElement e : elements.values())
      {
         if (e.getType() == NetworkMapElement.MAP_ELEMENT_OBJECT)
            objects.add(e);
      }
      return objects;
   }
   
	/**
	 * Create new unique element ID
	 * 
	 * @return new unique element ID
	 */
	public long createElementId()
	{
		return nextElementId++;
	}
	
	/**
	 * Find object element by NeTXMS object ID.
	 * 
	 * @param objectId NetXMS object ID
	 * @return object element or null
	 */
	public NetworkMapObject findObjectElement(long objectId)
	{
		for(NetworkMapElement e : elements.values())
			if ((e instanceof NetworkMapObject) && (((NetworkMapObject)e).getObjectId() == objectId))
				return (NetworkMapObject)e;
		return null;
	}
	
	/**
	 * Find links from source to destination
	 * 
	 * @param source source element
	 * @param destination destination element
	 * @return link between source and destination or null if there are no such link 
	 */
	public List findLinks(NetworkMapElement source, NetworkMapElement destination)
	{
	   List result = new ArrayList();
		for(NetworkMapLink l : links)
			if ((l.getElement1() == source.getId()) && (l.getElement2() == destination.getId()))
				result.add(l);
		return result;
	}
	
	/**
	 * Find all links using given object as status source
	 * 
	 * @param objectId status source object id
	 * @return list of link using this object
	 */
	public List findLinksWithStatusObject(long objectId)
	{
		List list = null;
		for(NetworkMapLink l : links)
		{
		   for(Long obj : l.getStatusObject())
			if (obj == objectId)
			{
				if (list == null)
					list = new ArrayList();
				list.add(l);
			}
		}
		return list;
	}
	
	/**
	 * Checks if two objects are connected
	 * 
	 * @param objectId1 ID of first map object
	 * @param objectId2 ID of second map object
	 * @return true if given objects are connected
	 */
	public boolean areObjectsConnected(long objectId1, long objectId2)
	{
		for(NetworkMapLink l : links)
			if (((l.getElement1() == objectId1) && (l.getElement2() == objectId2)) ||
			    ((l.getElement1() == objectId2) && (l.getElement2() == objectId1)))
				return true;
		return false;
	}
	
	/**
	 * Get objects and links in one array
	 * @return Objects and links in one array
	 */
	public Object[] getElementsAndLinks()
	{
		Object[] list = new Object[elements.size() + links.size()];
		int i = 0;
		
		for(NetworkMapElement e : elements.values())
			list[i++] = e;
		for(NetworkMapLink l : links)
			list[i++] = l;

		return list;
	}

	/**
	 * Get all elements connected to given element
	 * @param root Root element id
	 * @return All elements connected to given element
	 */
	public NetworkMapElement[] getConnectedElements(long root)
	{
		Set result = new HashSet(0);
		
		Iterator it = links.iterator();
		while(it.hasNext())
		{
			NetworkMapLink link = it.next();
			if (link.getElement1() == root)
			{
				long id = link.getElement2();
				NetworkMapElement e = elements.get(id);
				if (e != null)
					result.add(e);
			}
		}
		return result.toArray(new NetworkMapElement[result.size()]);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy