I am relatively new to Java and I am trying to write a simple program that displays a read-only JFrame, containing a JTable and displaying live stock prices that are in constant change.

To try and keep the code tidy, I keep the data and columnNames in a subclass of AbstractTableModel which is then used to construct the JTable. Then I need another class to start the session with the stock price live feed server, query the server and receive the price updates as these change. This requires to keep a while statement open so I have to make the class that communicates with the server and retrieves the prices implement Runnable so that I can instantiate it in the TableModel constructor and run it on a separate thread. To update the data in the TableModel I make this price server client class an inner class of the TableModel class and simply use the setValueAt method within the while statement to update the data when it changes. Lastly, I make TableModel implement the TableModelListener interface and make setValueAt use fireTableCellUpdated so that the JTable can display the changes to the TableModel data.

However, I would like to have the server client class outside of the TableModel so I can use it in other code as a reusable object and to keep the server client code separate from the TableModel one for when I need to make changes to either code or expand it. How do I do this but still manage to get the TableModel to update its data everytime the data on the the separate server client object changes? I imagine it will be using Listeners but I am a bit confused and don't know how/which ones to use? Any ideas?

link|improve this question
+1 for separation :-) For ideas, see f.i. java.sun.com/products/jfc/tsc/articles/threads/threads3.html - the articles are old (api has changed, f.i.), the basic approaches still hold and can be adjusted as required – kleopatra Nov 11 '11 at 11:03
feedback

1 Answer

maybe this code can help you with your Lab

enter image description here

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import javax.swing.*;
import javax.swing.event.TableModelEvent;
import javax.swing.event.TableModelListener;
import javax.swing.table.*;

//http://stackoverflow.com/questions/8082801/java-tablemodellistener-and-live-feed-listener/8085360#8085360 
public class TableIcon extends JFrame implements Runnable {

    private static final long serialVersionUID = 1L;
    private JTable table;
    private JLabel myLabel = new JLabel("waiting");
    private JLabel lastRunLabel = new JLabel("waiting");
    private int pHeight = 40;
    private boolean runProcess = true;
    private int count = 0;
    private SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss");
    private ScheduledExecutorService scheduler;
    private AccurateScheduledRunnable periodic;
    private ScheduledFuture<?> periodicMonitor;
    private Executor executor = Executors.newCachedThreadPool();
    private Date dateLast;
    private Date dateNext;
    private Date dateRun;
    private int taskPeriod = 1;
    private int dayCount = 0;
    private int hourCount = 0;
    private int minuteCount = 0;
    private int secondCount = 0;
    private Timer timerRun;
    private int delay = 3000;
    private boolean bolo = false;
    private ImageIcon errorIcon = (ImageIcon) UIManager.getIcon("OptionPane.errorIcon");
    private ImageIcon infoIcon = (ImageIcon) UIManager.getIcon("OptionPane.informationIcon");
    private ImageIcon warnIcon = (ImageIcon) UIManager.getIcon("OptionPane.warningIcon");
    private String[] columnNames = {"Ticker", "ISIN", "Description",
        "Price", "Change", "H/L", "Previous Price"};
    private Object[][] data = {
        {"851 457", "US55667788101", "MB USD", 150.25, 0.00, errorIcon, 0.00,},
        {"851 457", "DE55667788101", "MB EUR", 111.22, 0.00, infoIcon, 0.00,},
        {"851 457", "JP55667788101", "MB JPY", 54000.00, 0.00, warnIcon, 0.00,},};
    private DefaultTableModel model = new DefaultTableModel(data, columnNames);

    public TableIcon() {
        table = new JTable(model) {

            private static final long serialVersionUID = 1L;

            @Override
            public Class getColumnClass(int column) {
                return getValueAt(0, column).getClass();
            }
        };
        model.addTableModelListener(new TableModelListener() {

            @Override
            public void tableChanged(TableModelEvent tme) {
                if (tme.getType() == TableModelEvent.UPDATE) {
                    System.out.println("");
                    System.out.println("Cell " + tme.getFirstRow() + ", "
                            + tme.getColumn() + " changed. The new value: "
                            + model.getValueAt(tme.getFirstRow(),
                            tme.getColumn()));
                    if (tme.getColumn() == 3) {
                        double dbl = ((Double) table.getModel().getValueAt(tme.getLastRow(), 3))
                                - ((Double) table.getModel().getValueAt(tme.getLastRow(), 6));
                        table.getModel().setValueAt(dbl, tme.getLastRow(), 4);
                    }
                }
            }
        });
        table.setRowHeight(pHeight);
        table.setPreferredScrollableViewportSize(table.getPreferredSize());
        JScrollPane scrollPane = new JScrollPane(table);
        add(scrollPane, BorderLayout.CENTER);
        lastRunLabel.setPreferredSize(new Dimension(200, pHeight));
        lastRunLabel.setHorizontalAlignment(SwingConstants.CENTER);
        add(lastRunLabel, BorderLayout.NORTH);
        myLabel.setPreferredSize(new Dimension(200, pHeight));
        myLabel.setHorizontalAlignment(SwingConstants.CENTER);
        add(myLabel, BorderLayout.SOUTH);
        scheduler = Executors.newSingleThreadScheduledExecutor();
        periodic = new AccurateScheduledRunnable() {

            private final int ALLOWED_TARDINESS = 200;
            private int countRun = 0;
            private int countCalled = 0;

            @Override
            public void run() {
                countCalled++;
                if (this.getExecutionTime() < ALLOWED_TARDINESS) {
                    countRun++;
                    executor.execute(new TableIcon.MyTask("GetCurrTime")); // non on EDT
                }
            }
        };
        periodicMonitor = scheduler.scheduleAtFixedRate(periodic, 0,
                taskPeriod, TimeUnit.MINUTES);
        periodic.setThreadMonitor(periodicMonitor);
        new Thread(this).start();
        prepareStartShedule();
    }

