public static ComponentResultSet_c createProxy( ModelRoot modelRoot, java.util.UUID p_m_id, String p_m_name, int p_m_type, String p_contentPath, IPath p_localPath) { ModelRoot resolvedModelRoot = ModelRoot.findModelRoot(modelRoot, p_contentPath, p_localPath); // if a model root was not resolved it is most likely // due to a missing file of the proxy, defualt back to // the original model root if (resolvedModelRoot != null) modelRoot = resolvedModelRoot; InstanceList instances = modelRoot.getInstanceList(ComponentResultSet_c.class); ComponentResultSet_c new_inst = null; synchronized (instances) { Object[] key = {p_m_name, p_m_id}; new_inst = (ComponentResultSet_c) instances.get(key); } String contentPath = PersistenceUtil.resolveRelativePath(p_localPath, new Path(p_contentPath)); if (modelRoot.isNewCompareRoot()) { // for comparisons we do not want to change // the content path contentPath = p_contentPath; } if (new_inst != null && !modelRoot.isCompareRoot()) { PersistableModelComponent pmc = new_inst.getPersistableComponent(); if (pmc == null) { // dangling reference, redo this instance new_inst.batchUnrelate(); new_inst.m_name = p_m_name; new_inst.m_type = p_m_type; // pre-process the uuid so that we re-use null uuid instance rather then creating a new one. new_inst.m_id = IdAssigner.preprocessUUID(p_m_id); } } if (new_inst == null) { // there is no instance matching the id, create a proxy // if the resource doesn't exist then this will be a dangling reference new_inst = new ComponentResultSet_c(modelRoot, p_m_id, p_m_name, p_m_type); new_inst.m_contentPath = contentPath; } return new_inst; }
public static ComponentResultSet_c resolveInstance( ModelRoot modelRoot, java.util.UUID p_m_id, String p_m_name, int p_m_type) { InstanceList instances = modelRoot.getInstanceList(ComponentResultSet_c.class); ComponentResultSet_c source = null; synchronized (instances) { Object[] key = {p_m_name, new UUID(0, new Long(p_m_type)), p_m_id}; source = (ComponentResultSet_c) instances.get(key); if (source != null && !modelRoot.isCompareRoot()) { source.convertFromProxy(); source.batchUnrelate(); source.m_name = p_m_name; source.m_type = p_m_type; // pre-process the uuid so that we re-use null uuid instance rather then creating a new one. source.m_id = IdAssigner.preprocessUUID(p_m_id); return source; } } // there is no instance matching the id ComponentResultSet_c new_inst = new ComponentResultSet_c(modelRoot, p_m_id, p_m_name, p_m_type); return new_inst; }