-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[layout] allow to dump ELK tree for debugging
Fixes #46
- Loading branch information
1 parent
6c5c9d1
commit 2bce7f4
Showing
2 changed files
with
84 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
org.eclipse.sprotty.layout/src/main/java/org/eclipse/sprotty/layout/ElktSerializer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/******************************************************************************** | ||
* Copyright (c) 2019 TypeFox and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
package org.eclipse.sprotty.layout; | ||
|
||
import java.io.ByteArrayOutputStream; | ||
import java.lang.reflect.Method; | ||
import java.nio.charset.Charset; | ||
|
||
import javax.inject.Inject; | ||
import javax.inject.Provider; | ||
|
||
import org.apache.log4j.Logger; | ||
import org.eclipse.elk.graph.ElkNode; | ||
import org.eclipse.emf.common.util.URI; | ||
import org.eclipse.emf.ecore.resource.Resource; | ||
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl; | ||
|
||
|
||
/** | ||
* Allows to dump an ELK model in ELKT, such that it can be debugged in | ||
* https://rtsys.informatik.uni-kiel.de/elklive/elkgraph.html | ||
* | ||
* This class needs the Maven artifact | ||
* groupID: org.eclipse.elk | ||
* artifactId: org.eclipse.elk.graph.text | ||
* on the classpath. | ||
*/ | ||
public class ElktSerializer { | ||
|
||
private static final Logger LOG = Logger.getLogger(ElktSerializer.class); | ||
|
||
protected Provider<ResourceSetImpl> resourceSetProvider; | ||
|
||
@Inject | ||
public void setResourceSetProvider(Provider<ResourceSetImpl> resourceSetProvider) { | ||
this.resourceSetProvider = resourceSetProvider; | ||
} | ||
|
||
/** | ||
* Serlialize the given ELK model to ELKT | ||
*/ | ||
public String toElkt(ElkNode node) { | ||
try (ByteArrayOutputStream baos = new ByteArrayOutputStream(32768)) { | ||
registerElkt(); | ||
Resource resource = resourceSetProvider.get().createResource(URI.createURI("dump.elkt")); | ||
resource.getContents().add(node); | ||
resource.save(baos, null); | ||
String text = new String(baos.toByteArray(), Charset.defaultCharset()); | ||
return text; | ||
} catch (Throwable exc) { | ||
LOG.error("Error serializing ELK model", exc); | ||
} | ||
return null; | ||
} | ||
|
||
/** | ||
* Makes sure ELKT is registered to the EMF registries. | ||
*/ | ||
protected void registerElkt() throws Exception { | ||
Object factory = Resource.Factory.Registry.INSTANCE.getExtensionToFactoryMap().get("elkt"); | ||
if (factory == null) { | ||
Class<?> standaloneSetupClass = Class.forName("org.eclipse.elk.graph.text.ElkGraphStandaloneSetup"); | ||
if (standaloneSetupClass == null) | ||
throw new IllegalStateException("'ElkGraphStandaloneSetup' is not on the classpath. Add 'org.eclipse.elk:org.eclipse.elk.graph.text' to your classpath."); | ||
Method doSetupMethod = standaloneSetupClass.getMethod("doSetup"); | ||
doSetupMethod.invoke(null); | ||
} | ||
} | ||
} |