Uses of Class
be.ac.ulg.montefiore.run.totem.repository.model.exception.NoRouteToHostException

Packages that use NoRouteToHostException
be.ac.ulg.montefiore.run.totem.domain.model This package holds the model for the domain package. 
be.ac.ulg.montefiore.run.totem.domain.model.impl This package holds classes which are the implementation of the model for the domain package. 
be.ac.ulg.montefiore.run.totem.repository.CSPF This package holds CSPF-related classes (various implementations of the CSPF algorithm is available). 
be.ac.ulg.montefiore.run.totem.repository.DAMOTE This package holds DAMOTE-related classes. 
be.ac.ulg.montefiore.run.totem.repository.model This package holds the model for the repository package. 
be.ac.ulg.montefiore.run.totem.repository.MultiCommodityFlow This package holds an implementation of the multi-commodity flow algorithm. 
be.ac.ulg.montefiore.run.totem.repository.optDivideTM This package holds an implementation of the algorithm described in "Dividing the Traffic Matrix to approach optimal Traffic Engineering" by S. 
be.ac.ulg.montefiore.run.totem.repository.tomography   
be.ac.ulg.montefiore.run.totem.topgen.traffic This package holds traffic generation-related classes. 
be.ac.ulg.montefiore.run.totem.topgen.util This package holds util classes for Topgen. 
be.ac.ulg.montefiore.run.totem.trafficMatrix.facade This package holds the manager for the trafficMatrix package. 
be.ac.ulg.montefiore.run.totem.trafficMatrix.model This package holds the model for the trafficMatrix package. 
be.ac.ulg.montefiore.run.totem.trafficMatrix.model.impl This package holds the implementation of the model for the trafficMatrix package. 
be.ac.ulg.montefiore.run.totem.visualtopo.guiModules.routingGUIModule   
it.unina.repository.MIRA   
nl.tudelft.repository.XAMCRA   
test This package holds JUnit test classes. 
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.domain.model
 

Methods in be.ac.ulg.montefiore.run.totem.domain.model that throw NoRouteToHostException
 java.util.List<java.util.List<Path>> DomainValidator.getEqualCostMultiPath()
          Returns a list containing lists of paths.
 java.util.List<java.util.List<Path>> DomainValidator.getEqualCostMultiPath(java.lang.String algo)
          Returns a list containing lists of paths.
 Path SPFCache.getPath(Node src, Node dst)
          Get the SPF path between a source node and a destination node
 java.util.List<Path> SPFCache.getPath(Node src, Node dst, boolean ECMP)
          Get all the SPF path between a source node and a destination node if the ECMP is true and a single SPF otherwise
 java.util.List<Path> SPFCache.getPath(Node src, Node dst, boolean ECMP, boolean stopOnError)
          Get all the SPF path between a source node and a destination node if the ECMP is true and a single SPF otherwise
 boolean DomainValidator.isEqualCostMultiPath()
          Check if there exists equal cost multi path in the topology
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.domain.model.impl
 

Methods in be.ac.ulg.montefiore.run.totem.domain.model.impl that throw NoRouteToHostException
 java.util.List<java.util.List<Path>> DomainValidatorImpl.getEqualCostMultiPath()
           
 java.util.List<java.util.List<Path>> DomainValidatorImpl.getEqualCostMultiPath(java.lang.String algo)
           
 Path SPFCacheImpl.getPath(Node src, Node dst)
          Get the SPF path between a source node and a destination node
 java.util.List<Path> SPFCacheImpl.getPath(Node src, Node dst, boolean ECMP)
          Get all the SPF path between a source node and a destination node if the ECMP is true and a single SPF otherwise
 java.util.List<Path> SPFCacheImpl.getPath(Node src, Node dst, boolean ECMP, boolean stopOnError)
           
 boolean DomainValidatorImpl.isEqualCostMultiPath()
          Check if there exists equal cost multi path in the topology
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.repository.CSPF
 

