org.deckfour.xes.classification.XEventAttributeClassifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SEWOL Show documentation
Show all versions of SEWOL Show documentation
SEWOL provides support for the handling of workflow traces. Specifically it allows to specify the shape and content of process traces in terms of entries representing the execution of a specific workflow activity. SEWOL also allows to write these traces on disk as a log file with the help of a special file writer for process logs. Currently it supports plain text, Petrify, MXML and XES log file types. In order to specify security-related context information, SEWOL provides access control models such as access control lists (ACL) and role-based access control models (RBAC). All types of models can be conveniently edited with the help of appropriate dialogs.
The newest version!
/*
* OpenXES
*
* The reference implementation of the XES meta-model for event
* log data management.
*
* Copyright (c) 2008 Christian W. Guenther ([email protected])
*
*
* LICENSE:
*
* This code is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
* EXEMPTION:
*
* The use of this software can also be conditionally licensed for
* other programs, which do not satisfy the specified conditions. This
* requires an exemption from the general license, which may be
* granted on a per-case basis.
*
* If you want to license the use of this software with a program
* incompatible with the LGPL, please contact the author for an
* exemption at the following email address:
* [email protected]
*
*/
package org.deckfour.xes.classification;
import java.util.Arrays;
import org.deckfour.xes.model.XAttribute;
import org.deckfour.xes.model.XEvent;
import org.deckfour.xes.model.XLog;
import org.deckfour.xes.model.XVisitor;
/**
* Event classifier which considers two events as equal, if, for a set of given
* (configurable) attributes, they have the same values.
*
* @author Christian W. Guenther ([email protected])
*
*/
public class XEventAttributeClassifier implements XEventClassifier,
Comparable {
/**
* Keys of the attributes used for event comparison.
*/
protected String[] keys;
/**
* Name of the classifier
*/
protected String name;
/**
* Creates a new instance, configured by the given attribute.
*
* @param name
* Name of the classifier.
* @param attribute
* Attribute to be used for event classification.
*/
public XEventAttributeClassifier(String name, String... keys) {
this.name = name;
this.keys = keys;
Arrays.sort(keys);
}
/*
* (non-Javadoc)
*
* @see
* org.deckfour.xes.classification.XEventClassifier#getClassIdentity(org
* .deckfour.xes.model.XEvent)
*/
public String getClassIdentity(XEvent event) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < keys.length; i++) {
XAttribute attribute = event.getAttributes().get(keys[i]);
// if (attribute == null) {
// return null;
// }
if (attribute != null) {
sb.append(attribute.toString().trim());
}
if (i < (keys.length - 1)) {
sb.append("+");
}
}
return sb.toString();
}
/**
* Assigns a custom name to this classifier
*
* @param name
* Name to be assigned to this classifier.
*/
public void setName(String name) {
this.name = name;
}
/*
* (non-Javadoc)
*
* @see org.deckfour.xes.classification.XEventClassifier#name()
*/
public String name() {
return name;
}
/*
* (non-Javadoc)
*
* @see
* org.deckfour.xes.classification.XEventClassifier#sameEventClass(org.deckfour
* .xes.model.XEvent, org.deckfour.xes.model.XEvent)
*/
public boolean sameEventClass(XEvent eventA, XEvent eventB) {
return getClassIdentity(eventA).equals(getClassIdentity(eventB));
}
public String toString() {
return name();
}
/*
* (non-Javadoc)
*
* @see
* org.deckfour.xes.classification.XEventClassifier#getDefiningAttributeKeys
* ()
*/
public String[] getDefiningAttributeKeys() {
return keys;
}
/*
* (non-Javadoc)
*
* @see java.lang.Comparable#compareTo(java.lang.Object)
*/
public int compareTo(XEventAttributeClassifier o) {
if (!o.name.equals(name)) {
return name.compareTo(o.name);
} else {
if (keys.length != o.keys.length) {
return keys.length - o.keys.length;
}
for (int i = 0; i < keys.length; i++) {
if (!keys[i].equals(o.keys[i])) {
return keys[i].compareTo(o.keys[i]);
}
}
}
return 0;
}
public boolean equals(Object o) {
if (!(o instanceof XEventAttributeClassifier)) {
return false;
}
return compareTo((XEventAttributeClassifier) o) == 0;
}
public void accept(XVisitor visitor, XLog log) {
/*
* First call.
*/
visitor.visitClassifierPre(this, log);
/*
* Last call.
*/
visitor.visitClassifierPost(this, log);
}
}