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