Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include "word.H"
00030 #include <OpenFOAM/IOstreams.H>
00031
00032
00033
00034 Foam::word::word(Istream& is)
00035 :
00036 string()
00037 {
00038 is >> *this;
00039 }
00040
00041
00042 Foam::Istream& Foam::operator>>(Istream& is, word& w)
00043 {
00044 token t(is);
00045
00046 if (!t.good())
00047 {
00048 is.setBad();
00049 return is;
00050 }
00051
00052 if (t.isWord())
00053 {
00054 w = t.wordToken();
00055 }
00056 else if (t.isString())
00057 {
00058
00059 w = t.stringToken();
00060 string::stripInvalid<word>(w);
00061
00062
00063 if (w.empty() || w.size() != t.stringToken().size())
00064 {
00065 is.setBad();
00066 FatalIOErrorIn("operator>>(Istream&, word&)", is)
00067 << "wrong token type - expected word found non-word characters "
00068 << t.info()
00069 << exit(FatalIOError);
00070 return is;
00071 }
00072 }
00073 else
00074 {
00075 is.setBad();
00076 FatalIOErrorIn("operator>>(Istream&, word&)", is)
00077 << "wrong token type - expected word found "
00078 << t.info()
00079 << exit(FatalIOError);
00080
00081 return is;
00082 }
00083
00084
00085 is.check("Istream& operator>>(Istream&, word&)");
00086
00087 return is;
00088 }
00089
00090
00091 Foam::Ostream& Foam::operator<<(Ostream& os, const word& w)
00092 {
00093 os.write(w);
00094 os.check("Ostream& operator<<(Ostream&, const word&)");
00095 return os;
00096 }
00097
00098
00099