]> git.lyx.org Git - lyx.git/blob - src/VCBackend.cpp
6e8b5655545e62e9c5e52989aaa6b0d74aa77a22
[lyx.git] / src / VCBackend.cpp
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.
5  *
6  * \author Lars Gullik Bjønnes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "VCBackend.h"
14 #include "Buffer.h"
15
16 #include "frontends/alert.h"
17
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"
24
25 #include <boost/regex.hpp>
26
27 #include <fstream>
28
29 using namespace std;
30 using namespace lyx::support;
31
32 using boost::regex;
33 using boost::regex_match;
34 using boost::smatch;
35
36 namespace lyx {
37
38
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);
44 }
45
46 int VCS::doVCCommand(string const & cmd, FileName const & path)
47 {
48         if (owner_)
49                 owner_->setBusy(true);
50
51         int const ret = doVCCommandCall(cmd, path);
52
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;
61 }
62
63
64 /////////////////////////////////////////////////////////////////////
65 //
66 // RCS
67 //
68 /////////////////////////////////////////////////////////////////////
69
70 RCS::RCS(FileName const & m)
71 {
72         master_ = m;
73         scanMaster();
74 }
75
76
77 FileName const RCS::findFile(FileName const & file)
78 {
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;
85         }
86
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 << " it is under rcs.");
92                 return tmp;
93         }
94
95         return FileName();
96 }
97
98
99 void RCS::retrieve(FileName const & file)
100 {
101         LYXERR(Debug::LYXVC, "LyXVC::RCS: retrieve.\n\t" << file);
102         doVCCommandCall("co -q -r " + quoteName(file.toFilesystemEncoding()),
103                          FileName());
104 }
105
106
107 void RCS::scanMaster()
108 {
109         if (master_.empty())
110                 return;
111
112         LYXERR(Debug::LYXVC, "LyXVC::RCS: scanMaster: " << master_);
113
114         ifstream ifs(master_.toFilesystemEncoding().c_str());
115
116         string token;
117         bool read_enough = false;
118
119         while (!read_enough && ifs >> token) {
120                 LYXERR(Debug::LYXVC, "LyXVC::scanMaster: current lex text: `"
121                         << token << '\'');
122
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;
142                         }
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;
156                                 }
157                         } while (!contains(tmpt, ';'));
158
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");
165                 }
166         }
167 }
168
169
170 void RCS::registrer(string const & msg)
171 {
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()));
177 }
178
179
180 string RCS::checkIn(string const & msg)
181 {
182         int ret = doVCCommand("ci -q -u -m\"" + msg + "\" "
183                     + quoteName(onlyFilename(owner_->absFileName())),
184                     FileName(owner_->filePath()));
185         return ret ? string() : "RCS: Proceeded";
186 }
187
188 bool RCS::checkInEnabled()
189 {
190         return owner_ && !owner_->isReadonly();
191 }
192
193 string RCS::checkOut()
194 {
195         owner_->markClean();
196         int ret = doVCCommand("co -q -l " + quoteName(onlyFilename(owner_->absFileName())),
197                     FileName(owner_->filePath()));
198         return ret ? string() : "RCS: Proceeded";
199 }
200
201
202 bool RCS::checkOutEnabled()
203 {
204         return owner_ && owner_->isReadonly();
205 }
206
207
208 void RCS::revert()
209 {
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();
215 }
216
217
218 void RCS::undoLast()
219 {
220         LYXERR(Debug::LYXVC, "LyXVC: undoLast");
221         doVCCommand("rcs -o" + version() + " "
222                     + quoteName(onlyFilename(owner_->absFileName())),
223                     FileName(owner_->filePath()));
224 }
225
226
227 bool RCS::undoLastEnabled()
228 {
229         return true;
230 }
231
232
233 void RCS::getLog(FileName const & tmpf)
234 {
235         doVCCommand("rlog " + quoteName(onlyFilename(owner_->absFileName()))
236                     + " > " + quoteName(tmpf.toFilesystemEncoding()),
237                     FileName(owner_->filePath()));
238 }
239
240
241 bool RCS::toggleReadOnlyEnabled()
242 {
243         return true;
244 }
245
246
247 /////////////////////////////////////////////////////////////////////
248 //
249 // CVS
250 //
251 /////////////////////////////////////////////////////////////////////
252
253 CVS::CVS(FileName const & m, FileName const & f)
254 {
255         master_ = m;
256         file_ = f;
257         scanMaster();
258 }
259
260
261 FileName const CVS::findFile(FileName const & file)
262 {
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;
279                 }
280         }
281         return FileName();
282 }
283
284
285 void CVS::scanMaster()
286 {
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;
299
300                         regex_match(line, sm, reg);
301
302                         //sm[0]; // whole matched string
303                         //sm[1]; // filename
304                         version_ = sm.str(2);
305                         string const file_date = sm.str(3);
306
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;
324                         }
325                         break;
326                 }
327         }
328 }
329
330
331 void CVS::registrer(string const & msg)
332 {
333         doVCCommand("cvs -q add -m \"" + msg + "\" "
334                     + quoteName(onlyFilename(owner_->absFileName())),
335                     FileName(owner_->filePath()));
336 }
337
338
339 string CVS::checkIn(string const & msg)
340 {
341         int ret = doVCCommand("cvs -q commit -m \"" + msg + "\" "
342                     + quoteName(onlyFilename(owner_->absFileName())),
343                     FileName(owner_->filePath()));
344         return ret ? string() : "CVS: Proceeded";
345 }
346
347
348 bool CVS::checkInEnabled()
349 {
350         return true;
351 }
352
353
354 string CVS::checkOut()
355 {
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();
361 }
362
363
364 bool CVS::checkOutEnabled()
365 {
366         return false;
367 }
368
369
370 void CVS::revert()
371 {
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();
384 }
385
386
387 void CVS::undoLast()
388 {
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;
393 }
394
395
396 bool CVS::undoLastEnabled()
397 {
398         return false;
399 }
400
401
402 void CVS::getLog(FileName const & tmpf)
403 {
404         doVCCommand("cvs log " + quoteName(onlyFilename(owner_->absFileName()))
405                     + " > " + quoteName(tmpf.toFilesystemEncoding()),
406                     FileName(owner_->filePath()));
407 }
408
409 bool CVS::toggleReadOnlyEnabled()
410 {
411         return false;
412 }
413
414 /////////////////////////////////////////////////////////////////////
415 //
416 // SVN
417 //
418 /////////////////////////////////////////////////////////////////////
419
420 SVN::SVN(FileName const & m, FileName const & f)
421 {
422         owner_ = 0;
423         master_ = m;
424         file_ = f;
425         locked_mode_ = 0;
426         scanMaster();
427 }
428
429
430 FileName const SVN::findFile(FileName const & file)
431 {
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;
450                 }
451         }
452         return FileName();
453 }
454
455
456 void SVN::scanMaster()
457 {
458         // if we want some locking under svn
459         // we need different infrastructure around
460         locker_ = "Unlocked";
461         vcstatus = UNLOCKED;
462 }
463
464
465 bool SVN::checkLockMode()
466 {
467         FileName tmpf = FileName::tempName("lyxvcout");
468         if (tmpf.empty()){
469                 LYXERR(Debug::LYXVC, "Could not generate logfile " << tmpf);
470                 return N_("Error: Could not generate logfile.");
471         }
472
473         LYXERR(Debug::LYXVC, "Detecting locking mode...");
474         if (doVCCommandCall("svn proplist " + quoteName(file_.onlyFileName())
475                     + " > " + quoteName(tmpf.toFilesystemEncoding()),
476                     file_.onlyPath()))
477                 return false;
478
479         ifstream ifs(tmpf.toFilesystemEncoding().c_str());
480         string line;
481         bool ret = false;
482
483         while (ifs) {
484                 getline(ifs, line);
485                 LYXERR(Debug::LYXVC, line);
486                 if (contains(line, "svn:needs-lock"))
487                         ret = true;
488         }
489         LYXERR(Debug::LYXVC, "Locking enabled: " << ret);
490         ifs.close();
491         locked_mode_ = ret;
492         return ret;
493
494 }
495
496
497 bool SVN::isLocked()
498 {
499         //refresh file info
500         FileName file(file_.absFilename());
501         return !file.isReadOnly();
502 }
503
504
505 void SVN::registrer(string const & /*msg*/)
506 {
507         doVCCommand("svn add -q " + quoteName(onlyFilename(owner_->absFileName())),
508                     FileName(owner_->filePath()));
509 }
510
511
512 string SVN::checkIn(string const & msg)
513 {
514         FileName tmpf = FileName::tempName("lyxvcout");
515         if (tmpf.empty()){
516                 LYXERR(Debug::LYXVC, "Could not generate logfile " << tmpf);
517                 return N_("Error: Could not generate logfile.");
518         }
519
520         doVCCommand("svn commit -m \"" + msg + "\" "
521                     + quoteName(onlyFilename(owner_->absFileName()))
522                     + " > " + quoteName(tmpf.toFilesystemEncoding()),
523                     FileName(owner_->filePath()));
524
525         string log;
526         string res = scanLogFile(tmpf, log);
527         if (!res.empty())
528                 frontend::Alert::error(_("Revision control error."),
529                                 _("Error when commiting to repository.\n"
530                                 "You have to manually resolve the problem.\n"
531                                 "After pressing OK, LyX will reopen the document."));
532         else
533                 fileLock(false, tmpf, log);
534
535         tmpf.erase();
536         return "SVN: " + log;
537 }
538
539
540 bool SVN::checkInEnabled()
541 {
542         if (locked_mode_)
543                 return isLocked();
544         else
545                 return true;
546 }
547
548
549 // FIXME Correctly return code should be checked instead of this.
550 // This would need another solution than just plain startscript.
551 // Hint from Andre': QProcess::readAllStandardError()...
552 string SVN::scanLogFile(FileName const & f, string & status)
553 {
554         ifstream ifs(f.toFilesystemEncoding().c_str());
555         string line;
556
557         while (ifs) {
558                 getline(ifs, line);
559                 lyxerr << line << "\n";
560                 if (!line.empty()) status += line + "; ";
561                 if (prefixIs(line, "C ") || contains(line, "Commit failed")) {
562                         ifs.close();
563                         return line;
564                 }
565         }
566         ifs.close();
567         return string();
568 }
569
570
571 void SVN::fileLock(bool lock, FileName const & tmpf, string &status)
572 {
573         if (!locked_mode_ || (isLocked() == lock))
574                 return;
575
576         string arg = lock ? "lock " : "unlock ";
577         doVCCommand("svn "+ arg + quoteName(onlyFilename(owner_->absFileName()))
578                     + " > " + quoteName(tmpf.toFilesystemEncoding()),
579                     FileName(owner_->filePath()));
580
581         ifstream ifs(tmpf.toFilesystemEncoding().c_str());
582         string line;
583         while (ifs) {
584                 getline(ifs, line);
585                 if (!line.empty()) status += line + "; ";
586         }
587         ifs.close();
588
589         if (!isLocked() && lock)
590                 frontend::Alert::error(_("Revision control error."),
591                         _("Error when acquiring write lock.\n"
592                         "Most probably some other user edit the current document now!\n"
593                         "Check also the access to the repository."));
594         if (isLocked() && !lock)
595                 frontend::Alert::error(_("Revision control error."),
596                         _("Error when releasing write lock.\n"
597                         "Check the access to the repository."));
598 }
599
600
601 string SVN::checkOut()
602 {
603         FileName tmpf = FileName::tempName("lyxvcout");
604         if (tmpf.empty()) {
605                 LYXERR(Debug::LYXVC, "Could not generate logfile " << tmpf);
606                 return N_("Error: Could not generate logfile.");
607         }
608
609         doVCCommand("svn update " + quoteName(onlyFilename(owner_->absFileName()))
610                     + " > " + quoteName(tmpf.toFilesystemEncoding()),
611                     FileName(owner_->filePath()));
612
613         string log;
614         string res = scanLogFile(tmpf, log);
615         if (!res.empty())
616                 frontend::Alert::error(_("Revision control error."),
617                         bformat(_("Error when updating from repository.\n"
618                                 "You have to manually resolve the conflicts NOW!\n'%1$s'.\n\n"
619                                 "After pressing OK, LyX will try to reopen resolved document."),
620                         from_local8bit(res)));
621
622         fileLock(true, tmpf, log);
623
624         tmpf.erase();
625         return "SVN: " + log;
626 }
627
628
629 bool SVN::checkOutEnabled()
630 {
631         if (locked_mode_)
632                 return !isLocked();
633         else
634                 return true;
635 }
636
637
638 void SVN::revert()
639 {
640         // Reverts to the version in CVS repository and
641         // gets the updated version from the repository.
642         string const fil = quoteName(onlyFilename(owner_->absFileName()));
643
644         doVCCommand("svn revert -q " + fil,
645                     FileName(owner_->filePath()));
646         owner_->markClean();
647 }
648
649
650 void SVN::undoLast()
651 {
652         // merge the current with the previous version
653         // in a reverse patch kind of way, so that the
654         // result is to revert the last changes.
655         lyxerr << "Sorry not implemented." << endl;
656 }
657
658
659 bool SVN::undoLastEnabled()
660 {
661         return false;
662 }
663
664
665 void SVN::getLog(FileName const & tmpf)
666 {
667         doVCCommand("svn log " + quoteName(onlyFilename(owner_->absFileName()))
668                     + " > " + quoteName(tmpf.toFilesystemEncoding()),
669                     FileName(owner_->filePath()));
670 }
671
672
673 bool SVN::toggleReadOnlyEnabled()
674 {
675         return false;
676 }
677
678
679 } // namespace lyx