altosui: Remove some debug printfs.
[fw/altos] / ao-tools / altosui / AltosFlashUI.java
1 /*
2  * Copyright © 2010 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package altosui;
19
20 import java.awt.*;
21 import java.awt.event.*;
22 import javax.swing.*;
23 import javax.swing.filechooser.FileNameExtensionFilter;
24 import javax.swing.table.*;
25 import java.io.*;
26 import java.util.*;
27 import java.text.*;
28 import java.util.prefs.*;
29 import java.util.concurrent.LinkedBlockingQueue;
30
31 import altosui.AltosHexfile;
32 import altosui.AltosFlash;
33
34 public class AltosFlashUI
35         extends JDialog
36         implements Runnable, ActionListener
37 {
38         Container       pane;
39         Box             box;
40         JLabel          serial_label;
41         JLabel          serial_value;
42         JLabel          file_label;
43         JLabel          file_value;
44         JProgressBar    pbar;
45         JButton         cancel;
46
47         File            file;
48         Thread          thread;
49         JFrame          frame;
50         AltosDevice     debug_dongle;
51         AltosFlash      flash;
52
53         public void actionPerformed(ActionEvent e) {
54                 if (e.getSource() == cancel) {
55                         abort();
56                         dispose();
57                 } else {
58                         String  cmd = e.getActionCommand();
59                         if (cmd.equals("done"))
60                                 ;
61                         else if (cmd.equals("start")) {
62                                 setVisible(true);
63                         } else {
64                                 pbar.setValue(e.getID());
65                                 pbar.setString(cmd);
66                         }
67                 }
68         }
69
70         public void run() {
71                 flash = new AltosFlash(file, debug_dongle);
72                 flash.addActionListener(this);
73                 try {
74                         flash.open();
75                         AltosRomconfigUI romconfig_ui = new AltosRomconfigUI (frame);
76
77                         romconfig_ui.set(flash.romconfig());
78                         AltosRomconfig romconfig = romconfig_ui.showDialog();
79
80                         if (romconfig != null && romconfig.valid()) {
81                                 flash.set_romconfig(romconfig);
82                                 serial_value.setText(String.format("%d",
83                                                                    flash.romconfig().serial_number));
84                                 file_value.setText(file.toString());
85                                 setVisible(true);
86                                 flash.flash();
87                                 flash = null;
88                         }
89                 } catch (FileNotFoundException ee) {
90                         JOptionPane.showMessageDialog(frame,
91                                                       "Cannot open image",
92                                                       file.toString(),
93                                                       JOptionPane.ERROR_MESSAGE);
94                 } catch (IOException e) {
95                         JOptionPane.showMessageDialog(frame,
96                                                       e.getMessage(),
97                                                       file.toString(),
98                                                       JOptionPane.ERROR_MESSAGE);
99                 } catch (InterruptedException ie) {
100                 } finally {
101                         abort();
102                 }
103                 dispose();
104         }
105
106         public void abort() {
107                 if (flash != null)
108                         flash.abort();
109         }
110
111         public void build_dialog() {
112                 GridBagConstraints c;
113                 Insets il = new Insets(4,4,4,4);
114                 Insets ir = new Insets(4,4,4,4);
115
116                 pane = getContentPane();
117                 pane.setLayout(new GridBagLayout());
118
119                 c = new GridBagConstraints();
120                 c.gridx = 0; c.gridy = 0;
121                 c.fill = GridBagConstraints.NONE;
122                 c.anchor = GridBagConstraints.LINE_START;
123                 c.insets = il;
124                 serial_label = new JLabel("Serial:");
125                 pane.add(serial_label, c);
126
127                 c = new GridBagConstraints();
128                 c.gridx = 1; c.gridy = 0;
129                 c.fill = GridBagConstraints.HORIZONTAL;
130                 c.weightx = 1;
131                 c.anchor = GridBagConstraints.LINE_START;
132                 c.insets = ir;
133                 serial_value = new JLabel("");
134                 pane.add(serial_value, c);
135
136                 c = new GridBagConstraints();
137                 c.fill = GridBagConstraints.NONE;
138                 c.gridx = 0; c.gridy = 1;
139                 c.anchor = GridBagConstraints.LINE_START;
140                 c.insets = il;
141                 file_label = new JLabel("File:");
142                 pane.add(file_label, c);
143
144                 c = new GridBagConstraints();
145                 c.fill = GridBagConstraints.HORIZONTAL;
146                 c.weightx = 1;
147                 c.gridx = 1; c.gridy = 1;
148                 c.anchor = GridBagConstraints.LINE_START;
149                 c.insets = ir;
150                 file_value = new JLabel("");
151                 pane.add(file_value, c);
152
153                 pbar = new JProgressBar();
154                 pbar.setMinimum(0);
155                 pbar.setMaximum(100);
156                 pbar.setValue(0);
157                 pbar.setString("");
158                 pbar.setStringPainted(true);
159                 pbar.setPreferredSize(new Dimension(600, 20));
160                 c = new GridBagConstraints();
161                 c.fill = GridBagConstraints.HORIZONTAL;
162                 c.anchor = GridBagConstraints.CENTER;
163                 c.gridx = 0; c.gridy = 2;
164                 c.gridwidth = GridBagConstraints.REMAINDER;
165                 Insets ib = new Insets(4,4,4,4);
166                 c.insets = ib;
167                 pane.add(pbar, c);
168
169                 cancel = new JButton("Cancel");
170                 c = new GridBagConstraints();
171                 c.fill = GridBagConstraints.NONE;
172                 c.anchor = GridBagConstraints.CENTER;
173                 c.gridx = 0; c.gridy = 3;
174                 c.gridwidth = GridBagConstraints.REMAINDER;
175                 Insets ic = new Insets(4,4,4,4);
176                 c.insets = ic;
177                 pane.add(cancel, c);
178                 cancel.addActionListener(this);
179                 pack();
180                 setLocationRelativeTo(frame);
181         }
182
183         public AltosFlashUI(JFrame in_frame) {
184                 super(in_frame, "Program Altusmetrum Device", false);
185
186                 frame = in_frame;
187
188                 build_dialog();
189
190                 debug_dongle = AltosDeviceDialog.show(frame, AltosDevice.product_any);
191
192                 if (debug_dongle == null)
193                         return;
194
195                 JFileChooser    hexfile_chooser = new JFileChooser();
196
197                 hexfile_chooser.setDialogTitle("Select Flash Image");
198                 hexfile_chooser.setFileFilter(new FileNameExtensionFilter("Flash Image", "ihx"));
199                 int returnVal = hexfile_chooser.showOpenDialog(frame);
200
201                 if (returnVal != JFileChooser.APPROVE_OPTION)
202                         return;
203
204                 file = hexfile_chooser.getSelectedFile();
205
206                 thread = new Thread(this);
207                 thread.start();
208         }
209 }