]> git.lyx.org Git - features.git/blob - src/VCBackend.cpp
Better safe than sorry
[features.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         master_ = m;
423         file_ = f;
424         scanMaster();
425 }
426
427
428 FileName const SVN::findFile(FileName const & file)
429 {
430         // First we look for the .svn/entries in the same dir
431         // where we have file.
432         FileName const entries(onlyPath(file.absFilename()) + "/.svn/entries");
433         string const tmpf = onlyFilename(file.absFilename());
434         LYXERR(Debug::LYXVC, "LyXVC: Checking if file is under svn in `" << entries
435                              << "' for `" << tmpf << '\'');
436         if (entries.isReadableFile()) {
437                 // Ok we are at least in a SVN dir. Parse the .svn/entries
438                 // and see if we can find this file. We do a fast and
439                 // dirty parse here.
440                 ifstream ifs(entries.toFilesystemEncoding().c_str());
441                 string line, oldline;
442                 while (getline(ifs, line)) {
443                         if (line == "dir" || line == "file")
444                                 LYXERR(Debug::LYXVC, "\tEntries: " << oldline);
445                         if (oldline == tmpf && line == "file")
446                                 return entries;
447                         oldline = line;
448                 }
449         }
450         return FileName();
451 }
452
453
454 void SVN::scanMaster()
455 {
456         // if we want some locking under svn
457         // we need different infrastructure around
458         locker_ = "Unlocked";
459         vcstatus = UNLOCKED;
460 }
461
462
463 void SVN::registrer(string const & /*msg*/)
464 {
465         doVCCommand("svn add -q " + quoteName(onlyFilename(owner_->absFileName())),
466                     FileName(owner_->filePath()));
467 }
468
469
470 string SVN::checkIn(string const & msg)
471 {
472         FileName tmpf = FileName::tempName("lyxvcout");
473         if (tmpf.empty()){
474                 LYXERR(Debug::LYXVC, "Could not generate logfile " << tmpf);
475                 return N_("Error: Could not generate logfile.");
476         }
477
478         doVCCommand("svn commit -m \"" + msg + "\" "
479                     + quoteName(onlyFilename(owner_->absFileName()))
480                     + " > " + quoteName(tmpf.toFilesystemEncoding()),
481                     FileName(owner_->filePath()));
482
483         string log;
484         string res = scanLogFile(tmpf, log);
485         if (!res.empty())
486                 frontend::Alert::error(_("Revision control error."),
487                                 _("Error when commiting to repository.\n"
488                                 "You have to manually resolve the problem.\n"
489                                 "After pressing OK, LyX will reopen the document."));
490         tmpf.erase();
491         return "SVN: " + log;
492 }
493
494
495 bool SVN::checkInEnabled()
496 {
497         return true;
498 }
499
500 // FIXME Correctly return code should be checked instead of this.
501 // This would need another solution than just plain startscript.
502 // Hint from Andre': QProcess::readAllStandardError()...
503 string SVN::scanLogFile(FileName const & f, string & status)
504 {
505         ifstream ifs(f.toFilesystemEncoding().c_str());
506         string line;
507
508         while (ifs) {
509                 getline(ifs, line);
510                 lyxerr << line << "\n";
511                 if (!line.empty()) status += line + "; ";
512                 if (prefixIs(line, "C ") || contains(line, "Commit failed")) {
513                         ifs.close();
514                         return line;
515                 }
516         }
517         ifs.close();
518         return string();
519 }
520
521
522 string SVN::checkOut()
523 {
524         FileName tmpf = FileName::tempName("lyxvcout");
525         if (tmpf.empty()) {
526                 LYXERR(Debug::LYXVC, "Could not generate logfile " << tmpf);
527                 return N_("Error: Could not generate logfile.");
528         }
529
530         doVCCommand("svn update " + quoteName(onlyFilename(owner_->absFileName()))
531                     + " > " + quoteName(tmpf.toFilesystemEncoding()),
532                     FileName(owner_->filePath()));
533
534         string log;
535         string res = scanLogFile(tmpf, log);
536         if (!res.empty())
537                 frontend::Alert::error(_("Revision control error."),
538                         bformat(_("Error when updating from repository.\n"
539                                 "You have to manually resolve the conflicts NOW!\n'%1$s'.\n\n"
540                                 "After pressing OK, LyX will try to reopen resolved document."),
541                         from_local8bit(res)));
542         tmpf.erase();
543         return "SVN: " + log;
544 }
545
546
547 bool SVN::checkOutEnabled()
548 {
549         return true;
550 }
551
552
553 void SVN::revert()
554 {
555         // Reverts to the version in CVS repository and
556         // gets the updated version from the repository.
557         string const fil = quoteName(onlyFilename(owner_->absFileName()));
558
559         doVCCommand("svn revert -q " + fil,
560                     FileName(owner_->filePath()));
561         owner_->markClean();
562 }
563
564
565 void SVN::undoLast()
566 {
567         // merge the current with the previous version
568         // in a reverse patch kind of way, so that the
569         // result is to revert the last changes.
570         lyxerr << "Sorry not implemented." << endl;
571 }
572
573
574 bool SVN::undoLastEnabled()
575 {
576         return false;
577 }
578
579
580 void SVN::getLog(FileName const & tmpf)
581 {
582         doVCCommand("svn log " + quoteName(onlyFilename(owner_->absFileName()))
583                     + " > " + quoteName(tmpf.toFilesystemEncoding()),
584                     FileName(owner_->filePath()));
585 }
586
587
588 bool SVN::toggleReadOnlyEnabled()
589 {
590         return false;
591 }
592
593
594 } // namespace lyx