Merge "updated ARIA version"
[so.git] / common / src / main / java / org / openecomp / mso / db / HibernateUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.db;
22
23 import org.hibernate.cfg.Configuration;
24 import org.hibernate.SessionFactory;
25 import org.hibernate.service.ServiceRegistry;
26 import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
27 import java.net.URL;
28
29 public abstract class HibernateUtils {
30
31     protected SessionFactory sessionFactory;
32     
33     protected synchronized void initializeHibernate(URL hibernateConfigFile) {
34         // Can be null, in that case, we skip the loading
35         if (hibernateConfigFile != null) {
36             // Already initialized, skip
37             if (sessionFactory != null) {
38                 return;
39             }
40     
41             Configuration conf = new Configuration().configure(hibernateConfigFile);
42             ServiceRegistry sr = new StandardServiceRegistryBuilder().applySettings(conf.getProperties()).build();
43             sessionFactory = conf.buildSessionFactory(sr);
44         }
45     }
46
47     public SessionFactory getSessionFactory() {
48         if (sessionFactory == null) {
49             initializeHibernate(getHibernateConfigFile());
50         }
51         return sessionFactory;
52     }
53
54     protected abstract URL getHibernateConfigFile();
55 }