b72dfdf49757ae65dce59cf64b6d6a974e91e6ae
[fw/altos] / altosuilib / AltosEepromMonitorUI.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 org.altusmetrum.altosuilib_3;
19
20 import java.awt.*;
21 import java.awt.event.*;
22 import javax.swing.*;
23 import org.altusmetrum.altoslib_5.*;
24
25 public class AltosEepromMonitorUI extends AltosUIDialog implements AltosEepromMonitor {
26         JFrame          owner;
27         Container       pane;
28         Box             box;
29         JLabel          serial_label;
30         JLabel          flight_label;
31         JLabel          file_label;
32         JLabel          serial_value;
33         JLabel          flight_value;
34         JLabel          file_value;
35         JButton         cancel;
36         JProgressBar    pbar;
37         int             min_state, max_state;
38         ActionListener  listener;
39
40         static final int        progress_max = 10000;
41
42         public AltosEepromMonitorUI(JFrame owner) {
43                 super (owner, "Download Flight Data", false);
44
45                 this.owner = owner;
46
47                 GridBagConstraints c;
48                 Insets il = new Insets(4,4,4,4);
49                 Insets ir = new Insets(4,4,4,4);
50
51                 pane = getContentPane();
52                 pane.setLayout(new GridBagLayout());
53
54                 c = new GridBagConstraints();
55                 c.gridx = 0; c.gridy = 0;
56                 c.fill = GridBagConstraints.NONE;
57                 c.anchor = GridBagConstraints.LINE_START;
58                 c.insets = il;
59                 serial_label = new JLabel("Serial:");
60                 pane.add(serial_label, c);
61
62                 c = new GridBagConstraints();
63                 c.gridx = 1; c.gridy = 0;
64                 c.fill = GridBagConstraints.HORIZONTAL;
65                 c.weightx = 1;
66                 c.anchor = GridBagConstraints.LINE_START;
67                 c.insets = ir;
68                 serial_value = new JLabel("");
69                 pane.add(serial_value, c);
70
71                 c = new GridBagConstraints();
72                 c.fill = GridBagConstraints.NONE;
73                 c.gridx = 0; c.gridy = 1;
74                 c.anchor = GridBagConstraints.LINE_START;
75                 c.insets = il;
76                 flight_label = new JLabel("Flight:");
77                 pane.add(flight_label, c);
78
79                 c = new GridBagConstraints();
80                 c.fill = GridBagConstraints.HORIZONTAL;
81                 c.weightx = 1;
82                 c.gridx = 1; c.gridy = 1;
83                 c.anchor = GridBagConstraints.LINE_START;
84                 c.insets = ir;
85                 flight_value = new JLabel("");
86                 pane.add(flight_value, c);
87
88                 c = new GridBagConstraints();
89                 c.fill = GridBagConstraints.NONE;
90                 c.gridx = 0; c.gridy = 2;
91                 c.anchor = GridBagConstraints.LINE_START;
92                 c.insets = il;
93                 file_label = new JLabel("File:");
94                 pane.add(file_label, c);
95
96                 c = new GridBagConstraints();
97                 c.fill = GridBagConstraints.HORIZONTAL;
98                 c.weightx = 1;
99                 c.gridx = 1; c.gridy = 2;
100                 c.anchor = GridBagConstraints.LINE_START;
101                 c.insets = ir;
102                 file_value = new JLabel("");
103                 pane.add(file_value, c);
104
105                 pbar = new JProgressBar();
106                 pbar.setMinimum(0);
107                 pbar.setMaximum(progress_max);
108                 pbar.setValue(0);
109                 pbar.setString("startup");
110                 pbar.setStringPainted(true);
111                 pbar.setPreferredSize(new Dimension(600, 20));
112                 c = new GridBagConstraints();
113                 c.fill = GridBagConstraints.HORIZONTAL;
114                 c.anchor = GridBagConstraints.CENTER;
115                 c.gridx = 0; c.gridy = 3;
116                 c.gridwidth = GridBagConstraints.REMAINDER;
117                 Insets ib = new Insets(4,4,4,4);
118                 c.insets = ib;
119                 pane.add(pbar, c);
120
121
122                 cancel = new JButton("Cancel");
123                 c = new GridBagConstraints();
124                 c.fill = GridBagConstraints.NONE;
125                 c.anchor = GridBagConstraints.CENTER;
126                 c.gridx = 0; c.gridy = 4;
127                 c.gridwidth = GridBagConstraints.REMAINDER;
128                 Insets ic = new Insets(4,4,4,4);
129                 c.insets = ic;
130                 pane.add(cancel, c);
131
132                 pack();
133                 setLocationRelativeTo(owner);
134         }
135
136         public void addActionListener(ActionListener l) {
137                 listener = l;
138         }
139
140         public void set_states(int min_state, int max_state) {
141                 this.min_state = min_state;
142                 this.max_state = max_state;
143         }
144
145         public void set_thread(Thread in_eeprom_thread) {
146                 final Thread eeprom_thread = in_eeprom_thread;
147                 cancel.addActionListener(new ActionListener() {
148                                 public void actionPerformed(ActionEvent e) {
149                                         if (eeprom_thread != null)
150                                                 eeprom_thread.interrupt();
151                                 }
152                         });
153         }
154
155         public void start() {
156                 setVisible(true);
157         }
158
159         private void set_value_internal(String state_name, int state, int state_block, int block) {
160                 double  pos;
161                 String  s;
162
163                 if (min_state == AltosLib.ao_flight_invalid) {
164                         int     lblock = block;
165                         if (lblock > 1000)
166                                 lblock = 1000;
167                         pos = lblock / 1000.0;
168                         s = String.format("block %d", block);
169                 } else {
170                         if (state_block > 100)
171                                 state_block = 100;
172                         if (state < min_state) state = min_state;
173                         if (state >= max_state) state = max_state - 1;
174                         state -= min_state;
175
176                         int     nstate = max_state - min_state;
177
178                         double  spos = (double) (state - min_state) / (double) nstate;
179                         double  bpos = state_block / 100.0;
180
181                         pos = spos + bpos / nstate;
182
183                         s = String.format("block %d state %s", block, state_name);
184                 }
185
186                 pbar.setString(s);
187                 pbar.setValue((int) (pos * progress_max));
188         }
189
190         public void set_value(String in_state_name, int in_state, int in_state_block, int in_block) {
191                 final String state_name = in_state_name;
192                 final int state = in_state;
193                 final int state_block = in_state_block;
194                 final int block = in_block;
195                 Runnable r = new Runnable() {
196                                 public void run() {
197                                         try {
198                                                 set_value_internal(state_name, state, state_block, block);
199                                         } catch (Exception ex) {
200                                         }
201                                 }
202                         };
203                 SwingUtilities.invokeLater(r);
204         }
205
206         private void set_serial_internal(int serial) {
207                 serial_value.setText(String.format("%d", serial));
208         }
209
210         public void set_serial(int in_serial) {
211                 final int serial = in_serial;
212                 Runnable r = new Runnable() {
213                                 public void run() {
214                                         try {
215                                                 set_serial_internal(serial);
216                                         } catch (Exception ex) {
217                                         }
218                                 }
219                         };
220                 SwingUtilities.invokeLater(r);
221         }
222
223         private void set_flight_internal(int flight) {
224                 flight_value.setText(String.format("%d", flight));
225         }
226
227         public void set_flight(int in_flight) {
228                 final int flight = in_flight;
229                 Runnable r = new Runnable() {
230                                 public void run() {
231                                         try {
232                                                 set_flight_internal(flight);
233                                         } catch (Exception ex) {
234                                         }
235                                 }
236                         };
237                 SwingUtilities.invokeLater(r);
238         }
239
240         private void set_filename_internal(String filename) {
241                 file_value.setText(String.format("%s", filename));
242         }
243
244         public void set_filename(String in_filename) {
245                 final String filename = in_filename;
246                 Runnable r = new Runnable() {
247                                 public void run() {
248                                         try {
249                                                 set_filename_internal(filename);
250                                         } catch (Exception ex) {
251                                         }
252                                 }
253                         };
254                 SwingUtilities.invokeLater(r);
255         }
256
257         private void done_internal(boolean success) {
258                 listener.actionPerformed(new ActionEvent(this,
259                                                          success ? 1 : 0,
260                                                          "download"));
261                 setVisible(false);
262                 dispose();
263         }
264
265         public void done(boolean in_success) {
266                 final boolean success = in_success;
267                 Runnable r = new Runnable() {
268                                 public void run() {
269                                         try {
270                                                 done_internal(success);
271                                         } catch (Exception ex) {
272                                         }
273                                 }
274                         };
275                 SwingUtilities.invokeLater(r);
276         }
277
278         private void reset_internal() {
279                 set_value_internal("startup",min_state,0, 0);
280                 set_flight_internal(0);
281                 set_filename_internal("");
282         }
283
284         public void reset() {
285                 Runnable r = new Runnable() {
286                                 public void run() {
287                                         try {
288                                                 reset_internal();
289                                         } catch (Exception ex) {
290                                         }
291                                 }
292                         };
293                 SwingUtilities.invokeLater(r);
294         }
295
296         private void show_message_internal(String message, String title, int message_type) {
297                 int joption_message_type = JOptionPane.ERROR_MESSAGE;
298
299                 switch (message_type) {
300                 case INFO_MESSAGE:
301                         joption_message_type = JOptionPane.INFORMATION_MESSAGE;
302                         break;
303                 case WARNING_MESSAGE:
304                         joption_message_type = JOptionPane.WARNING_MESSAGE;
305                         break;
306                 case ERROR_MESSAGE:
307                         joption_message_type = JOptionPane.ERROR_MESSAGE;
308                         break;
309                 }
310                 JOptionPane.showMessageDialog(owner,
311                                               message,
312                                               title,
313                                               joption_message_type);
314         }
315
316         public void show_message(String in_message, String in_title, int in_message_type) {
317                 final String message = in_message;
318                 final String title = in_title;
319                 final int message_type = in_message_type;
320                 Runnable r = new Runnable() {
321                                 public void run() {
322                                         try {
323                                                 show_message_internal(message, title, message_type);
324                                         } catch (Exception ex) {
325                                         }
326                                 }
327                         };
328                 SwingUtilities.invokeLater(r);
329         }
330 }