Service proxy client and configuration schemes
[mkjsf-moved-to-github.git] / src / main / java / com / indexdata / pz2utils4jsf / pazpar2 / Pz2Session.java
index 267f1b4..f35523e 100644 (file)
@@ -1,6 +1,5 @@
 package com.indexdata.pz2utils4jsf.pazpar2;\r
 \r
-import java.io.IOException;\r
 import java.util.ArrayList;\r
 import java.util.List;\r
 import java.util.Map;\r
@@ -12,18 +11,13 @@ import javax.inject.Named;
 \r
 import org.apache.log4j.Logger;\r
 \r
-import com.indexdata.masterkey.pazpar2.client.Pazpar2Client;\r
-import com.indexdata.masterkey.pazpar2.client.Pazpar2ClientConfiguration;\r
-import com.indexdata.masterkey.pazpar2.client.Pazpar2ClientGeneric;\r
-import com.indexdata.masterkey.pazpar2.client.exceptions.ProxyErrorException;\r
-import com.indexdata.pz2utils4jsf.config.Pz2Configurator;\r
+import com.indexdata.pz2utils4jsf.config.ConfigurationReader;\r
 import com.indexdata.pz2utils4jsf.controls.ResultsPager;\r
 import com.indexdata.pz2utils4jsf.errors.ConfigurationException;\r
-import com.indexdata.pz2utils4jsf.errors.ErrorInterface;\r
 import com.indexdata.pz2utils4jsf.errors.ErrorHelper;\r
-import com.indexdata.pz2utils4jsf.errors.ConfigurationError;\r
-import com.indexdata.pz2utils4jsf.pazpar2.data.CommandError;\r
+import com.indexdata.pz2utils4jsf.errors.ErrorInterface;\r
 import com.indexdata.pz2utils4jsf.pazpar2.data.ByTarget;\r
+import com.indexdata.pz2utils4jsf.pazpar2.data.CommandError;\r
 import com.indexdata.pz2utils4jsf.pazpar2.data.Pazpar2ResponseData;\r
 import com.indexdata.pz2utils4jsf.pazpar2.data.Pazpar2ResponseParser;\r
 import com.indexdata.pz2utils4jsf.pazpar2.data.RecordResponse;\r
@@ -37,51 +31,44 @@ import com.indexdata.pz2utils4jsf.utils.Utils;
 \r
 @Named @SessionScoped  \r
 public class Pz2Session implements Pz2Interface {\r
-  \r
+    \r
+  private static final long serialVersionUID = 3947514708343320514L;\r
   private static Logger logger = Logger.getLogger(Pz2Session.class);\r
   \r
   private Map<String,Pazpar2ResponseData> dataObjects = new ConcurrentHashMap<String,Pazpar2ResponseData>();\r
   private QueryStates queryStates = new QueryStates();\r
+  private ErrorHelper errorHelper = null;\r
   \r
-  private static final long serialVersionUID = 3947514708343320514L;  \r
-  private Pazpar2ClientConfiguration cfg = null;\r
-  private Pazpar2Client client = null;   \r
+  private List<ErrorInterface> configurationErrors = null;\r
+  private SearchClient searchClient = null;   \r
   private TargetFilter targetFilter = null;  \r
   private ResultsPager pager = null; \r
-  private ErrorHelper errorHelper = null;\r
-  private List<ErrorInterface> configurationErrors = null;\r
-  \r
+    \r
   public Pz2Session () {\r
     logger.info("Instantiating pz2 session object [" + Utils.objectId(this) + "]");      \r
   }\r
     \r
-  public void init(Pz2Configurator pz2conf) {\r
-    if (client==null) {\r
-      configurationErrors = new ArrayList<ErrorInterface>();\r
-      errorHelper = new ErrorHelper(pz2conf);\r
-      logger.info(Utils.objectId(this) + " is configuring itself using the provided " + Utils.objectId(pz2conf));\r
-      try {\r
-        cfg = new Pazpar2ClientConfiguration(pz2conf.getConfig());\r
-      } catch (ProxyErrorException pe) {\r
-        logger.error("Could not configure Pazpar2 client: " + pe.getMessage());\r
-        configurationErrors.add(new ConfigurationError("Pz2Client Config","ProxyError","Could not configure Pazpar2 client: " + pe.getMessage(),errorHelper));\r
-      } catch (ConfigurationException io) {\r
-        logger.error("Could not configure Pazpar2 client: " + io.getMessage());\r
-        configurationErrors.add(new ConfigurationError("Pz2Client Config","ProxyError","Could not configure Pazpar2 client: " + io.getMessage(),errorHelper));\r
-      }\r
-      if (cfg != null) {\r
-        try {\r
-          client = new Pazpar2ClientGeneric(cfg);     \r
-        } catch (ProxyErrorException pe) {\r
-          logger.error("Could not instantiate Pazpar2 client: " + pe.getMessage());\r
-          configurationErrors.add(new ConfigurationError("Pz2Client error","ProxyError","Could not create Pazpar2 client: " +pe.getMessage(),errorHelper));                \r
-        } \r
-        logger.info("Found " + configurationErrors.size() + " configuration errors");        \r
-      }\r
-      resetDataObjects();\r
-    } else {\r
-      logger.warn("Attempt to configure session but it already has a configured client");\r
-    }\r
+  public void init(SearchClient searchClient, ConfigurationReader configReader) {\r
+    configurationErrors = new ArrayList<ErrorInterface>();\r
+    errorHelper = new ErrorHelper(configReader);    \r
+    logger.debug(Utils.objectId(this) + " will configure search client for the session");\r
+    try {\r
+      searchClient.configure(configReader);            \r
+      // At the time of writing this search client is injected using Weld. \r
+      // However, the client is used for asynchronously sending off requests\r
+      // to the server AND propagation of context to threads is currently \r
+      // not supported. Trying to do so throws a WELD-001303 error. \r
+      // To avoid that, a context free client is cloned from the context \r
+      // dependent one. \r
+      // If propagation to threads gets supported, the cloning can go. \r
+      this.searchClient = searchClient.cloneMe();\r
+      \r
+    } catch (ConfigurationException e) {\r
+      // TODO: set errors\r
+      logger.info("Found " + configurationErrors.size() + " configuration errors");    \r
+    } \r
+    logger.info(configReader.document());\r
+    resetDataObjects();\r
   }\r
     \r
   public void doSearch(String query) {\r
@@ -121,7 +108,7 @@ public class Pz2Session implements Pz2Interface {
         List<CommandThread> threadList = new ArrayList<CommandThread>();\r
         StringTokenizer tokens = new StringTokenizer(commands,",");\r
         while (tokens.hasMoreElements()) {\r
-          threadList.add(new CommandThread(getCommand(tokens.nextToken()),client));            \r
+          threadList.add(new CommandThread(getCommand(tokens.nextToken()),searchClient));            \r
         }\r
         for (CommandThread thread : threadList) {\r
           thread.start();\r
@@ -135,7 +122,9 @@ public class Pz2Session implements Pz2Interface {
         }\r
         for (CommandThread thread : threadList) {\r
            String commandName = thread.getCommand().getName();\r
-           Pazpar2ResponseData responseObject = Pazpar2ResponseParser.getParser().getDataObject(thread.getResponse());\r
+           String response = thread.getResponse();\r
+           logger.debug("Response was: " + response);\r
+           Pazpar2ResponseData responseObject = Pazpar2ResponseParser.getParser().getDataObject(response);\r
            dataObjects.put(commandName, responseObject);        \r
         }\r
         return getActiveClients();\r