Mentions légales du service

Skip to content
Snippets Groups Projects
Commit a7acf965 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- passed command line arguments to align()

parent f5a17d40
No related branches found
No related tags found
No related merge requests found
...@@ -82,6 +82,7 @@ import java.util.zip.ZipEntry; ...@@ -82,6 +82,7 @@ import java.util.zip.ZipEntry;
public class AServProtocolManager { public class AServProtocolManager {
CacheImpl alignmentCache = null; CacheImpl alignmentCache = null;
Parameters commandLineParams = null;
Set renderers = null; Set renderers = null;
Set methods = null; Set methods = null;
Set services = null; Set services = null;
...@@ -104,6 +105,7 @@ public class AServProtocolManager { ...@@ -104,6 +105,7 @@ public class AServProtocolManager {
public void init( DBService connection, Parameters p ) throws SQLException, AlignmentException { public void init( DBService connection, Parameters p ) throws SQLException, AlignmentException {
alignmentCache = new CacheImpl( connection ); alignmentCache = new CacheImpl( connection );
commandLineParams = p;
alignmentCache.init( p ); alignmentCache.init( p );
myId = "http://"+p.getParameter("host")+":"+p.getParameter("http"); myId = "http://"+p.getParameter("host")+":"+p.getParameter("http");
renderers = implementations( "org.semanticweb.owl.align.AlignmentVisitor" ); renderers = implementations( "org.semanticweb.owl.align.AlignmentVisitor" );
...@@ -201,6 +203,13 @@ public class AServProtocolManager { ...@@ -201,6 +203,13 @@ public class AServProtocolManager {
// Implements: align // Implements: align
public Message align(Message mess){ public Message align(Message mess){
Message result = null; Message result = null;
Parameters p = mess.getParameters();
for (Enumeration<String> e = commandLineParams.getNames(); e.hasMoreElements();) {
String key = e.nextElement();
if ( p.getParameter( key ) == null ){
p.setParameter( key , commandLineParams.getParameter( key ) );
}
}
// Do the fast part (retrieve) // Do the fast part (retrieve)
result = retrieveAlignment( mess ); result = retrieveAlignment( mess );
if ( result != null ) return result; if ( result != null ) return result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment