]> git.mxchange.org Git - jcoreee.git/blob - src/org/mxchange/jcoreee/database/BaseDatabaseBean.java
moved generic code to new constructor which takes JNDI names as parameter.
[jcoreee.git] / src / org / mxchange / jcoreee / database / BaseDatabaseBean.java
1 /*
2  * Copyright (C) 2016, 2017 Roland Häder
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 package org.mxchange.jcoreee.database;
18
19 import java.io.Serializable;
20 import java.text.MessageFormat;
21 import javax.faces.FacesException;
22 import javax.jms.Connection;
23 import javax.jms.JMSException;
24 import javax.jms.MessageProducer;
25 import javax.jms.ObjectMessage;
26 import javax.jms.Queue;
27 import javax.jms.QueueConnectionFactory;
28 import javax.jms.Session;
29 import javax.naming.Context;
30 import javax.naming.InitialContext;
31 import javax.naming.NamingException;
32 import javax.persistence.EntityManager;
33 import javax.persistence.PersistenceContext;
34 import org.mxchange.jcoreeelogger.beans.local.logger.Log;
35 import org.mxchange.jcoreeelogger.beans.local.logger.LoggerBeanLocal;
36
37 /**
38  * A helper class for beans that access the database.
39  * <p>
40  * @author Roland Häder<roland@mxchange.org>
41  */
42 public abstract class BaseDatabaseBean implements Serializable {
43
44         /**
45          * Serial number
46          */
47         private static final long serialVersionUID = 217_687_175_985_875L;
48
49         /**
50          * Connection
51          */
52         private Connection connection;
53
54         /**
55          * Entity manager
56          */
57         @PersistenceContext
58         private EntityManager entityManager;
59
60         /**
61          * Logger instance
62          */
63         @Log
64         private LoggerBeanLocal loggerBeanLocal;
65
66         /**
67          * Message producer
68          */
69         private MessageProducer messageProducer;
70
71         /**
72          * Mailer message queue
73          */
74         private Queue queue;
75
76         /**
77          * Session instance
78          */
79         private Session session;
80
81         /**
82          * This class' default protected constructor. Please call
83          * super("jms/project-queue-factory", "jms/project-email-queue"); if you
84          * need to send emails.
85          */
86         protected BaseDatabaseBean () {
87                 try {
88                         // Get initial context
89                         Context context = new InitialContext();
90
91                         // Lookup logger
92                         this.loggerBeanLocal = (LoggerBeanLocal) context.lookup("java:global/jcore-logger-ejb/logger!org.mxchange.jcoreeelogger.beans.local.logger.LoggerBeanLocal"); //NOI18N
93                 } catch (final NamingException ex) {
94                         // Continue to throw
95                         throw new RuntimeException(MessageFormat.format("context.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N
96                 }
97         }
98
99         /**
100          * Constructor with queue factory JNDI and email-queue JNDI names
101          * <p>
102          * @param factoryJndi    JNDI name for queue factory
103          * @param emailQueueJndi JNDI name for email queue
104          */
105         protected BaseDatabaseBean (final String factoryJndi, final String emailQueueJndi) {
106                 // Call default constructor
107                 super();
108
109                 try {
110                         // Get initial context
111                         Context context = new InitialContext();
112
113                         // Get factory from JMS resource
114                         QueueConnectionFactory connectionFactory = (QueueConnectionFactory) context.lookup(factoryJndi); //NOI18N
115
116                         // Lookup queue
117                         this.queue = (Queue) context.lookup(emailQueueJndi); //NOI18N
118
119                         // Create connection
120                         this.connection = connectionFactory.createConnection();
121
122                         // Init session instance
123                         this.session = this.connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
124
125                         // And message producer
126                         this.messageProducer = this.session.createProducer(this.queue);
127                 } catch (final NamingException | JMSException e) {
128                         // Continued to throw
129                         throw new FacesException(e);
130                 }
131         }
132
133         /**
134          * Getter for connection instance
135          * <p>
136          * @return Connection instance
137          */
138         protected EntityManager getEntityManager () {
139                 return this.entityManager;
140         }
141
142         /**
143          * Getter for loggerBeanLocal
144          * <p>
145          * @return Logger instance
146          */
147         protected LoggerBeanLocal getLoggerBeanLocal () {
148                 return this.loggerBeanLocal;
149         }
150
151         /**
152          * Getter for configured message producer instance
153          * <p>
154          * @return Message producer
155          */
156         protected MessageProducer getMessageProducer () {
157                 return this.messageProducer;
158         }
159
160         /**
161          * Getter for configured session instance
162          * <p>
163          * @return Session
164          */
165         protected Session getSession () {
166                 return this.session;
167         }
168
169         /**
170          * Sends given message to configured queue
171          * <p>
172          * @param message Message to send
173          * <p>
174          * @throws JMSException if something went wrong
175          */
176         protected void sendMessage (final ObjectMessage message) throws JMSException {
177                 // Trace message
178                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.sendMessage: message={1} - CALLED!", this.getClass().getSimpleName(), message)); //NOI18N
179
180                 // The parameter should be valid
181                 if (null == message) {
182                         // Throw NPE
183                         throw new NullPointerException("message is null"); //NOI18N
184                 } else if (null == this.getMessageProducer()) {
185                         // Throw NPE again
186                         throw new NullPointerException("this.messageProvider is null"); //NOI18N
187                 }
188
189                 // Send it
190                 this.getMessageProducer().send(message);
191
192                 // Trace message
193                 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.sendMessage: EXIT!", this.getClass().getSimpleName())); //NOI18N
194         }
195
196 }