X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fvc-backend.C;h=5fb8f6bb921d24fbd3c93246978a327cd4e8af48;hb=0657a91fd08e9c31d7f9e6be26055cc5050e5f8b;hp=3225bc18ba9a42d5261395c1f5b8275bddb84c63;hpb=8c93f63b48a1b15d4f3e163b7305213f2f73879e;p=lyx.git diff --git a/src/vc-backend.C b/src/vc-backend.C index 3225bc18ba..5fb8f6bb92 100644 --- a/src/vc-backend.C +++ b/src/vc-backend.C @@ -25,16 +25,19 @@ #include -using lyx::support::addName; -using lyx::support::addPath; -using lyx::support::contains; -using lyx::support::onlyFilename; -using lyx::support::onlyPath; -using lyx::support::Path; -using lyx::support::quoteName; -using lyx::support::rtrim; -using lyx::support::split; -using lyx::support::Systemcall; + +namespace lyx { + +using support::addName; +using support::addPath; +using support::contains; +using support::FileName; +using support::onlyFilename; +using support::onlyPath; +using support::quoteName; +using support::rtrim; +using support::split; +using support::Systemcall; using boost::regex; using boost::regex_match; @@ -57,50 +60,48 @@ int VCS::doVCCommand(string const & cmd, string const & path) { lyxerr[Debug::LYXVC] << "doVCCommand: " << cmd << endl; Systemcall one; - Path p(path); + support::Path p(path); int const ret = one.startscript(Systemcall::Wait, cmd); return ret; } -RCS::RCS(string const & m) +RCS::RCS(FileName const & m) { master_ = m; scanMaster(); } -string const RCS::find_file(string const & file) +FileName const RCS::find_file(FileName const & file) { - string tmp(file); // Check if *,v exists. - tmp += ",v"; + FileName tmp(file.absFilename() + ",v"); lyxerr[Debug::LYXVC] << "Checking if file is under rcs: " << tmp << endl; - if (fs::is_readable(tmp)) { + if (fs::is_readable(tmp.toFilesystemEncoding())) { lyxerr[Debug::LYXVC] << "Yes " << file << " is under rcs." << endl; return tmp; } else { // Check if RCS/*,v exists. - tmp = addName(addPath(onlyPath(file), "RCS"), file); - tmp += ",v"; + tmp = FileName(addName(addPath(onlyPath(file.absFilename()), "RCS"), file.absFilename()) + ",v"); lyxerr[Debug::LYXVC] << "Checking if file is under rcs: " << tmp << endl; - if (fs::is_readable(tmp)) { + if (fs::is_readable(tmp.toFilesystemEncoding())) { lyxerr[Debug::LYXVC] << "Yes " << file << " it is under rcs."<< endl; return tmp; } } - return string(); + return FileName(); } -void RCS::retrieve(string const & file) +void RCS::retrieve(FileName const & file) { lyxerr[Debug::LYXVC] << "LyXVC::RCS: retrieve.\n\t" << file << endl; - VCS::doVCCommand("co -q -r " + quoteName(file), + VCS::doVCCommand("co -q -r " + quoteName(file.toFilesystemEncoding()), string()); } @@ -109,7 +110,7 @@ void RCS::scanMaster() { lyxerr[Debug::LYXVC] << "LyXVC::RCS: scanMaster." << endl; - ifstream ifs(master_.c_str()); + ifstream ifs(master_.toFilesystemEncoding().c_str()); string token; bool read_enough = false; @@ -214,15 +215,15 @@ void RCS::undoLast() } -void RCS::getLog(string const & tmpf) +void RCS::getLog(FileName const & tmpf) { doVCCommand("rlog " + quoteName(onlyFilename(owner_->fileName())) - + " > " + tmpf, + + " > " + tmpf.toFilesystemEncoding(), owner_->filePath()); } -CVS::CVS(string const & m, string const & f) +CVS::CVS(FileName const & m, FileName const & f) { master_ = m; file_ = f; @@ -230,26 +231,27 @@ CVS::CVS(string const & m, string const & f) } -string const CVS::find_file(string const & file) +FileName const CVS::find_file(FileName const & file) { // First we look for the CVS/Entries in the same dir // where we have file. - string const dir = onlyPath(file) + "/CVS/Entries"; - string const tmpf = "/" + onlyFilename(file) + "/"; + FileName const dir(onlyPath(file.absFilename()) + "/CVS/Entries"); + string const tmpf = '/' + onlyFilename(file.absFilename()) + '/'; lyxerr[Debug::LYXVC] << "LyXVC: checking in `" << dir << "' for `" << tmpf << '\'' << endl; - if (fs::is_readable(dir)) { + if (fs::is_readable(dir.toFilesystemEncoding())) { // Ok we are at least in a CVS dir. Parse the CVS/Entries // and see if we can find this file. We do a fast and // dirty parse here. - ifstream ifs(dir.c_str()); + ifstream ifs(dir.toFilesystemEncoding().c_str()); string line; while (getline(ifs, line)) { lyxerr[Debug::LYXVC] << "\tEntries: " << line << endl; - if (contains(line, tmpf)) return dir; + if (contains(line, tmpf)) + return dir; } } - return string(); + return FileName(); } @@ -258,8 +260,8 @@ void CVS::scanMaster() lyxerr[Debug::LYXVC] << "LyXVC::CVS: scanMaster. \n Checking: " << master_ << endl; // Ok now we do the real scan... - ifstream ifs(master_.c_str()); - string tmpf = "/" + onlyFilename(file_) + "/"; + ifstream ifs(master_.toFilesystemEncoding().c_str()); + string tmpf = '/' + onlyFilename(file_.absFilename()) + '/'; lyxerr[Debug::LYXVC] << "\tlooking for `" << tmpf << '\'' << endl; string line; static regex const reg("/(.*)/(.*)/(.*)/(.*)/(.*)"); @@ -279,7 +281,7 @@ void CVS::scanMaster() //sm[4]; // options //sm[5]; // tag or tagdate // FIXME: must double check file is stattable/existing - time_t mod = fs::last_write_time(file_); + time_t mod = fs::last_write_time(file_.toFilesystemEncoding()); string mod_date = rtrim(asctime(gmtime(&mod)), "\n"); lyxerr[Debug::LYXVC] << "Date in Entries: `" << file_date @@ -344,9 +346,12 @@ void CVS::undoLast() } -void CVS::getLog(string const & tmpf) +void CVS::getLog(FileName const & tmpf) { doVCCommand("cvs log " + quoteName(onlyFilename(owner_->fileName())) - + " > " + tmpf, + + " > " + tmpf.toFilesystemEncoding(), owner_->filePath()); } + + +} // namespace lyx