forked from wynne0/altibase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.java
447 lines (371 loc) · 14.1 KB
/
conf.java
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import javax.swing.*;
import javax.swing.border.*;
import javax.swing.event.*;
public class conf extends JFrame implements ActionListener
{
static final private int BUILD_IDX = 0;
static final private int MEMCHK_IDX = 1;
static final private int RECOVERY_IDX = 2;
static final private int GCC_IDX = 3;
static final private int BIT_IDX = 4;
static final private int COMPAT_IDX = 5;
static final private int SMP_IDX = 6;
static final private int MEMPAGE_IDX = 7;
static final private int SIGTERM_IDX = 8;
static final private int CONF_MAX = 9;
// command;
static final private String CMD_OK = "ok";
static final private String CMD_CANCEL = "cancel";
static final private String CMD_BUILD_DEBUG = "debug";
static final private String CMD_BUILD_PRELEASE = "prel";
static final private String CMD_BUILD_RELEASE = "release";
static final private String CMD_MEMCHK_OFF = "mem_off";
static final private String CMD_MEMCHK_ON = "mem_on";
static final private String CMD_RECOVERY_OFF = "rec_off";
static final private String CMD_RECOVERY_ON = "rec_on";
static final private String CMD_GCC_OFF = "gcc_off";
static final private String CMD_GCC_ON = "gcc_on";
static final private String CMD_BIT_32 = "bit_32";
static final private String CMD_BIT_64 = "bit_64";
static final private String CMD_COMPAT_OFF = "compat_off";
static final private String CMD_COMPAT_ON = "compat_on";
static final private String CMD_SMP = "smp";
static final private String CMD_NON_SMP = "non_smp";
static final private String CMD_MEMPAGE_32 = "mem_32";
static final private String CMD_MEMPAGE_64 = "mem_64";
static final private String CMD_SIGTERM_OFF = "sig_off";
static final private String CMD_SIGTERM_ON = "sig_on";
String mConfStr[] = new String[CONF_MAX];
public conf()
{
super("configure");
initConfStr();
createPane();
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent we)
{
System.exit(0);
}
});
pack();
setResizable(false);
setVisible(true);
}
void initConfStr()
{
mConfStr[BUILD_IDX] = " --with-build_mode=debug";
for (int i=1; i<CONF_MAX; i++)
{
mConfStr[i] = "";
}
}
public void createPane()
{
// * BUILD
JPanel buildPane = new JPanel();
//buildPane.setLayout(new GridLayout(1,2));
buildPane.setBorder(BorderFactory.createTitledBorder("BUILD"));
JRadioButton debugButton = new JRadioButton("debug");
debugButton.setActionCommand(CMD_BUILD_DEBUG);
debugButton.setSelected(true);
JRadioButton preleaseButton = new JRadioButton("pre-release");
preleaseButton.setActionCommand(CMD_BUILD_PRELEASE);
preleaseButton.addActionListener(this);
JRadioButton releaseButton = new JRadioButton("release");
releaseButton.setActionCommand(CMD_BUILD_RELEASE);
releaseButton.addActionListener(this);
ButtonGroup buildGrp = new ButtonGroup();
buildGrp.add(debugButton);
buildGrp.add(preleaseButton);
buildGrp.add(releaseButton);
buildPane.add(debugButton);
buildPane.add(preleaseButton);
buildPane.add(releaseButton);
// * memory check
JPanel memchkPane = new JPanel();
//memchkPane.setLayout(new GridLayout(1,2));
memchkPane.setBorder(BorderFactory.createTitledBorder("memory check"));
JRadioButton offButton = new JRadioButton("Off");
offButton.setActionCommand(CMD_MEMCHK_OFF);
offButton.addActionListener(this);
offButton.setSelected(true);
JRadioButton onButton = new JRadioButton("On");
onButton.setActionCommand(CMD_MEMCHK_ON);
onButton.addActionListener(this);
ButtonGroup memchkGrp = new ButtonGroup();
memchkGrp.add(offButton);
memchkGrp.add(onButton);
memchkPane.add(offButton);
memchkPane.add(onButton);
// * recovery check
JPanel recoveryPane = new JPanel();
//recoveryPane.setLayout(new GridLayout(1,2));
recoveryPane.setBorder(BorderFactory.createTitledBorder("recovery check"));
offButton = new JRadioButton("Off");
offButton.setActionCommand(CMD_RECOVERY_OFF);
offButton.addActionListener(this);
offButton.setSelected(true);
onButton = new JRadioButton("On");
onButton.setActionCommand(CMD_RECOVERY_ON);
onButton.addActionListener(this);
ButtonGroup recoveryGrp = new ButtonGroup();
recoveryGrp.add(offButton);
recoveryGrp.add(onButton);
recoveryPane.add(offButton);
recoveryPane.add(onButton);
// * gcc check
JPanel gccPane = new JPanel();
//gccPane.setLayout(new GridLayout(1,2));
gccPane.setBorder(BorderFactory.createTitledBorder("gcc check"));
offButton = new JRadioButton("Off");
offButton.setActionCommand(CMD_GCC_OFF);
offButton.addActionListener(this);
offButton.setSelected(true);
onButton = new JRadioButton("On");
onButton.setActionCommand(CMD_GCC_ON);
onButton.addActionListener(this);
ButtonGroup gccGrp = new ButtonGroup();
gccGrp.add(offButton);
gccGrp.add(onButton);
gccPane.add(offButton);
gccPane.add(onButton);
// * 32/64
JPanel bitPane = new JPanel();
//bitPane.setLayout(new GridLayout(1,2));
bitPane.setBorder(BorderFactory.createTitledBorder("32/64"));
JRadioButton b32Button = new JRadioButton("32bit");
b32Button.setActionCommand(CMD_BIT_32);
b32Button.addActionListener(this);
JRadioButton b64Button = new JRadioButton("64bit");
b64Button.setActionCommand(CMD_BIT_64);
b64Button.addActionListener(this);
b64Button.setSelected(true);
ButtonGroup bitGrp = new ButtonGroup();
bitGrp.add(b32Button);
bitGrp.add(b64Button);
bitPane.add(b32Button);
bitPane.add(b64Button);
// * compat4
JPanel compatPane = new JPanel();
//compatPane.setLayout(new GridLayout(1,2));
compatPane.setBorder(BorderFactory.createTitledBorder("compat4"));
offButton = new JRadioButton("Off");
offButton.setActionCommand(CMD_COMPAT_OFF);
offButton.addActionListener(this);
offButton.setSelected(true);
onButton = new JRadioButton("On");
onButton.setActionCommand(CMD_COMPAT_ON);
onButton.addActionListener(this);
ButtonGroup compatGrp = new ButtonGroup();
compatGrp.add(offButton);
compatGrp.add(onButton);
compatPane.add(offButton);
compatPane.add(onButton);
// * SMP
JPanel smpPane = new JPanel();
//smpPane.setLayout(new GridLayout(1,2));
smpPane.setBorder(BorderFactory.createTitledBorder("SMP"));
offButton = new JRadioButton("SMP");
offButton.setActionCommand(CMD_SMP);
offButton.addActionListener(this);
offButton.setSelected(true);
onButton = new JRadioButton("Non-SMP");
onButton.setActionCommand(CMD_NON_SMP);
onButton.addActionListener(this);
ButtonGroup smpGrp = new ButtonGroup();
smpGrp.add(offButton);
smpGrp.add(onButton);
smpPane.add(offButton);
smpPane.add(onButton);
// * Memory Page
JPanel mempagePane = new JPanel();
//mempagePane.setLayout(new GridLayout(1,2));
mempagePane.setBorder(BorderFactory.createTitledBorder("Memory Page"));
b32Button = new JRadioButton("32K");
b32Button.setActionCommand(CMD_MEMPAGE_32);
b32Button.addActionListener(this);
b32Button.setSelected(true);
b64Button = new JRadioButton("64K");
b64Button.setActionCommand(CMD_MEMPAGE_64);
b64Button.addActionListener(this);
ButtonGroup mempageGrp = new ButtonGroup();
mempageGrp.add(b32Button);
mempageGrp.add(b64Button);
mempagePane.add(b32Button);
mempagePane.add(b64Button);
// * SIGTERM Block (on linux)
JPanel sigtermPane = new JPanel();
//sigtermPane.setLayout(new GridLayout(1,2));
sigtermPane.setBorder(BorderFactory.createTitledBorder("SIGTERM Block(on linux)"));
offButton = new JRadioButton("Off");
offButton.setActionCommand(CMD_SIGTERM_OFF);
offButton.addActionListener(this);
offButton.setSelected(true);
onButton = new JRadioButton("On");
onButton.setActionCommand(CMD_SIGTERM_ON);
onButton.addActionListener(this);
ButtonGroup sigtermGrp = new ButtonGroup();
sigtermGrp.add(offButton);
sigtermGrp.add(onButton);
sigtermPane.add(offButton);
sigtermPane.add(onButton);
JPanel p = new JPanel(new GridLayout(1,2));
p.setBorder(new EmptyBorder(10, 10, 10, 10));
JButton okButton = new JButton("OK");
okButton.setActionCommand(CMD_OK);
okButton.addActionListener(this);
p.add(okButton);
JButton cancelButton = new JButton("Cancel");
cancelButton.setActionCommand(CMD_CANCEL);
cancelButton.addActionListener(this);
p.add(cancelButton);
JPanel choiceP = new JPanel();
choiceP.setLayout(new GridLayout(5,2));
choiceP.add(buildPane);
choiceP.add(memchkPane);
choiceP.add(recoveryPane);
choiceP.add(gccPane);
choiceP.add(bitPane);
choiceP.add(compatPane);
choiceP.add(smpPane);
choiceP.add(mempagePane);
choiceP.add(sigtermPane);
choiceP.add(p);
getContentPane().add(choiceP, BorderLayout.CENTER);
getContentPane().add(p, BorderLayout.SOUTH);
}
public void actionPerformed(ActionEvent e)
{
String cmd = e.getActionCommand();
if (CMD_OK.equals(cmd))
{
execConfigure();
//System.exit(0);
}
else if (CMD_CANCEL.equals(cmd))
{
System.exit(0);
}
// BUILD
else if (CMD_BUILD_DEBUG.equals(cmd))
{
mConfStr[BUILD_IDX] = " --with-build_mode=debug";
}
else if (CMD_BUILD_PRELEASE.equals(cmd))
{
mConfStr[BUILD_IDX] = " --with-build_mode=prerelease";
}
else if (CMD_BUILD_RELEASE.equals(cmd))
{
mConfStr[BUILD_IDX] = " --with-build_mode=release";
}
// memory check
else if (CMD_MEMCHK_OFF.equals(cmd))
{
mConfStr[MEMCHK_IDX] = "";
}
else if (CMD_MEMCHK_ON.equals(cmd))
{
mConfStr[MEMCHK_IDX] = " --enable-memcheck";
}
// recovery check
else if (CMD_RECOVERY_OFF.equals(cmd))
{
mConfStr[RECOVERY_IDX] = "";
}
else if (CMD_RECOVERY_ON.equals(cmd))
{
mConfStr[RECOVERY_IDX] = " --enable-reccheck";
}
// gcc check
else if (CMD_GCC_OFF.equals(cmd))
{
mConfStr[GCC_IDX] = "";
}
else if (CMD_GCC_ON.equals(cmd))
{
mConfStr[GCC_IDX] = " --enable-gcc";
}
// 32/64
else if (CMD_BIT_32.equals(cmd))
{
mConfStr[BIT_IDX] = " --disable-bit64";
}
else if (CMD_BIT_64.equals(cmd))
{
mConfStr[BIT_IDX] = "";
}
// compat4
else if (CMD_COMPAT_OFF.equals(cmd))
{
mConfStr[COMPAT_IDX] = "";
}
else if (CMD_COMPAT_ON.equals(cmd))
{
mConfStr[COMPAT_IDX] = " --enable-compat4";
}
// SMP
else if (CMD_SMP.equals(cmd))
{
mConfStr[SMP_IDX] = "";
}
else if (CMD_NON_SMP.equals(cmd))
{
mConfStr[SMP_IDX] = " --enable-nosmp";
}
// Memory Page
else if (CMD_MEMPAGE_32.equals(cmd))
{
mConfStr[MEMPAGE_IDX] = "";
}
else if (CMD_MEMPAGE_64.equals(cmd))
{
mConfStr[MEMPAGE_IDX] = " --enable-page64";
}
// SIGTERM Block (on linux)
else if (CMD_SIGTERM_OFF.equals(cmd))
{
mConfStr[SIGTERM_IDX] = "";
}
else if (CMD_SIGTERM_ON.equals(cmd))
{
mConfStr[SIGTERM_IDX] = " --enable-blocksigterm";
}
}
void execConfigure()
{
StringBuffer execStr = new StringBuffer();
execStr.append("./configure");
for (int i=0; i<CONF_MAX; i++)
{
execStr.append(mConfStr[i]);
}
try
{
System.out.println(execStr.toString());
Process proc = Runtime.getRuntime().exec(execStr.toString());
InputStream stdin = proc.getInputStream();
InputStreamReader isr = new InputStreamReader(stdin);
BufferedReader br = new BufferedReader(isr);
String line = null;
System.out.println("<OUTPUT>");
while ( (line = br.readLine()) != null)
System.out.println(line);
System.out.println("</OUTPUT>");
// int exitVal = proc.waitFor();
// System.out.println("Process exitValue: " + exitVal);
}
catch(IOException e)
{
e.printStackTrace();
}
}
public static void main(String s[]) {
new conf();
}
}