public void forgetSecGroupIncludeByGroupIdx(long ClusterId, int SecGroupId) { if (indexByGroupIdx == null) { return; } CFGenKbSecGroupIncludeByGroupIdxKey key = schema.getBackingStore().getFactorySecGroupInclude().newGroupIdxKey(); key.setRequiredClusterId(ClusterId); key.setRequiredSecGroupId(SecGroupId); if (indexByGroupIdx.containsKey(key)) { Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapGroupIdx = indexByGroupIdx.get(key); if (mapGroupIdx != null) { List<ICFGenKbSecGroupIncludeObj> toForget = new LinkedList<ICFGenKbSecGroupIncludeObj>(); ICFGenKbSecGroupIncludeObj cur = null; Iterator<ICFGenKbSecGroupIncludeObj> iter = mapGroupIdx.values().iterator(); while (iter.hasNext()) { cur = iter.next(); toForget.add(cur); } iter = toForget.iterator(); while (iter.hasNext()) { cur = iter.next(); cur.forget(true); } } indexByGroupIdx.remove(key); } }
public void forgetSecGroupInclude(ICFGenKbSecGroupIncludeObj Obj, boolean forgetSubObjects) { ICFGenKbSecGroupIncludeObj obj = Obj; CFGenKbSecGroupIncludePKey pkey = obj.getPKey(); if (members.containsKey(pkey)) { ICFGenKbSecGroupIncludeObj keepObj = members.get(pkey); // Detach object from alternate, duplicate, all and PKey indexes if (indexByClusterIdx != null) { CFGenKbSecGroupIncludeByClusterIdxKey keyClusterIdx = schema.getBackingStore().getFactorySecGroupInclude().newClusterIdxKey(); keyClusterIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapClusterIdx = indexByClusterIdx.get(keyClusterIdx); if (mapClusterIdx != null) { mapClusterIdx.remove(keepObj.getPKey()); } } if (indexByGroupIdx != null) { CFGenKbSecGroupIncludeByGroupIdxKey keyGroupIdx = schema.getBackingStore().getFactorySecGroupInclude().newGroupIdxKey(); keyGroupIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyGroupIdx.setRequiredSecGroupId(keepObj.getRequiredSecGroupId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapGroupIdx = indexByGroupIdx.get(keyGroupIdx); if (mapGroupIdx != null) { mapGroupIdx.remove(keepObj.getPKey()); } } if (indexByIncludeIdx != null) { CFGenKbSecGroupIncludeByIncludeIdxKey keyIncludeIdx = schema.getBackingStore().getFactorySecGroupInclude().newIncludeIdxKey(); keyIncludeIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyIncludeIdx.setRequiredIncludeGroupId(keepObj.getRequiredIncludeGroupId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapIncludeIdx = indexByIncludeIdx.get(keyIncludeIdx); if (mapIncludeIdx != null) { mapIncludeIdx.remove(keepObj.getPKey()); } } if (indexByUIncludeIdx != null) { CFGenKbSecGroupIncludeByUIncludeIdxKey keyUIncludeIdx = schema.getBackingStore().getFactorySecGroupInclude().newUIncludeIdxKey(); keyUIncludeIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyUIncludeIdx.setRequiredSecGroupId(keepObj.getRequiredSecGroupId()); keyUIncludeIdx.setRequiredIncludeGroupId(keepObj.getRequiredIncludeGroupId()); indexByUIncludeIdx.remove(keyUIncludeIdx); } if (allSecGroupInclude != null) { allSecGroupInclude.remove(keepObj.getPKey()); } members.remove(pkey); if (forgetSubObjects) {} } }
public void deleteSecGroupIncludeByGroupIdx(long ClusterId, int SecGroupId) { CFGenKbSecGroupIncludeByGroupIdxKey key = schema.getBackingStore().getFactorySecGroupInclude().newGroupIdxKey(); key.setRequiredClusterId(ClusterId); key.setRequiredSecGroupId(SecGroupId); if (indexByGroupIdx == null) { indexByGroupIdx = new HashMap< CFGenKbSecGroupIncludeByGroupIdxKey, Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj>>(); } if (indexByGroupIdx.containsKey(key)) { Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> dict = indexByGroupIdx.get(key); schema .getBackingStore() .getTableSecGroupInclude() .deleteSecGroupIncludeByGroupIdx(schema.getAuthorization(), ClusterId, SecGroupId); Iterator<ICFGenKbSecGroupIncludeObj> iter = dict.values().iterator(); ICFGenKbSecGroupIncludeObj obj; List<ICFGenKbSecGroupIncludeObj> toForget = new LinkedList<ICFGenKbSecGroupIncludeObj>(); while (iter.hasNext()) { obj = iter.next(); toForget.add(obj); } iter = toForget.iterator(); while (iter.hasNext()) { obj = iter.next(); obj.forget(true); } indexByGroupIdx.remove(key); } else { schema .getBackingStore() .getTableSecGroupInclude() .deleteSecGroupIncludeByGroupIdx(schema.getAuthorization(), ClusterId, SecGroupId); } }
public List<ICFGenKbSecGroupIncludeObj> readSecGroupIncludeByGroupIdx( long ClusterId, int SecGroupId, boolean forceRead) { final String S_ProcName = "readSecGroupIncludeByGroupIdx"; CFGenKbSecGroupIncludeByGroupIdxKey key = schema.getBackingStore().getFactorySecGroupInclude().newGroupIdxKey(); key.setRequiredClusterId(ClusterId); key.setRequiredSecGroupId(SecGroupId); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> dict; if (indexByGroupIdx == null) { indexByGroupIdx = new HashMap< CFGenKbSecGroupIncludeByGroupIdxKey, Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj>>(); } if ((!forceRead) && indexByGroupIdx.containsKey(key)) { dict = indexByGroupIdx.get(key); } else { dict = new HashMap<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj>(); // Allow other threads to dirty-read while we're loading indexByGroupIdx.put(key, dict); ICFGenKbSecGroupIncludeObj obj; CFGenKbSecGroupIncludeBuff[] buffList = schema .getBackingStore() .getTableSecGroupInclude() .readDerivedByGroupIdx(schema.getAuthorization(), ClusterId, SecGroupId); CFGenKbSecGroupIncludeBuff buff; for (int idx = 0; idx < buffList.length; idx++) { buff = buffList[idx]; obj = schema.getSecGroupIncludeTableObj().newInstance(); obj.setPKey(schema.getBackingStore().getFactorySecGroupInclude().newPKey()); obj.setBuff(buff); ICFGenKbSecGroupIncludeObj realized = (ICFGenKbSecGroupIncludeObj) obj.realize(); } } Comparator<ICFGenKbSecGroupIncludeObj> cmp = new Comparator<ICFGenKbSecGroupIncludeObj>() { public int compare(ICFGenKbSecGroupIncludeObj lhs, ICFGenKbSecGroupIncludeObj rhs) { if (lhs == null) { if (rhs == null) { return (0); } else { return (-1); } } else if (rhs == null) { return (1); } else { CFGenKbSecGroupIncludePKey lhsPKey = lhs.getPKey(); CFGenKbSecGroupIncludePKey rhsPKey = rhs.getPKey(); int ret = lhsPKey.compareTo(rhsPKey); return (ret); } } }; int len = dict.size(); ICFGenKbSecGroupIncludeObj arr[] = new ICFGenKbSecGroupIncludeObj[len]; Iterator<ICFGenKbSecGroupIncludeObj> valIter = dict.values().iterator(); int idx = 0; while ((idx < len) && valIter.hasNext()) { arr[idx++] = valIter.next(); } if (idx < len) { throw CFLib.getDefaultExceptionFactory() .newArgumentUnderflowException(getClass(), S_ProcName, 0, "idx", idx, len); } else if (valIter.hasNext()) { throw CFLib.getDefaultExceptionFactory() .newArgumentOverflowException(getClass(), S_ProcName, 0, "idx", idx, len); } Arrays.sort(arr, cmp); ArrayList<ICFGenKbSecGroupIncludeObj> arrayList = new ArrayList<ICFGenKbSecGroupIncludeObj>(len); for (idx = 0; idx < len; idx++) { arrayList.add(arr[idx]); } List<ICFGenKbSecGroupIncludeObj> sortedList = arrayList; return (sortedList); }
public ICFGenKbSecGroupIncludeObj realizeSecGroupInclude(ICFGenKbSecGroupIncludeObj Obj) { ICFGenKbSecGroupIncludeObj obj = Obj; CFGenKbSecGroupIncludePKey pkey = obj.getPKey(); ICFGenKbSecGroupIncludeObj keepObj = null; if (members.containsKey(pkey)) { ICFGenKbSecGroupIncludeObj existingObj = members.get(pkey); keepObj = existingObj; /* * We always rebind the data because if we're being called, some index has * been updated and is refreshing it's data, which may or may not have changed */ // Detach object from alternate and duplicate indexes, leave PKey alone if (indexByClusterIdx != null) { CFGenKbSecGroupIncludeByClusterIdxKey keyClusterIdx = schema.getBackingStore().getFactorySecGroupInclude().newClusterIdxKey(); keyClusterIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapClusterIdx = indexByClusterIdx.get(keyClusterIdx); if (mapClusterIdx != null) { mapClusterIdx.remove(keepObj.getPKey()); } } if (indexByGroupIdx != null) { CFGenKbSecGroupIncludeByGroupIdxKey keyGroupIdx = schema.getBackingStore().getFactorySecGroupInclude().newGroupIdxKey(); keyGroupIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyGroupIdx.setRequiredSecGroupId(keepObj.getRequiredSecGroupId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapGroupIdx = indexByGroupIdx.get(keyGroupIdx); if (mapGroupIdx != null) { mapGroupIdx.remove(keepObj.getPKey()); } } if (indexByIncludeIdx != null) { CFGenKbSecGroupIncludeByIncludeIdxKey keyIncludeIdx = schema.getBackingStore().getFactorySecGroupInclude().newIncludeIdxKey(); keyIncludeIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyIncludeIdx.setRequiredIncludeGroupId(keepObj.getRequiredIncludeGroupId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapIncludeIdx = indexByIncludeIdx.get(keyIncludeIdx); if (mapIncludeIdx != null) { mapIncludeIdx.remove(keepObj.getPKey()); } } if (indexByUIncludeIdx != null) { CFGenKbSecGroupIncludeByUIncludeIdxKey keyUIncludeIdx = schema.getBackingStore().getFactorySecGroupInclude().newUIncludeIdxKey(); keyUIncludeIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyUIncludeIdx.setRequiredSecGroupId(keepObj.getRequiredSecGroupId()); keyUIncludeIdx.setRequiredIncludeGroupId(keepObj.getRequiredIncludeGroupId()); indexByUIncludeIdx.remove(keyUIncludeIdx); } keepObj.setBuff(Obj.getBuff()); // Attach new object to alternate and duplicate indexes -- PKey stay stable if (indexByClusterIdx != null) { CFGenKbSecGroupIncludeByClusterIdxKey keyClusterIdx = schema.getBackingStore().getFactorySecGroupInclude().newClusterIdxKey(); keyClusterIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapClusterIdx = indexByClusterIdx.get(keyClusterIdx); if (mapClusterIdx != null) { mapClusterIdx.put(keepObj.getPKey(), keepObj); } } if (indexByGroupIdx != null) { CFGenKbSecGroupIncludeByGroupIdxKey keyGroupIdx = schema.getBackingStore().getFactorySecGroupInclude().newGroupIdxKey(); keyGroupIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyGroupIdx.setRequiredSecGroupId(keepObj.getRequiredSecGroupId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapGroupIdx = indexByGroupIdx.get(keyGroupIdx); if (mapGroupIdx != null) { mapGroupIdx.put(keepObj.getPKey(), keepObj); } } if (indexByIncludeIdx != null) { CFGenKbSecGroupIncludeByIncludeIdxKey keyIncludeIdx = schema.getBackingStore().getFactorySecGroupInclude().newIncludeIdxKey(); keyIncludeIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyIncludeIdx.setRequiredIncludeGroupId(keepObj.getRequiredIncludeGroupId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapIncludeIdx = indexByIncludeIdx.get(keyIncludeIdx); if (mapIncludeIdx != null) { mapIncludeIdx.put(keepObj.getPKey(), keepObj); } } if (indexByUIncludeIdx != null) { CFGenKbSecGroupIncludeByUIncludeIdxKey keyUIncludeIdx = schema.getBackingStore().getFactorySecGroupInclude().newUIncludeIdxKey(); keyUIncludeIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyUIncludeIdx.setRequiredSecGroupId(keepObj.getRequiredSecGroupId()); keyUIncludeIdx.setRequiredIncludeGroupId(keepObj.getRequiredIncludeGroupId()); indexByUIncludeIdx.put(keyUIncludeIdx, keepObj); } if (allSecGroupInclude != null) { allSecGroupInclude.put(keepObj.getPKey(), keepObj); } } else { keepObj = obj; keepObj.setIsNew(false); // Attach new object to PKey, all, alternate, and duplicate indexes members.put(keepObj.getPKey(), keepObj); if (allSecGroupInclude != null) { allSecGroupInclude.put(keepObj.getPKey(), keepObj); } if (indexByClusterIdx != null) { CFGenKbSecGroupIncludeByClusterIdxKey keyClusterIdx = schema.getBackingStore().getFactorySecGroupInclude().newClusterIdxKey(); keyClusterIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapClusterIdx = indexByClusterIdx.get(keyClusterIdx); if (mapClusterIdx != null) { mapClusterIdx.put(keepObj.getPKey(), keepObj); } } if (indexByGroupIdx != null) { CFGenKbSecGroupIncludeByGroupIdxKey keyGroupIdx = schema.getBackingStore().getFactorySecGroupInclude().newGroupIdxKey(); keyGroupIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyGroupIdx.setRequiredSecGroupId(keepObj.getRequiredSecGroupId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapGroupIdx = indexByGroupIdx.get(keyGroupIdx); if (mapGroupIdx != null) { mapGroupIdx.put(keepObj.getPKey(), keepObj); } } if (indexByIncludeIdx != null) { CFGenKbSecGroupIncludeByIncludeIdxKey keyIncludeIdx = schema.getBackingStore().getFactorySecGroupInclude().newIncludeIdxKey(); keyIncludeIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyIncludeIdx.setRequiredIncludeGroupId(keepObj.getRequiredIncludeGroupId()); Map<CFGenKbSecGroupIncludePKey, ICFGenKbSecGroupIncludeObj> mapIncludeIdx = indexByIncludeIdx.get(keyIncludeIdx); if (mapIncludeIdx != null) { mapIncludeIdx.put(keepObj.getPKey(), keepObj); } } if (indexByUIncludeIdx != null) { CFGenKbSecGroupIncludeByUIncludeIdxKey keyUIncludeIdx = schema.getBackingStore().getFactorySecGroupInclude().newUIncludeIdxKey(); keyUIncludeIdx.setRequiredClusterId(keepObj.getRequiredClusterId()); keyUIncludeIdx.setRequiredSecGroupId(keepObj.getRequiredSecGroupId()); keyUIncludeIdx.setRequiredIncludeGroupId(keepObj.getRequiredIncludeGroupId()); indexByUIncludeIdx.put(keyUIncludeIdx, keepObj); } } return (keepObj); }