You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by ch...@apache.org on 2013/02/25 19:54:03 UTC

svn commit: r1449808 - /uima/sandbox/uima-ducc/trunk/uima-ducc-sm/src/main/java/org/apache/uima/ducc/sm/ServiceManagerComponent.java

Author: challngr
Date: Mon Feb 25 18:54:01 2013
New Revision: 1449808

URL: http://svn.apache.org/r1449808
Log:
UIMA-2594
Remember to scrub the state for implicit services on SM boot.

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-sm/src/main/java/org/apache/uima/ducc/sm/ServiceManagerComponent.java

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-sm/src/main/java/org/apache/uima/ducc/sm/ServiceManagerComponent.java
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-sm/src/main/java/org/apache/uima/ducc/sm/ServiceManagerComponent.java?rev=1449808&r1=1449807&r2=1449808&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-sm/src/main/java/org/apache/uima/ducc/sm/ServiceManagerComponent.java (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-sm/src/main/java/org/apache/uima/ducc/sm/ServiceManagerComponent.java Mon Feb 25 18:54:01 2013
@@ -135,19 +135,36 @@ public class ServiceManagerComponent 
                     String meta_filename = serviceFileKey(stem + ".meta");
                     metaprops.load(meta_filename);
                     
+                    String sc = metaprops.getProperty("service-class");
+                    if ( (sc != null) && ( sc.equals("Implicit") ) ) {
+                        logger.info(methodName, null, "Scrubbing implicit service", stem);
+                        try {
+                            File mf = new File(meta_filename);
+                            mf.delete();
+                        } catch ( Throwable t ) {
+                            // nothing to do about it, ignore.
+                        }
+                        try {
+                            File pf = new File(props_filename);
+                            pf.delete();
+                        } catch ( Throwable t ) {
+                            // nothing to do about it, ignore.
+                        }
+                        continue;
+                    }
                     
                     int friendly = 0;
 					String uuid = "";
 					try {
 						// these gets will throw if the requisite objects aren't found
 						friendly = metaprops.getIntProperty("numeric_id");
-						uuid = metaprops.getStringProperty("uuid");
+						uuid = metaprops.getStringProperty("uuid");                        
 					} catch (MissingPropertyException e1) {
 						// Ugly, but shouldn't have to be fatal
 						logger.error(methodName, null, "Cannot restore DuccId for", d, "Friendly id:", friendly, "uuid:", uuid);
 						continue;
 					}
-
+                    
                     DuccId id = new DuccId(friendly);
                     id.setUUID(UUID.fromString(uuid));
                     logger.debug(methodName, id, "Unique:", id.getUnique());