Blame view
src/util/kaldi-holder-inl.h
28.4 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 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 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 |
// util/kaldi-holder-inl.h // Copyright 2009-2011 Microsoft Corporation // 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_UTIL_KALDI_HOLDER_INL_H_ #define KALDI_UTIL_KALDI_HOLDER_INL_H_ #include <algorithm> #include <vector> #include <utility> #include <string> #include "base/kaldi-utils.h" #include "util/kaldi-io.h" #include "util/text-utils.h" #include "matrix/kaldi-matrix.h" namespace kaldi { /// \addtogroup holders /// @{ // KaldiObjectHolder is valid only for Kaldi objects with // copy constructors, default constructors, and "normal" // Kaldi Write and Read functions. E.g. it works for // Matrix and Vector. template<class KaldiType> class KaldiObjectHolder { public: typedef KaldiType T; KaldiObjectHolder(): t_(NULL) { } static bool Write(std::ostream &os, bool binary, const T &t) { InitKaldiOutputStream(os, binary); // Puts binary header if binary mode. try { t.Write(os, binary); return os.good(); } catch(const std::exception &e) { KALDI_WARN << "Exception caught writing Table object. " << e.what(); return false; // Write failure. } } void Clear() { if (t_) { delete t_; t_ = NULL; } } // Reads into the holder. bool Read(std::istream &is) { delete t_; t_ = new T; // Don't want any existing state to complicate the read function: get new // object. bool is_binary; if (!InitKaldiInputStream(is, &is_binary)) { KALDI_WARN << "Reading Table object, failed reading binary header "; return false; } try { t_->Read(is, is_binary); return true; } catch(const std::exception &e) { KALDI_WARN << "Exception caught reading Table object. " << e.what(); delete t_; t_ = NULL; return false; } } // Kaldi objects always have the stream open in binary mode for // reading. static bool IsReadInBinary() { return true; } T &Value() { // code error if !t_. if (!t_) KALDI_ERR << "KaldiObjectHolder::Value() called wrongly."; return *t_; } void Swap(KaldiObjectHolder<T> *other) { // the t_ values are pointers so this is a shallow swap. std::swap(t_, other->t_); } bool ExtractRange(const KaldiObjectHolder<T> &other, const std::string &range) { KALDI_ASSERT(other.t_ != NULL); delete t_; t_ = new T; // this call will fail for most object types. return ExtractObjectRange(*(other.t_), range, t_); } ~KaldiObjectHolder() { delete t_; } private: KALDI_DISALLOW_COPY_AND_ASSIGN(KaldiObjectHolder); T *t_; }; // BasicHolder is valid for float, double, bool, and integer // types. There will be a compile time error otherwise, because // we make sure that the {Write, Read}BasicType functions do not // get instantiated for other types. template<class BasicType> class BasicHolder { public: typedef BasicType T; BasicHolder(): t_(static_cast<T>(-1)) { } static bool Write(std::ostream &os, bool binary, const T &t) { InitKaldiOutputStream(os, binary); // Puts binary header if binary mode. try { WriteBasicType(os, binary, t); if (!binary) os << ' '; // Makes output format more readable and // easier to manipulate. return os.good(); } catch(const std::exception &e) { KALDI_WARN << "Exception caught writing Table object. " << e.what(); return false; // Write failure. } } void Clear() { } // Reads into the holder. bool Read(std::istream &is) { bool is_binary; if (!InitKaldiInputStream(is, &is_binary)) { KALDI_WARN << "Reading Table object [integer type], failed reading binary" " header "; return false; } try { int c; if (!is_binary) { // This is to catch errors, the class would work // without it.. // Eat up any whitespace and make sure it's not newline. while (isspace((c = is.peek())) && c != static_cast<int>(' ')) { is.get(); } if (is.peek() == ' ') { KALDI_WARN << "Found newline but expected basic type."; return false; // This is just to catch a more- // likely-than average type of error (empty line before the token), // since ReadBasicType will eat it up. } } ReadBasicType(is, is_binary, &t_); if (!is_binary) { // This is to catch errors, the class would work // without it.. // make sure there is a newline. while (isspace((c = is.peek())) && c != static_cast<int>(' ')) { is.get(); } if (is.peek() != ' ') { KALDI_WARN << "BasicHolder::Read, expected newline, got " << CharToString(is.peek()) << ", position " << is.tellg(); return false; } is.get(); // Consume the newline. } return true; } catch(const std::exception &e) { KALDI_WARN << "Exception caught reading Table object. " << e.what(); return false; } } // Objects read/written with the Kaldi I/O functions always have the stream // open in binary mode for reading. static bool IsReadInBinary() { return true; } T &Value() { return t_; } void Swap(BasicHolder<T> *other) { std::swap(t_, other->t_); } bool ExtractRange(const BasicHolder<T> &other, const std::string &range) { KALDI_ERR << "ExtractRange is not defined for this type of holder."; return false; } ~BasicHolder() { } private: KALDI_DISALLOW_COPY_AND_ASSIGN(BasicHolder); T t_; }; /// A Holder for a vector of basic types, e.g. /// std::vector<int32>, std::vector<float>, and so on. /// Note: a basic type is defined as a type for which ReadBasicType /// and WriteBasicType are implemented, i.e. integer and floating /// types, and bool. template<class BasicType> class BasicVectorHolder { public: typedef std::vector<BasicType> T; BasicVectorHolder() { } static bool Write(std::ostream &os, bool binary, const T &t) { InitKaldiOutputStream(os, binary); // Puts binary header if binary mode. try { if (binary) { // need to write the size, in binary mode. KALDI_ASSERT(static_cast<size_t>(static_cast<int32>(t.size())) == t.size()); // Or this Write routine cannot handle such a large vector. // use int32 because it's fixed size regardless of compilation. // change to int64 (plus in Read function) if this becomes a problem. WriteBasicType(os, binary, static_cast<int32>(t.size())); for (typename std::vector<BasicType>::const_iterator iter = t.begin(); iter != t.end(); ++iter) WriteBasicType(os, binary, *iter); } else { for (typename std::vector<BasicType>::const_iterator iter = t.begin(); iter != t.end(); ++iter) WriteBasicType(os, binary, *iter); os << ' '; // Makes output format more readable and // easier to manipulate. In text mode, this function writes something // like "1 2 3 ". } return os.good(); } catch(const std::exception &e) { KALDI_WARN << "Exception caught writing Table object (BasicVector). " << e.what(); return false; // Write failure. } } void Clear() { t_.clear(); } // Reads into the holder. bool Read(std::istream &is) { t_.clear(); bool is_binary; if (!InitKaldiInputStream(is, &is_binary)) { KALDI_WARN << "Reading Table object [integer type], failed reading binary" " header "; return false; } if (!is_binary) { // In text mode, we terminate with newline. std::string line; getline(is, line); // this will discard the , if present. if (is.fail()) { KALDI_WARN << "BasicVectorHolder::Read, error reading line " << (is.eof() ? "[eof]" : ""); return false; // probably eof. fail in any case. } std::istringstream line_is(line); try { while (1) { line_is >> std::ws; // eat up whitespace. if (line_is.eof()) break; BasicType bt; ReadBasicType(line_is, false, &bt); t_.push_back(bt); } return true; } catch(const std::exception &e) { KALDI_WARN << "BasicVectorHolder::Read, could not interpret line: " << "'" << line << "'" << " " << e.what(); return false; } } else { // binary mode. size_t filepos = is.tellg(); try { int32 size; ReadBasicType(is, true, &size); t_.resize(size); for (typename std::vector<BasicType>::iterator iter = t_.begin(); iter != t_.end(); ++iter) { ReadBasicType(is, true, &(*iter)); } return true; } catch(...) { KALDI_WARN << "BasicVectorHolder::Read, read error or unexpected data" " at archive entry beginning at file position " << filepos; return false; } } } // Objects read/written with the Kaldi I/O functions always have the stream // open in binary mode for reading. static bool IsReadInBinary() { return true; } T &Value() { return t_; } void Swap(BasicVectorHolder<BasicType> *other) { t_.swap(other->t_); } bool ExtractRange(const BasicVectorHolder<BasicType> &other, const std::string &range) { KALDI_ERR << "ExtractRange is not defined for this type of holder."; return false; } ~BasicVectorHolder() { } private: KALDI_DISALLOW_COPY_AND_ASSIGN(BasicVectorHolder); T t_; }; /// BasicVectorVectorHolder is a Holder for a vector of vector of /// a basic type, e.g. std::vector<std::vector<int32> >. /// Note: a basic type is defined as a type for which ReadBasicType /// and WriteBasicType are implemented, i.e. integer and floating /// types, and bool. template<class BasicType> class BasicVectorVectorHolder { public: typedef std::vector<std::vector<BasicType> > T; BasicVectorVectorHolder() { } static bool Write(std::ostream &os, bool binary, const T &t) { InitKaldiOutputStream(os, binary); // Puts binary header if binary mode. try { if (binary) { // need to write the size, in binary mode. KALDI_ASSERT(static_cast<size_t>(static_cast<int32>(t.size())) == t.size()); // Or this Write routine cannot handle such a large vector. // use int32 because it's fixed size regardless of compilation. // change to int64 (plus in Read function) if this becomes a problem. WriteBasicType(os, binary, static_cast<int32>(t.size())); for (typename std::vector<std::vector<BasicType> >::const_iterator iter = t.begin(); iter != t.end(); ++iter) { KALDI_ASSERT(static_cast<size_t>(static_cast<int32>(iter->size())) == iter->size()); WriteBasicType(os, binary, static_cast<int32>(iter->size())); for (typename std::vector<BasicType>::const_iterator iter2 = iter->begin(); iter2 != iter->end(); ++iter2) { WriteBasicType(os, binary, *iter2); } } } else { // text mode... // In text mode, we write out something like (for integers): // "1 2 3 ; 4 5 ; 6 ; ; 7 8 9 ; " // where the semicolon is a terminator, not a separator // (a separator would cause ambiguity between an // empty list, and a list containing a single empty list). for (typename std::vector<std::vector<BasicType> >::const_iterator iter = t.begin(); iter != t.end(); ++iter) { for (typename std::vector<BasicType>::const_iterator iter2 = iter->begin(); iter2 != iter->end(); ++iter2) WriteBasicType(os, binary, *iter2); os << "; "; } os << ' '; } return os.good(); } catch(const std::exception &e) { KALDI_WARN << "Exception caught writing Table object. " << e.what(); return false; // Write failure. } } void Clear() { t_.clear(); } // Reads into the holder. bool Read(std::istream &is) { t_.clear(); bool is_binary; if (!InitKaldiInputStream(is, &is_binary)) { KALDI_WARN << "Failed reading binary header "; return false; } if (!is_binary) { // In text mode, we terminate with newline. try { // catching errors from ReadBasicType.. std::vector<BasicType> v; // temporary vector while (1) { int i = is.peek(); if (i == -1) { KALDI_WARN << "Unexpected EOF"; return false; } else if (static_cast<char>(i) == ' ') { if (!v.empty()) { KALDI_WARN << "No semicolon before newline (wrong format)"; return false; } else { is.get(); return true; } } else if (std::isspace(i)) { is.get(); } else if (static_cast<char>(i) == ';') { t_.push_back(v); v.clear(); is.get(); } else { // some object we want to read... BasicType b; ReadBasicType(is, false, &b); // throws on error. v.push_back(b); } } } catch(const std::exception &e) { KALDI_WARN << "BasicVectorVectorHolder::Read, read error. " << e.what(); return false; } } else { // binary mode. size_t filepos = is.tellg(); try { int32 size; ReadBasicType(is, true, &size); t_.resize(size); for (typename std::vector<std::vector<BasicType> >::iterator iter = t_.begin(); iter != t_.end(); ++iter) { int32 size2; ReadBasicType(is, true, &size2); iter->resize(size2); for (typename std::vector<BasicType>::iterator iter2 = iter->begin(); iter2 != iter->end(); ++iter2) ReadBasicType(is, true, &(*iter2)); } return true; } catch(...) { KALDI_WARN << "Read error or unexpected data at archive entry beginning" " at file position " << filepos; return false; } } } // Objects read/written with the Kaldi I/O functions always have the stream // open in binary mode for reading. static bool IsReadInBinary() { return true; } T &Value() { return t_; } void Swap(BasicVectorVectorHolder<BasicType> *other) { t_.swap(other->t_); } bool ExtractRange(BasicVectorVectorHolder<BasicType> &other, const std::string &range) { KALDI_ERR << "ExtractRange is not defined for this type of holder."; return false; } ~BasicVectorVectorHolder() { } private: KALDI_DISALLOW_COPY_AND_ASSIGN(BasicVectorVectorHolder); T t_; }; /// BasicPairVectorHolder is a Holder for a vector of pairs of /// a basic type, e.g. std::vector<std::pair<int32, int32> >. /// Note: a basic type is defined as a type for which ReadBasicType /// and WriteBasicType are implemented, i.e. integer and floating /// types, and bool. template<class BasicType> class BasicPairVectorHolder { public: typedef std::vector<std::pair<BasicType, BasicType> > T; BasicPairVectorHolder() { } static bool Write(std::ostream &os, bool binary, const T &t) { InitKaldiOutputStream(os, binary); // Puts binary header if binary mode. try { if (binary) { // need to write the size, in binary mode. KALDI_ASSERT(static_cast<size_t>(static_cast<int32>(t.size())) == t.size()); // Or this Write routine cannot handle such a large vector. // use int32 because it's fixed size regardless of compilation. // change to int64 (plus in Read function) if this becomes a problem. WriteBasicType(os, binary, static_cast<int32>(t.size())); for (typename T::const_iterator iter = t.begin(); iter != t.end(); ++iter) { WriteBasicType(os, binary, iter->first); WriteBasicType(os, binary, iter->second); } } else { // text mode... // In text mode, we write out something like (for integers): // "1 2 ; 4 5 ; 6 7 ; 8 9 " // where the semicolon is a separator, not a terminator. for (typename T::const_iterator iter = t.begin(); iter != t.end();) { WriteBasicType(os, binary, iter->first); WriteBasicType(os, binary, iter->second); ++iter; if (iter != t.end()) os << "; "; } os << ' '; } return os.good(); } catch(const std::exception &e) { KALDI_WARN << "Exception caught writing Table object. " << e.what(); return false; // Write failure. } } void Clear() { t_.clear(); } // Reads into the holder. bool Read(std::istream &is) { t_.clear(); bool is_binary; if (!InitKaldiInputStream(is, &is_binary)) { KALDI_WARN << "Reading Table object [integer type], failed reading binary" " header "; return false; } if (!is_binary) { // In text mode, we terminate with newline. try { // catching errors from ReadBasicType.. std::vector<BasicType> v; // temporary vector while (1) { int i = is.peek(); if (i == -1) { KALDI_WARN << "Unexpected EOF"; return false; } else if (static_cast<char>(i) == ' ') { if (t_.empty() && v.empty()) { is.get(); return true; } else if (v.size() == 2) { t_.push_back(std::make_pair(v[0], v[1])); is.get(); return true; } else { KALDI_WARN << "Unexpected newline, reading vector<pair<?> >; got " << v.size() << " elements, expected 2."; return false; } } else if (std::isspace(i)) { is.get(); } else if (static_cast<char>(i) == ';') { if (v.size() != 2) { KALDI_WARN << "Wrong input format, reading vector<pair<?> >; got " << v.size() << " elements, expected 2."; return false; } t_.push_back(std::make_pair(v[0], v[1])); v.clear(); is.get(); } else { // some object we want to read... BasicType b; ReadBasicType(is, false, &b); // throws on error. v.push_back(b); } } } catch(const std::exception &e) { KALDI_WARN << "BasicPairVectorHolder::Read, read error. " << e.what(); return false; } } else { // binary mode. size_t filepos = is.tellg(); try { int32 size; ReadBasicType(is, true, &size); t_.resize(size); for (typename T::iterator iter = t_.begin(); iter != t_.end(); ++iter) { ReadBasicType(is, true, &(iter->first)); ReadBasicType(is, true, &(iter->second)); } return true; } catch(...) { KALDI_WARN << "BasicVectorHolder::Read, read error or unexpected data" " at archive entry beginning at file position " << filepos; return false; } } } // Objects read/written with the Kaldi I/O functions always have the stream // open in binary mode for reading. static bool IsReadInBinary() { return true; } T &Value() { return t_; } void Swap(BasicPairVectorHolder<BasicType> *other) { t_.swap(other->t_); } bool ExtractRange(const BasicPairVectorHolder<BasicType> &other, const std::string &range) { KALDI_ERR << "ExtractRange is not defined for this type of holder."; return false; } ~BasicPairVectorHolder() { } private: KALDI_DISALLOW_COPY_AND_ASSIGN(BasicPairVectorHolder); T t_; }; // We define a Token as a nonempty, printable, whitespace-free std::string. // The binary and text formats here are the same (newline-terminated) // and as such we don't bother with the binary-mode headers. class TokenHolder { public: typedef std::string T; TokenHolder() {} static bool Write(std::ostream &os, bool, const T &t) { // ignore binary-mode KALDI_ASSERT(IsToken(t)); os << t << ' '; return os.good(); } void Clear() { t_.clear(); } // Reads into the holder. bool Read(std::istream &is) { is >> t_; if (is.fail()) return false; char c; while (isspace(c = is.peek()) && c!= ' ') is.get(); if (is.peek() != ' ') { KALDI_WARN << "TokenHolder::Read, expected newline, got char " << CharToString(is.peek()) << ", at stream pos " << is.tellg(); return false; } is.get(); // get ' ' return true; } // Since this is fundamentally a text format, read in text mode (would work // fine either way, but doing it this way will exercise more of the code). static bool IsReadInBinary() { return false; } T &Value() { return t_; } ~TokenHolder() { } void Swap(TokenHolder *other) { t_.swap(other->t_); } bool ExtractRange(const TokenHolder &other, const std::string &range) { KALDI_ERR << "ExtractRange is not defined for this type of holder."; return false; } private: KALDI_DISALLOW_COPY_AND_ASSIGN(TokenHolder); T t_; }; // A Token is a nonempty, whitespace-free std::string. // Class TokenVectorHolder is a Holder class for vectors of these. class TokenVectorHolder { public: typedef std::vector<std::string> T; TokenVectorHolder() { } static bool Write(std::ostream &os, bool, const T &t) { // ignore binary-mode for (std::vector<std::string>::const_iterator iter = t.begin(); iter != t.end(); ++iter) { KALDI_ASSERT(IsToken(*iter)); // make sure it's whitespace-free, // printable and nonempty. os << *iter << ' '; } os << ' '; return os.good(); } void Clear() { t_.clear(); } // Reads into the holder. bool Read(std::istream &is) { t_.clear(); // there is no binary/non-binary mode. std::string line; getline(is, line); // this will discard the , if present. if (is.fail()) { KALDI_WARN << "BasicVectorHolder::Read, error reading line " << (is.eof() ? "[eof]" : ""); return false; // probably eof. fail in any case. } const char *white_chars = " \t \r\f\v"; SplitStringToVector(line, white_chars, true, &t_); // true== omit // empty strings e.g. between spaces. return true; } // Read in text format since it's basically a text-mode thing.. doesn't really // matter, it would work either way since we ignore the extra '\r'. static bool IsReadInBinary() { return false; } T &Value() { return t_; } void Swap(TokenVectorHolder *other) { t_.swap(other->t_); } bool ExtractRange(const TokenVectorHolder &other, const std::string &range) { KALDI_ERR << "ExtractRange is not defined for this type of holder."; return false; } private: KALDI_DISALLOW_COPY_AND_ASSIGN(TokenVectorHolder); T t_; }; class HtkMatrixHolder { public: typedef std::pair<Matrix<BaseFloat>, HtkHeader> T; HtkMatrixHolder() {} static bool Write(std::ostream &os, bool binary, const T &t) { if (!binary) KALDI_ERR << "Non-binary HTK-format write not supported."; bool ans = WriteHtk(os, t.first, t.second); if (!ans) KALDI_WARN << "Error detected writing HTK-format matrix."; return ans; } void Clear() { t_.first.Resize(0, 0); } // Reads into the holder. bool Read(std::istream &is) { bool ans = ReadHtk(is, &t_.first, &t_.second); if (!ans) { KALDI_WARN << "Error detected reading HTK-format matrix."; return false; } return ans; } // HTK-format matrices only read in binary. static bool IsReadInBinary() { return true; } T &Value() { return t_; } void Swap(HtkMatrixHolder *other) { t_.first.Swap(&(other->t_.first)); std::swap(t_.second, other->t_.second); } bool ExtractRange(const HtkMatrixHolder &other, const std::string &range) { KALDI_ERR << "ExtractRange is not defined for this type of holder."; return false; } // Default destructor. private: KALDI_DISALLOW_COPY_AND_ASSIGN(HtkMatrixHolder); T t_; }; // SphinxMatrixHolder can be used to read and write feature files in // CMU Sphinx format. 13-dimensional big-endian features are assumed. // The ultimate reference is SphinxBase's source code (for example see // feat_s2mfc_read() in src/libsphinxbase/feat/feat.c). // We can't fully automate the detection of machine/feature file endianess // mismatch here, because for this Sphinx relies on comparing the feature // file's size with the number recorded in its header. We are working with // streams, however(what happens if this is a Kaldi archive?). This should // be no problem, because the usage help of Sphinx' "wave2feat" for example // says that Sphinx features are always big endian. // Note: the kFeatDim defaults to 13, see forward declaration in kaldi-holder.h template<int kFeatDim> class SphinxMatrixHolder { public: typedef Matrix<BaseFloat> T; SphinxMatrixHolder() {} void Clear() { feats_.Resize(0, 0); } // Writes Sphinx-format features static bool Write(std::ostream &os, bool binary, const T &m) { if (!binary) { KALDI_WARN << "SphinxMatrixHolder can't write Sphinx features in text "; return false; } int32 size = m.NumRows() * m.NumCols(); if (MachineIsLittleEndian()) KALDI_SWAP4(size); // write the header os.write(reinterpret_cast<char*> (&size), sizeof(size)); for (MatrixIndexT i = 0; i < m.NumRows(); i++) { std::vector<float32> tmp(m.NumCols()); for (MatrixIndexT j = 0; j < m.NumCols(); j++) { tmp[j] = static_cast<float32>(m(i, j)); if (MachineIsLittleEndian()) KALDI_SWAP4(tmp[j]); } os.write(reinterpret_cast<char*>(&(tmp[0])), tmp.size() * 4); } return true; } // Reads the features into a Kaldi Matrix bool Read(std::istream &is) { int32 nmfcc; is.read(reinterpret_cast<char*> (&nmfcc), sizeof(nmfcc)); if (MachineIsLittleEndian()) KALDI_SWAP4(nmfcc); KALDI_VLOG(2) << "#feats: " << nmfcc; int32 nfvec = nmfcc / kFeatDim; if ((nmfcc % kFeatDim) != 0) { KALDI_WARN << "Sphinx feature count is inconsistent with vector length "; return false; } feats_.Resize(nfvec, kFeatDim); for (MatrixIndexT i = 0; i < feats_.NumRows(); i++) { if (sizeof(BaseFloat) == sizeof(float32)) { is.read(reinterpret_cast<char*> (feats_.RowData(i)), kFeatDim * sizeof(float32)); if (!is.good()) { KALDI_WARN << "Unexpected error/EOF while reading Sphinx features "; return false; } if (MachineIsLittleEndian()) { for (MatrixIndexT j = 0; j < kFeatDim; j++) KALDI_SWAP4(feats_(i, j)); } } else { // KALDI_DOUBLEPRECISION=1 float32 tmp[kFeatDim]; is.read(reinterpret_cast<char*> (tmp), sizeof(tmp)); if (!is.good()) { KALDI_WARN << "Unexpected error/EOF while reading Sphinx features "; return false; } for (MatrixIndexT j = 0; j < kFeatDim; j++) { if (MachineIsLittleEndian()) KALDI_SWAP4(tmp[j]); feats_(i, j) = static_cast<BaseFloat>(tmp[j]); } } } return true; } // Only read in binary static bool IsReadInBinary() { return true; } T &Value() { return feats_; } void Swap(SphinxMatrixHolder *other) { feats_.Swap(&(other->feats_)); } bool ExtractRange(const SphinxMatrixHolder &other, const std::string &range) { KALDI_ERR << "ExtractRange is not defined for this type of holder."; return false; } private: KALDI_DISALLOW_COPY_AND_ASSIGN(SphinxMatrixHolder); T feats_; }; /// @} end "addtogroup holders" } // end namespace kaldi #endif // KALDI_UTIL_KALDI_HOLDER_INL_H_ |