/*
* Copyright 2011 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.drools.benchmark;
import org.drools.benchmark.manners.MannersBenchmark;
import org.drools.benchmark.waltz.WaltzBenchmark;
import org.drools.benchmark.waltzdb.WaltzDbBenchmark;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
/**
* Warning: Manners benchmark is working (producing the correct result), but it performs a
* breadth first search instead of a depth first one as it could be expected to do.
* At the moment it is not possible to specify the type of tree search in drools.
*/
public class DroolsBenchmarkExamplesApp extends JFrame {
public static void main(String[] args) {
DroolsBenchmarkExamplesApp droolsBenchmarkExamplesApp = new DroolsBenchmarkExamplesApp();
droolsBenchmarkExamplesApp.pack();
droolsBenchmarkExamplesApp.setVisible(true);
}
public DroolsBenchmarkExamplesApp() {
super("JBoss BRMS Benchmark examples");
setContentPane(createContentPane());
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
private Container createContentPane() {
JPanel contentPane = new JPanel(new GridLayout(0, 1));
contentPane.add(new JLabel("Which benchmark do you want to see in the output?"));
contentPane.add(new JButton(new AbstractAction("MannersBenchmark") {
public void actionPerformed(ActionEvent e) {
MannersBenchmark.main(new String[0]);
}
}));
contentPane.add(new JButton(new AbstractAction("WaltzBenchmark") {
public void actionPerformed(ActionEvent e) {
WaltzBenchmark.main(new String[0]);
}
}));
contentPane.add(new JButton(new AbstractAction("WaltzDbBenchmark") {
public void actionPerformed(ActionEvent e) {
WaltzDbBenchmark.main(new String[0]);
}
}));
return contentPane;
}
}