/**********************************************************************
*
* Prolog+CG : Prolog with conceptual graphs
*
* Copyright (C) 2005-2009 Ulrik Sandborg-Petersen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* This library 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 library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
*
* Website
* =======
*
* Prolog+CG has a website here:
*
* http://prologpluscg.sourceforge.net/
*
*
* Contact
* =======
*
* Please DO NOT send email to Prof. Kabbaj. Instead, all
* correspondence regarding Prolog+CG should be sent to the current
* maintainter:
*
* Ulrik Sandborg-Petersen <ulrikp{t-a}users{dot}sourceforge{|dot|}net
*
* (Email obfuscated to foil spammers).
*
*
* NO SUPPORT
* ==========
*
* Note that NEITHER Prof. KABBAJ NOR ULRIK PETERSEN WILL GIVE
* SUPPORT! No support is available.
*
* If you need help in using Prolog+CG, please check out the resources
* available at:
*
* http://prologpluscg.sourceforge.net/docs.html
*
* That page points to ample resources for learning Prolog+CG.
*
*
* Bugreports
* ==========
*
* Notwithstanding the lack of support, the maintainer will gladly
* receive bugreports and bugfixes. Please feel free to send such
* bulletins to the address given above.
*
*
*/
package PrologPlusCG;
import java.util.Hashtable;
import PrologPlusCG.gui.PrologPlusCGFrame;
import PrologPlusCG.prolog.PPCGEnv;
public class PrologPlusCGCLI {
// Construct the application
PPCGEnv env = null;
PrologPlusCGFrame prologFrame = null;
public PrologPlusCGCLI() {
env = new PPCGEnv();
PPCGIO_CLI io = new PPCGIO_CLI(env);
env.io = io;
prologFrame = new PrologPlusCGFrame(env, false);
}
private void runCLI(String[] args) {
prologFrame.LoadFile(args[0]);
java.util.Vector<Hashtable<String, String> > vec = prologFrame.Resolve(args[1], true);
if (vec != null)
{
for (int i = 0; i < vec.size(); ++i)
{
System.out.println(vec.get(i).toString());
}
} else {
System.out.println("No output.");
}
prologFrame.PurgeMemory();
}
public static void main(String[] args) {
if (args.length != 2)
{
System.err.println("Must have exactly two arguments: PrologFile \"Goal\".");
} else {
try {
PrologPlusCGCLI cli = new PrologPlusCGCLI();
cli.runCLI(args);
} catch (Throwable e) {
e.printStackTrace();
}
}
}
}