Add missing @Override annotations.
[demoscenemusic.git] / src / main / java / net / pterodactylus / demoscenemusic / core / Core.java
1 /*
2  * DemosceneMusic - Core.java - Copyright © 2012 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.demoscenemusic.core;
19
20 import javax.naming.Context;
21 import javax.naming.InitialContext;
22 import javax.naming.NamingException;
23 import javax.servlet.ServletContextEvent;
24 import javax.servlet.ServletContextListener;
25 import javax.sql.DataSource;
26
27 import net.pterodactylus.demoscenemusic.data.DataManager;
28 import net.pterodactylus.util.database.AbstractDatabase;
29 import net.pterodactylus.util.database.Database;
30
31 /**
32  * TODO
33  *
34  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
35  */
36 public class Core implements ServletContextListener {
37
38         private DataManager dataManager;
39
40         public DataManager getDataManager() {
41                 return dataManager;
42         }
43
44         //
45         // SERVLETCONTEXTLISTENER METHODS
46         //
47
48         /**
49          * {@inheritDoc}
50          */
51         @Override
52         public void contextInitialized(ServletContextEvent servletContextEvent) {
53                 servletContextEvent.getServletContext().setAttribute("core", this);
54                 try {
55                         Context context = new InitialContext();
56                         DataSource dataSource = (DataSource) context.lookup("java:/comp/env/jdbc/demosceneMusic");
57                         Database database = AbstractDatabase.fromDataSource(dataSource);
58                         dataManager = new DataManager(database);
59                         servletContextEvent.getServletContext().setAttribute("dataManager", dataManager);
60                 } catch (NamingException ne1) {
61                         servletContextEvent.getServletContext().log("Could not create database connection.", ne1);
62                 }
63         }
64
65         /**
66          * {@inheritDoc}
67          */
68         @Override
69         public void contextDestroyed(ServletContextEvent arg0) {
70                 /* do nothing. */
71         }
72
73 }