Exemplo n.º 1
0
  private boolean add(Site object, boolean notify) {
    if (object == null || !object.isWork()) {
      return false;
    }
    WorkSite site = (WorkSite) object;
    SiteHost host = site.getHost();

    Logger.info("WorkPool.add, work site %s", host);

    boolean success = false;
    this.lockSingle();
    try {
      if (mapSite.containsKey(host)) {
        return false;
      }
      // save site
      mapSite.put(host, site);
      mapTime.put(host, System.currentTimeMillis());
      for (Naming naming : site.list()) {
        SiteSet set = mapNaming.get(naming);
        if (set == null) {
          set = new SiteSet();
          mapNaming.put(naming, set);
        }
        set.add(host);
      }
      success = true;

      if (notify) {
        CallPool.getInstance().refreshWorkSite();
      }
    } catch (Throwable exp) {
      Logger.error(exp);
    } finally {
      this.unlockSingle();
    }
    return success;
  }
Exemplo n.º 2
0
 /**
  * refresh work site
  *
  * @param host
  * @return
  */
 public short refresh(SiteHost host) {
   short code = Response.SERVER_ERROR;
   this.lockSingle();
   try {
     WorkSite site = mapSite.get(host);
     if (site != null) {
       mapTime.put(host, System.currentTimeMillis());
       code = Response.ISEE;
     } else {
       code = Response.NOTLOGIN;
     }
   } catch (Throwable exp) {
     Logger.error(exp);
   } finally {
     this.unlockSingle();
   }
   Logger.debug("WorkPool.refresh, site %s refresh status %d", host, code);
   return code;
 }