    private void prepareStartShedule() {
        timerRun = new javax.swing.Timer(delay, startCycle());
        timerRun.setRepeats(true);
        timerRun.start();
    }

    private Action startCycle() {
        return new AbstractAction("Start Shedule") {

            private static final long serialVersionUID = 1L;

            @Override
            public void actionPerformed(ActionEvent e) {
                executor.execute(new TableIcon.MyTask("StartShedule")); // non on EDT
            }
        };
    }

    private void distAppInfo() {
        Runnable doRun = new Runnable() {

            @Override
            public void run() {
                dateNext = new java.util.Date();
                dateLast = new java.util.Date();
                long tme = dateNext.getTime();
                tme += (taskPeriod * 60) * 1000;
                dateNext.setTime(tme);
                lastRunLabel.setText("Last : " + sdf.format(dateLast)
                        + " / Next : " + sdf.format(dateNext));
            }
        };
        SwingUtilities.invokeLater(doRun);
    }

    private void changeLabelColor() {
        Runnable doRun = new Runnable() {

            @Override
            public void run() {
                Color clr = lastRunLabel.getForeground();
                if (clr == Color.red) {
                    lastRunLabel.setForeground(Color.blue);
                } else {
                    lastRunLabel.setForeground(Color.red);
                }
            }
        };
        SwingUtilities.invokeLater(doRun);
    }

    private void changeTableValues() {
        Runnable doRun = new Runnable() {

            @Override
            public void run() {
                if (bolo) {
                    bolo = false;
                    table.getModel().setValueAt(table.getModel().getValueAt(0, 3), 0, 6);
                    table.getModel().setValueAt(table.getModel().getValueAt(1, 3), 1, 6);
                    table.getModel().setValueAt(table.getModel().getValueAt(2, 3), 2, 6);

                    table.getModel().setValueAt(149.25, 0, 3);
                    table.getModel().setValueAt(112.05, 1, 3);
                    table.getModel().setValueAt(53900.00, 2, 3);
                } else {
                    bolo = true;
                    table.getModel().setValueAt(table.getModel().getValueAt(0, 3), 0, 6);
                    table.getModel().setValueAt(table.getModel().getValueAt(1, 3), 1, 6);
                    table.getModel().setValueAt(table.getModel().getValueAt(2, 3), 2, 6);

                    table.getModel().setValueAt(155.25, 0, 3);
                    table.getModel().setValueAt(99.22, 1, 3);
                    table.getModel().setValueAt(58000.00, 2, 3);
                }
            }
        };
        SwingUtilities.invokeLater(doRun);
    }

    @Override
    public void run() {
        while (runProcess) {
            try {
                Thread.sleep(5000);
            } catch (Exception e) {
                e.printStackTrace();
            }
            executor.execute(new TableIcon.MyTask("ChangeIconLabel")); // non on EDT
        }
    }

    private void setIconLabel() {
        SwingUtilities.invokeLater(new Runnable() {

            @Override
            public void run() {
                String text = "";
                dateRun = new java.util.Date();
                long tme = dateRun.getTime();
                long she = periodicMonitor.getDelay(TimeUnit.SECONDS);
                dayCount = (int) (she / (24 * 60 * 60));
                hourCount = (int) (she / (60 * 60));
                minuteCount = (int) (she / (60));
                secondCount = (int) she;
                int hourss = hourCount;
                int minutess = minuteCount;
                if (dayCount > 0) {
                    hourCount -= (dayCount * 24);
                    minuteCount -= ((dayCount * 24 * 60) + (hourCount * 60));
                    secondCount -= (minutess * 60);
                    //System.out.println(" Days : " + dayCount + "  ,Hours : " 
                    //+ hourCount + "  , Minutes : " + minuteCount + "  , Seconds : " + secondCount);
                    text = ("  " + dayCount + " Days  " + hourCount + " h : "
                            + minuteCount + " m : " + secondCount + " s");
                } else if (hourCount > 0) {
                    minuteCount -= ((hourss * 60));
                    secondCount -= (minutess * 60);
                    //System.out.println(" Hours : " + hourCount + "  , 
                    //Minutes : " + minuteCount + "  , Seconds : " + secondCount);
                    text = ("  " + hourCount + " h : " + minuteCount
                            + " m : " + secondCount + " s");
                } else if (minuteCount > 0) {
                    secondCount -= (minutess * 60);
                    //System.out.println(" Minutes : " + minuteCount + " 
                    // , Seconds : " + secondCount);
                    text = ("  " + minuteCount + " m : " + secondCount + " s");
                } else {
                    //System.out.println(" Seconds : " + secondCount);
                    text = ("  " + secondCount + " s");
                }
                tme += she * 1000;
                ImageIcon myIcon = (ImageIcon) table.getModel().getValueAt(count, 5);
                String lbl = "Row at :  " + count + "  Remains : " + text;
                myLabel.setIcon(myIcon);
                myLabel.setText(lbl);
                count++;
                if (count > 2) {
                    count = 0;
                }
            }
        });
    }

