Store the core itself in the servlet context.
[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          * {@inheritDoc}
46          */
47         public void contextInitialized(ServletContextEvent servletContextEvent) {
48                 servletContextEvent.getServletContext().setAttribute("core", this);
49                 try {
50                         Context context = new InitialContext();
51                         DataSource dataSource = (DataSource) context.lookup("java:/comp/env/jdbc/demosceneMusic");
52                         Database database = AbstractDatabase.fromDataSource(dataSource);
53                         dataManager = new DataManager(database);
54                         servletContextEvent.getServletContext().setAttribute("dataManager", dataManager);
55                 } catch (NamingException ne1) {
56                         servletContextEvent.getServletContext().log("Could not create database connection.", ne1);
57                 }
58         }
59
60         /**
61          * {@inheritDoc}
62          */
63         public void contextDestroyed(ServletContextEvent arg0) {
64                 /* do nothing. */
65         }
66
67 }