mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
45a03f4f67
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1019 a592a061-630c-0410-9148-cb99ea01b6c8
128 lines
2.2 KiB
C++
128 lines
2.2 KiB
C++
// -*- C++ -*-
|
|
|
|
#ifndef VC_BACKEND_H
|
|
#define VC_BACKEND_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "LString.h"
|
|
#include "support/syscall.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;
|
|
///
|
|
string const & version() const { return version_; }
|
|
///
|
|
string const & locker() const { return locker_; }
|
|
///
|
|
void owner(Buffer * b) { owner_ = b; }
|
|
///
|
|
Buffer * owner() const { return owner_; }
|
|
///
|
|
VCStatus status() const { return vcstatus; }
|
|
protected:
|
|
///
|
|
static int doVCCommand(string const &, string const &);
|
|
|
|
/** 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.
|
|
VCStatus vcstatus;
|
|
|
|
/** 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:
|
|
///
|
|
explicit
|
|
RCS(string const & m);
|
|
///
|
|
static string const find_file(string const & file);
|
|
///
|
|
static void retrive(string const & file);
|
|
///
|
|
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 &);
|
|
};
|
|
|
|
|
|
///
|
|
class CVS : public VCS {
|
|
public:
|
|
///
|
|
explicit
|
|
CVS(string const & m, string const & f);
|
|
///
|
|
static string const find_file(string const & file);
|
|
///
|
|
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 &);
|
|
private:
|
|
string file_;
|
|
};
|
|
#endif
|