forked from boostorg/regex
Added explicit calls to fstream::close rather than relying on destructors as a tentative gcc-cygwin fix.
[SVN r21287]
This commit is contained in:
@ -79,6 +79,7 @@ int main(int argc, char* argv[])
|
|||||||
std::ifstream fs(argv[i]);
|
std::ifstream fs(argv[i]);
|
||||||
if(fs.bad()) continue;
|
if(fs.bad()) continue;
|
||||||
search(fs);
|
search(fs);
|
||||||
|
fs.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -105,6 +105,7 @@ int main(int argc, const char** argv)
|
|||||||
map_type m;
|
map_type m;
|
||||||
std::ifstream fs(argv[i]);
|
std::ifstream fs(argv[i]);
|
||||||
load_file(text, fs);
|
load_file(text, fs);
|
||||||
|
fs.close();
|
||||||
IndexClasses(m, text);
|
IndexClasses(m, text);
|
||||||
cout << m.size() << " matches found" << endl;
|
cout << m.size() << " matches found" << endl;
|
||||||
map_type::iterator c, d;
|
map_type::iterator c, d;
|
||||||
|
@ -101,6 +101,7 @@ int main(int argc, const char** argv)
|
|||||||
cout << "Processing file " << argv[i] << endl;
|
cout << "Processing file " << argv[i] << endl;
|
||||||
std::ifstream fs(argv[i]);
|
std::ifstream fs(argv[i]);
|
||||||
load_file(text, fs);
|
load_file(text, fs);
|
||||||
|
fs.close();
|
||||||
IndexClasses(text);
|
IndexClasses(text);
|
||||||
cout << class_index.size() << " matches found" << endl;
|
cout << class_index.size() << " matches found" << endl;
|
||||||
map_type::iterator c, d;
|
map_type::iterator c, d;
|
||||||
|
@ -124,6 +124,7 @@ int main(int argc, const char** argv)
|
|||||||
cout << "Processing file " << argv[i] << endl;
|
cout << "Processing file " << argv[i] << endl;
|
||||||
std::ifstream fs(argv[i]);
|
std::ifstream fs(argv[i]);
|
||||||
load_file(text, fs);
|
load_file(text, fs);
|
||||||
|
fs.close();
|
||||||
class_index idx;
|
class_index idx;
|
||||||
idx.IndexClasses(text);
|
idx.IndexClasses(text);
|
||||||
cout << idx.get_map().size() << " matches found" << endl;
|
cout << idx.get_map().size() << " matches found" << endl;
|
||||||
|
@ -123,6 +123,7 @@ int main(int argc, const char** argv)
|
|||||||
cout << "Processing file " << argv[i] << endl;
|
cout << "Processing file " << argv[i] << endl;
|
||||||
std::ifstream fs(argv[i]);
|
std::ifstream fs(argv[i]);
|
||||||
load_file(text, fs);
|
load_file(text, fs);
|
||||||
|
fs.close();
|
||||||
class_index i;
|
class_index i;
|
||||||
i.IndexClasses(text);
|
i.IndexClasses(text);
|
||||||
cout << i.get_map().size() << " matches found" << endl;
|
cout << i.get_map().size() << " matches found" << endl;
|
||||||
|
@ -89,6 +89,7 @@ int main(int argc, const char** argv)
|
|||||||
cout << "Processing file " << argv[i] << endl;
|
cout << "Processing file " << argv[i] << endl;
|
||||||
std::ifstream fs(argv[i]);
|
std::ifstream fs(argv[i]);
|
||||||
load_file(text, fs);
|
load_file(text, fs);
|
||||||
|
fs.close();
|
||||||
// construct our iterators:
|
// construct our iterators:
|
||||||
boost::sregex_iterator m1(text.begin(), text.end(), expression);
|
boost::sregex_iterator m1(text.begin(), text.end(), expression);
|
||||||
boost::sregex_iterator m2;
|
boost::sregex_iterator m2;
|
||||||
|
@ -62,6 +62,7 @@ int main(int argc, const char** argv)
|
|||||||
std::ifstream fs(argv[i]);
|
std::ifstream fs(argv[i]);
|
||||||
std::string in;
|
std::string in;
|
||||||
load_file(in, fs);
|
load_file(in, fs);
|
||||||
|
fs.close();
|
||||||
std::string out_name = std::string(argv[i]) + std::string(".htm");
|
std::string out_name = std::string(argv[i]) + std::string(".htm");
|
||||||
std::ofstream os(out_name.c_str());
|
std::ofstream os(out_name.c_str());
|
||||||
os << header_text;
|
os << header_text;
|
||||||
@ -76,6 +77,7 @@ int main(int argc, const char** argv)
|
|||||||
std::ostream_iterator<char> out(os);
|
std::ostream_iterator<char> out(os);
|
||||||
boost::regex_merge(out, s.begin(), s.end(), e1, format_string, boost::match_default | boost::format_all);
|
boost::regex_merge(out, s.begin(), s.end(), e1, format_string, boost::match_default | boost::format_all);
|
||||||
os << footer_text;
|
os << footer_text;
|
||||||
|
os.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(...)
|
catch(...)
|
||||||
|
@ -62,6 +62,7 @@ int main(int argc, const char** argv)
|
|||||||
std::ifstream fs(argv[i]);
|
std::ifstream fs(argv[i]);
|
||||||
std::string in;
|
std::string in;
|
||||||
load_file(in, fs);
|
load_file(in, fs);
|
||||||
|
fs.close();
|
||||||
std::string out_name = std::string(argv[i]) + std::string(".htm");
|
std::string out_name = std::string(argv[i]) + std::string(".htm");
|
||||||
std::ofstream os(out_name.c_str());
|
std::ofstream os(out_name.c_str());
|
||||||
os << header_text;
|
os << header_text;
|
||||||
@ -76,6 +77,7 @@ int main(int argc, const char** argv)
|
|||||||
std::ostream_iterator<char> out(os);
|
std::ostream_iterator<char> out(os);
|
||||||
boost::regex_replace(out, s.begin(), s.end(), e1, format_string, boost::match_default | boost::format_all);
|
boost::regex_replace(out, s.begin(), s.end(), e1, format_string, boost::match_default | boost::format_all);
|
||||||
os << footer_text;
|
os << footer_text;
|
||||||
|
os.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(...)
|
catch(...)
|
||||||
|
@ -103,6 +103,7 @@ int main(int argc, const char** argv)
|
|||||||
map_type m;
|
map_type m;
|
||||||
std::ifstream fs(argv[i]);
|
std::ifstream fs(argv[i]);
|
||||||
load_file(text, fs);
|
load_file(text, fs);
|
||||||
|
fs.close();
|
||||||
IndexClasses(m, text);
|
IndexClasses(m, text);
|
||||||
cout << m.size() << " matches found" << endl;
|
cout << m.size() << " matches found" << endl;
|
||||||
map_type::iterator c, d;
|
map_type::iterator c, d;
|
||||||
|
@ -55,6 +55,7 @@ int main(int argc, char** argv)
|
|||||||
s.erase();
|
s.erase();
|
||||||
std::ifstream is(argv[i]);
|
std::ifstream is(argv[i]);
|
||||||
load_file(s, is);
|
load_file(s, is);
|
||||||
|
is.close();
|
||||||
boost::regex_split(std::back_inserter(l), s, e);
|
boost::regex_split(std::back_inserter(l), s, e);
|
||||||
while(l.size())
|
while(l.size())
|
||||||
{
|
{
|
||||||
@ -74,6 +75,7 @@ int main(int argc, char** argv)
|
|||||||
s.erase();
|
s.erase();
|
||||||
std::ifstream is(argv[i]);
|
std::ifstream is(argv[i]);
|
||||||
load_file(s, is);
|
load_file(s, is);
|
||||||
|
is.close();
|
||||||
while(boost::regex_split(std::ostream_iterator<std::string>(std::cout), s, e, boost::match_default, 1)) std::cout << std::endl;
|
while(boost::regex_split(std::ostream_iterator<std::string>(std::cout), s, e, boost::match_default, 1)) std::cout << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,6 +53,7 @@ int main(int argc, char** argv)
|
|||||||
s.erase();
|
s.erase();
|
||||||
std::ifstream is(argv[i]);
|
std::ifstream is(argv[i]);
|
||||||
load_file(s, is);
|
load_file(s, is);
|
||||||
|
is.close();
|
||||||
boost::sregex_token_iterator i(s.begin(), s.end(), e, 1);
|
boost::sregex_token_iterator i(s.begin(), s.end(), e, 1);
|
||||||
boost::sregex_token_iterator j;
|
boost::sregex_token_iterator j;
|
||||||
while(i != j)
|
while(i != j)
|
||||||
@ -71,6 +72,7 @@ int main(int argc, char** argv)
|
|||||||
s.erase();
|
s.erase();
|
||||||
std::ifstream is(argv[i]);
|
std::ifstream is(argv[i]);
|
||||||
load_file(s, is);
|
load_file(s, is);
|
||||||
|
is.close();
|
||||||
const int subs[] = {1, 0,};
|
const int subs[] = {1, 0,};
|
||||||
boost::sregex_token_iterator i(s.begin(), s.end(), e, subs);
|
boost::sregex_token_iterator i(s.begin(), s.end(), e, subs);
|
||||||
boost::sregex_token_iterator j;
|
boost::sregex_token_iterator j;
|
||||||
|
@ -359,7 +359,10 @@ int main(int argc, char**argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(pbuf)
|
if(pbuf)
|
||||||
|
{
|
||||||
cin.rdbuf(pbuf);
|
cin.rdbuf(pbuf);
|
||||||
|
ifs.close();
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user