[LIB-9] Rename chesshog-dbetude module
[chesshog.git] / chesshog-dbetude / src / main / java / org / hedgecode / chess / environment / Environment.java
1 /*
2  * Copyright (c) 2018. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.environment;
18
19 import java.util.Locale;
20
21 import javax.persistence.EntityManager;
22 import javax.persistence.EntityManagerFactory;
23
24 import org.hedgecode.chess.persistence.PersistenceUtils;
25
26 /**
27  * Environment execution context.
28  *
29  * @author Dmitry Samoshin aka gotty
30  */
31 public final class Environment {
32
33     private final Locale locale;
34     private final EntityManager entityManager;
35
36     public Environment(
37             Locale locale,
38             EntityManager entityManager) {
39         this.locale = locale;
40         this.entityManager = entityManager;
41     }
42
43     public Locale getLocale() {
44         return locale;
45     }
46
47     public EntityManager getEntityManager() {
48         return entityManager;
49     }
50
51     public static Environment init() {
52         EntityManagerFactory entityManagerFactory = PersistenceUtils.createEntityManagerFactory();
53         EnvironmentSetter.setCurrentContext(
54                 new Environment(
55                         Locale.getDefault(),
56                         entityManagerFactory.createEntityManager()
57                 )
58         );
59         return Environment.currentContext();
60     }
61
62     static final ThreadLocal<Environment> contextHolder = new ThreadLocal<>();
63
64     public static Environment currentContext() {
65         return contextHolder.get();
66     }
67
68 }