Blame view
tools/openfst-1.6.7/include/fst/mutable-fst.h
11.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 |
// See www.openfst.org for extensive documentation on this weighted // finite-state transducer library. // // Expanded FST augmented with mutators; interface class definition and // mutable arc iterator interface. #ifndef FST_MUTABLE_FST_H_ #define FST_MUTABLE_FST_H_ #include <stddef.h> #include <sys/types.h> #include <istream> #include <string> #include <utility> #include <vector> #include <fst/log.h> #include <fstream> #include <fst/expanded-fst.h> namespace fst { template <class Arc> struct MutableArcIteratorData; // Abstract interface for an expanded FST which also supports mutation // operations. To modify arcs, use MutableArcIterator. template <class A> class MutableFst : public ExpandedFst<A> { public: using Arc = A; using StateId = typename Arc::StateId; using Weight = typename Arc::Weight; virtual MutableFst<Arc> &operator=(const Fst<Arc> &fst) = 0; MutableFst<Arc> &operator=(const MutableFst<Arc> &fst) { return operator=(static_cast<const Fst<Arc> &>(fst)); } // Sets the initial state. virtual void SetStart(StateId) = 0; // Sets a state's final weight. virtual void SetFinal(StateId, Weight) = 0; // Sets property bits w.r.t. mask. virtual void SetProperties(uint64 props, uint64 mask) = 0; // Adds a state and returns its ID. virtual StateId AddState() = 0; // Adds an arc to state. virtual void AddArc(StateId, const Arc &arc) = 0; // Deletes some states, preserving original StateId ordering. virtual void DeleteStates(const std::vector<StateId> &) = 0; // Delete all states. virtual void DeleteStates() = 0; // Delete some arcs at a given state. virtual void DeleteArcs(StateId, size_t n) = 0; // Delete all arcs at a given state. virtual void DeleteArcs(StateId) = 0; // Optional, best effort only. virtual void ReserveStates(StateId n) {} // Optional, best effort only. virtual void ReserveArcs(StateId s, size_t n) {} // Returns input label symbol table or nullptr if not specified. const SymbolTable *InputSymbols() const override = 0; // Returns output label symbol table or nullptr if not specified. const SymbolTable *OutputSymbols() const override = 0; // Returns input label symbol table or nullptr if not specified. virtual SymbolTable *MutableInputSymbols() = 0; // Returns output label symbol table or nullptr if not specified. virtual SymbolTable *MutableOutputSymbols() = 0; // Sets input label symbol table; pass nullptr to delete table. virtual void SetInputSymbols(const SymbolTable *isyms) = 0; // Sets output label symbol table; pass nullptr to delete table. virtual void SetOutputSymbols(const SymbolTable *osyms) = 0; // Gets a copy of this MutableFst. See Fst<>::Copy() for further doc. MutableFst<A> *Copy(bool safe = false) const override = 0; // Reads a MutableFst from an input stream, returning nullptr on error. static MutableFst<Arc> *Read(std::istream &strm, const FstReadOptions &opts) { FstReadOptions ropts(opts); FstHeader hdr; if (ropts.header) { hdr = *opts.header; } else { if (!hdr.Read(strm, opts.source)) return nullptr; ropts.header = &hdr; } if (!(hdr.Properties() & kMutable)) { LOG(ERROR) << "MutableFst::Read: Not a MutableFst: " << ropts.source; return nullptr; } const auto &fst_type = hdr.FstType(); const auto reader = FstRegister<Arc>::GetRegister()->GetReader(fst_type); if (!reader) { LOG(ERROR) << "MutableFst::Read: Unknown FST type \"" << fst_type << "\" (arc type = \"" << A::Type() << "\"): " << ropts.source; return nullptr; } auto *fst = reader(strm, ropts); if (!fst) return nullptr; return static_cast<MutableFst<Arc> *>(fst); } // Reads a MutableFst from a file; returns nullptr on error. An empty // filename results in reading from standard input. If convert is true, // convert to a mutable FST subclass (given by convert_type) in the case // that the input FST is non-mutable. static MutableFst<Arc> *Read(const string &filename, bool convert = false, const string &convert_type = "vector") { if (convert == false) { if (!filename.empty()) { std::ifstream strm(filename, std::ios_base::in | std::ios_base::binary); if (!strm) { LOG(ERROR) << "MutableFst::Read: Can't open file: " << filename; return nullptr; } return Read(strm, FstReadOptions(filename)); } else { return Read(std::cin, FstReadOptions("standard input")); } } else { // Converts to 'convert_type' if not mutable. std::unique_ptr<Fst<Arc>> ifst(Fst<Arc>::Read(filename)); if (!ifst) return nullptr; if (ifst->Properties(kMutable, false)) { return static_cast<MutableFst<Arc> *>(ifst.release()); } else { std::unique_ptr<Fst<Arc>> ofst(Convert(*ifst, convert_type)); ifst.reset(); if (!ofst) return nullptr; if (!ofst->Properties(kMutable, false)) { LOG(ERROR) << "MutableFst: Bad convert type: " << convert_type; } return static_cast<MutableFst<Arc> *>(ofst.release()); } } } // For generic mutuble arc iterator construction; not normally called // directly by users. virtual void InitMutableArcIterator(StateId s, MutableArcIteratorData<Arc> *data) = 0; }; // Mutable arc iterator interface, templated on the Arc definition. This is // used by mutable arc iterator specializations that are returned by the // InitMutableArcIterator MutableFst method. template <class Arc> class MutableArcIteratorBase : public ArcIteratorBase<Arc> { public: // Sets current arc. virtual void SetValue(const Arc &) = 0; }; template <class Arc> struct MutableArcIteratorData { MutableArcIteratorBase<Arc> *base; // Specific iterator. }; // Generic mutable arc iterator, templated on the FST definition; a wrapper // around a pointer to a more specific one. // // Here is a typical use: // // for (MutableArcIterator<StdFst> aiter(&fst, s); // !aiter.Done(); // aiter.Next()) { // StdArc arc = aiter.Value(); // arc.ilabel = 7; // aiter.SetValue(arc); // ... // } // // This version requires function calls. template <class FST> class MutableArcIterator { public: using Arc = typename FST::Arc; using StateId = typename Arc::StateId; MutableArcIterator(FST *fst, StateId s) { fst->InitMutableArcIterator(s, &data_); } ~MutableArcIterator() { delete data_.base; } bool Done() const { return data_.base->Done(); } const Arc &Value() const { return data_.base->Value(); } void Next() { data_.base->Next(); } size_t Position() const { return data_.base->Position(); } void Reset() { data_.base->Reset(); } void Seek(size_t a) { data_.base->Seek(a); } void SetValue(const Arc &arc) { data_.base->SetValue(arc); } uint32 Flags() const { return data_.base->Flags(); } void SetFlags(uint32 flags, uint32 mask) { return data_.base->SetFlags(flags, mask); } private: MutableArcIteratorData<Arc> data_; MutableArcIterator(const MutableArcIterator &) = delete; MutableArcIterator &operator=(const MutableArcIterator &) = delete; }; namespace internal { // MutableFst<A> case: abstract methods. template <class Arc> inline typename Arc::Weight Final(const MutableFst<Arc> &fst, typename Arc::StateId s) { return fst.Final(s); } template <class Arc> inline ssize_t NumArcs(const MutableFst<Arc> &fst, typename Arc::StateId s) { return fst.NumArcs(s); } template <class Arc> inline ssize_t NumInputEpsilons(const MutableFst<Arc> &fst, typename Arc::StateId s) { return fst.NumInputEpsilons(s); } template <class Arc> inline ssize_t NumOutputEpsilons(const MutableFst<Arc> &fst, typename Arc::StateId s) { return fst.NumOutputEpsilons(s); } } // namespace internal // A useful alias when using StdArc. using StdMutableFst = MutableFst<StdArc>; // This is a helper class template useful for attaching a MutableFst interface // to its implementation, handling reference counting and COW semantics. template <class Impl, class FST = MutableFst<typename Impl::Arc>> class ImplToMutableFst : public ImplToExpandedFst<Impl, FST> { public: using Arc = typename Impl::Arc; using StateId = typename Arc::StateId; using Weight = typename Arc::Weight; using ImplToExpandedFst<Impl, FST>::operator=; void SetStart(StateId s) override { MutateCheck(); GetMutableImpl()->SetStart(s); } void SetFinal(StateId s, Weight weight) override { MutateCheck(); GetMutableImpl()->SetFinal(s, std::move(weight)); } void SetProperties(uint64 props, uint64 mask) override { // Can skip mutate check if extrinsic properties don't change, // since it is then safe to update all (shallow) copies const auto exprops = kExtrinsicProperties & mask; if (GetImpl()->Properties(exprops) != (props & exprops)) MutateCheck(); GetMutableImpl()->SetProperties(props, mask); } StateId AddState() override { MutateCheck(); return GetMutableImpl()->AddState(); } void AddArc(StateId s, const Arc &arc) override { MutateCheck(); GetMutableImpl()->AddArc(s, arc); } void DeleteStates(const std::vector<StateId> &dstates) override { MutateCheck(); GetMutableImpl()->DeleteStates(dstates); } void DeleteStates() override { if (!Unique()) { const auto *isymbols = GetImpl()->InputSymbols(); const auto *osymbols = GetImpl()->OutputSymbols(); SetImpl(std::make_shared<Impl>()); GetMutableImpl()->SetInputSymbols(isymbols); GetMutableImpl()->SetOutputSymbols(osymbols); } else { GetMutableImpl()->DeleteStates(); } } void DeleteArcs(StateId s, size_t n) override { MutateCheck(); GetMutableImpl()->DeleteArcs(s, n); } void DeleteArcs(StateId s) override { MutateCheck(); GetMutableImpl()->DeleteArcs(s); } void ReserveStates(StateId s) override { MutateCheck(); GetMutableImpl()->ReserveStates(s); } void ReserveArcs(StateId s, size_t n) override { MutateCheck(); GetMutableImpl()->ReserveArcs(s, n); } const SymbolTable *InputSymbols() const override { return GetImpl()->InputSymbols(); } const SymbolTable *OutputSymbols() const override { return GetImpl()->OutputSymbols(); } SymbolTable *MutableInputSymbols() override { MutateCheck(); return GetMutableImpl()->InputSymbols(); } SymbolTable *MutableOutputSymbols() override { MutateCheck(); return GetMutableImpl()->OutputSymbols(); } void SetInputSymbols(const SymbolTable *isyms) override { MutateCheck(); GetMutableImpl()->SetInputSymbols(isyms); } void SetOutputSymbols(const SymbolTable *osyms) override { MutateCheck(); GetMutableImpl()->SetOutputSymbols(osyms); } protected: using ImplToExpandedFst<Impl, FST>::GetImpl; using ImplToExpandedFst<Impl, FST>::GetMutableImpl; using ImplToExpandedFst<Impl, FST>::Unique; using ImplToExpandedFst<Impl, FST>::SetImpl; using ImplToExpandedFst<Impl, FST>::InputSymbols; explicit ImplToMutableFst(std::shared_ptr<Impl> impl) : ImplToExpandedFst<Impl, FST>(impl) {} ImplToMutableFst(const ImplToMutableFst<Impl, FST> &fst, bool safe) : ImplToExpandedFst<Impl, FST>(fst, safe) {} void MutateCheck() { if (!Unique()) SetImpl(std::make_shared<Impl>(*this)); } }; } // namespace fst #endif // FST_MUTABLE_FST_H_ |