1999-11-09 23:52:04 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
|
|
|
|
#ifndef VC_BACKEND_H
|
|
|
|
#define VC_BACKEND_H
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "LString.h"
|
|
|
|
|
|
|
|
class Buffer;
|
|
|
|
|
|
|
|
///
|
|
|
|
class VCS {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
enum VCStatus {
|
|
|
|
///
|
|
|
|
UNLOCKED,
|
|
|
|
///
|
|
|
|
LOCKED
|
|
|
|
};
|
|
|
|
///
|
|
|
|
virtual ~VCS() {}
|
|
|
|
///
|
|
|
|
virtual void scanMaster() = 0;
|
|
|
|
///
|
|
|
|
virtual void registrer(string const & msg) = 0;
|
|
|
|
///
|
|
|
|
virtual void checkIn(string const & msg) = 0;
|
|
|
|
///
|
|
|
|
virtual void checkOut() = 0;
|
|
|
|
///
|
|
|
|
virtual void revert() = 0;
|
|
|
|
///
|
|
|
|
virtual void undoLast() = 0;
|
|
|
|
///
|
|
|
|
virtual void getLog(string const &) = 0;
|
|
|
|
///
|
2001-08-19 14:06:27 +00:00
|
|
|
virtual string const versionString() const = 0;
|
|
|
|
///
|
|
|
|
string const & version() const {
|
|
|
|
return version_;
|
|
|
|
}
|
1999-11-09 23:52:04 +00:00
|
|
|
///
|
|
|
|
string const & locker() const { return locker_; }
|
|
|
|
///
|
|
|
|
void owner(Buffer * b) { owner_ = b; }
|
|
|
|
///
|
|
|
|
Buffer * owner() const { return owner_; }
|
|
|
|
///
|
2000-05-17 16:42:35 +00:00
|
|
|
VCStatus status() const { return vcstatus; }
|
1999-11-09 23:52:04 +00:00
|
|
|
protected:
|
|
|
|
///
|
2000-01-11 08:23:07 +00:00
|
|
|
static int doVCCommand(string const &, string const &);
|
1999-11-09 23:52:04 +00:00
|
|
|
|
|
|
|
/** The master VC file. For RCS this is *,v or RCS/ *,v. master should
|
|
|
|
have full path.
|
|
|
|
*/
|
|
|
|
string master_;
|
|
|
|
|
|
|
|
/// The status of the VC controlled file.
|
2000-05-17 16:42:35 +00:00
|
|
|
VCStatus vcstatus;
|
1999-11-09 23:52:04 +00:00
|
|
|
|
|
|
|
/** The version of the VC file. I am not sure if this can be a
|
|
|
|
string of if it must be a
|
|
|
|
float/int. */
|
|
|
|
string version_;
|
|
|
|
|
|
|
|
/// The user currently keeping the lock on the VC file.
|
|
|
|
string locker_;
|
|
|
|
/// The buffer using this VC
|
|
|
|
Buffer * owner_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
class RCS : public VCS {
|
|
|
|
public:
|
|
|
|
///
|
2000-04-08 17:02:02 +00:00
|
|
|
explicit
|
1999-11-09 23:52:04 +00:00
|
|
|
RCS(string const & m);
|
|
|
|
///
|
2000-09-14 17:53:12 +00:00
|
|
|
static string const find_file(string const & file);
|
1999-11-09 23:52:04 +00:00
|
|
|
///
|
2000-01-11 08:23:07 +00:00
|
|
|
static void retrive(string const & file);
|
|
|
|
///
|
1999-11-09 23:52:04 +00:00
|
|
|
virtual void scanMaster();
|
|
|
|
///
|
|
|
|
virtual void registrer(string const & msg);
|
|
|
|
///
|
|
|
|
virtual void checkIn(string const & msg);
|
|
|
|
///
|
|
|
|
virtual void checkOut();
|
|
|
|
///
|
|
|
|
virtual void revert();
|
|
|
|
///
|
|
|
|
virtual void undoLast();
|
|
|
|
///
|
|
|
|
virtual void getLog(string const &);
|
2001-08-19 14:06:27 +00:00
|
|
|
///
|
|
|
|
virtual string const versionString() const {
|
|
|
|
return "RCS: " + version_;
|
|
|
|
}
|
1999-11-09 23:52:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
class CVS : public VCS {
|
|
|
|
public:
|
|
|
|
///
|
2000-04-08 17:02:02 +00:00
|
|
|
explicit
|
1999-11-09 23:52:04 +00:00
|
|
|
CVS(string const & m, string const & f);
|
|
|
|
///
|
2000-09-14 17:53:12 +00:00
|
|
|
static string const find_file(string const & file);
|
1999-11-09 23:52:04 +00:00
|
|
|
///
|
|
|
|
virtual void scanMaster();
|
|
|
|
///
|
|
|
|
virtual void registrer(string const & msg);
|
|
|
|
///
|
|
|
|
virtual void checkIn(string const & msg);
|
|
|
|
///
|
|
|
|
virtual void checkOut();
|
|
|
|
///
|
|
|
|
virtual void revert();
|
|
|
|
///
|
|
|
|
virtual void undoLast();
|
|
|
|
///
|
|
|
|
virtual void getLog(string const &);
|
2001-08-19 14:06:27 +00:00
|
|
|
///
|
|
|
|
virtual string const versionString() const {
|
|
|
|
return "CVS: " + version_;
|
|
|
|
}
|
1999-11-09 23:52:04 +00:00
|
|
|
private:
|
|
|
|
string file_;
|
|
|
|
};
|
|
|
|
#endif
|