whitespace.
[lyx.git] / src / VCBackend.cpp
blobb9642666ebb88d6a2cb91c3865f5e0de3bcb5757
1 /**
2 * \file VCBackend.cpp
3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author Lars Gullik Bjønnes
8 * Full author contact details are available in file CREDITS.
9 */
11 #include <config.h>
13 #include "VCBackend.h"
14 #include "Buffer.h"
16 #include "frontends/alert.h"
18 #include "support/debug.h"
19 #include "support/filetools.h"
20 #include "support/gettext.h"
21 #include "support/lstrings.h"
22 #include "support/Path.h"
23 #include "support/Systemcall.h"
25 #include <boost/regex.hpp>
27 #include <fstream>
29 using namespace std;
30 using namespace lyx::support;
32 using boost::regex;
33 using boost::regex_match;
34 using boost::smatch;
36 namespace lyx {
39 int VCS::doVCCommandCall(string const & cmd, FileName const & path){
40 LYXERR(Debug::LYXVC, "doVCCommandCall: " << cmd);
41 Systemcall one;
42 support::PathChanger p(path);
43 return one.startscript(Systemcall::Wait, cmd);
46 int VCS::doVCCommand(string const & cmd, FileName const & path)
48 if (owner_)
49 owner_->setBusy(true);
51 int const ret = doVCCommandCall(cmd, path);
53 if (owner_)
54 owner_->setBusy(false);
55 if (ret)
56 frontend::Alert::error(_("Revision control error."),
57 bformat(_("Some problem occured while running the command:\n"
58 "'%1$s'."),
59 from_utf8(cmd)));
60 return ret;
64 /////////////////////////////////////////////////////////////////////
66 // RCS
68 /////////////////////////////////////////////////////////////////////
70 RCS::RCS(FileName const & m)
72 master_ = m;
73 scanMaster();
77 FileName const RCS::findFile(FileName const & file)
79 // Check if *,v exists.
80 FileName tmp(file.absFilename() + ",v");
81 LYXERR(Debug::LYXVC, "LyXVC: Checking if file is under rcs: " << tmp);
82 if (tmp.isReadableFile()) {
83 LYXERR(Debug::LYXVC, "Yes, " << file << " is under rcs.");
84 return tmp;
87 // Check if RCS/*,v exists.
88 tmp = FileName(addName(addPath(onlyPath(file.absFilename()), "RCS"), file.absFilename()) + ",v");
89 LYXERR(Debug::LYXVC, "LyXVC: Checking if file is under rcs: " << tmp);
90 if (tmp.isReadableFile()) {
91 LYXERR(Debug::LYXVC, "Yes, " << file << " is under rcs.");
92 return tmp;
95 return FileName();
99 void RCS::retrieve(FileName const & file)
101 LYXERR(Debug::LYXVC, "LyXVC::RCS: retrieve.\n\t" << file);
102 doVCCommandCall("co -q -r " + quoteName(file.toFilesystemEncoding()),
103 FileName());
107 void RCS::scanMaster()
109 if (master_.empty())
110 return;
112 LYXERR(Debug::LYXVC, "LyXVC::RCS: scanMaster: " << master_);
114 ifstream ifs(master_.toFilesystemEncoding().c_str());
116 string token;
117 bool read_enough = false;
119 while (!read_enough && ifs >> token) {
120 LYXERR(Debug::LYXVC, "LyXVC::scanMaster: current lex text: `"
121 << token << '\'');
123 if (token.empty())
124 continue;
125 else if (token == "head") {
126 // get version here
127 string tmv;
128 ifs >> tmv;
129 tmv = rtrim(tmv, ";");
130 version_ = tmv;
131 LYXERR(Debug::LYXVC, "LyXVC: version found to be " << tmv);
132 } else if (contains(token, "access")
133 || contains(token, "symbols")
134 || contains(token, "strict")) {
135 // nothing
136 } else if (contains(token, "locks")) {
137 // get locker here
138 if (contains(token, ';')) {
139 locker_ = "Unlocked";
140 vcstatus = UNLOCKED;
141 continue;
143 string tmpt;
144 string s1;
145 string s2;
146 do {
147 ifs >> tmpt;
148 s1 = rtrim(tmpt, ";");
149 // tmp is now in the format <user>:<version>
150 s1 = split(s1, s2, ':');
151 // s2 is user, and s1 is version
152 if (s1 == version_) {
153 locker_ = s2;
154 vcstatus = LOCKED;
155 break;
157 } while (!contains(tmpt, ';'));
159 } else if (token == "comment") {
160 // we don't need to read any further than this.
161 read_enough = true;
162 } else {
163 // unexpected
164 LYXERR(Debug::LYXVC, "LyXVC::scanMaster(): unexpected token");
170 void RCS::registrer(string const & msg)
172 string cmd = "ci -q -u -i -t-\"";
173 cmd += msg;
174 cmd += "\" ";
175 cmd += quoteName(onlyFilename(owner_->absFileName()));
176 doVCCommand(cmd, FileName(owner_->filePath()));
180 string RCS::checkIn(string const & msg)
182 int ret = doVCCommand("ci -q -u -m\"" + msg + "\" "
183 + quoteName(onlyFilename(owner_->absFileName())),
184 FileName(owner_->filePath()));
185 return ret ? string() : "RCS: Proceeded";
188 bool RCS::checkInEnabled()
190 return owner_ && !owner_->isReadonly();
193 string RCS::checkOut()
195 owner_->markClean();
196 int ret = doVCCommand("co -q -l " + quoteName(onlyFilename(owner_->absFileName())),
197 FileName(owner_->filePath()));
198 return ret ? string() : "RCS: Proceeded";
202 bool RCS::checkOutEnabled()
204 return owner_ && owner_->isReadonly();
208 void RCS::revert()
210 doVCCommand("co -f -u" + version() + " "
211 + quoteName(onlyFilename(owner_->absFileName())),
212 FileName(owner_->filePath()));
213 // We ignore changes and just reload!
214 owner_->markClean();
218 void RCS::undoLast()
220 LYXERR(Debug::LYXVC, "LyXVC: undoLast");
221 doVCCommand("rcs -o" + version() + " "
222 + quoteName(onlyFilename(owner_->absFileName())),
223 FileName(owner_->filePath()));
227 bool RCS::undoLastEnabled()
229 return true;
233 void RCS::getLog(FileName const & tmpf)
235 doVCCommand("rlog " + quoteName(onlyFilename(owner_->absFileName()))
236 + " > " + quoteName(tmpf.toFilesystemEncoding()),
237 FileName(owner_->filePath()));
241 bool RCS::toggleReadOnlyEnabled()
243 return true;
247 /////////////////////////////////////////////////////////////////////
249 // CVS
251 /////////////////////////////////////////////////////////////////////
253 CVS::CVS(FileName const & m, FileName const & f)
255 master_ = m;
256 file_ = f;
257 scanMaster();
261 FileName const CVS::findFile(FileName const & file)
263 // First we look for the CVS/Entries in the same dir
264 // where we have file.
265 FileName const entries(onlyPath(file.absFilename()) + "/CVS/Entries");
266 string const tmpf = '/' + onlyFilename(file.absFilename()) + '/';
267 LYXERR(Debug::LYXVC, "LyXVC: Checking if file is under cvs in `" << entries
268 << "' for `" << tmpf << '\'');
269 if (entries.isReadableFile()) {
270 // Ok we are at least in a CVS dir. Parse the CVS/Entries
271 // and see if we can find this file. We do a fast and
272 // dirty parse here.
273 ifstream ifs(entries.toFilesystemEncoding().c_str());
274 string line;
275 while (getline(ifs, line)) {
276 LYXERR(Debug::LYXVC, "\tEntries: " << line);
277 if (contains(line, tmpf))
278 return entries;
281 return FileName();
285 void CVS::scanMaster()
287 LYXERR(Debug::LYXVC, "LyXVC::CVS: scanMaster. \n Checking: " << master_);
288 // Ok now we do the real scan...
289 ifstream ifs(master_.toFilesystemEncoding().c_str());
290 string tmpf = '/' + onlyFilename(file_.absFilename()) + '/';
291 LYXERR(Debug::LYXVC, "\tlooking for `" << tmpf << '\'');
292 string line;
293 static regex const reg("/(.*)/(.*)/(.*)/(.*)/(.*)");
294 while (getline(ifs, line)) {
295 LYXERR(Debug::LYXVC, "\t line: " << line);
296 if (contains(line, tmpf)) {
297 // Ok extract the fields.
298 smatch sm;
300 regex_match(line, sm, reg);
302 //sm[0]; // whole matched string
303 //sm[1]; // filename
304 version_ = sm.str(2);
305 string const file_date = sm.str(3);
307 //sm[4]; // options
308 //sm[5]; // tag or tagdate
309 // FIXME: must double check file is stattable/existing
310 time_t mod = file_.lastModified();
311 string mod_date = rtrim(asctime(gmtime(&mod)), "\n");
312 LYXERR(Debug::LYXVC, "Date in Entries: `" << file_date
313 << "'\nModification date of file: `" << mod_date << '\'');
314 //FIXME this whole locking bussiness is not working under cvs and the machinery
315 // conforms to the ci usage, not cvs.
316 if (file_date == mod_date) {
317 locker_ = "Unlocked";
318 vcstatus = UNLOCKED;
319 } else {
320 // Here we should also to some more checking
321 // to see if there are conflicts or not.
322 locker_ = "Locked";
323 vcstatus = LOCKED;
325 break;
331 void CVS::registrer(string const & msg)
333 doVCCommand("cvs -q add -m \"" + msg + "\" "
334 + quoteName(onlyFilename(owner_->absFileName())),
335 FileName(owner_->filePath()));
339 string CVS::checkIn(string const & msg)
341 int ret = doVCCommand("cvs -q commit -m \"" + msg + "\" "
342 + quoteName(onlyFilename(owner_->absFileName())),
343 FileName(owner_->filePath()));
344 return ret ? string() : "CVS: Proceeded";
348 bool CVS::checkInEnabled()
350 return true;
354 string CVS::checkOut()
356 // cvs update or perhaps for cvs this should be a noop
357 // we need to detect conflict (eg "C" in output)
358 // before we can do this.
359 lyxerr << "Sorry, not implemented." << endl;
360 return string();
364 bool CVS::checkOutEnabled()
366 return false;
370 void CVS::revert()
372 // Reverts to the version in CVS repository and
373 // gets the updated version from the repository.
374 string const fil = quoteName(onlyFilename(owner_->absFileName()));
375 // This is sensitive operation, so at lest some check about
376 // existence of cvs program and its file
377 if (doVCCommand("cvs log "+ fil, FileName(owner_->filePath())))
378 return;
379 FileName f(owner_->absFileName());
380 f.removeFile();
381 doVCCommand("cvs update " + fil,
382 FileName(owner_->filePath()));
383 owner_->markClean();
387 void CVS::undoLast()
389 // merge the current with the previous version
390 // in a reverse patch kind of way, so that the
391 // result is to revert the last changes.
392 lyxerr << "Sorry, not implemented." << endl;
396 bool CVS::undoLastEnabled()
398 return false;
402 void CVS::getLog(FileName const & tmpf)
404 doVCCommand("cvs log " + quoteName(onlyFilename(owner_->absFileName()))
405 + " > " + quoteName(tmpf.toFilesystemEncoding()),
406 FileName(owner_->filePath()));
409 bool CVS::toggleReadOnlyEnabled()
411 return false;
414 /////////////////////////////////////////////////////////////////////
416 // SVN
418 /////////////////////////////////////////////////////////////////////
420 SVN::SVN(FileName const & m, FileName const & f)
422 owner_ = 0;
423 master_ = m;
424 file_ = f;
425 locked_mode_ = 0;
426 scanMaster();
430 FileName const SVN::findFile(FileName const & file)
432 // First we look for the .svn/entries in the same dir
433 // where we have file.
434 FileName const entries(onlyPath(file.absFilename()) + "/.svn/entries");
435 string const tmpf = onlyFilename(file.absFilename());
436 LYXERR(Debug::LYXVC, "LyXVC: Checking if file is under svn in `" << entries
437 << "' for `" << tmpf << '\'');
438 if (entries.isReadableFile()) {
439 // Ok we are at least in a SVN dir. Parse the .svn/entries
440 // and see if we can find this file. We do a fast and
441 // dirty parse here.
442 ifstream ifs(entries.toFilesystemEncoding().c_str());
443 string line, oldline;
444 while (getline(ifs, line)) {
445 if (line == "dir" || line == "file")
446 LYXERR(Debug::LYXVC, "\tEntries: " << oldline);
447 if (oldline == tmpf && line == "file")
448 return entries;
449 oldline = line;
452 return FileName();
456 void SVN::scanMaster()
458 locker_.clear();
459 vcstatus = NOLOCKING;
460 if (checkLockMode()) {
461 if (isLocked()) {
462 locker_ = "Locked";
463 vcstatus = LOCKED;
464 } else {
465 locker_ = "Unlocked";
466 vcstatus = LOCKED;
472 bool SVN::checkLockMode()
474 FileName tmpf = FileName::tempName("lyxvcout");
475 if (tmpf.empty()){
476 LYXERR(Debug::LYXVC, "Could not generate logfile " << tmpf);
477 return N_("Error: Could not generate logfile.");
480 LYXERR(Debug::LYXVC, "Detecting locking mode...");
481 if (doVCCommandCall("svn proplist " + quoteName(file_.onlyFileName())
482 + " > " + quoteName(tmpf.toFilesystemEncoding()),
483 file_.onlyPath()))
484 return false;
486 ifstream ifs(tmpf.toFilesystemEncoding().c_str());
487 string line;
488 bool ret = false;
490 while (ifs) {
491 getline(ifs, line);
492 LYXERR(Debug::LYXVC, line);
493 if (contains(line, "svn:needs-lock"))
494 ret = true;
496 LYXERR(Debug::LYXVC, "Locking enabled: " << ret);
497 ifs.close();
498 locked_mode_ = ret;
499 return ret;
504 bool SVN::isLocked() const
506 //refresh file info
507 FileName file(file_.absFilename());
508 return !file.isReadOnly();
512 void SVN::registrer(string const & /*msg*/)
514 doVCCommand("svn add -q " + quoteName(onlyFilename(owner_->absFileName())),
515 FileName(owner_->filePath()));
519 string SVN::checkIn(string const & msg)
521 FileName tmpf = FileName::tempName("lyxvcout");
522 if (tmpf.empty()){
523 LYXERR(Debug::LYXVC, "Could not generate logfile " << tmpf);
524 return N_("Error: Could not generate logfile.");
527 doVCCommand("svn commit -m \"" + msg + "\" "
528 + quoteName(onlyFilename(owner_->absFileName()))
529 + " > " + quoteName(tmpf.toFilesystemEncoding()),
530 FileName(owner_->filePath()));
532 string log;
533 string res = scanLogFile(tmpf, log);
534 if (!res.empty())
535 frontend::Alert::error(_("Revision control error."),
536 _("Error when committing to repository.\n"
537 "You have to manually resolve the problem.\n"
538 "After pressing OK, LyX will reopen the document."));
539 else
540 fileLock(false, tmpf, log);
542 tmpf.erase();
543 return "SVN: " + log;
547 bool SVN::checkInEnabled()
549 if (locked_mode_)
550 return isLocked();
551 else
552 return true;
556 // FIXME Correctly return code should be checked instead of this.
557 // This would need another solution than just plain startscript.
558 // Hint from Andre': QProcess::readAllStandardError()...
559 string SVN::scanLogFile(FileName const & f, string & status)
561 ifstream ifs(f.toFilesystemEncoding().c_str());
562 string line;
564 while (ifs) {
565 getline(ifs, line);
566 lyxerr << line << "\n";
567 if (!line.empty()) status += line + "; ";
568 if (prefixIs(line, "C ") || contains(line, "Commit failed")) {
569 ifs.close();
570 return line;
573 ifs.close();
574 return string();
578 void SVN::fileLock(bool lock, FileName const & tmpf, string &status)
580 if (!locked_mode_ || (isLocked() == lock))
581 return;
583 string arg = lock ? "lock " : "unlock ";
584 doVCCommand("svn "+ arg + quoteName(onlyFilename(owner_->absFileName()))
585 + " > " + quoteName(tmpf.toFilesystemEncoding()),
586 FileName(owner_->filePath()));
588 ifstream ifs(tmpf.toFilesystemEncoding().c_str());
589 string line;
590 while (ifs) {
591 getline(ifs, line);
592 if (!line.empty()) status += line + "; ";
594 ifs.close();
596 if (!isLocked() && lock)
597 frontend::Alert::error(_("Revision control error."),
598 _("Error when acquiring write lock.\n"
599 "Most probably another user is editing\n"
600 "the current document now!\n"
601 "Also check the access to the repository."));
602 if (isLocked() && !lock)
603 frontend::Alert::error(_("Revision control error."),
604 _("Error when releasing write lock.\n"
605 "Check the access to the repository."));
609 string SVN::checkOut()
611 FileName tmpf = FileName::tempName("lyxvcout");
612 if (tmpf.empty()) {
613 LYXERR(Debug::LYXVC, "Could not generate logfile " << tmpf);
614 return N_("Error: Could not generate logfile.");
617 doVCCommand("svn update " + quoteName(onlyFilename(owner_->absFileName()))
618 + " > " + quoteName(tmpf.toFilesystemEncoding()),
619 FileName(owner_->filePath()));
621 string log;
622 string res = scanLogFile(tmpf, log);
623 if (!res.empty())
624 frontend::Alert::error(_("Revision control error."),
625 bformat(_("Error when updating from repository.\n"
626 "You have to manually resolve the conflicts NOW!\n'%1$s'.\n\n"
627 "After pressing OK, LyX will try to reopen resolved document."),
628 from_local8bit(res)));
630 fileLock(true, tmpf, log);
632 tmpf.erase();
633 return "SVN: " + log;
637 bool SVN::checkOutEnabled()
639 if (locked_mode_)
640 return !isLocked();
641 else
642 return true;
646 void SVN::revert()
648 // Reverts to the version in CVS repository and
649 // gets the updated version from the repository.
650 string const fil = quoteName(onlyFilename(owner_->absFileName()));
652 doVCCommand("svn revert -q " + fil,
653 FileName(owner_->filePath()));
654 owner_->markClean();
658 void SVN::undoLast()
660 // merge the current with the previous version
661 // in a reverse patch kind of way, so that the
662 // result is to revert the last changes.
663 lyxerr << "Sorry, not implemented." << endl;
667 bool SVN::undoLastEnabled()
669 return false;
673 void SVN::getLog(FileName const & tmpf)
675 doVCCommand("svn log " + quoteName(onlyFilename(owner_->absFileName()))
676 + " > " + quoteName(tmpf.toFilesystemEncoding()),
677 FileName(owner_->filePath()));
681 bool SVN::toggleReadOnlyEnabled()
683 return false;
687 } // namespace lyx