Parent: [a7a9ff] (diff)

Download this file

FileFormatPanel.java    277 lines (214 with data), 8.1 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/*
* Copyright 2013-2014 TECO - Karlsruhe Institute of Technology.
*
* This file is part of TACET.
*
* TACET is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* TACET is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with TACET. If not, see <http://www.gnu.org/licenses/>.
*/
package squirrel.view.ImportWizard;
import java.awt.Dimension;
import java.awt.Label;
import java.awt.TextField;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.util.List;
import javax.swing.ButtonGroup;
import javax.swing.DefaultCellEditor;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JTextField;
import javax.swing.JTextPane;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableCellEditor;
import squirrel.controller.ImportController;
import squirrel.controller.TimestampFormat;
import squirrel.controller.ValidationResult;
import squirrel.model.io.DataColumn;
import squirrel.model.io.DataSource;
import net.miginfocom.swing.MigLayout;
import jwf.WizardPanel;
class FileFormatPanel extends WizardPanel {
/**
*
*/
private static final long serialVersionUID = 1L;
private TextField txfLocation;
private JButton cmdBrowse;
private ButtonGroup fileFormat = new ButtonGroup();
private JRadioButton csvButton = new JRadioButton("CSV File");
private ImportController controller;
private JFrame superFrame;
private SpecPanel csvNext;
private JPanel gui = new JPanel();
private JTextField txfElemSeparator;
private JLabel lblElemSeparator, lblHeader;
private JCheckBox cHeader;
public FileFormatPanel(ImportController controller, JFrame container) {
this.controller = controller;
this.superFrame = container;
this.setLayout(new MigLayout());
this.initGui();
add(gui);
csvNext = new SpecPanel(controller, superFrame);
}
private void initGui() {
JLabel lablogo = new JLabel();
lablogo.setIcon(new javax.swing.ImageIcon(FileFormatPanel.class.getClassLoader()
.getResource("squirrel/resources/teco.png")));
lblElemSeparator = new JLabel("Element Separator:");
lblHeader = new JLabel("Header");
txfElemSeparator = new JTextField(3);
txfElemSeparator.setText(",");
cHeader = new JCheckBox();
cHeader.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
if (cHeader.isSelected()) {
lblElemSeparator.setVisible(true);
txfElemSeparator.setVisible(true);
txfElemSeparator.setText("");
} else {
lblElemSeparator.setVisible(false);
txfElemSeparator.setVisible(false);
}
}
});
gui.setLayout(new MigLayout());
gui.add(lablogo, "wrap 50, w 390!, h 100!, span 5");
gui.add(new Label("Choose your file formate:"), "wrap, span 2");
this.fileFormat.add(csvButton);
gui.add(csvButton, "wrap");
this.txfLocation = new TextField();
this.cmdBrowse = new JButton("Browse");
this.cmdBrowse.addActionListener(new ActionListenerImpl());
gui.add(new Label("Please specify location of file:"), "wrap");
gui.add(txfLocation, "pushx, growx");
gui.add(cmdBrowse, "wrap");
if (controller.getDebug()) {
this.setDefaultValues();
}
gui.add(lblHeader, "wrap");
gui.add(cHeader, "wrap");
gui.add(lblElemSeparator, "wrap");
gui.add(txfElemSeparator);
lblElemSeparator.setVisible(false);
txfElemSeparator.setVisible(false);
}
private void setDefaultValues() {
this.csvButton.setSelected(true);
}
private class ActionListenerImpl implements ActionListener {
JFileChooser fchBrowse = new JFileChooser((new File("")).getAbsolutePath());
@Override
public void actionPerformed(ActionEvent e) {
int result = fchBrowse.showOpenDialog(FileFormatPanel.this);
if (result == JFileChooser.APPROVE_OPTION) {
File fileToOpen = fchBrowse.getSelectedFile();
txfLocation.setText("file://" + fileToOpen.getPath());
}
}
}
/** Called when the panel is set. */
@Override
public void display() {
this.setPreferredSize(new Dimension(1000, 1000));
}
/**
* Is there be a next panel?
* @return true if there is a panel to move to next
*/
@Override
public boolean hasNext() {
return true;
}
/**
* Called to validate the panel before moving to next panel.
* @param list a List of error messages to be displayed.
* @return true if the panel is valid,
*/
@Override
public boolean validateNext(List list) {
this.validateAll();
List<ValidationResult> errorResults = controller.getErrorValidations();
if (!errorResults.isEmpty()) {
for (int i = 0; i < errorResults.size(); i++) {
list.add(errorResults.get(i).reason);
}
// eelist = errorResults;//this.showWarningDialog(errorResults);
return false;
}
if (this.csvButton.isSelected() ) {
DefaultTableModel dft = controller.analyseLine(cHeader.isSelected());
TableCellEditor typeEditor =
new DefaultCellEditor(new JComboBox<>(DataColumn.Type.values()));
csvNext.setCSVValues("", controller.getElemSeperator(), dft, typeEditor,
new TimestampFormat[] {new TimestampFormat(controller.getGuestTimestampFormat())}, "", "");
}
return true;
}
private void validateAll() {
if (this.csvButton.isSelected()) {
controller.setValidationController(DataSource.Type.CSV);
controller.validateCSVElemSep(txfElemSeparator.getText());
controller.setSourceType(0);
this.controller.validateLocation(txfLocation.getText());
}
}
/** Get the next panel to go to. */
@Override
public WizardPanel next() {
WizardPanel next = null;
switch (controller.getSelectedSourceType()) {
case CSV:
next = csvNext;
break;
}
return next;
}
/**
* Can this panel finish the wizard?
* @return true if this panel can finish the wizard.
*/
@Override
public boolean canFinish() {
return false;
}
/**
* Called to validate the panel before finishing the wizard. Should return
* false if canFinish returns false.
* @param list a List of error messages to be displayed.
* @return true if it is valid for this wizard to finish.
*/
@Override
public boolean validateFinish(List list) {
return false;
}
/** Handle finishing the wizard. */
@Override
public void finish() {}
public void setCSVValues(String lineSep, String valueSep, String loc,
DefaultTableModel csvModel, TableCellEditor typeEditor, TimestampFormat[] tsfs,
String previewStart, String previewEnd) {
this.txfLocation.setText(loc);
csvNext.setCSVValues(lineSep, valueSep, csvModel, typeEditor, tsfs, previewStart,
previewEnd);
}
}