Puts error reports back in place
[mkjsf-moved-to-github.git] / src / main / java / com / indexdata / pz2utils4jsf / pazpar2 / Pz2Session.java
index 74980bc..bec9874 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,11 +11,14 @@ import javax.inject.Named;
 \r
 import org.apache.log4j.Logger;\r
 \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.pazpar2.data.ApplicationError;\r
+import com.indexdata.pz2utils4jsf.errors.ConfigurationError;\r
+import com.indexdata.pz2utils4jsf.errors.ConfigurationException;\r
+import com.indexdata.pz2utils4jsf.errors.ErrorHelper;\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
@@ -30,39 +32,43 @@ 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 com.indexdata.masterkey.pazpar2.client.Pazpar2ClientConfiguration cfg = null;\r
-  private com.indexdata.masterkey.pazpar2.client.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 ApplicationTroubleshooter errorHelper = 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
-      logger.info(Utils.objectId(this) + " is configuring itself using the provided " + Utils.objectId(pz2conf));\r
-      try {\r
-        cfg = new com.indexdata.masterkey.pazpar2.client.Pazpar2ClientConfiguration(pz2conf.getConfig());\r
-        client = new com.indexdata.masterkey.pazpar2.client.Pazpar2ClientGeneric(cfg);\r
-        errorHelper = new ApplicationTroubleshooter(pz2conf);        \r
-        resetDataObjects();\r
-      } catch (ProxyErrorException e) {\r
-        e.printStackTrace();\r
-      } catch (IOException ioe) {\r
-        ioe.printStackTrace();\r
-      }\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
+      configurationErrors.add(new ConfigurationError("Search Client","Configuration",e.getMessage(),new ErrorHelper(configReader)));          \r
+    } \r
+    logger.info(configReader.document());\r
+    resetDataObjects();\r
   }\r
     \r
   public void doSearch(String query) {\r
@@ -95,33 +101,40 @@ public class Pz2Session implements Pz2Interface {
    * @return Number of activeclients at the time of the 'show' command\r
    */\r
   public String update (String commands) {\r
-    if (hasQuery()) {\r
-      handleQueryStateChanges(commands);\r
-      logger.debug("Processing request for " + commands); \r
-      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
-      }\r
-      for (CommandThread thread : threadList) {\r
-        thread.start();\r
-      }\r
-      for (CommandThread thread : threadList) {\r
-        try {\r
-          thread.join();\r
-        } catch (InterruptedException e) {\r
-          e.printStackTrace();\r
+    if (! hasConfigurationErrors()) {\r
+      if (hasQuery()) {\r
+        handleQueryStateChanges(commands);\r
+        logger.debug("Processing request for " + commands); \r
+        List<CommandThread> threadList = new ArrayList<CommandThread>();\r
+        StringTokenizer tokens = new StringTokenizer(commands,",");\r
+        while (tokens.hasMoreElements()) {\r
+          threadList.add(new CommandThread(getCommand(tokens.nextToken()),searchClient));            \r
         }\r
+        for (CommandThread thread : threadList) {\r
+          thread.start();\r
+        }\r
+        for (CommandThread thread : threadList) {\r
+          try {\r
+            thread.join();\r
+          } catch (InterruptedException e) {\r
+            e.printStackTrace();\r
+          }\r
+        }\r
+        for (CommandThread thread : threadList) {\r
+           String commandName = thread.getCommand().getName();\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
+      } else {\r
+        logger.debug("Skipped requests for " + commands + " as there's not yet a query."); \r
+        resetDataObjects();\r
+        return "0";\r
       }\r
-      for (CommandThread thread : threadList) {\r
-         String commandName = thread.getCommand().getName();\r
-         Pazpar2ResponseData responseObject = Pazpar2ResponseParser.getParser().getDataObject(thread.getResponse());\r
-         dataObjects.put(commandName, responseObject);        \r
-      }\r
-      return getActiveClients();\r
     } else {\r
-      logger.debug("Skipped requests for " + commands + " as there's not yet a query."); \r
-      resetDataObjects();\r
+      logger.error("Did not attempt to execute query since there are configuration errors.");\r
       return "0";\r
     }\r
     \r
@@ -268,15 +281,15 @@ public class Pz2Session implements Pz2Interface {
     return queryStates.getCurrentStateKey();\r
   }\r
       \r
-  public void setCurrentStateKey(String key) {\r
-    logger.debug("************** request to set state key to: [" + key + "]");    \r
+  public void setCurrentStateKey(String key) {       \r
     queryStates.setCurrentStateKey(key);\r
   }\r
   \r
-  /**\r
-   * Returns true if application error found in any response data objects \r
-   */\r
-  public boolean hasErrors () {\r
+  public boolean hasConfigurationErrors () {\r
+      return (configurationErrors.size()>0);      \r
+  }\r
+  \r
+  public boolean hasCommandErrors () {\r
     if (dataObjects.get("search").hasApplicationError()) {\r
       logger.info("Error detected in search");\r
       return true;\r
@@ -287,17 +300,27 @@ public class Pz2Session implements Pz2Interface {
         return true;\r
       }\r
     }    \r
-    return false;\r
+    return false;    \r
+  }\r
+  \r
+  /**\r
+   * Returns true if application error found in any response data objects \r
+   */\r
+  public boolean hasErrors () {\r
+    return hasConfigurationErrors() || hasCommandErrors();\r
   }\r
 \r
+  public List<ErrorInterface> getConfigurationErrors() {    \r
+    return configurationErrors;\r
+  }\r
   \r
   /**\r
    * Returns a search command error, if any, otherwise the first\r
    * error found for an arbitrary command, if any, otherwise\r
    * an empty dummy error. \r
    */    \r
-  public ApplicationError getOneError() {\r
-    ApplicationError error = new ApplicationError();    \r
+  public ErrorInterface getCommandError() {\r
+    CommandError error = new CommandError();    \r
     if (dataObjects.get("search").hasApplicationError()) {\r
       error = dataObjects.get("search").getApplicationError();                        \r
     } else {\r
@@ -308,7 +331,7 @@ public class Pz2Session implements Pz2Interface {
         } \r
       }\r
     }\r
-    error.setTroubleshooter(errorHelper);\r
+    error.setErrorHelper(errorHelper);\r
     return error;         \r
   }\r
 \r
@@ -339,7 +362,7 @@ public class Pz2Session implements Pz2Interface {
     return pager;\r
   }\r
   \r
-  protected ApplicationTroubleshooter getTroubleshooter() {\r
+  protected ErrorHelper getTroubleshooter() {\r
     return errorHelper;\r
   }\r
   \r
@@ -421,10 +444,10 @@ public class Pz2Session implements Pz2Interface {
     return defaultValue;    \r
   }\r
 \r
-  private String doCommand(String commandName) {\r
+  private String doCommand(String commandName) {      \r
     Pazpar2Command command = getCommand(commandName);    \r
     logger.debug(command.getEncodedQueryString() + ": Results for "+ getCommand("search").getEncodedQueryString());\r
-    return update(commandName);\r
+    return update(commandName);      \r
   }\r
   \r
   private void resetDataObjects() {\r
@@ -438,5 +461,4 @@ public class Pz2Session implements Pz2Interface {
     dataObjects.put("search", new SearchResponse());\r
   }\r
   \r
-\r
 }\r