use of au.gov.asd.tac.constellation.plugins.parameters.types.ParameterValue in project constellation by constellation-app.
the class FactAnalyticPlugin method edit.
@Override
protected final void edit(final GraphWriteMethods graph, final PluginInteraction interaction, final PluginParameters parameters) throws InterruptedException, PluginException {
try {
// prepare the graph
prepareGraph(graph, parameters);
// ensure the required analytic attributes exists on the graph
getAnalyticAttributes(parameters).forEach(schemaAttribute -> schemaAttribute.ensure(graph));
// TRANSACTION_TYPES_PARAMETER always of type MultiChoiceParameter
@SuppressWarnings("unchecked") final PluginParameter<MultiChoiceParameterValue> transactionTypesParameter = (PluginParameter<MultiChoiceParameterValue>) parameters.getParameters().get(TRANSACTION_TYPES_PARAMETER_ID);
final List<ParameterValue> allTransactionTypes = MultiChoiceParameterType.getOptionsData(transactionTypesParameter);
final List<? extends ParameterValue> chosenTransactionTypes = MultiChoiceParameterType.getChoicesData(transactionTypesParameter);
if (chosenTransactionTypes.equals(allTransactionTypes)) {
// run analytic plugin on the entire graph and compute results
PluginExecution.withPlugin(getAnalyticPlugin().getDeclaredConstructor().newInstance()).withParameters(parameters).executeNow(graph);
computeResultsFromGraph(graph, parameters);
} else {
// create subgraph
final Set<SchemaTransactionType> transactionTypes = new HashSet<>();
chosenTransactionTypes.forEach(parameterValue -> transactionTypes.add((SchemaTransactionType) ((TransactionTypeParameterValue) parameterValue).getObjectValue()));
assert transactionTypes.size() > 0 : "You must select at least one transaction type";
final StoreGraph subgraph = getSubgraph(graph, SchemaFactoryUtilities.getDefaultSchemaFactory(), transactionTypes);
// run analytic plugin on the subgraph and compute results
PluginExecution.withPlugin(getAnalyticPlugin().getDeclaredConstructor().newInstance()).withParameters(parameters).executeNow(subgraph);
copySubgraphToGraph(graph, subgraph);
computeResultsFromGraph(graph, parameters);
}
} catch (final IllegalAccessException | IllegalArgumentException | InstantiationException | NoSuchMethodException | SecurityException | InvocationTargetException ex) {
LOGGER.log(Level.SEVERE, ex.getLocalizedMessage(), ex);
}
}
use of au.gov.asd.tac.constellation.plugins.parameters.types.ParameterValue in project constellation by constellation-app.
the class MostLikelyCorrelatedQuestion method initialiseParameters.
@Override
public void initialiseParameters(final AnalyticPlugin<ScoreResult> plugin, final PluginParameters parameters) {
// TRANSACTION_TYPES_PARAMETER always of type MultiChoiceParameter
@SuppressWarnings("unchecked") final PluginParameter<MultiChoiceParameterValue> transactionTypeParameter = (PluginParameter<MultiChoiceParameterValue>) parameters.getParameters().get(ScoreAnalyticPlugin.TRANSACTION_TYPES_PARAMETER_ID);
final List<TransactionTypeParameterValue> newChecked = new ArrayList<>();
final List<ParameterValue> checked = transactionTypeParameter.getMultiChoiceValue().getChoicesData();
checked.forEach(parameterValue -> {
final TransactionTypeParameterValue transactionTypeParameterValue = (TransactionTypeParameterValue) parameterValue;
final SchemaTransactionType transactionType = (SchemaTransactionType) transactionTypeParameterValue.getObjectValue();
if (transactionType == null || !transactionType.isSubTypeOf(AnalyticConcept.TransactionType.SIMILARITY)) {
newChecked.add(transactionTypeParameterValue);
}
});
MultiChoiceParameterType.setChoicesData(transactionTypeParameter, newChecked);
parameters.setBooleanValue(CosineSimilarityPlugin.INCLUDE_CONNECTIONS_IN_PARAMETER_ID, true);
parameters.setBooleanValue(CosineSimilarityPlugin.INCLUDE_CONNECTIONS_OUT_PARAMETER_ID, true);
parameters.setBooleanValue(CosineSimilarityPlugin.TREAT_UNDIRECTED_BIDIRECTIONAL_PARAMETER_ID, true);
}
use of au.gov.asd.tac.constellation.plugins.parameters.types.ParameterValue in project constellation by constellation-app.
the class TestParametersPlugin method createParameters.
@Override
public PluginParameters createParameters() {
final PluginParameters params = new PluginParameters();
final String css = TestParametersPlugin.class.getResource("resources/test.css").toExternalForm();
final BooleanParameterValue selectedpv = new BooleanParameterValue(true);
selectedpv.setGuiInit(control -> {
final CheckBox field = (CheckBox) control;
field.getStylesheets().add(css);
});
final PluginParameter<BooleanParameterValue> selected = BooleanParameterType.build(SELECTED_PARAMETER_ID, selectedpv);
selected.setName("Use selected");
selected.setDescription("Only use selected elements");
params.addParameter(selected);
final PluginParameter<StringParameterValue> queryName = CoreGlobalParameters.QUERY_NAME_PARAMETER;
params.addParameter(queryName);
final PluginParameter<DateTimeRangeParameterValue> dt = CoreGlobalParameters.DATETIME_RANGE_PARAMETER;
params.addParameter(dt);
final PluginParameter<StringParameterValue> string1 = StringParameterType.build(TEST1_PARAMETER_ID);
string1.setName("Test1");
string1.setDescription("A test string");
string1.setStringValue("Plugh.");
params.addParameter(string1);
final StringParameterValue string2pv = new StringParameterValue();
string2pv.setGuiInit(control -> {
final TextArea field = (TextArea) control;
field.getStylesheets().add(css);
});
final PluginParameter<StringParameterValue> string2 = StringParameterType.build(TEST2_PARAMETER_ID, string2pv);
string2.setName("Test2");
string2.setDescription("A two line test string");
StringParameterType.setLines(string2, 2);
params.addParameter(string2);
final PluginParameter<PasswordParameterValue> passwd = PasswordParameterType.build(PASSWORD_PARAMETER_ID);
passwd.setName("Password");
passwd.setDescription("Everyone needs a password");
params.addParameter(passwd);
final PluginParameter<LocalDateParameterValue> date = LocalDateParameterType.build(LOCAL_DATE_PARAMETER_ID);
date.setName("Date");
date.setDescription("Pick a day");
date.setLocalDateValue(LocalDate.of(2001, Month.JANUARY, 1));
params.addParameter(date);
final List<GraphElementTypeParameterValue> elementTypeOptions = new ArrayList<>();
for (final GraphElementType elementType : GraphElementType.values()) {
elementTypeOptions.add(new GraphElementTypeParameterValue(elementType));
}
final PluginParameter<SingleChoiceParameterValue> elementType = SingleChoiceParameterType.build(ELEMENT_TYPE_PARAMETER_ID, GraphElementTypeParameterValue.class);
elementType.setName("Graph element type");
elementType.setDescription("Graph element type");
SingleChoiceParameterType.setOptionsData(elementType, elementTypeOptions);
params.addParameter(elementType);
// A single choice list with a subtype of String.
final SingleChoiceParameterValue robotpv = new SingleChoiceParameterValue(StringParameterValue.class);
robotpv.setGuiInit(control -> {
// control will be of type ComboBox<ParameterValue> which extends from Region
@SuppressWarnings("unchecked") final ComboBox<ParameterValue> field = (ComboBox<ParameterValue>) control;
final Image img = new Image(ALIEN_ICON);
field.setCellFactory((ListView<ParameterValue> param) -> new ListCell<ParameterValue>() {
@Override
protected void updateItem(final ParameterValue item, final boolean empty) {
super.updateItem(item, empty);
this.setText(empty ? "" : item.toString());
final float f = empty ? 0 : item.toString().length() / 11F;
final Color c = Color.color(1 - f / 2F, 0, 0);
setTextFill(c);
setGraphic(new ImageView(img));
}
});
});
final PluginParameter<SingleChoiceParameterValue> robotOptions = SingleChoiceParameterType.build(ROBOT_PARAMETER_ID, robotpv);
robotOptions.setName("Robot options");
robotOptions.setDescription("A list of robots to choose from");
// Use the helper method to add string options.
SingleChoiceParameterType.setOptions(robotOptions, Arrays.asList("Bender", "Gort", "Maximillian", "Robbie", "Tom Servo"));
// Create a ParameterValue of the underlying type (in this case, String) to set the default choice.
final StringParameterValue robotChoice = new StringParameterValue("Gort");
SingleChoiceParameterType.setChoiceData(robotOptions, robotChoice);
params.addParameter(robotOptions);
final PluginParameter<ParameterValue> buttonParam = ActionParameterType.build(REFRESH_PARAMETER_ID);
buttonParam.setName("Refresh");
buttonParam.setDescription("Update the available robots");
params.addParameter(buttonParam);
final PluginParameter<MultiChoiceParameterValue> planetOptions = MultiChoiceParameterType.build(PLANETS_PARAMETER_ID);
planetOptions.setName("Planets");
planetOptions.setDescription("Some planets");
MultiChoiceParameterType.setOptions(planetOptions, Arrays.asList("Mercury", "Venus", "Earth", "Mars", "Jupiter", "Saturn", "Uranus", "Neptune", "Coruscant"));
final List<String> checked = new ArrayList<>();
checked.add("Earth");
MultiChoiceParameterType.setChoices(planetOptions, checked);
params.addParameter(planetOptions);
final PluginParameter<IntegerParameterValue> diceOptions = IntegerParameterType.build(DICE_PARAMETER_ID);
diceOptions.setName("Dice");
diceOptions.setDescription("2d6");
IntegerParameterType.setMinimum(diceOptions, 2);
IntegerParameterType.setMaximum(diceOptions, 12);
diceOptions.setIntegerValue(7);
params.addParameter(diceOptions);
final PluginParameter<FloatParameterValue> probability = FloatParameterType.build(PROBABILITY_PARAMETER_ID);
probability.setName("Probability");
probability.setDescription("0 <= p <= 1");
FloatParameterType.setMinimum(probability, 0F);
FloatParameterType.setMaximum(probability, 1F);
FloatParameterType.setStep(probability, 0.1F);
probability.setFloatValue(1F);
params.addParameter(probability);
final PluginParameter<FileParameterValue> openFileParam = FileParameterType.build(INPUT_FILE_PARAMETER_ID);
openFileParam.setName("Input file");
openFileParam.setDescription("A file to read stuff from");
params.addParameter(openFileParam);
final PluginParameter<FileParameterValue> saveFileParam = FileParameterType.build(OUTPUT_FILE_PARAMETER_ID);
saveFileParam.setName("Output file");
saveFileParam.setDescription("A file to write stuff to");
FileParameterType.setKind(saveFileParam, FileParameterType.FileParameterKind.SAVE);
FileParameterType.setFileFilters(saveFileParam, new FileChooser.ExtensionFilter("Text files", "*.txt"));
params.addParameter(saveFileParam);
final PluginParameter<ColorParameterValue> color = ColorParameterType.build(COLOR_PARAMETER_ID);
color.setName("Color");
color.setDescription("Your favourite colour");
color.setColorValue(ConstellationColor.BLUE);
params.addParameter(color);
final PluginParameter<BooleanParameterValue> crash = BooleanParameterType.build(CRASH_PARAMETER_ID);
crash.setName("Crash");
crash.setDescription("Simulate plugin failure");
params.addParameter(crash);
final PluginParameter<SingleChoiceParameterValue> interactionOptions = SingleChoiceParameterType.build(INTERACTION_PARAMETER_ID);
interactionOptions.setName("Interaction level");
interactionOptions.setDescription("Interaction level for some interaction with the user");
SingleChoiceParameterType.setOptions(interactionOptions, Arrays.asList(NONE, DEBUG, INFO, WARNING, ERROR, FATAL));
params.addParameter(interactionOptions);
final PluginParameter<SingleChoiceParameterValue> levelOptions = SingleChoiceParameterType.build(LEVEL_PARAMETER_ID);
levelOptions.setName("PluginException level");
levelOptions.setDescription("PluginException level to throw an exception at");
levelOptions.setHelpID("not.actually.helpful");
SingleChoiceParameterType.setOptions(levelOptions, Arrays.asList(NONE, DEBUG, INFO, WARNING, ERROR, FATAL));
params.addParameter(levelOptions);
final PluginParameter<IntegerParameterValue> sleepParam = IntegerParameterType.build(SLEEP_PARAMETER_ID);
sleepParam.setName("Sleep");
sleepParam.setDescription("Seconds");
IntegerParameterType.setMinimum(sleepParam, 0);
IntegerParameterType.setMaximum(sleepParam, 20);
sleepParam.setIntegerValue(0);
params.addParameter(sleepParam);
params.addController(SELECTED_PARAMETER_ID, (final PluginParameter<?> master, final Map<String, PluginParameter<?>> parameters, final ParameterChange change) -> {
if (change == ParameterChange.VALUE) {
final boolean masterBoolean = master.getBooleanValue();
// TEST1_PARAMETER will always be of type StringParameter
@SuppressWarnings("unchecked") final PluginParameter<StringParameterValue> t1 = (PluginParameter<StringParameterValue>) parameters.get(TEST1_PARAMETER_ID);
t1.setEnabled(masterBoolean);
// TEST1_PARAMETER will always be of type StringParameter
@SuppressWarnings("unchecked") final PluginParameter<StringParameterValue> t2 = (PluginParameter<StringParameterValue>) parameters.get(TEST2_PARAMETER_ID);
t2.setEnabled(masterBoolean);
// PLANETS_PARAMETER will always be of type MultiChoiceParameter
@SuppressWarnings("unchecked") final PluginParameter<MultiChoiceParameterValue> p = (PluginParameter<MultiChoiceParameterValue>) parameters.get(PLANETS_PARAMETER_ID);
p.setEnabled(masterBoolean);
// DICE_PARAMETER will always be of type IntegerParameter
@SuppressWarnings("unchecked") final PluginParameter<IntegerParameterValue> d = (PluginParameter<IntegerParameterValue>) parameters.get(DICE_PARAMETER_ID);
d.setEnabled(masterBoolean);
// COLOR_PARAMETER will always be of type ColorParameter
@SuppressWarnings("unchecked") final PluginParameter<ColorParameterValue> c = (PluginParameter<ColorParameterValue>) parameters.get(COLOR_PARAMETER_ID);
c.setVisible(masterBoolean);
}
});
params.addController(REFRESH_PARAMETER_ID, (final PluginParameter<?> master, final Map<String, PluginParameter<?>> parameters, final ParameterChange change) -> {
if (change == ParameterChange.NO_CHANGE) {
// button pressed
// ROBOT_PARAMETER will always be of type SingleChoiceParameter
@SuppressWarnings("unchecked") final PluginParameter<SingleChoiceParameterValue> robot = (PluginParameter<SingleChoiceParameterValue>) parameters.get(ROBOT_PARAMETER_ID);
final int n = (int) (System.currentTimeMillis() % 100);
SingleChoiceParameterType.setOptions(robot, Arrays.asList("Kryton " + n, "C-3PO " + n, "R2-D2 " + n));
SingleChoiceParameterType.setChoice(robot, "C-3PO " + n);
}
});
return params;
}
use of au.gov.asd.tac.constellation.plugins.parameters.types.ParameterValue in project constellation by constellation-app.
the class AbstractGeoExportPlugin method createParameters.
@Override
// the fallthrough at the switch statement is intentional
@SuppressWarnings("fallthrough")
public PluginParameters createParameters() {
final PluginParameters parameters = new PluginParameters();
final PluginParameter<FileParameterValue> outputParameter = FileParameterType.build(OUTPUT_PARAMETER_ID);
outputParameter.setName("Output File");
outputParameter.setDescription("The name of the output file");
FileParameterType.setKind(outputParameter, FileParameterType.FileParameterKind.SAVE);
FileParameterType.setFileFilters(outputParameter, getExportType());
parameters.addParameter(outputParameter);
if (includeSpatialReference()) {
final PluginParameter<SingleChoiceParameterValue> spatialReferenceParameter = SingleChoiceParameterType.build(SPATIAL_REFERENCE_PARAMETER_ID, SpatialReferenceParameterValue.class);
spatialReferenceParameter.setName("Spatial Reference");
spatialReferenceParameter.setDescription("The spatial reference to use for the geopackage");
final List<SpatialReferenceParameterValue> spatialReferences = Arrays.asList(Shape.SpatialReference.values()).stream().map(spatialReference -> new SpatialReferenceParameterValue(spatialReference)).collect(Collectors.toList());
SingleChoiceParameterType.setOptionsData(spatialReferenceParameter, spatialReferences);
SingleChoiceParameterType.setChoiceData(spatialReferenceParameter, spatialReferences.get(0));
parameters.addParameter(spatialReferenceParameter);
}
final PluginParameter<SingleChoiceParameterValue> elementTypeParameter = SingleChoiceParameterType.build(ELEMENT_TYPE_PARAMETER_ID, ElementTypeParameterValue.class);
elementTypeParameter.setName("Element Type");
elementTypeParameter.setDescription("The graph element type");
final List<ElementTypeParameterValue> elementTypes = new ArrayList<>();
elementTypes.add(new ElementTypeParameterValue(GraphElementType.TRANSACTION));
elementTypes.add(new ElementTypeParameterValue(GraphElementType.VERTEX));
SingleChoiceParameterType.setOptionsData(elementTypeParameter, elementTypes);
parameters.addParameter(elementTypeParameter);
final PluginParameter<MultiChoiceParameterValue> attributesParameter = MultiChoiceParameterType.build(ATTRIBUTES_PARAMETER_ID, GraphAttributeParameterValue.class);
attributesParameter.setName("Attributes");
attributesParameter.setDescription("The list of attribute names to include in the export");
attributesParameter.setEnabled(false);
parameters.addParameter(attributesParameter);
final PluginParameter<BooleanParameterValue> selectedOnlyParameter = BooleanParameterType.build(SELECTED_ONLY_PARAMETER_ID);
selectedOnlyParameter.setName("Selected Only");
selectedOnlyParameter.setDescription("If True, only export the selected nodes. The default is False.");
selectedOnlyParameter.setBooleanValue(false);
parameters.addParameter(selectedOnlyParameter);
parameters.addController(ELEMENT_TYPE_PARAMETER_ID, (master, params, change) -> {
if (change == ParameterChange.VALUE) {
final Graph activeGraph = GraphManager.getDefault().getActiveGraph();
if (activeGraph != null) {
// create options by getting attributes for the chosen element type from the graph
final List<GraphAttributeParameterValue> attributeOptions = new ArrayList<>();
final ReadableGraph readableGraph = activeGraph.getReadableGraph();
try {
final ParameterValue pv = params.get(master.getId()).getSingleChoice();
assert (pv instanceof ElementTypeParameterValue);
final GraphElementType elementType = ((ElementTypeParameterValue) pv).getGraphElementType();
switch(elementType) {
case TRANSACTION:
final int transactionAttributeCount = readableGraph.getAttributeCount(GraphElementType.TRANSACTION);
for (int attributePosition = 0; attributePosition < transactionAttributeCount; attributePosition++) {
final int attributeId = readableGraph.getAttribute(GraphElementType.TRANSACTION, attributePosition);
final GraphAttribute graphAttribute = new GraphAttribute(readableGraph, attributeId);
attributeOptions.add(new GraphAttributeParameterValue(graphAttribute));
}
// fall through
case VERTEX:
final int vertexAttributeCount = readableGraph.getAttributeCount(GraphElementType.VERTEX);
for (int attributePosition = 0; attributePosition < vertexAttributeCount; attributePosition++) {
final int attributeId = readableGraph.getAttribute(GraphElementType.VERTEX, attributePosition);
final GraphAttribute graphAttribute = new GraphAttribute(readableGraph, attributeId);
attributeOptions.add(new GraphAttributeParameterValue(graphAttribute));
}
break;
default:
return;
}
} finally {
readableGraph.release();
}
// create choices by deselecting lowercase attributes by default
final List<GraphAttributeParameterValue> attributeChoices = attributeOptions.stream().filter(attributeOption -> !((GraphAttribute) attributeOption.getObjectValue()).getName().matches("[a-z]{1}.*")).collect(Collectors.toList());
// sort options and choices lists
Collections.sort(attributeOptions);
Collections.sort(attributeChoices);
// update attributes parameter
// Attrbutes_Parameter is created as a MultiChoice parameter in this class on line 137.
@SuppressWarnings("unchecked") final PluginParameter<MultiChoiceParameterValue> updatedAttributesParameter = (PluginParameter<MultiChoiceParameterValue>) params.get(ATTRIBUTES_PARAMETER_ID);
MultiChoiceParameterType.setOptionsData(updatedAttributesParameter, attributeOptions);
MultiChoiceParameterType.setChoicesData(updatedAttributesParameter, attributeChoices);
updatedAttributesParameter.setEnabled(true);
}
}
});
return parameters;
}
use of au.gov.asd.tac.constellation.plugins.parameters.types.ParameterValue in project constellation by constellation-app.
the class ExportToGeoPackagePlugin method exportGeo.
@Override
protected void exportGeo(final PluginParameters parameters, final String uuid, final Map<String, String> shapes, final Map<String, Map<String, Object>> attributes, final File output) throws IOException {
final ParameterValue spatialReferencePV = parameters.getSingleChoice(SPATIAL_REFERENCE_PARAMETER_ID);
assert (spatialReferencePV instanceof SpatialReferenceParameterValue);
final Shape.SpatialReference spatialReference = ((SpatialReferenceParameterValue) spatialReferencePV).getSpatialReference();
Shape.generateGeoPackage(uuid, shapes, attributes, output, spatialReference);
}
Aggregations