1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-06-16 07:57:06 -07:00
Abacus/src/main/java/org/nwapw/abacus/Abacus.java

169 lines
5.2 KiB
Java
Raw Normal View History

2017-07-24 10:04:00 -07:00
package org.nwapw.abacus;
2017-07-28 21:37:47 -07:00
import org.nwapw.abacus.config.ConfigurationObject;
import org.nwapw.abacus.number.NaiveNumber;
import org.nwapw.abacus.number.NumberInterface;
import org.nwapw.abacus.parsing.LexerTokenizer;
import org.nwapw.abacus.parsing.ShuntingYardParser;
import org.nwapw.abacus.parsing.TreeBuilder;
import org.nwapw.abacus.plugin.ClassFinder;
import org.nwapw.abacus.plugin.PluginManager;
2017-07-28 15:18:23 -07:00
import org.nwapw.abacus.plugin.StandardPlugin;
import org.nwapw.abacus.tree.NumberReducer;
import org.nwapw.abacus.tree.TreeNode;
import org.nwapw.abacus.window.Window;
import javax.swing.*;
2017-07-28 21:37:47 -07:00
import java.io.File;
2017-07-28 11:17:54 -07:00
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
/**
* The main calculator class. This is responsible
* for piecing together all of the components, allowing
* their interaction with each other.
*/
public class Abacus {
2017-07-24 10:04:00 -07:00
/**
* The default implementation to use for the number representation.
*/
public static final Class<? extends NumberInterface> DEFAULT_NUMBER = NaiveNumber.class;
2017-07-28 21:37:47 -07:00
/**
* The file used for saving and loading configuration.
*/
public static final File CONFIG_FILE = new File("config.toml");
2017-07-28 21:37:47 -07:00
/**
* The plugin manager responsible for
* loading and unloading plugins,
* and getting functions from them.
*/
private PluginManager pluginManager;
/**
* The reducer used to evaluate the tree.
*/
private NumberReducer numberReducer;
2017-07-28 21:37:47 -07:00
/**
* The configuration loaded from a file.
*/
private ConfigurationObject configuration;
/**
* The tree builder used to construct a tree
* from a string.
*/
private TreeBuilder treeBuilder;
/**
* Creates a new instance of the Abacus calculator.
*/
2017-07-30 21:11:32 -07:00
public Abacus() {
pluginManager = new PluginManager();
numberReducer = new NumberReducer(this);
2017-07-28 21:37:47 -07:00
configuration = new ConfigurationObject(CONFIG_FILE);
configuration.save(CONFIG_FILE);
LexerTokenizer lexerTokenizer = new LexerTokenizer();
ShuntingYardParser shuntingYardParser = new ShuntingYardParser(this);
treeBuilder = new TreeBuilder<>(lexerTokenizer, shuntingYardParser);
pluginManager.addListener(lexerTokenizer);
pluginManager.addListener(shuntingYardParser);
pluginManager.addInstantiated(new StandardPlugin(pluginManager));
2017-07-28 11:17:54 -07:00
try {
2017-07-28 14:21:43 -07:00
ClassFinder.loadJars("plugins")
.forEach(plugin -> pluginManager.addClass(plugin));
} catch (IOException | ClassNotFoundException e) {
2017-07-28 11:17:54 -07:00
e.printStackTrace();
}
pluginManager.load();
}
2017-07-30 21:11:32 -07:00
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | UnsupportedLookAndFeelException | IllegalAccessException e) {
e.printStackTrace();
}
new Window(new Abacus()).setVisible(true);
}
/**
* Gets the current tree builder.
2017-07-30 21:11:32 -07:00
*
* @return the main tree builder in this abacus instance.
*/
public TreeBuilder getTreeBuilder() {
return treeBuilder;
}
/**
* Gets the current plugin manager,
2017-07-30 21:11:32 -07:00
*
* @return the plugin manager in this abacus instance.
*/
public PluginManager getPluginManager() {
return pluginManager;
}
/**
* Get the reducer that is responsible for transforming
* an expression into a number.
2017-07-30 21:11:32 -07:00
*
* @return the number reducer in this abacus instance.
*/
public NumberReducer getNumberReducer() {
return numberReducer;
}
2017-07-28 21:37:47 -07:00
/**
* Gets the configuration object associated with this instance.
2017-07-30 21:11:32 -07:00
*
2017-07-28 21:37:47 -07:00
* @return the configuration object.
*/
public ConfigurationObject getConfiguration() {
return configuration;
}
/**
* Parses a string into a tree structure using the main
* tree builder.
2017-07-30 21:11:32 -07:00
*
* @param input the input string to parse
* @return the resulting tree, null if the tree builder or the produced tree are null.
*/
2017-07-30 21:11:32 -07:00
public TreeNode parseString(String input) {
return treeBuilder.fromString(input);
}
/**
* Evaluates the given tree using the main
* number reducer.
2017-07-30 21:11:32 -07:00
*
* @param tree the tree to reduce, must not be null.
* @return the resulting number, or null of the reduction failed.
*/
2017-07-30 21:11:32 -07:00
public NumberInterface evaluateTree(TreeNode tree) {
return tree.reduce(numberReducer);
}
2017-07-30 14:59:20 -07:00
/**
* Creates a number from a string.
2017-07-30 21:11:32 -07:00
*
2017-07-30 14:59:20 -07:00
* @param numberString the string to create the number from.
* @return the resulting number.
*/
2017-07-30 21:11:32 -07:00
public NumberInterface numberFromString(String numberString) {
Class<? extends NumberInterface> toInstantiate =
pluginManager.numberFor(configuration.getNumberImplementation());
2017-07-30 21:11:32 -07:00
if (toInstantiate == null) toInstantiate = DEFAULT_NUMBER;
try {
return toInstantiate.getConstructor(String.class).newInstance(numberString);
} catch (InstantiationException | IllegalAccessException | NoSuchMethodException | InvocationTargetException e) {
e.printStackTrace();
}
return null;
}
2017-07-24 10:04:00 -07:00
}