2014-08-04 10:38:42 +00:00
|
|
|
// vim: set ts=4 sw=4 tw=99 noet:
|
|
|
|
//
|
|
|
|
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
|
|
|
// Copyright (C) The AMX Mod X Development Team.
|
|
|
|
//
|
|
|
|
// This software is licensed under the GNU General Public License, version 3 or higher.
|
|
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
|
|
// https://alliedmods.net/amxmodx-license
|
|
|
|
|
|
|
|
//
|
|
|
|
// NVault Module
|
|
|
|
//
|
|
|
|
|
2005-07-31 06:07:48 +00:00
|
|
|
#ifndef _INCLUDE_NVAULT_H
|
|
|
|
#define _INCLUDE_NVAULT_H
|
|
|
|
|
2015-09-30 17:08:39 +00:00
|
|
|
#include <amtl/am-linkedlist.h>
|
2014-08-10 14:57:53 +00:00
|
|
|
#include <sm_stringhashmap.h>
|
2005-07-31 06:07:48 +00:00
|
|
|
#include "IVault.h"
|
|
|
|
#include "Journal.h"
|
|
|
|
|
|
|
|
#define VAULT_MAGIC 0x6E564C54 //nVLT
|
|
|
|
#define VAULT_VERSION 0x0200 //second version
|
|
|
|
|
|
|
|
// File format:
|
|
|
|
// VAULT_MAGIC (int32)
|
|
|
|
// VAULT_VERSION (int16)
|
|
|
|
// ENTRIES (int32)
|
|
|
|
// [
|
|
|
|
// stamp (int32)
|
|
|
|
// keylen (int8)
|
|
|
|
// vallen (int16)
|
|
|
|
// key ([])
|
|
|
|
// val ([])
|
|
|
|
// ]
|
|
|
|
|
|
|
|
enum VaultError
|
|
|
|
{
|
|
|
|
Vault_Ok=0,
|
|
|
|
Vault_NoFile,
|
|
|
|
Vault_BadFile,
|
|
|
|
Vault_OldFile,
|
|
|
|
Vault_Read,
|
|
|
|
};
|
|
|
|
|
|
|
|
class NVault : public IVault
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NVault(const char *file);
|
|
|
|
~NVault();
|
|
|
|
public:
|
|
|
|
bool GetValue(const char *key, time_t &stamp, char buffer[], size_t len);
|
2005-08-01 19:56:54 +00:00
|
|
|
const char *GetValue(const char *key);
|
2005-07-31 06:07:48 +00:00
|
|
|
void SetValue(const char *key, const char *val);
|
|
|
|
void SetValue(const char *key, const char *val, time_t stamp);
|
2006-08-20 21:23:38 +00:00
|
|
|
void Touch(const char *key, time_t stamp);
|
2005-07-31 06:07:48 +00:00
|
|
|
size_t Prune(time_t start, time_t end);
|
|
|
|
void Clear();
|
|
|
|
void Remove(const char *key);
|
|
|
|
bool Open();
|
|
|
|
bool Close();
|
|
|
|
size_t Items();
|
2014-08-10 14:57:53 +00:00
|
|
|
const char *GetFilename() { return m_File.chars(); }
|
2005-07-31 06:07:48 +00:00
|
|
|
private:
|
|
|
|
VaultError _ReadFromFile();
|
|
|
|
bool _SaveToFile();
|
|
|
|
private:
|
2014-08-10 14:57:53 +00:00
|
|
|
ke::AString m_File;
|
|
|
|
StringHashMap<ArrayInfo> m_Hash;
|
2005-07-31 06:07:48 +00:00
|
|
|
Journal *m_Journal;
|
|
|
|
bool m_Open;
|
2008-03-04 19:06:39 +00:00
|
|
|
|
|
|
|
bool m_Valid;
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool isValid() { return m_Valid; }
|
2005-07-31 06:07:48 +00:00
|
|
|
};
|
|
|
|
|
2005-08-01 19:56:54 +00:00
|
|
|
class VaultMngr : public IVaultMngr
|
2005-07-31 06:07:48 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
//when you delete it, it will be closed+saved automatically
|
|
|
|
//when you open it, it will read the file automatically, as well as begin/restore journaling
|
|
|
|
IVault *OpenVault(const char *file);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //_INCLUDE_NVAULT_H
|