public static TransientValueReference_c createProxy( ModelRoot modelRoot, java.util.UUID p_m_value_id, java.util.UUID p_m_var_id, 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(TransientValueReference_c.class); TransientValueReference_c new_inst = null; synchronized (instances) { Object[] key = {p_m_value_id}; new_inst = (TransientValueReference_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(); // pre-process the uuid so that we re-use null uuid instance rather then creating a new one. new_inst.m_value_id = IdAssigner.preprocessUUID(p_m_value_id); // pre-process the uuid so that we re-use null uuid instance rather then creating a new one. new_inst.m_var_id = IdAssigner.preprocessUUID(p_m_var_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 TransientValueReference_c(modelRoot, p_m_value_id, p_m_var_id); new_inst.m_contentPath = contentPath; } return new_inst; }
public static TransientValueReference_c resolveInstance( ModelRoot modelRoot, java.util.UUID p_m_value_id, java.util.UUID p_m_var_id) { InstanceList instances = modelRoot.getInstanceList(TransientValueReference_c.class); TransientValueReference_c source = null; synchronized (instances) { Object[] key = {p_m_value_id}; source = (TransientValueReference_c) instances.get(key); if (source != null && !modelRoot.isCompareRoot()) { source.convertFromProxy(); source.batchUnrelate(); // pre-process the uuid so that we re-use null uuid instance rather then creating a new one. source.m_value_id = IdAssigner.preprocessUUID(p_m_value_id); // pre-process the uuid so that we re-use null uuid instance rather then creating a new one. source.m_var_id = IdAssigner.preprocessUUID(p_m_var_id); return source; } } // there is no instance matching the id TransientValueReference_c new_inst = new TransientValueReference_c(modelRoot, p_m_value_id, p_m_var_id); return new_inst; }