All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.xtext.serializer.sequencer.TransientValueService Maven / Gradle / Ivy

There is a newer version: 2.4.3
Show newest version
/*******************************************************************************
 * Copyright (c) 2011 itemis AG (http://www.itemis.eu) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *******************************************************************************/
package org.eclipse.xtext.serializer.sequencer;

import org.eclipse.emf.ecore.EAttribute;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EReference;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.EcorePackage;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.resource.Resource;

/**
 * @author Moritz Eysholdt - Initial contribution and API
 */
public class TransientValueService implements ITransientValueService {

	protected boolean defaultValueIsSerializeable(EStructuralFeature feature) {
		if (feature instanceof EAttribute) {
			if (feature.getEType() == EcorePackage.eINSTANCE.getEString() && feature.getDefaultValue() == null)
				return false;
			return true;
		}
		return false;
	}

	protected boolean isContainerReferenceInSameResource(EObject owner, EStructuralFeature feature) {
		if (feature instanceof EReference && ((EReference) feature).isContainer()) {
			Resource ownerResource = ((InternalEObject) owner).eDirectResource();
			// if eDirectResource is set, owner is a root element, so its container 
			// must be in another resource 
			return (ownerResource == null);
		}
		return false;
	}

	public ListTransient isListTransient(EObject semanticObject, EStructuralFeature feature) {
		if (feature.isTransient() || isContainerReferenceInSameResource(semanticObject, feature))
			return ListTransient.YES;
		else
			return ListTransient.NO;
	}

	public boolean isValueInListTransient(EObject semanticObject, int index, EStructuralFeature feature) {
		return false;
	}

	public ValueTransient isValueTransient(EObject semanticObject, EStructuralFeature feature) {
		if (feature.isTransient() || !semanticObject.eIsSet(feature)
				|| isContainerReferenceInSameResource(semanticObject, feature)) {
			if (defaultValueIsSerializeable(feature))
				return ValueTransient.PREFERABLY;
			else
				return ValueTransient.YES;
		} else
			return ValueTransient.NO;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy