Distributed under the LGPL
*/
-#include <fstream>
#include <iostream>
#include <set>
#include <msp/core/except.h>
#include <msp/core/getopt.h>
#include <msp/datafile/parser.h>
+#include <msp/io/buffered.h>
+#include <msp/io/file.h>
#include <msp/path/utils.h>
#include <msp/strings/formatter.h>
#include <msp/strings/regex.h>
*/
int Builder::load_build_file(const Path &fn)
{
- ifstream in(fn.str().c_str());
- if(!in)
- return -1;
+ IO::File inf(fn.str());
+ IO::Buffered in(inf);
if(verbose>=3)
cout<<"Reading "<<fn<<'\n';
Distributed under the LGPL
*/
-#include <fstream>
#include <msp/core/except.h>
+#include <msp/io/file.h>
+#include <msp/io/print.h>
#include <msp/path/utils.h>
#include <msp/time/utils.h>
#include "builder.h"
*/
void Config::select_last_profile()
{
- ifstream in((package.get_source()/".profile.cache").str().c_str());
- if(in)
+ try
{
+ IO::File in((package.get_source()/".profile.cache").str());
string profile;
- getline(in, profile);
+ in.getline(profile);
set_option("profile", profile);
}
+ catch(const SystemError &)
+ { }
freeze_mtime=true;
package.get_builder().apply_profile_template(*this, get_option("profile").value);
if(!package.get_builder().get_dry_run())
{
- ofstream out((package.get_source()/".profile.cache").str().c_str());
- if(out)
- out<<profile<<'\n';
+ try
+ {
+ IO::File out((package.get_source()/".profile.cache").str().c_str());
+ IO::print(out, "%s\n", profile);
+ }
+ catch(const SystemError &)
+ { }
}
freeze_mtime=true;
if(i!=options.end())
fn=package.get_source()/(".options."+i->second.value+".cache");
- ofstream out(fn.str().c_str());
- if(!out) return;
+ try
+ {
+ IO::File out(fn.str());
- for(i=options.begin(); i!=options.end(); ++i)
- out<<"option \""<<i->second.name<<"\" \""<<i->second.value<<"\";\n";
+ for(i=options.begin(); i!=options.end(); ++i)
+ IO::print(out, "option \"%s\" \"%s\";\n", i->second.name, i->second.value);
+ }
+ catch(const SystemError &)
+ { }
}
bool Config::set_option(const string &opt, const string &val)
if(i!=options.end())
fn=package.get_source()/(".options."+i->second.value+".cache");
- ifstream in(fn.str().c_str());
- if(!in) return;
+ try
+ {
+ IO::File in(fn.str());
- mtime=Time::TimeStamp::from_unixtime(stat(fn).st_mtime);
+ mtime=Time::TimeStamp::from_unixtime(stat(fn).st_mtime);
- DataFile::Parser parser(in, fn.str());
- Loader loader(*this);
- loader.load(parser);
+ DataFile::Parser parser(in, fn.str());
+ Loader loader(*this);
+ loader.load(parser);
+ }
+ catch(const SystemError &)
+ { }
}
*/
#include <iostream>
+#include <msp/io/file.h>
#include <msp/path/utils.h>
#include "builder.h"
#include "sourcepackage.h"
const Path &pkg_src=tar.tarball.get_package()->get_source();
Path basedir=splitext(basename(tar.tarball.get_name())).base;
- ofstream out(tar.tarball.get_name().c_str());
+ IO::File out(tar.tarball.get_name(), IO::M_WRITE);
const TargetList &deps=tar.tarball.get_depends();
for(TargetList::const_iterator i=deps.begin(); i!=deps.end(); ++i)
{
buf[155]=0;
out.write(buf, 512);
- ifstream in((*i)->get_name().c_str());
+ IO::File in((*i)->get_name());
for(int j=0; j<st.st_size; j+=4096)
{
- in.read(buf, 4096);
- unsigned len=in.gcount();
+ unsigned len=in.read(buf, 4096);
len+=((~len)+1)&0777;
out.write(buf, len);
}