org.sdmlib.models.classes.ClassModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SDMLib Show documentation
Show all versions of SDMLib Show documentation
SDMLib is a light weight modeling library. SDMLib intentionally comes without any tool or editor.
/*
Copyright (c) 2016 Stefan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
The Software shall be used for Good, not Evil.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package org.sdmlib.models.classes;
import java.beans.PropertyChangeSupport;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintStream;
import java.util.HashSet;
import java.util.Set;
import org.sdmlib.doc.DocEnvironment;
import org.sdmlib.doc.GraphFactory;
import org.sdmlib.doc.JavascriptAdapter.Javascript;
import org.sdmlib.doc.interfaze.Adapter.GuiAdapter;
import org.sdmlib.models.classes.logic.GenClassModel;
import org.sdmlib.serialization.PropertyChangeInterface;
import de.uniks.networkparser.graph.Clazz;
import de.uniks.networkparser.graph.Clazz.ClazzType;
import de.uniks.networkparser.graph.GraphModel;
import de.uniks.networkparser.list.SimpleSet;
import de.uniks.networkparser.interfaces.SendableEntity;
import java.beans.PropertyChangeListener;
/**
*
* @see ClassModelTest.java
*/
public class ClassModel extends GraphModel implements PropertyChangeInterface, SendableEntity
{
public static final String DEFAULTPACKAGE = "i.love.sdmlib";
public static final String PROPERTY_CLASSES = "classes";
private static final String PROPERTY_FEATURE = "feature";
private Set features = Feature.getAll();
private GenClassModel generator;
public ClassModel() {
name = DEFAULTPACKAGE;
setAuthorName(System.getProperty("user.name"));
Feature.reset();
}
public ClassModel(String packageName)
{
this();
with(packageName);
}
public ClassModel generate() {
File srcDir = new File("src/main/java");
if (srcDir.exists()) {
return generate("src/main/java");
} else {
return generate("src");
}
}
public ClassModel generate(String rootDir) {
getGenerator().generate(rootDir);
return this;
}
public GenClassModel getGenerator() {
if (generator == null) {
this.setGenerator(new GenClassModel());
}
return generator;
}
protected void setGenerator(GenClassModel value) {
if (this.generator != value) {
GenClassModel oldValue = this.generator;
if (this.generator != null) {
this.generator = null;
oldValue.setModel(null);
}
this.generator = value;
if (value != null) {
value.setModel(this);
}
}
}
public String dumpClassDiagram(String diagName) {
GuiAdapter graphViz = GraphFactory.getAdapter();
return graphViz.dumpClassDiagram(diagName, this);
}
private String dumpClassDiagram(String diagName, String outputType) {
GuiAdapter graphViz = GraphFactory.getAdapter(outputType);
return graphViz.dumpClassDiagram(diagName, this);
}
public void removeAllGeneratedCode() {
getGenerator().removeAllGeneratedCode("src", "src", "src");
}
public void removeAllGeneratedCode(String rootDir) {
getGenerator().removeAllGeneratedCode(rootDir, rootDir, rootDir);
}
protected final PropertyChangeSupport listeners = new PropertyChangeSupport(this);
@Override
public PropertyChangeSupport getPropertyChangeSupport() {
return listeners;
}
@Override
public String toString() {
StringBuilder result = new StringBuilder();
result.append(" ").append(this.getId());
result.append(" ").append(this.getName());
return result.substring(1);
}
public ClassModel with(Clazz... values) {
super.with(values);
return this;
}
@Override
public ClassModel with(String name) {
super.with(name);
return this;
}
public ClassModel without(Clazz... values) {
super.without(values);
return this;
}
public ClassModel withFeature(Feature... value) {
if (value == null) {
return this;
}
for (Feature item : value) {
if (item != null) {
if (this.features.add(item)) {
getPropertyChangeSupport().firePropertyChange(PROPERTY_FEATURE, null, item);
}
}
}
return this;
}
public ClassModel withoutFeature(Feature... value) {
if (value == null) {
return this;
}
for (Feature item : value) {
if (item != null) {
if (this.features.remove(item)) {
getPropertyChangeSupport().firePropertyChange(PROPERTY_FEATURE, item, null);
}
}
}
return this;
}
public ClassModel withFeatures(HashSet value) {
if (value == null) {
this.features.clear();
return this;
}
for (Feature item : value) {
if (item != null) {
if (this.features.add(item)) {
getPropertyChangeSupport().firePropertyChange(PROPERTY_FEATURE, null, item);
}
}
}
return this;
}
public boolean hasFeature(Feature value) {
return features.contains(value);
}
public boolean hasFeature(Feature feature, Clazz value) {
if (hasFeature(feature)) {
return feature.match(value);
}
return false;
}
/**
* dump classdiagram
*
* @param diagramName
* Diagrammname
*/
public boolean dumpHTML(String diagramName) {
dumpHTML(diagramName, "doc", Javascript.NAME);
return true;
}
/**
* dump classdiagram
*
* @param diagramName
* Diagrammname
* @param folder
* target folder
* @param outputType
* GuiAdapter name (Javascript.NAME or GraphViz.NAME)
*/
public void dumpHTML(String diagramName, String folder, String outputType) {
new File(folder).mkdirs();
String dumpClassDiagram = dumpClassDiagram(diagramName, outputType);
// build index
String htmlTemplate = "\n" + "\n"
+ "\n"
+ "\n" + "\n"
+ "\n" + "\n" + "\n" + "bodytext\n"
+ "\n" + "\n";
htmlTemplate = htmlTemplate.replaceFirst("bodytext", dumpClassDiagram);
File file = new File(folder + "/" + diagramName + ".html");
try {
PrintStream out = new PrintStream(file);
out.println(htmlTemplate);
out.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
new DocEnvironment().copyJS(folder);
}
public Clazz getClazz(String name)
{
if (name == null) {
return null;
}
for (Clazz c : getClazzes()) {
if (c.getName().equals(name) ) {
return c;
}else if(name.indexOf(".")>0) {
if(c.getName().equals(name.substring(name.lastIndexOf(".")+1))) {
return c;
}
}else if(c.getName().endsWith("." + name)){
return c;
}
}
return null;
}
public SimpleSet getEnumerations() {
SimpleSet clazzes = getClazzes();
SimpleSet collection = new SimpleSet();
for (Clazz child : clazzes) {
if (child.getType()==ClazzType.ENUMERATION) {
collection.add(child);
}
}
return collection;
}
public boolean removePropertyChangeListener(PropertyChangeListener listener) {
getPropertyChangeSupport().removePropertyChangeListener(listener);
return true;
}
@Override
public boolean addPropertyChangeListener(String propertyName, PropertyChangeListener listener) {
getPropertyChangeSupport().addPropertyChangeListener(propertyName, listener);
return true;
}
@Override
public boolean addPropertyChangeListener(PropertyChangeListener listener) {
getPropertyChangeSupport().addPropertyChangeListener(listener);
return true;
}
//==========================================================================
public void removeYou()
{
getPropertyChangeSupport().firePropertyChange("REMOVE_YOU", this, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy