33{
35
36 if ( argc != 3 ) {
37 std::cerr << "usage: " << argv[0] << " <v2.4 file> <v3.0 file>"
38 << std::endl;
39 std::exit(1);
40 }
41
42
43 std::fstream in(argv[1], std::ios::in|std::ios::binary);
44 if (!in) {
45 std::cerr << "File `" << argv[1] << "' does not exist?!" << std::endl;
46 std::exit(1);
47 }
48
49 std::fstream out(argv[2], std::ios::out|std::ios::binary);
50 if (!out) {
51 std::cerr << "Cannot write to `" << argv[1] << "?!" << std::endl;
52 std::exit(1);
53 }
54
57
58 while (true) {
59
61 uint32_t l1id = 0;
62
64
65 try {
66 ros.check_tree();
67 }
69 std::cerr << " !! WARNING: found ROS fragment with format version = "
71 if (ex.
current() != MAJOR_DEFAULT_VERSION) {
72 std::cerr << " -> I cannot cope with this format. Skipping..."
73 << std::endl;
74 continue;
75 }
76 else {
77 std::cout << " -> ROS fragment will be simply copied..." << std::endl;
78 }
79 }
81 std::cerr <<
"Uncaught eformat issue: " << ex.
what() << std::endl;
82 std::cerr << " -> Trying to continue..."
83 << std::endl;
84 continue;
85 }
86 catch (...) {
87 std::cerr << std::endl << "Uncaught unknown exception" << std::endl;
88 delete[] fragment;
89 delete[] nfragment;
90 std::exit(1);
91 }
92
93 try {
94
95 std::cout <<
"ROS #" << ros.lvl1_id() <<
" [" <<
HEX(ros.version())
96 <<
"] -> [" <<
HEX(0x03000000) <<
"]" << std::endl;
99 nros.check_tree();
100 l1id = nros.lvl1_id();
101 }
103 std::cerr <<
"Uncaught eformat issue: " << ex.
what() << std::endl;
104 std::cerr << " -> Trying to continue..."
105 << std::endl;
106 continue;
107 std::exit(1);
108 }
110 std::cerr <<
"Uncaught ERS issue: " << ex.
what() << std::endl;
111 delete[] fragment;
112 delete[] nfragment;
113 std::exit(1);
114 }
115 catch (std::exception& ex) {
116 std::cerr << "Uncaught std exception: " << ex.what() << std::endl;
117 delete[] fragment;
118 delete[] nfragment;
119 std::exit(1);
120 }
121 catch (...) {
122 std::cerr << std::endl << "Uncaught unknown exception" << std::endl;
123 delete[] fragment;
124 delete[] nfragment;
125 std::exit(1);
126 }
127 out.write(reinterpret_cast<char*>(nfragment),
128 sizeof(uint32_t)*nfragment[1]);
129
130 std::cout << " -> (new) ROS fragment #" << l1id
131 << " converted, checked and saved."
132 << std::endl;
133 }
134
135 delete[] fragment;
136 delete[] nfragment;
137 return 0;
138}
const char * what() const
Human description message.
const size_t MAX_ROS_SIZE