Methods in be.ac.ulg.montefiore.run.totem.repository.CSPF that throw NoRouteToHostException
protected  java.util.HashMap<java.lang.String,CSPFElem> CSPF.computeCSPF(Domain domain, int priority, Node srcNode, Node dstNode, float bw, boolean stopToSourceOrDestination, boolean computeFromSourceToDestination)
          Computes the CSPF between a source node and a destination node with a bandwidth requirement
protected  java.util.HashMap<java.lang.String,CSPFElem> CSPF.computeCSPF(Domain domain, int priority, Node srcNode, Node dstNode, float bw, boolean stopToSourceOrDestination, boolean computeFromSourceToDestination, java.util.HashSet<Link> avoidLinks)
          Computes the CSPF between a source node and a destination node with a bandwidth requirement
 java.util.List<Path> CSPF.computeFullMeshSPF(Domain domain)
           
 java.util.List<Path> Bhandari.computeFullMeshSPF(Domain domain)
          Compute the SPF from all source nodes to all destination nodes on the given domain
 java.util.List<Path> CSPF.computeFullMeshSPF(Domain domain, boolean ECMP)
           
 java.util.List<Path> Bhandari.computeFullMeshSPF(Domain domain, boolean ECMP)
           
 SimplifiedPath[] BhandariKDisjointPath.computeLinkDisjointPath(int src, int dst, int k)
          Compute K disjoint shortest path between src to dst.
 java.util.List<Path> CSPF.computeSPF(Domain domain, boolean isSource, java.lang.String node)
           
 java.util.List<Path> CSPF.computeSPF(Domain domain, boolean isSource, java.lang.String node, boolean ECMP)
           
 java.util.List<Path> CSPF.computeSPF(Domain domain, java.lang.String src)
           
 java.util.List<Path> Bhandari.computeSPF(Domain domain, java.lang.String src)
          Compute the SPF from a source node to all destination nodes on the given domain
 java.util.List<Path> CSPF.computeSPF(Domain domain, java.lang.String src, boolean ECMP)
           
 java.util.List<Path> Bhandari.computeSPF(Domain domain, java.lang.String src, boolean ECMP)
           
 Path CSPF.computeSPF(Domain domain, java.lang.String src, java.lang.String dst)
           
 Path Bhandari.computeSPF(Domain domain, java.lang.String src, java.lang.String dst)
          Compute the SPF from a source node to a destination node on the given domain
 java.util.List<Path> CSPF.computeSPF(Domain domain, java.lang.String src, java.lang.String dst, boolean ECMP)
           
 java.util.List<Path> Bhandari.computeSPF(Domain domain, java.lang.String src, java.lang.String dst, boolean ECMP)
          Computes the shortest path between two nodes.
 java.util.List<SimplifiedPath> Bhandari.computeSPF(SimplifiedDomain domain, int src)
          Compute the SPF from all source nodes to all destination nodes on the SimplifiedDomain
 SimplifiedPath Bhandari.computeSPF(SimplifiedDomain domain, int src, int dst)
          Compute the SPF from a source node to a destination node on the SimplifiedDomain
protected  java.util.List<Path> CSPF.extractPath(Domain domain, java.util.HashMap<java.lang.String,CSPFElem> path, Node node, boolean ECMP, boolean computeFromSourceToDestination)
           
protected  java.util.List<Path> CSPF.extractPath(Domain domain, java.util.HashMap<java.lang.String,CSPFElem> path, Node srcNode, Node dstNode, boolean ECMP, boolean computeFromSourceToDestination)
           
 TotemActionList CSPF.routeBypass(LSPBypassRoutingParameter param)
          Computes a bypass.
 TotemActionList CSPF.routeDetour(Domain domain, LSPDetourRoutingParameter param)
          Computes a detour backup for a LSP.
 TotemActionList CSPF.routeLSP(Domain domain, LSPPrimaryRoutingParameter param)
           
 TotemActionList CSPF.routeNLSP(Domain domain, java.util.List<LSPPrimaryRoutingParameter> param)
           
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.repository.DAMOTE
 