    public static void main(String[] args) {
        TableIcon frame = new TableIcon();
        frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
        frame.setLocation(150, 150);
        frame.pack();
        frame.setVisible(true);
    }

    private class MyTask extends SwingWorker<Void, Integer> {

        private String str;
        private String namePr;

        MyTask(String str) {
            this.str = str;
            addPropertyChangeListener(new SwingWorkerCompletionWaiter(str, namePr));
        }

        @Override
        protected Void doInBackground() throws Exception {
            if (str.equals("GetCurrTime")) {
                distAppInfo();
            } else if (str.equals("ChangeIconLabel")) {
                setIconLabel();
            } else if (str.equals("StartShedule")) {
                changeTableValues();
            }
            return null;
        }

        @Override
        protected void process(List<Integer> progress) {
            //System.out.println(str + " " + progress.get(progress.size() - 1));
        }

        @Override
        protected void done() {
            if (str.equals("GetCurrTime")) {
                changeLabelColor();
            } else if (str.equals("ChangeIconLabel")) {
                //setIconLabel();
            } else if (str.equals("StartShedule")) {
                //changeTableValues();
            }
        }
    }

    private class SwingWorkerCompletionWaiter implements PropertyChangeListener {

        private String str;
        private String namePr;

        SwingWorkerCompletionWaiter(String str, String namePr) {
            this.str = str;
            this.namePr = namePr;
        }

        SwingWorkerCompletionWaiter(String namePr) {
            this.namePr = namePr;
        }

        @Override
        public void propertyChange(PropertyChangeEvent event) {
            if ("state".equals(event.getPropertyName())
                    && SwingWorker.StateValue.DONE == event.getNewValue()) {
                System.out.println("Thread Status with Name :"
                        + str + ", SwingWorker Status is " + event.getNewValue());
            } else if ("state".equals(event.getPropertyName())
                    && SwingWorker.StateValue.PENDING == event.getNewValue()) {
                System.out.println("Thread Status with Mame :"
                        + str + ", SwingWorker Status is " + event.getNewValue());
            } else if ("state".equals(event.getPropertyName())
                    && SwingWorker.StateValue.STARTED == event.getNewValue()) {
                System.out.println("Thread Status with Name :"
                        + str + ", SwingWorker Status is " + event.getNewValue());
            } else {
                System.out.println("SomeThing Wrong happends with Thread Status with Name :" + str);
            }
        }
    }
}

abstract class AccurateScheduledRunnable implements Runnable {

    private ScheduledFuture<?> thisThreadsMonitor;

    public void setThreadMonitor(ScheduledFuture<?> monitor) {
        this.thisThreadsMonitor = monitor;
    }

    protected long getExecutionTime() {
        long delay = -1 * thisThreadsMonitor.getDelay(TimeUnit.MILLISECONDS);
        return delay;
    }
}
link|improve this answer
Thanks a lot for your prompt reply, mKorbel! Admittedly, the code contains a lot of stuff I am not familiar with but I'll go over it, try to figure it out and let you know. – NachESP Nov 11 '11 at 8:09
nonono - you never change the notifier in receiving a change event. As to probable effects, think: nasty loops. As to code sanity, think: indecent intimacy. It's the task of the model itself to internally update related values if necessary. – kleopatra Nov 11 '11 at 10:48
@kleopatra are you only think or suggesting move these changes to separate thread, you suprised me with your comment :-), because I don't have good experiences and I hate too pick one, two ... Events and then delaying some of Events/Action from Listener, for what, why reason this Listener exist, what is correct way to update another 2 columns by depends value from one Column, – mKorbel Nov 11 '11 at 11:00
as I already said: it's model's task :-) – kleopatra Nov 11 '11 at 11:04
I tried to find something more than you wrote here, no idea why not use that this way, good stable Listener without bugParade in Swing, Substance and SwingX, can you be little bit concrete ... – mKorbel Nov 11 '11 at 13:38
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.