Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

100
LINES

< > BotCompany Repo | #1036538 // getOpt_cached (branch with scanning interfaces for fields)

JavaX fragment (include)

//static final Map<Class, HashMap<S, Field>> getOpt_cache = newDangerousWeakHashMap(f getOpt_special_init);

sclass getOpt_Map extends WeakHashMap {
  *() {
    if (getOpt_special == null) getOpt_special = new HashMap;
    clear();
  }
  
  public void clear() {
    super.clear();
    //print("getOpt clear");
    put(Class.class, getOpt_special);
    put(S.class, getOpt_special);
  }
}

static final Map<Class, HashMap<S, Field>> getOpt_cache = 
  ifdef AssumeNoClassUnloading
    syncHashMap();
  endifdef
  ifndef AssumeNoClassUnloading
    _registerDangerousWeakMap(synchroMap(new getOpt_Map));
  endifndef
  
static HashMap getOpt_special; // just a marker

/*static void getOpt_special_init(Map map) {
  map.put(Class.class, getOpt_special);
  map.put(S.class, getOpt_special);
}*/

static Map<S, Field> getOpt_getFieldMap(O o) {
  Class c = _getClass(o);
  HashMap<S, Field> map = getOpt_cache.get(c);
  if (map == null)
    map = getOpt_makeCache(c);
  ret map;
}

static Object getOpt_cached(Object o, String field) ctex {
  if (o == null) ret null;

  Map<S, Field> map = getOpt_getFieldMap(o);

  if (map == getOpt_special) {
    if (o instanceof Class)
      return getOpt((Class) o, field);
    /*if (o instanceof S)
      ret getOpt(getBot((S) o), field);*/
    if (o instanceof Map)
      ret ((Map) o).get(field);
  }
    
  Field f = map.get(field);
  if (f != null) ret f.get(o);
  ifclass DynamicObject
    if (o instanceof DynamicObject)
      ret syncMapGet2(((DynamicObject) o).fieldValues, field);
  endif
  ret null;
}

// used internally - we are in synchronized block
static HashMap<S, Field> getOpt_makeCache(Class c) {
  HashMap<S, Field> map;
  if (isSubtypeOf(c, Map.class))
    map = getOpt_special;
  else {
    map = new HashMap;
    new HashSet<Class> interfaces;
    if (!reflection_classesNotToScan().contains(c.getName())) {
      Class _c = c;
      do {
        for (Field f : _c.getDeclaredFields()) {
          makeAccessible(f);
          S name = f.getName();
          if (!map.containsKey(name))
            map.put(name, f);
        }
        for (intf : c.getInterfaces())
          interfaces.add(intf);
        _c = _c.getSuperclass();
      } while (_c != null);
      
      // Scan interfaces for static final fields
      
      for (intf : interfaces) {
        for (Field f : intf.getDeclaredFields()) {
          makeAccessible(f);
          S name = f.getName();
          if (!map.containsKey(name))
            map.put(name, f);
        }
      }
    }
  }
  
  if (getOpt_cache != null) getOpt_cache.put(c, map);
  ret map;
}

Author comment

Began life as a copy of #1005583

download  show line numbers  debug dex  old transpilations   

Travelled to 2 computer(s): mqqgnosmbjvj, wnsclhtenguj

No comments. add comment

Snippet ID: #1036538
Snippet name: getOpt_cached (branch with scanning interfaces for fields)
Eternal ID of this version: #1036538/1
Text MD5: 52bdf71247db905c8999da3b789d70cf
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2023-01-31 19:44:48
Source code size: 2686 bytes / 100 lines
Pitched / IR pitched: No / No
Views / Downloads: 86 / 84
Referenced in: [show references]