diff options
author | Machiavelli <none@none> | 2010-09-02 17:56:49 +0200 |
---|---|---|
committer | Machiavelli <none@none> | 2010-09-02 17:56:49 +0200 |
commit | c47f45694f5592ae95a14a83e5a3254930fcf73d (patch) | |
tree | 9d87a294d6a11132eb4bf0ce6f8e0310c8213972 | |
parent | 5ef738c16e06f6a9b62dfb0db2ff3c18749a5138 (diff) |
Core/DBLayer: Add Login-/Characters-/Worlddatabase class implementations
--HG--
branch : trunk
6 files changed, 219 insertions, 0 deletions
diff --git a/src/server/shared/Database/Implementation/CharacterDatabase.cpp b/src/server/shared/Database/Implementation/CharacterDatabase.cpp new file mode 100644 index 00000000000..2d07b620c03 --- /dev/null +++ b/src/server/shared/Database/Implementation/CharacterDatabase.cpp @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2008-2010 Trinity <http://www.trinitycore.org/> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include "LoginDatabase.h" + +bool CharacterDatabaseConnection::Open(const std::string& infoString) +{ + /* + ################################## + LOAD YOUR PREPARED STATEMENTS HERE + ################################## + */ + + return MySQLConnection::Open(infoString); +}
\ No newline at end of file diff --git a/src/server/shared/Database/Implementation/CharacterDatabase.h b/src/server/shared/Database/Implementation/CharacterDatabase.h new file mode 100644 index 00000000000..acfe20228c6 --- /dev/null +++ b/src/server/shared/Database/Implementation/CharacterDatabase.h @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2008-2010 Trinity <http://www.trinitycore.org/> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef _CHARACTERDATABASE_H +#define _CHARACTERDATABASE_H + +#include "DatabaseWorkerPool.h" +#include "MySQLConnection.h" + +class CharacterDatabaseConnection : public MySQLConnection +{ + public: + //- Constructors for sync and async connections + CharacterDatabaseConnection() : MySQLConnection() {} + CharacterDatabaseConnection(ACE_Activation_Queue* q) : MySQLConnection(q) {} + + //- Loads databasetype specific prepared statements + bool Open(const std::string& infoString); +}; + +typedef DatabaseWorkerPool<CharacterDatabaseConnection> CharacterDatabaseWorkerPool; + +enum CharacterDatabaseStatements +{ + MAX_CHARACTERDATABASE_STATEMENTS, +}; + +#endif
\ No newline at end of file diff --git a/src/server/shared/Database/Implementation/LoginDatabase.cpp b/src/server/shared/Database/Implementation/LoginDatabase.cpp new file mode 100644 index 00000000000..148a1b931aa --- /dev/null +++ b/src/server/shared/Database/Implementation/LoginDatabase.cpp @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2008-2010 Trinity <http://www.trinitycore.org/> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include "LoginDatabase.h" + +bool LoginDatabaseConnection::Open(const std::string& infoString) +{ + /* + ################################## + LOAD YOUR PREPARED STATEMENTS HERE + ################################## + */ + + return MySQLConnection::Open(infoString); +}
\ No newline at end of file diff --git a/src/server/shared/Database/Implementation/LoginDatabase.h b/src/server/shared/Database/Implementation/LoginDatabase.h new file mode 100644 index 00000000000..520442d881b --- /dev/null +++ b/src/server/shared/Database/Implementation/LoginDatabase.h @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2008-2010 Trinity <http://www.trinitycore.org/> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef _LOGINDATABASE_H +#define _LOGINDATABASE_H + +#include "DatabaseWorkerPool.h" +#include "MySQLConnection.h" + +class LoginDatabaseConnection : public MySQLConnection +{ + public: + //- Constructors for sync and async connections + LoginDatabaseConnection() : MySQLConnection() {} + LoginDatabaseConnection(ACE_Activation_Queue* q) : MySQLConnection(q) {} + + //- Loads databasetype specific prepared statements + bool Open(const std::string& infoString); +}; + +typedef DatabaseWorkerPool<LoginDatabaseConnection> LoginDatabaseWorkerPool; + +enum LoginDatabaseStatements +{ + MAX_LOGINDATABASE_STATEMENTS, +}; + +#endif
\ No newline at end of file diff --git a/src/server/shared/Database/Implementation/WorldDatabase.cpp b/src/server/shared/Database/Implementation/WorldDatabase.cpp new file mode 100644 index 00000000000..d111e43a7c4 --- /dev/null +++ b/src/server/shared/Database/Implementation/WorldDatabase.cpp @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2008-2010 Trinity <http://www.trinitycore.org/> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include "LoginDatabase.h" + +bool WorldDatabaseConnection::Open(const std::string& infoString) +{ + /* + ################################## + LOAD YOUR PREPARED STATEMENTS HERE + ################################## + */ + + return MySQLConnection::Open(infoString); +}
\ No newline at end of file diff --git a/src/server/shared/Database/Implementation/WorldDatabase.h b/src/server/shared/Database/Implementation/WorldDatabase.h new file mode 100644 index 00000000000..162c3d8990e --- /dev/null +++ b/src/server/shared/Database/Implementation/WorldDatabase.h @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2008-2010 Trinity <http://www.trinitycore.org/> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef _WORLDDATABASE_H +#define _WORLDDATABASE_H + +#include "DatabaseWorkerPool.h" +#include "MySQLConnection.h" + +class WorldDatabaseConnection : public MySQLConnection +{ + public: + //- Constructors for sync and async connections + WorldDatabaseConnection() : MySQLConnection() {} + WorldDatabaseConnection(ACE_Activation_Queue* q) : MySQLConnection(q) {} + + //- Loads databasetype specific prepared statements + bool Open(const std::string& infoString); +}; + +typedef DatabaseWorkerPool<WorldDatabaseConnection> WorldDatabaseWorkerPool; + +enum WorldDatabaseStatements +{ + MAX_WORLDDATABASE_STATEMENTS, +}; + +#endif
\ No newline at end of file |