Methods in be.ac.ulg.montefiore.run.totem.repository.DAMOTE that throw NoRouteToHostException
 java.lang.Object[] JNIDAMOTE.jnicomputeBackupPath(int primarylspId, int[] backuplspIds, int backupType, boolean ADDLSP, boolean PREEMPT)
          Computes a global detour or local detours with DAMOTE
 int[] JNIDAMOTE.jnicomputePath(int lspId, int src, int dst, int rrid, int rrsrc, int rrdst, int PL, int OA, float reservation, int[] colorArray, boolean ADDLSP, boolean PREEMPT)
          Computes a primary LSP with DAMOTE
 TotemActionList DAMOTE.routeBypass(LSPBypassRoutingParameter param)
           
 TotemActionList DAMOTE.routeDetour(Domain dom, LSPDetourRoutingParameter param)
          Computes a global detour or local detours for a primary LSP
 TotemActionList DAMOTE.routeLSP(Domain dom, LSPPrimaryRoutingParameter param)
          Computes a path with DAMOTE for one demand from a source node to a destination node with a bandwidth requirement
 TotemActionList DAMOTE.routeNLSP(Domain dom, java.util.List<LSPPrimaryRoutingParameter> param)
          Computes paths with DAMOTE for a list of demands.
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.repository.model
 

