21import java.awt.EventQueue;
23import java.io.PrintWriter;
24import java.io.StringWriter;
25import java.lang.reflect.Constructor;
27import java.util.concurrent.ExecutionException;
29import org.apache.commons.cli.CommandLine;
30import org.apache.commons.cli.CommandLineParser;
31import org.apache.commons.cli.DefaultParser;
32import org.apache.commons.cli.HelpFormatter;
33import org.apache.commons.cli.ParseException;
35import denoptim.constants.DENOPTIMConstants;
36import denoptim.exception.ExceptionUtils;
37import denoptim.files.FileFormat;
38import denoptim.files.FileUtils;
39import denoptim.gui.GUI;
40import denoptim.integration.python.Py4JGetawayServer;
41import denoptim.logging.Version;
42import denoptim.programs.combinatorial.FragSpaceExplorer;
43import denoptim.programs.denovo.GARunner;
44import denoptim.programs.fitnessevaluator.FitnessRunner;
45import denoptim.programs.fragmenter.Fragmenter;
46import denoptim.programs.genetweeker.GeneOpsRunner;
47import denoptim.programs.grapheditor.GraphEditor;
48import denoptim.programs.graphlisthandler.GraphListsHandler;
49import denoptim.programs.isomorphism.Isomorphism;
50import denoptim.programs.mol2graph.Mol2Graph;
51import denoptim.programs.moldecularmodelbuilder.MolecularModelBuilder;
52import denoptim.task.ProgramTask;
53import denoptim.task.StaticTaskManager;
149 private String description =
"";
154 private boolean isCLIEnabled =
true;
160 private boolean needsInputFile =
false;
163 DRY.description =
"Dry run";
164 FSE.description =
"Combinatorial Fragment Space Exploration";
165 FIT.description =
"Stand-alone FITness evaluation";
166 GA.description =
"Genetic Algorithm";
167 GE.description =
"Stand-alone Graph Editing task";
168 GI.description =
"Stand-alone Graph Isomorphism analysis";
169 GO.description =
"Stand-alone Genetic Operation";
170 GUI.description =
"Graphycal User Interface";
171 CLG.description =
"Comparison of Lists of Graphs";
172 B3D.description =
"Stand-alone build a 3D molecular model from a "
174 FRG.description =
"Fragmentation and managment of fragments";
175 M2G.description =
"Convert Molecules to Graphs.";
176 PY4J.description =
"Starts a server listening to Python";
178 DRY.isCLIEnabled =
false;
179 FSE.isCLIEnabled =
true;
180 FIT.isCLIEnabled =
true;
181 GA.isCLIEnabled =
true;
182 GE.isCLIEnabled =
true;
183 GI.isCLIEnabled =
true;
184 GO.isCLIEnabled =
true;
185 GUI.isCLIEnabled =
false;
186 CLG.isCLIEnabled =
true;
187 B3D.isCLIEnabled =
true;
188 FRG.isCLIEnabled =
true;
189 M2G.isCLIEnabled =
true;
190 PY4J.isCLIEnabled =
true;
192 DRY.needsInputFile =
false;
193 FSE.needsInputFile =
true;
194 FIT.needsInputFile =
true;
195 GA.needsInputFile =
true;
196 GE.needsInputFile =
true;
197 GI.needsInputFile =
true;
198 GO.needsInputFile =
true;
199 GUI.needsInputFile =
false;
200 CLG.needsInputFile =
true;
201 B3D.needsInputFile =
true;
202 FRG.needsInputFile =
true;
203 M2G.needsInputFile =
true;
204 PY4J.needsInputFile =
false;
206 DRY.programTaskImpl =
null;
209 GA.programTaskImpl =
GARunner.class;
213 GUI.programTaskImpl =
GUI.class;
218 PY4J.programTaskImpl =
null;
227 return programTaskImpl;
240 for (
int i=0; i<
RunType.values().length; i++)
245 if (i>0 && i <
RunType.values().length-2)
246 s = s +
" '" + rt.toString() +
"' for "+rt.
description+
",";
248 s =
"'" + rt.toString() +
"' for "+rt.
description+
",";
250 s = s + last+
"'"+rt.toString()+
"' for "+rt.
description+
".";
275 return needsInputFile;
287 public static void main(String[] args)
299 System.out.println(behavior.
helpMsg);
309 }
catch (Throwable e)
312 reportError(
"Could not start J2PyServer. Hint on problem: "
313 + e.getMessage(), 1);
318 List<String> inputFiles = behavior.
cmd.getArgList();
331 if (inputFiles.size()>1)
333 reportError(
"Only one input file allowed when requesting run "
334 + behavior.
runType +
". Found " + inputFiles.size()
335 +
" files: " + inputFiles, 1);
339 if (inputFiles.size()<1)
341 reportError(
"Need an input file when requesting run "
342 + behavior.
runType +
". Found " + inputFiles.size(), 1);
343 }
else if (inputFiles.size()==1) {
344 inpFile =
new File(inputFiles.get(0));
345 wDir = inpFile.getParentFile();
348 wDir =
new File(System.getProperty(
"user.dir"));
355 EventQueue.invokeLater(
new GUI(behavior.
cmd));
358 +
"', but I found no such implementation. "
359 +
"Please, report this to the authors.", 1);
376 if (!
ProgramTask.class.isAssignableFrom(taskClass))
378 reportError(
"Attempt to create a program task for class '"
379 + taskClass.getSimpleName() +
"', but such class is not a "
380 +
"extension of '" +
ProgramTask.class.getSimpleName()
387 Constructor<?> taskBuilder = taskClass.getConstructor(File.class,
389 task = (
ProgramTask) taskBuilder.newInstance(inputFile,workDir);
390 }
catch (Exception e)
401 }
catch (InterruptedException e)
404 }
catch (ExecutionException e)
423 "File '"+ file.getAbsolutePath() +
"' not found.");
428 }
catch (Throwable t) {
435 "Could not open file '" + file.getAbsolutePath()
436 +
"' because its format is not recognized.");
452 CommandLineParser parser =
new DefaultParser();
453 CommandLine cmd =
null;
457 }
catch (ParseException e) {
459 String errMsg =
"Unable to parse command-line arguments. "
460 +
"Please, check your input! " + DENOPTIMConstants.EOL
461 +
"Details: " + e.getMessage();
462 return new Behavior(
null,
null, 1, helpMsg, errMsg);
477 if (cmd.getOptions().length==0)
486 rt =
RunType.valueOf(rts.toUpperCase());
487 }
catch (Exception e)
489 String errMsg =
"Unacceptable value for "
491 +
"'" + rts +
"'. Please, modify "
493 return new Behavior(
null,
null, 1,
null, errMsg);
500 result =
new Behavior(
null,
null, 1,
null,
501 "RunType '"+rt+
"' is not enabled from CLI. "
502 +
"Please, contacts the developers.");
506 +
"but more than zero options. Please, contact the "
511 List<String> inputFiles = cmd.getArgList();
512 for (String pathname : inputFiles)
526 HelpFormatter formatter =
new HelpFormatter();
527 StringWriter out =
new StringWriter();
528 PrintWriter pw =
new PrintWriter(out);
532 formatter.getLeftPadding(), formatter.getDescPadding(),
534 "Run without arguments to launch the graphical user "
535 +
"interface (GUI) without opening any file. ",
true);
537 return out.toString();
554 System.exit(exitCode);
566 System.out.println(behavior.
helpMsg);
579 }
catch (Exception e) {
581 System.out.println(
"StaticTaskManager had problems stopping. "
582 +
"Forcing termination.");
584 Runtime.getRuntime().halt(0);
General set of constants used in DENOPTIM.
static final String EOL
new line character
static String getStackTraceAsString(Throwable t)
Prints the stack trace of an exception into a string.
static FileFormat detectFileFormat(File inFile)
Inspects a file/folder and tries to detect if there is one of the data sources that is recognized by ...
Graphical User Interface of the DENOPTIM package.
A tool that start a Py4J gateway server that can listens to calls from Python and translate JAVA obje...
static void launch()
Starts a gateway server using this class as entry point, which then becomes the interpreter of any da...
Class handling DENOPTIM's version identifier for headers.
static final String VERSION
Version identifier (from pom.xml via Maven properties)
Represents the behavior of the program at start-up.
RunType runType
The type of run that is requested.
String errorMsg
The error message.
CommandLine cmd
The parsed command line arguments.
int exitStatus
A non-zero value means some error has occurred and the program will terminate.
String helpMsg
The help message.
static Option help
Option requesting the printing of the help message.
static CLIOptions getInstance()
Gets the singleton instance of this class.
static Option version
Option requesting only the printing of the version.
static Option run
Option controlling the type of run.
Entry point of any kind of run of the DENOPTIM program.
static void reportError(Behavior behavior)
Prints an error message on standard output, possibly after the help message, and then stops the Virtu...
static Behavior ensureFileExistsAndIsReadable(File file, Behavior behavior)
Checks the file exists and format is recognized.
static String getHelpString()
Prints the help message on a string.
static void main(String[] args)
Launches the appropriate program according to the arguments given.
static void terminate()
Stops services and halts the Virtual Machine.
static void runProgramTask(Class<?> taskClass, File inputFile, File workDir)
Creates a task for the given class.
static void reportError(String msg, int exitCode)
Prints an error message on standard output and then stops the Virtual Machine with an exit code.
static Behavior defineProgramBehavior(String[] args)
Does the processing of the application arguments and decides what the program should do.
Combinatorial exploration of the fragment space.
Programs that runs de novo design by a genetic algorithm.
Stand-alone fitness provider.
Tool to create fragments by chopping 2D/3D chemical structures.
Tool to run genetic operations in a stand-alone fashion, i.e., outside of a genetic algorithm run.
Tool for editing DGraphs.
Tool for handling lists of graphs.
Tool to perform isomorphism analysis on DGraphs.
Tool for creating DGraphs from molecules.
Builder of molecular models.
Task structure for any of the main programs in the denoptim project, such as genetic algorithm and co...
Manager for tasks submitted by the GUI.
static void submitAndWait(Task task)
Submits a task and waits for completion.
static StaticTaskManager getInstance()
Gets the singleton instance of this class.
Types of runs that can be requested to the DENOPTIM Main class.
String description
A short description of the run type.
Class<?> programTaskImpl
The implementation of ProgramTask capable of this run type.
CLG
Run a comparison of lists of graphs.
GI
Run a stand-alone test for graph isomorphism.
B3D
Run the stand-alone conversion of graph into a three-dimensional molecular model.
GO
Run a stand-alone genetic operation.
GE
Run a stand-alone graph editing task.
GA
Run the genetic algorithm with DenoptimGA.
GUI
Launch the graphical user interface denoptim.gui.GUI.
FIT
stand-alone fitness evaluation
boolean needsInputFile
Flag indicating if this run type needs any input file when called from CLI.
boolean isCLIEnabled()
Returns true if this run type can be requested from the CLI.
PY4J
Starts a listener to Python;.
Class<?> getProgramTaskImpl()
Returns the class that implements the program with this type of run.
FRG
Run a fragmentation task.
M2G
Run a conversion of molecules to graphs.
static String getRunTypesForUser()
Returns a string that contains a textual list (e.g., "A, B, and C") of the possible types that can be...
DRY
Only prints help or version and close program.
FSE
Run a combinatorial generation of candidates with FragSpaceExplorer.
boolean needsInputFile()
Returns true if this run type needs an input file when requested from CLI.
boolean isCLIEnabled
Flag indicating if this run type can be called from CLI.