Skip to content

Commit 6ed8b15

Browse files
author
Gerald Unterrainer
committed
first try at new Jpql-query-api
1 parent bd22bf9 commit 6ed8b15

File tree

6 files changed

+463
-357
lines changed

6 files changed

+463
-357
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,40 @@
11
package info.unterrainer.commons.httpserver.daos;
22

3-
import javax.persistence.TypedQuery;
4-
53
import info.unterrainer.commons.httpserver.jsons.ListJson;
64
import info.unterrainer.commons.rdbutils.entities.BasicJpa;
75

86
public interface BasicDao<P extends BasicJpa, E> {
97

108
P getById(Long id);
119

12-
ListJson<P> getList(long offset, long size);
13-
14-
ListJson<P> getList(long offset, long size, String whereClause, ParamMap params);
15-
1610
P create(P entity);
1711

1812
P update(P entity);
1913

14+
ListJson<P> getList(E em, long offset, long size, String selectClause, String joinClause, String whereClause,
15+
ParamMap params, String orderByClause);
16+
2017
UpsertResult<P> upsert(String whereClause, ParamMap params, P entity);
2118

22-
UpsertResult<P> upsert(TypedQuery<P> query, P entity);
19+
UpsertResult<P> upsert(Query<P, P> query, P entity);
2320

2421
void delete(Long id);
2522

2623
P getById(E em, Long id);
2724

28-
ListJson<P> getList(E em, long offset, long size);
25+
<T> QueryBuilder<P, T> query(Class<T> resultType);
2926

30-
ListJson<P> getList(E em, long offset, long size, String whereClause, ParamMap params);
27+
QueryBuilder<P, P> query();
3128

32-
ListJson<P> getList(E em, long offset, long size, String joinClause, String whereClause, ParamMap params);
33-
34-
ListJson<P> getList(E em, long offset, long size, String selectClause, String joinClause, String whereClause,
35-
ParamMap params);
36-
37-
ListJson<P> getList(E em, long offset, long size, String selectClause, String joinClause, String whereClause,
38-
ParamMap params, String orderByClause);
29+
CountQueryBuilder<P, P> countQuery();
3930

4031
P create(E em, P entity);
4132

4233
P update(E em, P entity);
4334

4435
UpsertResult<P> upsert(E em, String whereClause, ParamMap params, P entity);
4536

46-
UpsertResult<P> upsert(E em, TypedQuery<P> query, P entity);
37+
UpsertResult<P> upsert(E em, Query<P, P> query, P entity);
4738

4839
void delete(E em, Long id);
4940
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,250 @@
1+
package info.unterrainer.commons.httpserver.daos;
2+
3+
import javax.persistence.EntityManager;
4+
import javax.persistence.EntityManagerFactory;
5+
6+
import info.unterrainer.commons.rdbutils.entities.BasicJpa;
7+
import lombok.AccessLevel;
8+
import lombok.RequiredArgsConstructor;
9+
10+
@RequiredArgsConstructor(access = AccessLevel.PACKAGE)
11+
public class BasicQueryBuilder<P extends BasicJpa, T, R extends BasicQueryBuilder<P, T, R>> {
12+
13+
protected final EntityManagerFactory emf;
14+
protected final JpqlDao<P> dao;
15+
16+
protected EntityManager entityManager;
17+
protected String selectClause = "o";
18+
protected String joinClause;
19+
protected String whereClause;
20+
protected String orderByClause = "o.id ASC";
21+
protected boolean lockPessimistic = false;
22+
23+
protected ParamMap parameters = ParamMap.builder().build();
24+
25+
/**
26+
* Sets a custom {@link EntityManager}.
27+
* <p>
28+
* Default is to create one when creating the query.<br>
29+
* To reset it to default, set it to null.
30+
*
31+
* @param em an {@link EntityManager}
32+
* @return an instance of this builder to provide a fluent interface
33+
*/
34+
@SuppressWarnings("unchecked")
35+
public R entityManager(final EntityManager em) {
36+
entityManager = em;
37+
return (R) this;
38+
}
39+
40+
/**
41+
* Sets a custom select-clause.
42+
* <p>
43+
* Default is "o"<br>
44+
* To reset it to default, set it to null.<br>
45+
* To completely delete it, set it to an empty string.
46+
*
47+
* @param selectClause the new clause
48+
* @return an instance of this builder to provide a fluent interface
49+
*/
50+
@SuppressWarnings("unchecked")
51+
public R select(final String selectClause) {
52+
this.selectClause = selectClause;
53+
if (this.selectClause == null || this.selectClause.isBlank())
54+
this.selectClause = "o";
55+
return (R) this;
56+
}
57+
58+
/**
59+
* Sets a custom join-clause.
60+
* <p>
61+
* Default is ""<br>
62+
* To reset it to default, set it to null or directly to an empty string.
63+
*
64+
* @param joinClause the new clause
65+
* @return an instance of this builder to provide a fluent interface
66+
*/
67+
@SuppressWarnings("unchecked")
68+
public R join(final String joinClause) {
69+
this.joinClause = joinClause;
70+
if (this.joinClause == null)
71+
this.joinClause = "";
72+
return (R) this;
73+
}
74+
75+
/**
76+
* Sets a custom where-clause.
77+
* <p>
78+
* Default is ""<br>
79+
* To reset it to default, set it to null or directly to an empty string.
80+
*
81+
* @param whereClause the new clause
82+
* @return an instance of this builder to provide a fluent interface
83+
*/
84+
@SuppressWarnings("unchecked")
85+
public R where(final String whereClause) {
86+
this.whereClause = whereClause;
87+
if (this.whereClause == null)
88+
this.whereClause = "";
89+
return (R) this;
90+
}
91+
92+
/**
93+
* Adds an 'AND' part to the where-clause.
94+
* <p>
95+
* For example: .and("o.loggedIn=:loggedIn");
96+
*
97+
* @param andWhereClause the clause to add
98+
* @return an instance of this builder to provide a fluent interface
99+
*/
100+
@SuppressWarnings("unchecked")
101+
public R and(final String andWhereClause) {
102+
if (whereClause == null || whereClause.isBlank())
103+
whereClause = andWhereClause;
104+
else
105+
whereClause += " AND " + andWhereClause;
106+
return (R) this;
107+
}
108+
109+
/**
110+
* Adds an 'OR' part to the where-clause.
111+
* <p>
112+
* For example: .or("o.loggedIn=:loggedIn");
113+
*
114+
* @param orWhereClause the clause to add
115+
* @return an instance of this builder to provide a fluent interface
116+
*/
117+
@SuppressWarnings("unchecked")
118+
public R or(final String orWhereClause) {
119+
if (whereClause == null || whereClause.isBlank())
120+
whereClause = orWhereClause;
121+
else
122+
whereClause += " OR " + orWhereClause;
123+
return (R) this;
124+
}
125+
126+
/**
127+
* Clears the where-clause and resets it to default.
128+
* <p>
129+
* Default is the empty string.
130+
*
131+
* @return an instance of this builder to provide a fluent interface
132+
*/
133+
public R clearWhere() {
134+
return where(null);
135+
}
136+
137+
/**
138+
* Clears the order-by-clause and resets it to default.
139+
* <p>
140+
* Default is the empty string.
141+
*
142+
* @return an instance of this builder to provide a fluent interface
143+
*/
144+
public R clearOrderBy() {
145+
return orderBy(null);
146+
}
147+
148+
/**
149+
* Clears the parameters and resets them to default.
150+
* <p>
151+
* Default is an empty map.
152+
*
153+
* @return an instance of this builder to provide a fluent interface
154+
*/
155+
public R clearParameters() {
156+
return parameters(null);
157+
}
158+
159+
/**
160+
* Set parameters used in all the clauses.
161+
* <p>
162+
* Default is an empty map.<br>
163+
* To reset it to default, set it to null.
164+
*
165+
* @param params the new {@link ParamMap}
166+
* @return an instance of this builder to provide a fluent interface
167+
*/
168+
@SuppressWarnings("unchecked")
169+
public R parameters(final ParamMap params) {
170+
parameters = params;
171+
if (this.parameters == null)
172+
parameters = ParamMap.builder().build();
173+
return (R) this;
174+
}
175+
176+
/**
177+
* Adds a single parameter that will be used in all the clauses.
178+
*
179+
* @param paramKey the key of the parameter
180+
* @param paramValue the value of the parameter
181+
* @return an instance of this builder to provide a fluent interface
182+
*/
183+
@SuppressWarnings("unchecked")
184+
public R addParam(final String paramKey, final Object paramValue) {
185+
parameters.addParameter(paramKey, paramValue);
186+
return (R) this;
187+
}
188+
189+
/**
190+
* Sets a custom order-by-clause.
191+
* <p>
192+
* Default is "o.id ASC"<br>
193+
* To reset it to default, set it to null.<br>
194+
* To completely delete it, set it to an empty string.
195+
*
196+
* @param orderByClause the new clause
197+
* @return an instance of this builder to provide a fluent interface
198+
*/
199+
@SuppressWarnings("unchecked")
200+
public R orderBy(final String orderByClause) {
201+
this.orderByClause = orderByClause;
202+
if (this.orderByClause == null)
203+
this.orderByClause = "o.id ASC";
204+
return (R) this;
205+
}
206+
207+
/**
208+
* Adds an ASC-segment to the order-by-clause.
209+
*
210+
* @param field the name of the field ("o.id" or "o.createdOn" for example)
211+
* @return an instance of this builder to provide a fluent interface
212+
*/
213+
@SuppressWarnings("unchecked")
214+
public R asc(final String field) {
215+
if (orderByClause == null || orderByClause.isBlank())
216+
orderByClause = field;
217+
else
218+
orderByClause = ", " + field;
219+
orderByClause += " ASC";
220+
return (R) this;
221+
}
222+
223+
/**
224+
* Adds an DESC-segment to the order-by-clause.
225+
*
226+
* @param field the name of the field ("o.id" or "o.createdOn" for example)
227+
* @return an instance of this builder to provide a fluent interface
228+
*/
229+
@SuppressWarnings("unchecked")
230+
public R desc(final String field) {
231+
if (orderByClause == null || orderByClause.isBlank())
232+
orderByClause = field;
233+
else
234+
orderByClause = ", " + field;
235+
orderByClause += " DESC";
236+
return (R) this;
237+
}
238+
239+
/**
240+
* Sets this query to be locked pessimistically when being called, so that this
241+
* entityManager is the only one that can access this
242+
*
243+
* @return an instance of this builder to provide a fluent interface
244+
*/
245+
@SuppressWarnings("unchecked")
246+
public R lockPessimistic() {
247+
lockPessimistic = true;
248+
return (R) this;
249+
}
250+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package info.unterrainer.commons.httpserver.daos;
2+
3+
import javax.persistence.EntityManagerFactory;
4+
import javax.persistence.Query;
5+
6+
import info.unterrainer.commons.rdbutils.Transactions;
7+
import info.unterrainer.commons.rdbutils.entities.BasicJpa;
8+
9+
public class CountQueryBuilder<P extends BasicJpa, T> extends BasicQueryBuilder<P, T, CountQueryBuilder<P, T>> {
10+
11+
CountQueryBuilder(final EntityManagerFactory emf, final JpqlDao<P> dao) {
12+
super(emf, dao);
13+
}
14+
15+
public Query build() {
16+
if (entityManager != null)
17+
return dao.getCountQuery(entityManager, selectClause, joinClause, whereClause, parameters);
18+
return Transactions.withNewTransactionReturning(emf,
19+
em -> dao.getCountQuery(em, selectClause, joinClause, whereClause, parameters));
20+
}
21+
}

0 commit comments

Comments
 (0)