|
| 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 | +} |
0 commit comments