Пример #1
0
  /**
   * This method stores the attribute name values, both in persistent storage and in local storage.
   *
   * @param atts AttributeNameValues to store
   */
  public void storeAttributeNameValues(Attributes atts) {
    store(atts);

    AttributeNameValue time = atts.getAttributeNameValue(TIMESTAMP);
    long timestamp = 0;
    if (time != null) {
      Long l = new Long((String) time.getValue());
      if (l != null) timestamp = l.longValue();
      else {
        System.out.println("ERROR: in <storeAttributeNameValues> timestamp null");
      }
    }

    for (int i = 0; i < atts.numAttributes(); i++) {
      AttributeNameValue attNew = (AttributeNameValue) atts.getAttributeAt(i);
      String attName = attNew.getName();
      Object o = attributesTimes.get(attName);
      long storedTime = -1;
      if (o != null) storedTime = ((Long) o).longValue();
      else System.out.println("ERROR: in <storeAttributeNameValues> storedTime null");
      if (storedTime != -1 && storedTime <= timestamp) {
        AttributeNameValue attOld = attributesCache.getAttributeNameValue(attName);
        attOld.setValue(attNew.getValue());
      }
    }
  }
Пример #2
0
  /**
   * This method is called to aggregate the list of constant attributes that the widgets relevant to
   * this server provide. This should be called after a constructor sets the widget handles to use
   * or after setWidgets() has been called.
   *
   * @return AttributeNameValues the server constant attributes
   */
  protected Attributes initConstantAttributes() {
    // this protects us against the Widget constructor
    // that calls us too early (we havent' got the widgets yet)
    // it's good practice anyway
    if (widgets == null) {
      return null;
    }

    Attributes atts = new Attributes();
    for (int i = 0; i < widgets.size(); i++) {
      WidgetHandle handle = widgets.getWidgetHandleAt(i);

      DataObject widgetAtts =
          getWidgetConstantAttributes(handle.getHostName(), handle.getPort(), handle.getId());
      String error = new Error(widgetAtts).getError();
      if (error != null) {
        if (error.equals(Error.NO_ERROR)) {
          Attributes wAtts = new Attributes(widgetAtts);
          for (int j = 0; j < wAtts.numAttributes(); j++) {
            AttributeNameValue wAtt = (AttributeNameValue) wAtts.getAttributeAt(j);
            if (atts.getAttributeNameValue(wAtt.getName()) == null) {
              atts.addAttributeNameValue(wAtt);
            }
          }
        }
      }
    }

    atts.addAttributes(setServerConstantAttributes());

    return atts;
  }