1 Star 0 Fork 121

blog/kbengine

forked from likecg/kbengine 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
kbe_table_mysql.hpp 3.39 KB
一键复制 编辑 原始数据 按行查看 历史
liquidx 提交于 2013-08-05 10:29 +08:00 . 完善绑定邮件和密码重置
/*
This source file is part of KBEngine
For the latest info, see http://www.kbengine.org/
Copyright (c) 2008-2012 KBEngine.
KBEngine is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
KBEngine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with KBEngine. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __KBE_KBE_TABLE_MYSQL__
#define __KBE_KBE_TABLE_MYSQL__
#include "common.hpp"
#include "cstdkbe/cstdkbe.hpp"
#include "cstdkbe/singleton.hpp"
#include "helper/debug_helper.hpp"
#include "dbmgr_lib/entity_table.hpp"
#include "dbmgr_lib/kbe_tables.hpp"
namespace KBEngine {
/*
kbe系统表
*/
class KBEEntityLogTableMysql : public KBEEntityLogTable
{
public:
KBEEntityLogTableMysql();
virtual ~KBEEntityLogTableMysql(){}
/**
同步entity表到数据库中
*/
virtual bool syncToDB(DBInterface* dbi);
virtual bool logEntity(DBInterface * dbi, const char* ip, uint32 port, DBID dbid,
COMPONENT_ID componentID, ENTITY_ID entityID, ENTITY_SCRIPT_UID entityType);
virtual bool queryEntity(DBInterface * dbi, DBID dbid, EntityLog& entitylog, ENTITY_SCRIPT_UID entityType);
virtual bool eraseEntityLog(DBInterface * dbi, DBID dbid);
protected:
};
class KBEAccountTableMysql : public KBEAccountTable
{
public:
KBEAccountTableMysql();
virtual ~KBEAccountTableMysql(){}
/**
同步entity表到数据库中
*/
virtual bool syncToDB(DBInterface* dbi);
bool queryAccount(DBInterface * dbi, const std::string& name, ACCOUNT_INFOS& info);
bool queryAccountAllInfos(DBInterface * dbi, const std::string& name, ACCOUNT_INFOS& info);
bool logAccount(DBInterface * dbi, ACCOUNT_INFOS& info);
bool setFlagsDeadline(DBInterface * dbi, const std::string& name, uint32 flags, uint64 deadline);
virtual bool updateCount(DBInterface * dbi, DBID dbid);
virtual bool updatePassword(DBInterface * dbi, const std::string& name, const std::string& password);
protected:
};
class KBEEntityTypeMysql : public KBEEntityType
{
public:
KBEEntityTypeMysql();
virtual ~KBEEntityTypeMysql(){}
/**
同步entity表到数据库中
*/
virtual bool syncToDB(DBInterface* dbi);
protected:
};
class KBEEmailVerificationTableMysql : public KBEEmailVerificationTable
{
public:
KBEEmailVerificationTableMysql();
virtual ~KBEEmailVerificationTableMysql();
/**
同步entity表到数据库中
*/
virtual bool syncToDB(DBInterface* dbi);
virtual bool queryAccount(DBInterface * dbi, int8 type, const std::string& name, ACCOUNT_INFOS& info);
virtual bool logAccount(DBInterface * dbi, int8 type, const std::string& name, const std::string& datas, const std::string& code);
virtual bool delAccount(DBInterface * dbi, int8 type, const std::string& name);
virtual bool activateAccount(DBInterface * dbi, const std::string& code, ACCOUNT_INFOS& info);
virtual bool bindEMail(DBInterface * dbi, const std::string& name, const std::string& code);
virtual bool resetpassword(DBInterface * dbi, const std::string& name,
const std::string& password, const std::string& code);
protected:
};
}
#endif // __KBE_KBE_TABLE_MYSQL__
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/blog/kbengine.git
git@gitee.com:blog/kbengine.git
blog
kbengine
kbengine
080fd4f0b1fec20233c38a3600f8da3c26542444

搜索帮助