better command line processing options (load, save) and slower update poll check.
[vamsas.git] / src / uk / ac / vamsas / client / simpleclient / SimpleClient.java
index 5ec75e8..dc3df20 100644 (file)
@@ -61,7 +61,9 @@ public class SimpleClient implements IClient {
    * @return
    */
   private IdFactory makeVorbaIdFactory() {
-    return new IdFactory(getSessionHandle(), client, user);
+    if (extantobjects==null)
+      extantobjects=new Hashtable();
+    return new IdFactory(getSessionHandle(), client, user, extantobjects);
   }
   
   /**
@@ -236,8 +238,9 @@ public class SimpleClient implements IClient {
     // if (handlers.containsKey(Events.))
     // if (handlers.containsKey(Events.CLIENT_FINALIZATION))
     // deregister listeners.
+    log.debug("Stopping pickManager");
     haltPickmanager();
-    SimpleClient.log.debug("Stopping EventGenerator..");
+    log.debug("Stopping EventGenerator..");
     evgen.stopWatching();
     SimpleClient.log.debug("EventGenerator halted.");
     log.debug("Deregistering Client");
@@ -315,12 +318,14 @@ public class SimpleClient implements IClient {
         log.debug("updateDocument for "+session.getSessionUrn()+" with unmodified IClientDocument (skipping the write)");
     } else {
       try {
-        if (!cdocument.updateSessionDocument()) {
+        boolean updated=cdocument.updateSessionDocument();
+        if (!updated) {
           log.warn("Session document did not update properly for session directory "+_session.sessionDir);
           // cdocument.archive.cancelArchive(); // LATER: could be done - would need to prevent updateSessionDocument closing the iohandler.
           _session.slog.warn("Session Document updated but may not be valid (false return from org.vamsas.simpleclient.ClientDocument.updateSessionDocument()");
+        } else {
+               log.debug("Document update successful.");
         }
-        log.debug("Document update successful.");
         _session.setUnsavedFlag();
       }
       catch (IOException e) {