gitweb on Svarog
projekti pod git sistemom za održavanje verzija -- projects under
the git version control system
1 package com
.quemaster
.transformations
.mjc2wsl
;
3 Copyright (C) 2014,2015, 2016, 2018 Doni Pracner
5 This file is part of mjc2wsl.
7 mjc2wsl is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 mjc2wsl is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with mjc2wsl. If not, see <http://www.gnu.org/licenses/>.
21 import java
.io
.FileInputStream
;
22 import java
.io
.IOException
;
23 import java
.io
.InputStream
;
24 import java
.io
.PrintWriter
;
25 import java
.nio
.file
.FileSystems
;
26 import java
.nio
.file
.Files
;
27 import java
.nio
.file
.Path
;
28 import java
.util
.Calendar
;
29 import java
.util
.Properties
;
31 import com
.quemaster
.transformations
.TransMessages
;
34 * This program converts file from compiled MicroJava bytecode to WSL language
35 * which is a part of the FermaT Transformation system. MicroJava is a subset
36 * used in Compiler Construction courses by Hanspeter Moessenboeck, not
39 * @author Doni Pracner, http://perun.dmi.rs/pracner http://quemaster.com
42 //default version name, used if the file is not found
43 private static String versionN
= "v0.2.x";
45 private String versionFile
= "version.properties";
47 private TransMessages messages
= new TransMessages();
49 private boolean genPauseAfterEachAddress
=false,
50 genPrintForEachAddress
= false,
51 genPrintEStackOnChange
= false;
53 private boolean genPopPush
=false;
55 private boolean genInlinePrint
= false;
57 private boolean genLocalVars
= true;
59 // make an array for all local variables OTHERWISE make them separate
60 private boolean genLocalsAsArray
= true;
62 /** Constant used for marking a regular comment from the original file */
63 public static final char C_REG
= ' ';
65 * Constant used for marking when original code is inserted in the file,
66 * next to the translations
68 public static final char C_OC
= '#';
69 /** Constant used for marking special messages from the translator */
70 public static final char C_SPEC
= '&';
71 /** Constant used for marking error messages from the translator */
72 public static final char C_ERR
= '!';
74 /** instruction code in MicroJava bytecode. */
75 public static final int
134 private boolean originalInComments
= false;
136 private Properties versionData
;
138 private String
getVersion() {
139 if (versionData
== null) {
140 versionData
= new Properties();
142 versionData
.load(getClass().getResourceAsStream(versionFile
));
143 } catch (IOException
| NullPointerException e
) {
145 //e.printStackTrace();
148 String ver
= versionData
.getProperty("version");
155 private MicroJavaInput mjInput
;
157 private PrintWriter out
= null;
160 private void pr(int i
){
164 private void pr(char i
){
168 private void pr(String i
){
172 private void prl(String i
){
176 public String
createStandardStart(){
177 return createStandardStart(10);
180 public String
createStandardStart(int numWords
){
181 StringBuilder ret
= new StringBuilder(
182 "C:\" This file was automatically converted from microjava bytecode\n"
183 +" using mjc2wsl "+getVersion()+"\n");
185 ret
.append(" -options:");
186 ret
.append("\n localsAsArrays:"+genLocalsAsArray
);
187 ret
.append("\n localVarBlocks:"+genLocalVars
);
188 ret
.append("\n popPush:"+genPopPush
);
189 ret
.append("\n inlinePrint:"+genInlinePrint
);
190 ret
.append("\n\";\n");
192 ret
.append("\nBEGIN");
193 ret
.append("\nVAR <\n\t");
195 ret
.append("\n\ttempa := 0, tempb :=0, tempres := 0,");
197 ret
.append("\n\tmjvm_flag_jump := 0,");
199 if (genLocalsAsArray
)
200 ret
.append("mjvm_locals := ARRAY(1,0),");
202 ret
.append("\n\tmjvm_statics := ARRAY("+numWords
+",0),");
203 ret
.append("\n\tmjvm_arrays := < >,");
204 ret
.append("\n\tmjvm_objects := < >,");
205 ret
.append("\n\tmjvm_estack := < >, mjvm_mstack := < > > :");
207 return ret
.toString();
210 public String
createAsciiString(){
211 StringBuilder ret
= new StringBuilder("C:\"char array for ascii code conversions\";");
212 ret
.append("\nascii := \"????????????????????????????????\"++\n");
213 ret
.append("\" !\"++Quote++\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\";\n");
215 return ret
.toString();
218 public String
createStandardEnd(){
219 StringBuilder ret
= new StringBuilder("SKIP\nENDVAR\n");
220 ret
.append("\nWHERE\n");
222 ret
.append("\nFUNCT CHR(num) ==:\n");
223 ret
.append("\t(@List_To_String(< num >))\n");
226 if (!genInlinePrint
) {
227 ret
.append("\nPROC Print_MJ(val, format VAR)==\n");
228 ret
.append("PRINFLUSH(@Format(format, val ))");
229 ret
.append("\nEND\n");
231 ret
.append("\nPROC Print_MJ_CHAR(val, format VAR)==\n");
232 ret
.append("PRINFLUSH(@Format(format, CHR(val)))");
233 ret
.append("\nEND\n");
237 return ret
.toString();
240 private String
createStartVar(String
... vars
){
242 StringBuilder ret
= new StringBuilder("VAR < ");
243 ret
.append(vars
[0] + " := 0");
244 for (int i
= 1; i
< vars
.length
; i
++)
245 ret
.append(", " + vars
[i
] + " := 0");
248 return ret
.toString();
253 private String
createEndVar(){
260 private String
createLocal(int i
) {
261 // arrays start at 1 in WSL, so we need an offset
262 if (genLocalsAsArray
)
263 return "mjvm_locals[" + (i
+ 1) + "]";
265 return "mjvm_locals_" + i
;
268 private String
createStatic(int i
) {
269 return "mjvm_statics[" + (i
+ 1) + "]";
272 private String
createArray(int i
) {
273 return "mjvm_arrays[" + i
+ "]";
276 private String
createArray(String i
) {
277 return "mjvm_arrays[" + i
+ "]";
280 private String
createObject(String i
) {
281 return "mjvm_objects[" + i
+ "]";
285 * Creates a WSL comment with care to quote chars.
287 public static String
createComment(String str
){
288 return createComment(str
, C_REG
);
292 * Creates a WSL comment with care to quote chars, of the
293 * given type. Types are given as char constants. They can be
294 * default comments, comments that contain the original code
295 * in them, or additional comments regarding the translation
298 public static String
createComment(String str
, char type
) {
299 return "C:\"" + type
+ str
.replace("\"", "''") + "\";";
302 // generalised stack operations
304 private String
createToStack(String stack
, String var
){
306 return "PUSH("+stack
+"," + var
+ ");";
308 return stack
+ " := <" + var
+ " > ++ " + stack
+";";
311 private String
createFromStack(String stack
, String var
){
313 return "POP("+ var
+ ", "+stack
+");";
315 return var
+ ":= HEAD("+stack
+"); "+stack
+" := TAIL("+stack
+");";
319 private String
createToEStack(int i
) {
320 return createToEStack(i
+"");
323 private String
createToEStack(String i
) {
324 String res
= createToStack("mjvm_estack", i
);
325 if (genPrintEStackOnChange
)
326 res
+= "PRINT(\"eStack\",mjvm_estack);";
330 private String
createFromEStack(String st
) {
331 String res
= createFromStack("mjvm_estack",st
);
332 if (genPrintEStackOnChange
)
333 res
+= "PRINT(\"eStack\",mjvm_estack);";
337 private String
createPopEStack() {
338 String res
= "mjvm_estack := TAIL(mjvm_estack);";
339 if (genPrintEStackOnChange
)
340 res
+= "PRINT(\"eStack\",mjvm_estack);";
344 private String
createTopTwoEStack() {
345 return createFromEStack("tempa") + "\n" + createFromEStack("tempb");
348 private String
createTopEStack() {
349 return createFromEStack("tempa");
354 private String
createToMStack(int i
) {
355 return createToMStack(i
+"");
358 private String
createToMStack(String i
) {
359 return createToStack("mjvm_mstack", i
);
362 private String
createFromMStack(String st
) {
363 return createFromStack("mjvm_mstack", st
);
366 public void convertStream(InputStream ins
) throws Exception
{
367 mjInput
= new MicroJavaInput(ins
);
369 prl(createStandardStart(mjInput
.getNumberOfWords()));
370 prl("SKIP;\n ACTIONS a" + (14 + mjInput
.getMainAdr()) + " :");
372 // the number of Locals for procedures; need to remember it for exits
373 int numberOfLocals
= 0;
375 int op
= mjInput
.get();
377 messages
.message("Processing "+mjInput
.describeOpCode(op
)+ " at " + mjInput
.getCounter(), TransMessages
.M_DEB
);
378 prl(" a" + mjInput
.getCounter() + " ==");
379 if (originalInComments
)
380 prl(createComment(mjInput
.describeOpCode(op
), C_OC
));
381 if (genPrintForEachAddress
) {
382 prl("PRINT(\"a" + mjInput
.getCounter() + "\");");
383 if (genPauseAfterEachAddress
)
384 prl("@Read_Line_Proc(VAR debug_disposable_string, Standard_Input_Port);");
388 prl(createToEStack(createLocal(mjInput
.get())));
395 prl(createStartVar("tempa"));
396 prl("tempa :="+createLocal(op
- load_0
)+";");
397 prl(createToEStack("tempa"));
402 prl(createFromEStack(createLocal(mjInput
.get())));
409 prl(createStartVar("tempa"));
410 prl(createFromEStack("tempa"));
411 prl(createLocal(op
- store_0
)+" := tempa;");
417 prl(createToEStack(createStatic(mjInput
.get2())));
421 prl(createFromEStack(createStatic(mjInput
.get2())));
426 int f
= mjInput
.get2();
427 prl(createStartVar("tempa"));
428 prl(createTopEStack());
429 prl(createToEStack(createObject("tempa") + "[" + (f
+ 1) + "]"));
434 int f
= mjInput
.get2();
435 prl(createStartVar("tempa", "tempb"));
436 prl(createTopTwoEStack());
437 prl(createObject("tempb") + "[" + (f
+ 1) + "]:=tempa;");
443 prl(createToEStack(mjInput
.get4()));
448 prl(createToEStack(-1));
458 prl(createToEStack(op
- const_0
));
463 prl(createStartVar("tempa", "tempb", "tempres"));
464 prl(createTopTwoEStack());
465 prl("tempres := tempb + tempa;");
466 prl(createToEStack("tempres"));
471 prl(createStartVar("tempa", "tempb", "tempres"));
472 prl(createTopTwoEStack());
473 prl("tempres := tempb - tempa;");
474 prl(createToEStack("tempres"));
479 prl(createStartVar("tempa", "tempb", "tempres"));
480 prl(createTopTwoEStack());
481 prl("tempres := tempb * tempa;");
482 prl(createToEStack("tempres"));
487 prl(createStartVar("tempa", "tempb", "tempres"));
488 prl(createTopTwoEStack());
489 prl("IF tempa = 0 THEN ERROR(\"division by zero\") FI;");
490 prl("tempres := tempb DIV tempa;");
491 prl(createToEStack("tempres"));
496 prl(createStartVar("tempa", "tempb", "tempres"));
497 prl(createTopTwoEStack());
498 prl("IF tempa = 0 THEN ERROR(\"division by zero\") FI;");
499 prl("tempres := tempb MOD tempa;");
500 prl(createToEStack("tempres"));
506 prl(createStartVar("tempa"));
507 prl(createTopEStack());
508 prl(createToEStack("-tempa"));
514 prl(createStartVar("tempa", "tempb"));
515 prl(createTopTwoEStack());
516 prl("VAR <tempres :=tempb, i:=1 >:");
517 prl("\tFOR i:=1 TO tempa STEP 1 DO tempres := tempres * 2 OD;");
518 prl(createToEStack("tempres"));
524 prl(createStartVar("tempa", "tempb"));
525 prl(createTopTwoEStack());
526 prl("VAR <tempres :=tempb, i:=1 >:");
527 prl("\tFOR i:=1 TO tempa STEP 1 DO tempres := tempres DIV 2 OD;");
528 prl(createToEStack("tempres"));
535 int b1
= mjInput
.get(), b2
= mjInput
.get();
536 prl(createLocal(b1
) + " := " + createLocal(b1
) + " + " + b2
+ ";");
541 int size
= mjInput
.get2();
542 // TODO maybe objects and arrays should be in the same list?
543 prl("mjvm_objects := mjvm_objects ++ < ARRAY(" + size
545 prl(createToEStack("LENGTH(mjvm_objects)"));
549 mjInput
.get();// 0 - bytes, 1 - words; ignore for now
550 // TODO take into consideration 0/1
551 prl(createStartVar("tempa"));
552 prl(createTopEStack());
553 prl("mjvm_arrays := mjvm_arrays ++ < ARRAY(tempa,0) >;");
554 prl(createToEStack("LENGTH(mjvm_arrays)"));
561 prl(createStartVar("tempa", "tempb"));
562 prl(createTopTwoEStack());
563 prl(createToEStack(createArray("tempb") + "[tempa+1]"));
569 prl(createStartVar("tempa", "tempb", "tempres"));
570 prl(createFromEStack("tempres"));
571 prl(createTopTwoEStack());
572 prl("mjvm_arrays[tempb][tempa+1]:=tempres;");
577 prl(createStartVar("tempa", "tempb"));
578 prl(createTopEStack());
579 prl("tempb := LENGTH("+ createArray("tempa") + ");");
580 prl(createToEStack("tempb"));
586 prl(createStartVar("tempa", "tempb"));
587 prl(createTopEStack());
588 prl(createToEStack("tempa"));
589 prl(createToEStack("tempa"));
594 prl(createStartVar("tempa", "tempb"));
595 prl(createTopTwoEStack());
596 prl(createToEStack("tempb"));
597 prl(createToEStack("tempa"));
598 prl(createToEStack("tempb"));
599 prl(createToEStack("tempa"));
605 prl(createPopEStack());
610 prl("CALL a" + (mjInput
.getCounter() + mjInput
.get2()) + ";");
621 prl(createStartVar("tempa", "tempb"));
622 prl(createTopTwoEStack());
623 prl("IF tempb " + mjInput
.getRelationFor(op
)
624 + " tempa THEN mjvm_flag_jump := 1"
625 + " ELSE mjvm_flag_jump := 0"
628 prl("IF mjvm_flag_jump = 1 THEN CALL a"
629 + (mjInput
.getCounter() + mjInput
.get2())
630 + " ELSE CALL a" + (mjInput
.getCounter() + 1)
633 prl(createTopTwoEStack());
634 prl("IF tempb " + mjInput
.getRelationFor(op
)
635 + " tempa THEN CALL a"
636 + (mjInput
.getCounter() + mjInput
.get2())
637 + " ELSE CALL a" + (mjInput
.getCounter() + 1)
644 prl("CALL a" + (mjInput
.getCounter() + mjInput
.get2()) + ";");
649 // we let the actions return
650 // there is nothing to clean up
651 prl("SKIP\n END\n b" + mjInput
.getCounter() + " ==");
655 int parameters
= mjInput
.get();
657 numberOfLocals
= mjInput
.get();
658 if (genLocalsAsArray
) {
659 prl(createToMStack("mjvm_locals"));
660 prl("mjvm_locals := ARRAY(" + numberOfLocals
+ ",0);");
662 // TODO maybe we should generate VAR block for these somewhere
663 for (int i
= 0; i
< numberOfLocals
; i
++) {
664 prl(createToMStack(createLocal(i
)));
668 for (int i
= parameters
- 1; i
>= 0; i
--)
669 prl(createFromEStack(createLocal(i
)));
673 if (genLocalsAsArray
) {
674 prl(createFromMStack("mjvm_locals"));
676 // there are as many locals as defined in the last enter
677 for (int i
= numberOfLocals
-1; i
>= 0; i
--)
678 prl(createFromMStack(createLocal(i
)));
685 // TODO maybe we'll need a buffer for multi chars!
686 prl(createStartVar("tempa"));
687 prl("@Read_Line_Proc(VAR tempa, Standard_Input_Port);");
688 prl("tempa := @String_To_List(tempa)[1];");
689 prl(createToEStack("tempa"));
694 prl(createStartVar("tempa"));
695 prl("@Read_Line_Proc(VAR tempa, Standard_Input_Port);");
696 prl("tempa := @String_To_Num(tempa);");
697 prl(createToEStack("tempa"));
704 prl(createStartVar("tempa", "tempb"));
705 prl(createTopTwoEStack());
707 prl(createComment("print spacing and transformation",C_SPEC
));
708 prl("PRINFLUSH(@Format(tempa, @List_To_String(< tempb >)));");
710 prl("Print_MJ_CHAR(tempb,tempa);");
715 prl(createStartVar("tempa", "tempb"));
717 prl(createTopTwoEStack());
719 prl(createComment("print spacing",C_SPEC
));
720 prl("PRINFLUSH(@Format(tempa,tempb));");
723 prl("Print_MJ(tempb,tempa);");
729 prl("ERROR(\"Runtime error: trap(" + mjInput
.get() + ")\");");
734 prl(createComment("unknown op error: " + op
, C_ERR
));
735 messages
.message("unknown op error: " + op
, TransMessages
.M_ERR
);
739 boolean wasJump
= mjInput
.isJumpCode(op
);
745 prl("CALL a" + mjInput
.getCounter() + "\n END");
747 prl("SKIP\n END\nENDACTIONS;\n");
748 pr(createStandardEnd());
751 public void convertFile(File f
) {
753 convertStream(new FileInputStream(f
));
754 } catch (Exception ex
) {
755 ex
.printStackTrace();
759 public void printHelp() {
766 public void printLongHelp() {
769 System
.out
.println();
771 System
.out
.println();
772 printHelpDirectives();
773 System
.out
.println();
774 printHelpGenerating();
775 System
.out
.println();
779 public void printHelpOutput() {
780 System
.out
.println("Output options:");
781 System
.out
.println(" --screen print output to screen");
782 System
.out
.println(" -o --oc[+-] include original code in comments");
783 System
.out
.println(" -v verbose, print warning messages");
784 System
.out
.println(" -q quiet; don't print even the error messages");
785 System
.out
.println(" -d print detailed debug messages");
788 public void printHelpGenerating() {
789 System
.out
.println("Options for generating extra code for tracking code execution");
790 System
.out
.println(" --genEStackPrint generate print for all EStack changes");
791 System
.out
.println(" --genAddrPrint generate prints after every address of the original code ");
792 System
.out
.println(" --genAddrPause generate a pause after every address of the original code ");
793 System
.out
.println(" --genAddr short for --genAddrPrint and --genAddrPause");
794 System
.out
.println(" --genAll short for applying all code generation");
797 public void printHelpDirectives(){
798 System
.out
.println("Alternatives for code generation (* are the defaults):");
799 System
.out
.print(genPopPush?
'*':' ');
800 System
.out
.println(" --genPopPush generate POP/PUSH instead of TAIL/HEAD");
801 System
.out
.print(!genPopPush?
'*':' ');
802 System
.out
.println(" --genHeadTail generate TAIL/HEAD instead of POP/PUSH ");
803 System
.out
.println();
804 System
.out
.print(genInlinePrint?
'*':' ');
805 System
.out
.println(" --genInlinePrint generate prints directly instead of procedure calls");
806 System
.out
.print(!genInlinePrint?
'*':' ');
807 System
.out
.println(" --genProcedurePrint generate prints as custom procedure calls");
808 System
.out
.println();
809 System
.out
.print(genLocalVars?
'*':' ');
810 System
.out
.println(" --genLocalVars generate local VAR block for temp variables");
811 System
.out
.print(!genLocalVars?
'*':' ');
812 System
.out
.println(" --genGlobalVars do NOT generate local VAR block for temp variables");
813 System
.out
.println();
814 System
.out
.print(genLocalsAsArray?
'*':' ');
815 System
.out
.println(" --genLocalsAsArray generate local variables as an array");
816 System
.out
.print(!genLocalsAsArray?
'*':' ');
817 System
.out
.println(" --genLocalsSeparate generate local variables as separate entities");
820 public void printHelpHelp() {
821 System
.out
.println("Help and info options");
822 System
.out
.println(" -h basic help");
823 System
.out
.println(" --help print more detailed help");
824 System
.out
.println(" --version or -version print version and exit");
827 public void printUsage(){
828 System
.out
.println("usage:\n\t mjc2wsl {options} filename [outfile]");
831 public void printVersion() {
832 System
.out
.println("MicroJava bytecode to WSL converter " + getVersion()
833 + ", by Doni Pracner");
836 public String
makeDefaultOutName(String inname
){
838 if (inname
.endsWith(".obj"))
839 rez
= rez
.substring(0, rez
.length() - 4);
843 public void run(String
[] args
) {
844 if (args
.length
== 0) {
848 while (i
< args
.length
&& args
[i
].length() > 0 && args
[i
].charAt(0) == '-') {
849 if (args
[i
].compareTo("-h") == 0) {
852 } else if (args
[i
].compareTo("--help") == 0) {
855 } else if (args
[i
].compareTo("--version") == 0
856 || args
[i
].compareTo("-version") == 0) {
859 } else if (args
[i
].compareTo("-o") == 0
860 || args
[i
].startsWith("--oc")) {
861 if (args
[i
].length() == 2)
862 originalInComments
= true;
863 else if (args
[i
].length() == 5)
864 originalInComments
= args
[i
].charAt(4) == '+';
866 originalInComments
= true;
867 } else if (args
[i
].compareTo("--screen") == 0) {
868 out
= new PrintWriter(System
.out
);
869 } else if (args
[i
].compareTo("-d") == 0) {
870 messages
.setPrintLevel(TransMessages
.M_DEB
);// print debug info
871 } else if (args
[i
].compareTo("-v") == 0) {
872 messages
.setPrintLevel(TransMessages
.M_WAR
);// print warnings
873 } else if (args
[i
].compareTo("-q") == 0) {
874 messages
.setPrintLevel(TransMessages
.M_QUIET
);// no printing
875 } else if (args
[i
].compareToIgnoreCase("--genEStackPrint") == 0) {
876 genPrintEStackOnChange
= true;
877 } else if (args
[i
].compareToIgnoreCase("--genAddrPause") == 0) {
878 genPauseAfterEachAddress
= true;
879 } else if (args
[i
].compareToIgnoreCase("--genAddrPrint") == 0) {
880 genPrintForEachAddress
= true;
881 } else if (args
[i
].compareToIgnoreCase("--genAddr") == 0) {
882 genPrintForEachAddress
= true;
883 genPauseAfterEachAddress
= true;
884 } else if (args
[i
].compareToIgnoreCase("--genAll") == 0) {
885 genPrintEStackOnChange
= true;
886 genPrintForEachAddress
= true;
887 genPauseAfterEachAddress
= true;
888 } else if (args
[i
].compareToIgnoreCase("--genPopPush") == 0) {
890 } else if (args
[i
].compareToIgnoreCase("--genInlinePrint") == 0) {
891 genInlinePrint
= true;
892 } else if (args
[i
].compareToIgnoreCase("--genHeadTail") == 0) {
894 } else if (args
[i
].compareToIgnoreCase("--genProcedurePrint") == 0) {
895 genInlinePrint
= false;
896 } else if (args
[i
].compareToIgnoreCase("--genLocalVars") == 0) {
898 } else if (args
[i
].compareToIgnoreCase("--genGlobalVars") == 0) {
899 genLocalVars
= false;
900 } else if (args
[i
].compareToIgnoreCase("--genLocalsAsArray") == 0) {
901 genLocalsAsArray
= true;
902 } else if (args
[i
].compareToIgnoreCase("--genLocalsSeparate") == 0) {
903 genLocalsAsArray
= false;
905 System
.err
.println("unknown option, refusing to continue: "+args
[i
]);
911 if (i
>= args
.length
) {
912 System
.err
.println("no filename supplied");
916 Path p
= FileSystems
.getDefault().getPath(args
[i
]);
917 if (!Files
.isRegularFile(p
)){
918 System
.err
.println("input file does not exist");
922 if (i
+ 1 < args
.length
) {
924 out
= new PrintWriter(args
[i
+ 1]);
925 } catch (Exception e
) {
926 System
.err
.println("error in opening out file:");
929 if (i
+ 2 < args
.length
) {
930 messages
.message("additional parameters ignored, starting from:'"+args
[i
+2]+"'", TransMessages
.M_ERR
);
934 // if not set to screen, or a file, make a default filename
936 out
= new PrintWriter(makeDefaultOutName(args
[i
]));
937 } catch (Exception e
) {
938 System
.err
.println("error in opening out file:");
942 Calendar now
= Calendar
.getInstance();
944 convertStream(Files
.newInputStream(p
));
945 } catch (Exception e
) {
946 System
.err
.println("Failed converting the stream");
949 long mili
= Calendar
.getInstance().getTimeInMillis()
950 - now
.getTimeInMillis();
951 messages
.message("conversion time:" + mili
+ " ms");
952 messages
.printMessageCounters();
957 public static void main(String
[] args
) {
958 new Mjc2wsl().run(args
);
Svarog.pmf.uns.ac.rs/gitweb
maintanance
Doni Pracner