added:
[mir.git] / source / mircoders / global / MirGlobal.java
index ea8e599..e64d14a 100755 (executable)
 
 package mircoders.global;
 
-import java.util.HashMap;
-import java.util.Iterator;
-import java.util.List;
-import java.util.Map;
-import java.util.Vector;
-
+import mir.bundle.BasicBundleFactory;
+import mir.bundle.BundleFactory;
+import mir.bundle.CascadingBundleFactory;
+import mir.bundle.PropertiesFileBundleLoader;
 import mir.config.MirPropertiesConfiguration;
-import mir.config.MirPropertiesConfiguration.PropertiesConfigExc;
 import mir.entity.adapter.EntityAdapter;
+import mir.log.LoggerEngine;
 import mir.log.LoggerWrapper;
-import mir.misc.ConfigException;
 import mircoders.accesscontrol.AccessControl;
 import mircoders.entity.EntityComment;
 import mircoders.entity.EntityContent;
 import mircoders.entity.EntityUsers;
 import mircoders.localizer.MirAdminInterfaceLocalizer;
-import mircoders.localizer.MirCachingLocalizerDecorator;
+import mircoders.localizer.LocalizerCache;
 import mircoders.localizer.MirLocalizer;
+import mircoders.localizer.MirLocalizerExc;
+import mircoders.localizer.MirLocalizerFailure;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
 
 public class MirGlobal {
-  static private MirPropertiesConfiguration configuration;
   static private MirLocalizer localizer;
   static private ProducerEngine producerEngine;
   static private Abuse abuse;
@@ -58,10 +62,24 @@ public class MirGlobal {
   static private AccessControl accessControl;
   static private Map articleOperations;
   static private Map commentOperations;
-  static private Map loggedInUsers = new HashMap();
+  static private final Map loggedInUsers = new HashMap();
+  static private final Map loggedInUserIds = new HashMap();
   static private LoggerWrapper logger = new LoggerWrapper("Global");
   static private LoggerWrapper adminUsageLogger = new LoggerWrapper("AdminUsage");
 
+  static private ChangeEngine changeEngine = new ChangeEngine();
+
+  static private DatabaseEngine databaseEngine;
+
+  static private BundleFactory bundleFactory =
+      new CascadingBundleFactory(
+        new BasicBundleFactory(
+            new PropertiesFileBundleLoader(
+                config().getHome())));
+
+  private MirGlobal() {
+  }
+
   public synchronized static MirLocalizer localizer() {
     String localizerClassName;
     Class localizerClass;
@@ -73,44 +91,74 @@ public class MirGlobal {
         localizerClass = Class.forName(localizerClassName);
       }
       catch (Throwable t) {
-        throw new ConfigException("localizer class '" + localizerClassName + "' not found: " + t.toString());
+        throw new MirLocalizerFailure("localizer class '" +
+            localizerClassName + "' not found: ", t);
       }
 
-      if (!(MirLocalizer.class.isAssignableFrom(localizerClass)))
-        throw new ConfigException("localizer class '" + localizerClassName + "' is not assignable from MirLocalizer");
+      if (!MirLocalizer.class.isAssignableFrom(localizerClass)) {
+        throw new MirLocalizerFailure("localizer class '" +
+            localizerClassName + "' is not assignable from MirLocalizer");
+      }
 
       try {
-        localizer = new MirCachingLocalizerDecorator((MirLocalizer) localizerClass.newInstance());
+        localizer = new LocalizerCache((MirLocalizer) localizerClass.newInstance());
       }
       catch (Throwable t) {
-        throw new ConfigException("localizer class '" + localizerClassName + "' cannot be instantiated: " + t.toString());
+        throw new MirLocalizerFailure("localizer class '" +
+            localizerClassName + "' cannot be instantiated: " + t.getMessage(), t);
       }
     }
 
     return localizer;
   }
 
-  public static Abuse abuse() {
+  /**
+   * Returns a string that provides some global status information
+   */
+  public static String getStatus() {
+    StringBuffer result = new StringBuffer();
+
+    result.append((Runtime.getRuntime().totalMemory()-Runtime.getRuntime().freeMemory())/(1024*1024));
+    result.append("M in use, ");
+    result.append(Thread.activeCount()).append(" threads, ");
+    result.append(getDatabaseEngine().getStatus());
+
+    return result.toString();
+  }
+
+  synchronized public static Abuse abuse() {
     if (abuse==null) {
-      synchronized(MirGlobal.class) {
-        if (abuse==null)
-          abuse = new Abuse();
+      try {
+        abuse = new Abuse(localizer().dataModel().adapterModel());
+      }
+      catch (MirLocalizerExc e) {
+        throw new RuntimeException(e.getMessage());
       }
     }
 
     return abuse;
   }
 
+  /**
+   * returns the global change engine (used to track changed files)
+   */
+  public static ChangeEngine getChangeEngine() {
+    return changeEngine;
+  }
+
   public static MirPropertiesConfiguration config() {
-    try {
-      return MirPropertiesConfiguration.instance();
-    }
-    catch (PropertiesConfigExc e) {
-      throw new RuntimeException(e.getMessage());
+    return MirPropertiesConfiguration.instance();
+  }
+
+  synchronized public static DatabaseEngine getDatabaseEngine() {
+    if (databaseEngine==null) {
+      databaseEngine = new DatabaseEngine();
     }
+
+    return databaseEngine;
   }
 
-  public static ProducerEngine producerEngine() {
+  public static ProducerEngine getProducerEngine() {
     if (producerEngine == null) {
       producerEngine = new ProducerEngine();
     }
@@ -127,7 +175,7 @@ public class MirGlobal {
     }
   }
 
-  public static synchronized AccessControl accessControl() {
+  synchronized public static AccessControl accessControl() {
     if (accessControl == null) {
       accessControl=new AccessControl();
     }
@@ -136,82 +184,93 @@ public class MirGlobal {
   }
 
   public static void performArticleOperation(EntityUsers aUser, EntityContent  anArticle, String anOperation) {
-    MirAdminInterfaceLocalizer.MirSimpleEntityOperation operation = getArticleOperationForName(anOperation);
+    MirAdminInterfaceLocalizer.EntityOperation operation = getArticleOperationForName(anOperation);
 
     try {
       EntityAdapter user = null;
-      if (aUser!=null)
+      if (aUser!=null) {
           user = localizer().dataModel().adapterModel().makeEntityAdapter("user", aUser);
+      }
 
-      if (operation!=null)
+      if (operation!=null) {
         operation.perform(
             user,
             localizer().dataModel().adapterModel().makeEntityAdapter("content", anArticle));
+      }
     }
     catch (Throwable t) {
-      t.printStackTrace(logger.asPrintWriter(LoggerWrapper.DEBUG_MESSAGE));
-
-      throw new RuntimeException(t.toString());
+      throw new MirGlobalFailure(t.getMessage(), t);
     }
   }
 
   public static void performCommentOperation(EntityUsers aUser, EntityComment  aComment, String anOperation) {
-    MirAdminInterfaceLocalizer.MirSimpleEntityOperation operation = getCommentOperationForName(anOperation);
+    MirAdminInterfaceLocalizer.EntityOperation operation = getCommentOperationForName(anOperation);
 
     try {
       EntityAdapter user = null;
-      if (aUser!=null)
+      if (aUser!=null) {
           user = localizer().dataModel().adapterModel().makeEntityAdapter("user", aUser);
+      }
 
-      if (operation!=null)
+      if (operation!=null) {
         operation.perform(
             user,
             localizer().dataModel().adapterModel().makeEntityAdapter("comment", aComment));
+      }
     }
     catch (Throwable t) {
-      throw new RuntimeException(t.toString());
+      throw new MirGlobalFailure(t.getMessage(), t);
     }
   }
 
-  private synchronized static MirAdminInterfaceLocalizer.MirSimpleEntityOperation getArticleOperationForName(String aName) {
+  private synchronized static MirAdminInterfaceLocalizer.EntityOperation
+      getArticleOperationForName(String aName) {
     try {
       if (articleOperations == null) {
         articleOperations = new HashMap();
         Iterator i = localizer().adminInterface().simpleArticleOperations().iterator();
         while (i.hasNext()) {
-          MirAdminInterfaceLocalizer.MirSimpleEntityOperation operation = (MirAdminInterfaceLocalizer.MirSimpleEntityOperation) i.next();
+          MirAdminInterfaceLocalizer.EntityOperation operation =
+              (MirAdminInterfaceLocalizer.EntityOperation) i.next();
           articleOperations.put(operation.getName(), operation);
         }
       }
 
-      return (MirAdminInterfaceLocalizer.MirSimpleEntityOperation) articleOperations.get(aName);
+      return (MirAdminInterfaceLocalizer.EntityOperation) articleOperations.get(aName);
     }
     catch (Throwable t) {
-      throw new RuntimeException(t.toString());
+      throw new MirGlobalFailure(t.getMessage(), t);
     }
   }
 
-  private synchronized static MirAdminInterfaceLocalizer.MirSimpleEntityOperation getCommentOperationForName(String aName) {
+  private synchronized static MirAdminInterfaceLocalizer.EntityOperation
+      getCommentOperationForName(String aName) {
     try {
       if (commentOperations == null) {
         commentOperations = new HashMap();
         Iterator i = localizer().adminInterface().simpleCommentOperations().iterator();
         while (i.hasNext()) {
-          MirAdminInterfaceLocalizer.MirSimpleEntityOperation operation = (MirAdminInterfaceLocalizer.MirSimpleEntityOperation) i.next();
+          MirAdminInterfaceLocalizer.EntityOperation operation =
+              (MirAdminInterfaceLocalizer.EntityOperation) i.next();
           commentOperations.put(operation.getName(), operation);
         }
       }
 
-      return (MirAdminInterfaceLocalizer.MirSimpleEntityOperation) commentOperations.get(aName);
+      return (MirAdminInterfaceLocalizer.EntityOperation) commentOperations.get(aName);
     }
     catch (Throwable t) {
-      throw new RuntimeException(t.toString());
+      throw new MirGlobalFailure(t.getMessage(), t);
     }
   }
 
+  public static boolean isUserLoggedIn(String anId) {
+    synchronized (loggedInUserIds) {
+      return loggedInUserIds.containsKey(anId);
+    }
+  }
 
   public static List getLoggedInUsers() {
-    List result = new Vector();
+    List result = new ArrayList();
 
     synchronized (loggedInUsers) {
       Iterator i = loggedInUsers.entrySet().iterator();
@@ -229,15 +288,19 @@ public class MirGlobal {
     return result;
   }
 
-  public static void registerLogin(String aName) {
-    modifyLoggedInCount(aName, 1);
+  public static BundleFactory getBundleFactory() {
+    return bundleFactory;
   }
 
-  public static void registerLogout(String aName) {
-    modifyLoggedInCount(aName, -1);
+  public static void registerLogin(String aName, String anId) {
+    modifyLoggedInCount(aName, anId, 1);
   }
 
-  private static void modifyLoggedInCount(String aName, int aModifier) {
+  public static void registerLogout(String aName, String anId) {
+    modifyLoggedInCount(aName, anId, -1);
+  }
+
+  private static void modifyLoggedInCount(String aName, String anId, int aModifier) {
     synchronized (loggedInUsers) {
       Integer count = (Integer) loggedInUsers.get(aName);
       if (count==null)
@@ -250,20 +313,52 @@ public class MirGlobal {
         loggedInUsers.put(aName, new Integer(count.intValue() + aModifier));
       }
     }
+
+    synchronized (loggedInUserIds) {
+      Integer count = (Integer) loggedInUserIds.get(anId);
+      if (count==null)
+        count = new Integer(0);
+
+      if (count.intValue()+aModifier<=0) {
+        loggedInUserIds.remove(anId);
+      }
+      else {
+        loggedInUserIds.put(anId, new Integer(count.intValue() + aModifier));
+      }
+    }
   }
 
+  /**
+   * Called whenever a modifying admin action occurs. Used to log
+   * the action, if admin activity logging is turned on,
+   */
   public static void logAdminUsage(EntityUsers aUser, String anObject, String aDescription) {
     try {
       if (config().getString("Mir.Admin.LogAdminActivity", "0").equals("1")) {
         String user = "unknown (" + aUser.toString() + ")";
         if (aUser != null)
-          user = aUser.getValue("login");
+          user = aUser.getFieldValue("login");
         adminUsageLogger.info(user + " | " + anObject + " | " + aDescription);
       }
     }
     catch (Throwable t) {
-      logger.error("Error while logging admin usage ("+aUser.toString()+", "+aDescription+"): " +t.toString());
+      logger.error("Error while logging admin usage ("+
+          aUser.toString()+", "+aDescription+"): " +t.toString());
+    }
+  }
+
+  /**
+   * Reloads all reloadable configurations, such as the producer subsystem.
+   */
+  public static void reloadConfigurations() throws MirGlobalExc, MirGlobalFailure {
+    getProducerEngine().reloadConfiguration();
+    try {
+      LoggerEngine.reload();
+    }
+    catch (Throwable e) {
+      throw new MirGlobalFailure(e);
     }
+    getBundleFactory().reload();
   }
 }