Arcturus-Community/src/main/java/com/eu/habbo/database/Database.java

71 lines
1.7 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.database;
import com.eu.habbo.Emulator;
import com.eu.habbo.core.ConfigurationManager;
import com.zaxxer.hikari.HikariDataSource;
public class Database
{
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
private HikariDataSource dataSource;
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
private DatabasePool databasePool;
public Database(ConfigurationManager config)
{
long millis = System.currentTimeMillis();
boolean SQLException = false;
try
{
this.databasePool = new DatabasePool();
if (!this.databasePool.getStoragePooling(config))
{
2018-11-17 14:28:00 +01:00
Emulator.getLogging().logStart("Failed to connect to the database. Please check config.ini and make sure the MySQL process is running. Shutting down...");
2018-07-06 15:30:00 +02:00
SQLException = true;
return;
}
this.dataSource = this.databasePool.getDatabase();
}
catch (Exception e)
{
SQLException = true;
e.printStackTrace();
Emulator.getLogging().logStart("Failed to connect to your database.");
Emulator.getLogging().logStart(e.getMessage());
}
finally
{
if (SQLException)
Emulator.prepareShutdown();
}
Emulator.getLogging().logStart("Database -> Connected! (" + (System.currentTimeMillis() - millis) + " MS)");
}
2018-07-08 23:32:00 +02:00
2018-07-06 15:30:00 +02:00
public void dispose()
{
if (this.databasePool != null)
{
this.databasePool.getDatabase().close();
}
this.dataSource.close();
}
public HikariDataSource getDataSource()
{
return this.dataSource;
}
public DatabasePool getDatabasePool()
{
return this.databasePool;
}
}