37a4dcb891148d09f43361626066cba608c9057d
[chesshog.git] / chesshog-db-etude / src / main / java / org / hedgecode / chess / service / jpa / JpaDomainService.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.service.jpa;
18
19 import javax.persistence.EntityManager;
20 import javax.persistence.Persistence;
21
22 import org.hedgecode.chess.domain.DomainObject;
23 import org.hedgecode.chess.service.DomainService;
24
25 /**
26  *
27  *
28  * @author Dmitry Samoshin aka gotty
29  */
30 public abstract class JpaDomainService<DomainType extends DomainObject> implements DomainService<DomainType> {
31
32     // todo: maybe single entityManager
33     private DomainManager domainManager;
34
35     JpaDomainService() {
36         domainManager = new DomainManager();
37     }
38
39     EntityManager getEntityManager() {
40         return domainManager.getEntityManager();
41     }
42
43     @Override
44     public DomainType create(DomainType domainObject) {
45         getEntityManager().persist(
46                 domainObject
47         );
48         return domainObject;
49     }
50
51     @Override
52     public DomainType update(DomainType domainObject) {
53         getEntityManager().persist(
54                 domainObject
55         );
56         return domainObject;
57     }
58
59     @Override
60     public void remove(DomainType domainObject) {
61         getEntityManager().remove(
62                 domainObject
63         );
64     }
65
66     private class DomainManager {
67
68         private static final String PERSISTENCE_UNIT_NAME = "db-etude-persistence-unit";
69
70         private EntityManager entityManager;
71
72         EntityManager getEntityManager() {
73             if (entityManager == null)
74                 createEntityManager();
75             return entityManager;
76         }
77
78         void createEntityManager() {
79             entityManager = Persistence.createEntityManagerFactory(
80                     PERSISTENCE_UNIT_NAME
81             ).createEntityManager();
82         }
83
84     }
85
86 }