b88a16b35b77bf6725e0091c064dbe2c4a0118c2
[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                         if (!flash.check_rom_config()) {
76                                 AltosRomconfigUI romconfig_ui = new AltosRomconfigUI (frame);
77                                 romconfig_ui.showDialog();
78                                 AltosRomconfig romconfig = romconfig_ui.romconfig();
79                                 if (romconfig == null)
80                                         return;
81                                 flash.set_romconfig(romconfig);
82                         }
83                         serial_value.setText(String.format("%d",
84                                                            flash.romconfig().serial_number));
85                         file_value.setText(file.toString());
86                         setVisible(true);
87                         flash.flash();
88                 } catch (FileNotFoundException ee) {
89                         JOptionPane.showMessageDialog(frame,
90                                                       "Cannot open image",
91                                                       file.toString(),
92                                                       JOptionPane.ERROR_MESSAGE);
93                 } catch (IOException e) {
94                         JOptionPane.showMessageDialog(frame,
95                                                       e.getMessage(),
96                                                       file.toString(),
97                                                       JOptionPane.ERROR_MESSAGE);
98                 } catch (InterruptedException ie) {
99                 }
100                 dispose();
101         }
102
103         public void abort() {
104                 if (flash != null)
105                         flash.abort();
106         }
107
108         public void build_dialog() {
109                 GridBagConstraints c;
110                 Insets il = new Insets(4,4,4,4);
111                 Insets ir = new Insets(4,4,4,4);
112
113                 pane = getContentPane();
114                 pane.setLayout(new GridBagLayout());
115
116                 c = new GridBagConstraints();
117                 c.gridx = 0; c.gridy = 0;
118                 c.fill = GridBagConstraints.NONE;
119                 c.anchor = GridBagConstraints.LINE_START;
120                 c.insets = il;
121                 serial_label = new JLabel("Serial:");
122                 pane.add(serial_label, c);
123
124                 c = new GridBagConstraints();
125                 c.gridx = 1; c.gridy = 0;
126                 c.fill = GridBagConstraints.HORIZONTAL;
127                 c.weightx = 1;
128                 c.anchor = GridBagConstraints.LINE_START;
129                 c.insets = ir;
130                 serial_value = new JLabel("");
131                 pane.add(serial_value, c);
132
133                 c = new GridBagConstraints();
134                 c.fill = GridBagConstraints.NONE;
135                 c.gridx = 0; c.gridy = 1;
136                 c.anchor = GridBagConstraints.LINE_START;
137                 c.insets = il;
138                 file_label = new JLabel("File:");
139                 pane.add(file_label, c);
140
141                 c = new GridBagConstraints();
142                 c.fill = GridBagConstraints.HORIZONTAL;
143                 c.weightx = 1;
144                 c.gridx = 1; c.gridy = 1;
145                 c.anchor = GridBagConstraints.LINE_START;
146                 c.insets = ir;
147                 file_value = new JLabel("");
148                 pane.add(file_value, c);
149
150                 pbar = new JProgressBar();
151                 pbar.setMinimum(0);
152                 pbar.setMaximum(100);
153                 pbar.setValue(0);
154                 pbar.setString("");
155                 pbar.setStringPainted(true);
156                 pbar.setPreferredSize(new Dimension(600, 20));
157                 c = new GridBagConstraints();
158                 c.fill = GridBagConstraints.HORIZONTAL;
159                 c.anchor = GridBagConstraints.CENTER;
160                 c.gridx = 0; c.gridy = 2;
161                 c.gridwidth = GridBagConstraints.REMAINDER;
162                 Insets ib = new Insets(4,4,4,4);
163                 c.insets = ib;
164                 pane.add(pbar, c);
165
166                 cancel = new JButton("Cancel");
167                 c = new GridBagConstraints();
168                 c.fill = GridBagConstraints.NONE;
169                 c.anchor = GridBagConstraints.CENTER;
170                 c.gridx = 0; c.gridy = 3;
171                 c.gridwidth = GridBagConstraints.REMAINDER;
172                 Insets ic = new Insets(4,4,4,4);
173                 c.insets = ic;
174                 pane.add(cancel, c);
175                 cancel.addActionListener(this);
176                 pack();
177                 setLocationRelativeTo(frame);
178         }
179
180         public AltosFlashUI(JFrame in_frame) {
181                 super(in_frame, "Program Altusmetrum Device", false);
182
183                 frame = in_frame;
184
185                 build_dialog();
186
187                 debug_dongle = AltosDeviceDialog.show(frame, AltosDevice.Any);
188
189                 if (debug_dongle == null)
190                         return;
191
192                 JFileChooser    hexfile_chooser = new JFileChooser();
193
194                 hexfile_chooser.setDialogTitle("Select Flash Image");
195                 hexfile_chooser.setFileFilter(new FileNameExtensionFilter("Flash Image", "ihx"));
196                 int returnVal = hexfile_chooser.showOpenDialog(frame);
197
198                 if (returnVal != JFileChooser.APPROVE_OPTION)
199                         return;
200
201                 file = hexfile_chooser.getSelectedFile();
202
203                 thread = new Thread(this);
204                 thread.start();
205         }
206 }