blob: 14cccfd0a482d7b108fdd3b393221a841bee3fc6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Obeo.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.server.backend.internal.utils;
import java.util.Optional;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Status;
import org.eclipse.emf.common.util.URI;
import org.eclipse.sirius.business.api.modelingproject.ModelingProject;
import org.eclipse.sirius.business.api.session.Session;
import org.eclipse.sirius.business.api.session.SessionManager;
import org.eclipse.sirius.server.backend.internal.SiriusServerBackendPlugin;
import org.eclipse.sirius.viewpoint.SiriusPlugin;
/**
* Utility class.
*
* @author sbegaudeau
*/
public final class SiriusServerUtils {
/**
* The UTF-8 encoding.
*/
public static final String UTF_8 = "UTF-8"; //$NON-NLS-1$
/**
* The constructor.
*/
private SiriusServerUtils() {
// prevent instantiation
}
/**
* Returns the session of the given modeling project or open a new one and
* return it.
*
* @param modelingProject
* The modeling project
* @return The session
*/
public static Session getSession(ModelingProject modelingProject) {
Optional<Session> optionalSession = Optional.ofNullable(modelingProject.getSession());
Session session = optionalSession.orElseGet(() -> {
// FIXME SBE: proper management of optionals once Sirius has
// switched to Java optional
URI sessionResourceURI = modelingProject.getMainRepresentationsFileURI(new NullProgressMonitor()).get();
return SessionManager.INSTANCE.openSession(sessionResourceURI, new NullProgressMonitor(), SiriusPlugin.getDefault().getUiCallback());
});
return session;
}
/**
* Returns the description from the given project.
*
* @param iProject
* The project
* @return The description from the given project
*/
public static String getProjectDescription(IProject iProject) {
String description = null;
try {
IProjectDescription iProjectDescription = iProject.getDescription();
String comment = iProjectDescription.getComment();
if (comment != null && comment.trim().length() > 0) {
description = comment;
}
} catch (CoreException e) {
IStatus status = new Status(IStatus.ERROR, SiriusServerBackendPlugin.PLUGIN_ID, e.getMessage(), e);
SiriusServerBackendPlugin.getPlugin().log(status);
}
return description;
}
}