Blame view
src/base/io-funcs-inl.h
11.1 KB
8dcb6dfcb first commit |
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 |
// base/io-funcs-inl.h // Copyright 2009-2011 Microsoft Corporation; Saarland University; // Jan Silovsky; Yanmin Qian; // Johns Hopkins University (Author: Daniel Povey) // 2016 Xiaohui Zhang // See ../../COPYING for clarification regarding multiple authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED // WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, // MERCHANTABLITY OR NON-INFRINGEMENT. // See the Apache 2 License for the specific language governing permissions and // limitations under the License. #ifndef KALDI_BASE_IO_FUNCS_INL_H_ #define KALDI_BASE_IO_FUNCS_INL_H_ 1 // Do not include this file directly. It is included by base/io-funcs.h #include <limits> #include <vector> namespace kaldi { // Template that covers integers. template<class T> void WriteBasicType(std::ostream &os, bool binary, T t) { // Compile time assertion that this is not called with a wrong type. KALDI_ASSERT_IS_INTEGER_TYPE(T); if (binary) { char len_c = (std::numeric_limits<T>::is_signed ? 1 : -1) * static_cast<char>(sizeof(t)); os.put(len_c); os.write(reinterpret_cast<const char *>(&t), sizeof(t)); } else { if (sizeof(t) == 1) os << static_cast<int16>(t) << " "; else os << t << " "; } if (os.fail()) { KALDI_ERR << "Write failure in WriteBasicType."; } } // Template that covers integers. template<class T> inline void ReadBasicType(std::istream &is, bool binary, T *t) { KALDI_PARANOID_ASSERT(t != NULL); // Compile time assertion that this is not called with a wrong type. KALDI_ASSERT_IS_INTEGER_TYPE(T); if (binary) { int len_c_in = is.get(); if (len_c_in == -1) KALDI_ERR << "ReadBasicType: encountered end of stream."; char len_c = static_cast<char>(len_c_in), len_c_expected = (std::numeric_limits<T>::is_signed ? 1 : -1) * static_cast<char>(sizeof(*t)); if (len_c != len_c_expected) { KALDI_ERR << "ReadBasicType: did not get expected integer type, " << static_cast<int>(len_c) << " vs. " << static_cast<int>(len_c_expected) << ". You can change this code to successfully" << " read it later, if needed."; // insert code here to read "wrong" type. Might have a switch statement. } is.read(reinterpret_cast<char *>(t), sizeof(*t)); } else { if (sizeof(*t) == 1) { int16 i; is >> i; *t = i; } else { is >> *t; } } if (is.fail()) { KALDI_ERR << "Read failure in ReadBasicType, file position is " << is.tellg() << ", next char is " << is.peek(); } } // Template that covers integers. template<class T> inline void WriteIntegerPairVector(std::ostream &os, bool binary, const std::vector<std::pair<T, T> > &v) { // Compile time assertion that this is not called with a wrong type. KALDI_ASSERT_IS_INTEGER_TYPE(T); if (binary) { char sz = sizeof(T); // this is currently just a check. os.write(&sz, 1); int32 vecsz = static_cast<int32>(v.size()); KALDI_ASSERT((size_t)vecsz == v.size()); os.write(reinterpret_cast<const char *>(&vecsz), sizeof(vecsz)); if (vecsz != 0) { os.write(reinterpret_cast<const char *>(&(v[0])), sizeof(T) * vecsz * 2); } } else { // focus here is on prettiness of text form rather than // efficiency of reading-in. // reading-in is dominated by low-level operations anyway: // for efficiency use binary. os << "[ "; typename std::vector<std::pair<T, T> >::const_iterator iter = v.begin(), end = v.end(); for (; iter != end; ++iter) { if (sizeof(T) == 1) os << static_cast<int16>(iter->first) << ',' << static_cast<int16>(iter->second) << ' '; else os << iter->first << ',' << iter->second << ' '; } os << "] "; } if (os.fail()) { KALDI_ERR << "Write failure in WriteIntegerPairVector."; } } // Template that covers integers. template<class T> inline void ReadIntegerPairVector(std::istream &is, bool binary, std::vector<std::pair<T, T> > *v) { KALDI_ASSERT_IS_INTEGER_TYPE(T); KALDI_ASSERT(v != NULL); if (binary) { int sz = is.peek(); if (sz == sizeof(T)) { is.get(); } else { // this is currently just a check. KALDI_ERR << "ReadIntegerPairVector: expected to see type of size " << sizeof(T) << ", saw instead " << sz << ", at file position " << is.tellg(); } int32 vecsz; is.read(reinterpret_cast<char *>(&vecsz), sizeof(vecsz)); if (is.fail() || vecsz < 0) goto bad; v->resize(vecsz); if (vecsz > 0) { is.read(reinterpret_cast<char *>(&((*v)[0])), sizeof(T)*vecsz*2); } } else { std::vector<std::pair<T, T> > tmp_v; // use temporary so v doesn't use extra memory // due to resizing. is >> std::ws; if (is.peek() != static_cast<int>('[')) { KALDI_ERR << "ReadIntegerPairVector: expected to see [, saw " << is.peek() << ", at file position " << is.tellg(); } is.get(); // consume the '['. is >> std::ws; // consume whitespace. while (is.peek() != static_cast<int>(']')) { if (sizeof(T) == 1) { // read/write chars as numbers. int16 next_t1, next_t2; is >> next_t1; if (is.fail()) goto bad; if (is.peek() != static_cast<int>(',')) KALDI_ERR << "ReadIntegerPairVector: expected to see ',', saw " << is.peek() << ", at file position " << is.tellg(); is.get(); // consume the ','. is >> next_t2 >> std::ws; if (is.fail()) goto bad; else tmp_v.push_back(std::make_pair<T, T>((T)next_t1, (T)next_t2)); } else { T next_t1, next_t2; is >> next_t1; if (is.fail()) goto bad; if (is.peek() != static_cast<int>(',')) KALDI_ERR << "ReadIntegerPairVector: expected to see ',', saw " << is.peek() << ", at file position " << is.tellg(); is.get(); // consume the ','. is >> next_t2 >> std::ws; if (is.fail()) goto bad; else tmp_v.push_back(std::pair<T, T>(next_t1, next_t2)); } } is.get(); // get the final ']'. *v = tmp_v; // could use std::swap to use less temporary memory, but this // uses less permanent memory. } if (!is.fail()) return; bad: KALDI_ERR << "ReadIntegerPairVector: read failure at file position " << is.tellg(); } template<class T> inline void WriteIntegerVector(std::ostream &os, bool binary, const std::vector<T> &v) { // Compile time assertion that this is not called with a wrong type. KALDI_ASSERT_IS_INTEGER_TYPE(T); if (binary) { char sz = sizeof(T); // this is currently just a check. os.write(&sz, 1); int32 vecsz = static_cast<int32>(v.size()); KALDI_ASSERT((size_t)vecsz == v.size()); os.write(reinterpret_cast<const char *>(&vecsz), sizeof(vecsz)); if (vecsz != 0) { os.write(reinterpret_cast<const char *>(&(v[0])), sizeof(T)*vecsz); } } else { // focus here is on prettiness of text form rather than // efficiency of reading-in. // reading-in is dominated by low-level operations anyway: // for efficiency use binary. os << "[ "; typename std::vector<T>::const_iterator iter = v.begin(), end = v.end(); for (; iter != end; ++iter) { if (sizeof(T) == 1) os << static_cast<int16>(*iter) << " "; else os << *iter << " "; } os << "] "; } if (os.fail()) { KALDI_ERR << "Write failure in WriteIntegerVector."; } } template<class T> inline void ReadIntegerVector(std::istream &is, bool binary, std::vector<T> *v) { KALDI_ASSERT_IS_INTEGER_TYPE(T); KALDI_ASSERT(v != NULL); if (binary) { int sz = is.peek(); if (sz == sizeof(T)) { is.get(); } else { // this is currently just a check. KALDI_ERR << "ReadIntegerVector: expected to see type of size " << sizeof(T) << ", saw instead " << sz << ", at file position " << is.tellg(); } int32 vecsz; is.read(reinterpret_cast<char *>(&vecsz), sizeof(vecsz)); if (is.fail() || vecsz < 0) goto bad; v->resize(vecsz); if (vecsz > 0) { is.read(reinterpret_cast<char *>(&((*v)[0])), sizeof(T)*vecsz); } } else { std::vector<T> tmp_v; // use temporary so v doesn't use extra memory // due to resizing. is >> std::ws; if (is.peek() != static_cast<int>('[')) { KALDI_ERR << "ReadIntegerVector: expected to see [, saw " << is.peek() << ", at file position " << is.tellg(); } is.get(); // consume the '['. is >> std::ws; // consume whitespace. while (is.peek() != static_cast<int>(']')) { if (sizeof(T) == 1) { // read/write chars as numbers. int16 next_t; is >> next_t >> std::ws; if (is.fail()) goto bad; else tmp_v.push_back((T)next_t); } else { T next_t; is >> next_t >> std::ws; if (is.fail()) goto bad; else tmp_v.push_back(next_t); } } is.get(); // get the final ']'. *v = tmp_v; // could use std::swap to use less temporary memory, but this // uses less permanent memory. } if (!is.fail()) return; bad: KALDI_ERR << "ReadIntegerVector: read failure at file position " << is.tellg(); } // Initialize an opened stream for writing by writing an optional binary // header and modifying the floating-point precision. inline void InitKaldiOutputStream(std::ostream &os, bool binary) { // This does not throw exceptions (does not check for errors). if (binary) { os.put('\0'); os.put('B'); } // Note, in non-binary mode we may at some point want to mess with // the precision a bit. // 7 is a bit more than the precision of float.. if (os.precision() < 7) os.precision(7); } /// Initialize an opened stream for reading by detecting the binary header and // setting the "binary" value appropriately. inline bool InitKaldiInputStream(std::istream &is, bool *binary) { // Sets the 'binary' variable. // Throws exception in the very unusual situation that stream // starts with '\0' but not then 'B'. if (is.peek() == '\0') { // seems to be binary is.get(); if (is.peek() != 'B') { return false; } is.get(); *binary = true; return true; } else { *binary = false; return true; } } } // end namespace kaldi. #endif // KALDI_BASE_IO_FUNCS_INL_H_ |