Methods in be.ac.ulg.montefiore.run.totem.repository.model that throw NoRouteToHostException
 java.util.List<Path> SPF.computeFullMeshSPF(Domain domain)
          Computes a unique shortest path between all nodes in the topology
 java.util.List<Path> SPF.computeFullMeshSPF(Domain domain, boolean ECMP)
          Computes the shortest paths between all nodes in the topology
 java.util.List<Path> SPF.computeSPF(Domain domain, boolean isSource, java.lang.String node)
          Computes a unique shortest path from (resp.
 java.util.List<Path> SPF.computeSPF(Domain domain, boolean isSource, java.lang.String node, boolean ECMP)
          Computes the shortest paths from (resp.
 java.util.List<Path> SPF.computeSPF(Domain domain, java.lang.String src)
          Computes a unique shortest path from a source node to all destination node
 java.util.List<Path> SPF.computeSPF(Domain domain, java.lang.String src, boolean ECMP)
          Computes the shortest paths from a source node to all destination node
 Path SPF.computeSPF(Domain domain, java.lang.String src, java.lang.String dst)
          Computes a unique shortest path between two nodes
 java.util.List<Path> SPF.computeSPF(Domain domain, java.lang.String src, java.lang.String dst, boolean ECMP)
          Computes the shortest path between two nodes.
 TotemActionList LSPBackupRouting.routeBypass(LSPBypassRoutingParameter param)
          Computes a bypass.
 TotemActionList LSPBackupRouting.routeDetour(Domain domain, LSPDetourRoutingParameter param)
          Computes a detour backup for a LSP
 TotemActionList LSPPrimaryRouting.routeLSP(Domain domain, LSPPrimaryRoutingParameter param)
          Computes a path for a LSP
 TotemActionList LSPPrimaryRouting.routeNLSP(Domain domain, java.util.List<LSPPrimaryRoutingParameter> param)
          Computes paths for a list of LSPs specified by a list of LSPPrimaryRoutingParameter
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.repository.MultiCommodityFlow
 

Methods in be.ac.ulg.montefiore.run.totem.repository.MultiCommodityFlow that throw NoRouteToHostException
 double[] MultiCommodityFlow.compute(Domain domain, TrafficMatrix tm)
           
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.repository.optDivideTM
 

Methods in be.ac.ulg.montefiore.run.totem.repository.optDivideTM that throw NoRouteToHostException
 double[] OptDivideTMLoadComputer.compute(Domain domain, TrafficMatrix tm)
          Compute the link load of the specified traffic matrix on the domain
 void OptDivideTMLoadComputer.establishFullmeshes(Domain domain, TrafficMatrix tm)
           
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.repository.tomography
 

Methods in be.ac.ulg.montefiore.run.totem.repository.tomography that throw NoRouteToHostException
static void Test.main(java.lang.String[] args)
           
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.topgen.traffic
 

Methods in be.ac.ulg.montefiore.run.totem.topgen.traffic that throw NoRouteToHostException
 TrafficMatrix TrafficGenerator.generateTM()
          Deprecated.  
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.topgen.util
 

Methods in be.ac.ulg.montefiore.run.totem.topgen.util that throw NoRouteToHostException
abstract  void RoutingMatrix.recompute()
          Recomputes the routing matrix.
 void BooleanRoutingMatrix.recompute()
          Recomputes the routing matrix.
 void RealRoutingMatrix.recompute()
          Recomputes the routing matrix.
 

Constructors in be.ac.ulg.montefiore.run.totem.topgen.util that throw NoRouteToHostException
BooleanRoutingMatrix(Domain domain)
          Initialises and computes a newly created routing matrix for the domain domain according to the SPF algorithm.
BooleanRoutingMatrix(SPF spf, Domain domain, boolean stopOnError)
          Initialises and computes a newly created routing matrix for the domain domain according to the SPF algorithm.
RealRoutingMatrix(Domain domain)
           
RealRoutingMatrix(Domain domain, SPF spf, boolean stopOnError, boolean ECMP)
           
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.trafficMatrix.facade
 

Methods in be.ac.ulg.montefiore.run.totem.trafficMatrix.facade that throw NoRouteToHostException
 void TrafficMatrixManager.generateTrafficMatrix(int asId, int tmId, TrafficModel model, double fraction)
          Deprecated. Use TrafficGeneratorInterface and sub-classes instead and TrafficGeneratorFactory.
 TrafficMatrix TrafficMatrixManager.generateTrafficMatrix(int asId, int tmId, TrafficModel model, double fraction, boolean generateOnlyEdgeTraffic)
          Deprecated. Use TrafficGeneratorInterface and sub-classes instead and TrafficGeneratorFactory.
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.trafficMatrix.model
 

Methods in be.ac.ulg.montefiore.run.totem.trafficMatrix.model that throw NoRouteToHostException
 double[] TmLoadComputer.compute(Domain domain, TrafficMatrix tm)
          Compute the link load of the specified traffic matrix on the domain
 double[] TrafficMatrix.getLinkLoad()
          Deprecated. Use class LinkLoadComputer instead.
 double[] TrafficMatrix.getLinkUtilisation()
          Deprecated. Use class LinkLoadComputer instead.
 double[] LinkLoadComputer.getLoad()
          Returns a vector that represent links load.
 double LinkLoadComputer.getLoad(Link lnk)
          Returns the load calculated for the given link.
 double[] LinkLoadComputer.getUtilization()
          Returns a vector that represent links utilization.
 double LinkLoadComputer.getUtilization(Link lnk)
          Returns the utilization calculated for the given link.
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.trafficMatrix.model.impl
 

Methods in be.ac.ulg.montefiore.run.totem.trafficMatrix.model.impl that throw NoRouteToHostException
 double[] IGPShortcutStrategy.compute(Domain domain, TrafficMatrix tm)
           
 double[] SPFLinkLoadStrategy.compute(Domain domain, TrafficMatrix tm)
          Compute the link load of the specified traffic matrix on the domain
 double[] OverlayStrategy.compute(Domain domain, TrafficMatrix tm)
          Compute the link load of the specified traffic matrix on the domain
 double[] BasicIGPShortcutStrategy.compute(Domain domain, TrafficMatrix tm)
          Compute the link load of the specified traffic matrix on the domain
 Path IGPShortcutStrategy.computePath(Domain domain, Node srcNode, Node dstNode)
           
 Path BasicIGPShortcutStrategy.computePath(Domain domain, Node srcNode, Node dstNode)
           
 double[] TrafficMatrixImpl.getLinkLoad()
          Deprecated. Use class LinkLoadComputer instead.
 double[] TrafficMatrixImpl.getLinkUtilisation()
          Deprecated. Use class LinkLoadComputer instead.
 double[] LinkLoadComputerImpl.getLoad()
           
 double LinkLoadComputerImpl.getLoad(Link lnk)
           
 double[] LinkLoadComputerImpl.getUtilization()
           
 double LinkLoadComputerImpl.getUtilization(Link lnk)
           
 

Uses of NoRouteToHostException in be.ac.ulg.montefiore.run.totem.visualtopo.guiModules.routingGUIModule
 

Methods in be.ac.ulg.montefiore.run.totem.visualtopo.guiModules.routingGUIModule that throw NoRouteToHostException
 java.util.List<java.lang.String> RoutingGUIModule.addDetourLsp(java.lang.String lspId, java.lang.String protectedLspId, java.lang.String methodType, java.lang.String protectionType, LSPBackupRouting routing, java.util.HashMap<java.lang.String,java.lang.String> params)
           
 

Uses of NoRouteToHostException in it.unina.repository.MIRA
 

Methods in it.unina.repository.MIRA that throw NoRouteToHostException
static int[] JNIMIRA.jnicomputePath(int src, int dst, float bandwidth, int ADDLSP)
          Computes a primary LSP with MIRA
 TotemActionList MIRA.routeLSP(Domain dom, LSPPrimaryRoutingParameter param)
          Computes a path with MIRA for one demand from a source node to a destination node with a bandwidth requirement
 TotemActionList MIRA.routeNLSP(Domain dom, java.util.List<LSPPrimaryRoutingParameter> param)
          Computes paths with MIRA for a list of demands.
 

Uses of NoRouteToHostException in nl.tudelft.repository.XAMCRA
 

Methods in nl.tudelft.repository.XAMCRA that throw NoRouteToHostException
static int[] JNIXAMCRA.jnicomputePath(int src, int dst, double bandwidth, double[] qosConstraint, int ADDLSP)
          Computes a primary LSP with XAMCRA
 TotemActionList XAMCRA.routeLSP(Domain dom, LSPPrimaryRoutingParameter param)
          Computes a path with XAMCRA for one demand from a source node to a destination node with a bandwidth requirement
 TotemActionList XAMCRA.routeNLSP(Domain dom, java.util.List<LSPPrimaryRoutingParameter> param)
          Computes paths with XAMCRA for a list of demands.
 

Uses of NoRouteToHostException in test
 

Methods in test that throw NoRouteToHostException
 void DAMOTETest.test2()
           
 void DAMOTETest.test3()
           
 void ListenersTest.testaddremoveLSP()
          check the number of listeners in the domain, start algorithms, add a explicit route lsp in the domain, route a second lsp and check that the right route is taken (that the first lsp is added in the algorithm specific database)
 void BWSharingTest.testBackupBackup()
           
 void HybridStrategiesTest.testBasicIGPShortcut()
           
 void BhandariTest.testCompareWithCSPF()
           
 void CSPFTest.testComputeSPFSource()
           
 void HybridStrategiesTest.testIGPShortcut()
           
 void MIRATest.testNEWMIRA()
           
 void BhandariTest.testNonConsecutiveId()
           
 void XAMCRATest.testNonConsecutiveIds()
           
 void RoutingMatrixTest.testRealRoutingMatrix()
           
 void XAMCRATest.testRouteBw()
          Test with only bw constraint
 void XAMCRATest.testRouteBwDelay()
          Test with bw and delay constraint (path 0-3-2 does not satisfy constraints anymore)
 void MIRATest.testSMIRA()
           
 



Copyright © 2004-2007 Research Unit in Networking, All Rights Reserved.