Chinaunix首页 | 论坛 | 博客
  • 博客访问: 806798
  • 博文数量: 142
  • 博客积分: 3505
  • 博客等级: 中校
  • 技术积分: 1501
  • 用 户 组: 普通用户
  • 注册时间: 2011-07-30 19:30
文章分类

全部博文(142)

文章存档

2012年(33)

2011年(109)

分类: C/C++

2011-11-04 22:16:58

为IPWorks做的一个HA方案,技术上打算用到锁文件,自己写了一个,参考了sourceforge上高手的代码。
似乎线程安全上还有点小问题,以后再考虑吧。
不过等到上到CBA了以后,HA由Core MW提供,就不需要了。

//
// Locking files
// LockFile.hh
//

#ifndef _MY_LOCKF_HH_
#define _MY_LOCKF_HH_

#include

extern "C" {

# include
# include
# include
# include
# include
# include
# include

};

#define LOCK_DIR      "/var/lock"

class LockFile {
private:
  bool isLocked;
  string name;
public:
  LockFile();
 ~LockFile();
  bool Lock(const char *fname);
  bool Lock(string fname)
    { Lock(fname.c_str()); }
  void UnLock();
};

#endif

========================================================================================

//
// Implementation of lock for files
// LockFile.cc
//

#include "LockFile.hh"

LockFile::LockFile()
{
  isLocked = false;
  name = "";
}

LockFile::~LockFile()
{
  UnLock();
}

bool LockFile::Lock(const char *fname)
{
  FILE *fp;
  const char *dn;
  int n;
  struct stat sbuf;

  printf("Locking file %s\n", fname);
  dn = fname;
  if (dn = strrchr(fname, '/'))
    dn++;
  name = LOCK_DIR;
  name += "/LCK..";
  name += dn;
  isLocked = false;
  if (stat(name.c_str(), &sbuf) != -1) {
    printf("Lock file exists.\n");
    if ((fp = fopen(name.c_str(), "r")) != NULL) {
      fscanf(fp, "%10d\n", &n);
      fclose(fp);
      if (n == getpid())
return true;
      printf("Device %s locked by process %d\n", dn, n);
    }
    return isLocked;
  }
  printf("Creating file lock %s\n", name.c_str());
  if ((fp = fopen(name.c_str(), "w")) == NULL)
    printf("Creating lock file %s\n", name.c_str());
  fprintf(fp, "%10d\n", getpid());
  fclose(fp);
  return isLocked = true;
}

void LockFile::UnLock()
{
  printf("Unlocking %s\n", name.c_str());
  if (isLocked) unlink(name.c_str());
}

阅读(1603) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~