001// -------------------------------------------------------------------------------- 002// Copyright 2002-2026 Echo Three, LLC 003// 004// Licensed under the Apache License, Version 2.0 (the "License"); 005// you may not use this file except in compliance with the License. 006// You may obtain a copy of the License at 007// 008// http://www.apache.org/licenses/LICENSE-2.0 009// 010// Unless required by applicable law or agreed to in writing, software 011// distributed under the License is distributed on an "AS IS" BASIS, 012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013// See the License for the specific language governing permissions and 014// limitations under the License. 015// -------------------------------------------------------------------------------- 016// Generated File -- DO NOT EDIT BY HAND 017// -------------------------------------------------------------------------------- 018 019/** 020 * ClubItemFactory.java 021 */ 022 023package com.echothree.model.data.club.server.factory; 024 025import com.echothree.model.data.club.common.pk.ClubPK; 026import com.echothree.model.data.club.common.pk.ClubItemTypePK; 027import com.echothree.model.data.item.common.pk.ItemPK; 028 029import com.echothree.model.data.club.server.entity.Club; 030import com.echothree.model.data.club.server.entity.ClubItemType; 031import com.echothree.model.data.item.server.entity.Item; 032 033import com.echothree.model.data.club.common.ClubItemConstants; 034import com.echothree.model.data.club.common.pk.ClubItemPK; 035import com.echothree.model.data.club.server.value.ClubItemValue; 036import com.echothree.model.data.club.server.entity.ClubItem; 037import com.echothree.util.common.exception.PersistenceDatabaseException; 038import com.echothree.util.common.exception.PersistenceDatabaseUpdateException; 039import com.echothree.util.common.exception.PersistenceNotNullException; 040import com.echothree.util.server.persistence.BaseFactory; 041import com.echothree.util.server.persistence.EntityIdGenerator; 042import com.echothree.util.server.persistence.EntityPermission; 043import com.echothree.util.server.persistence.PersistenceDebugFlags; 044import com.echothree.util.server.persistence.Session; 045import java.sql.PreparedStatement; 046import java.sql.ResultSet; 047import java.sql.SQLException; 048import java.sql.Types; 049import java.io.ByteArrayInputStream; 050import java.io.StringReader; 051import java.util.ArrayList; 052import java.util.Collection; 053import java.util.HashSet; 054import java.util.List; 055import java.util.Map; 056import java.util.Set; 057import javax.enterprise.context.ApplicationScoped; 058import javax.enterprise.inject.spi.CDI; 059import javax.inject.Inject; 060import org.jooq.ResultQuery; 061import org.slf4j.Logger; 062import org.slf4j.LoggerFactory; 063 064@ApplicationScoped 065public class ClubItemFactory 066 implements BaseFactory<ClubItemPK, ClubItem> { 067 068 @Inject 069 Session session; 070 071 //private static final Logger log = LoggerFactory.getLogger(ClubItemFactory.class); 072 073 final private static String SQL_SELECT_READ_ONLY = "SELECT clbitm_clubitemid, clbitm_clb_clubid, clbitm_clbitmtyp_clubitemtypeid, clbitm_itm_itemid, clbitm_subscriptiontime, clbitm_fromtime, clbitm_thrutime FROM clubitems WHERE clbitm_clubitemid = ?"; 074 final private static String SQL_SELECT_READ_WRITE = "SELECT clbitm_clubitemid, clbitm_clb_clubid, clbitm_clbitmtyp_clubitemtypeid, clbitm_itm_itemid, clbitm_subscriptiontime, clbitm_fromtime, clbitm_thrutime FROM clubitems WHERE clbitm_clubitemid = ? FOR UPDATE"; 075 final private static String SQL_INSERT = "INSERT INTO clubitems (clbitm_clubitemid, clbitm_clb_clubid, clbitm_clbitmtyp_clubitemtypeid, clbitm_itm_itemid, clbitm_subscriptiontime, clbitm_fromtime, clbitm_thrutime) VALUES (?, ?, ?, ?, ?, ?, ?)"; 076 final private static String SQL_UPDATE = "UPDATE clubitems SET clbitm_clb_clubid = ?, clbitm_clbitmtyp_clubitemtypeid = ?, clbitm_itm_itemid = ?, clbitm_subscriptiontime = ?, clbitm_fromtime = ?, clbitm_thrutime = ? WHERE clbitm_clubitemid = ?"; 077 final private static String SQL_DELETE = "DELETE FROM clubitems WHERE clbitm_clubitemid = ?"; 078 final private static String SQL_VALID = "SELECT COUNT(*) FROM clubitems WHERE clbitm_clubitemid = ?"; 079 080 final private static String PK_COLUMN = "clbitm_clubitemid"; 081 final private static String ALL_COLUMNS = "clbitm_clubitemid, clbitm_clb_clubid, clbitm_clbitmtyp_clubitemtypeid, clbitm_itm_itemid, clbitm_subscriptiontime, clbitm_fromtime, clbitm_thrutime"; 082 final public static String TABLE_NAME = "clubitems"; 083 084 final public static String CLBITM_CLUBITEMID = "clbitm_clubitemid"; 085 final public static String CLBITM_CLB_CLUBID = "clbitm_clb_clubid"; 086 final public static String CLBITM_CLBITMTYP_CLUBITEMTYPEID = "clbitm_clbitmtyp_clubitemtypeid"; 087 final public static String CLBITM_ITM_ITEMID = "clbitm_itm_itemid"; 088 final public static String CLBITM_SUBSCRIPTIONTIME = "clbitm_subscriptiontime"; 089 final public static String CLBITM_FROMTIME = "clbitm_fromtime"; 090 final public static String CLBITM_THRUTIME = "clbitm_thrutime"; 091 092 final private static EntityIdGenerator entityIdGenerator = new EntityIdGenerator(ClubItemConstants.COMPONENT_VENDOR_NAME, ClubItemConstants.ENTITY_TYPE_NAME); 093 094 /** Creates a new instance of ClubItemFactory */ 095 protected ClubItemFactory() { 096 super(); 097 } 098 099 public static ClubItemFactory getInstance() { 100 return CDI.current().select(ClubItemFactory.class).get(); 101 } 102 103 @Override 104 public String getPKColumn() { 105 return PK_COLUMN; 106 } 107 108 @Override 109 public String getAllColumns() { 110 return ALL_COLUMNS; 111 } 112 113 @Override 114 public String getTableName() { 115 return TABLE_NAME; 116 } 117 118 @Override 119 public String getComponentVendorName() { 120 return ClubItemConstants.COMPONENT_VENDOR_NAME; 121 } 122 123 @Override 124 public String getEntityTypeName() { 125 return ClubItemConstants.ENTITY_TYPE_NAME; 126 } 127 128 public PreparedStatement prepareStatement(String query) { 129 return session.prepareStatement(ClubItemFactory.class, query); 130 } 131 132 public ClubItemPK getNextPK() { 133 return new ClubItemPK(entityIdGenerator.getNextEntityId()); 134 } 135 136 public Set<ClubItemPK> getPKsFromResultSetAsSet(ResultSet rs) 137 throws PersistenceDatabaseException { 138 Set<ClubItemPK> _result = new HashSet<>(); 139 140 try { 141 while(rs.next()) { 142 _result.add(getPKFromResultSet(rs)); 143 } 144 } catch (SQLException se) { 145 throw new PersistenceDatabaseException(se); 146 } 147 148 return _result; 149 } 150 151 public java.util.List<ClubItemPK> getPKsFromResultSetAsList(ResultSet rs) 152 throws PersistenceDatabaseException { 153 java.util.List<ClubItemPK> _result = new ArrayList<>(); 154 155 try { 156 while(rs.next()) { 157 _result.add(getPKFromResultSet(rs)); 158 } 159 } catch (SQLException se) { 160 throw new PersistenceDatabaseException(se); 161 } 162 163 return _result; 164 } 165 166 public ClubItemPK getPKFromResultSet(ResultSet rs) 167 throws PersistenceDatabaseException { 168 ClubItemPK _result; 169 170 try { 171 long clbitm_clubitemid = rs.getLong(CLBITM_CLUBITEMID); 172 Long _entityId = rs.wasNull() ? null : clbitm_clubitemid; 173 174 _result = new ClubItemPK(_entityId); 175 } catch (SQLException se) { 176 throw new PersistenceDatabaseException(se); 177 } 178 179 return _result; 180 } 181 182 public java.util.List<ClubItemValue> getValuesFromPKs(Collection<ClubItemPK> pks) 183 throws PersistenceDatabaseException { 184 java.util.List<ClubItemValue> _values = new ArrayList<>(pks.size()); 185 186 for(ClubItemPK _pk: pks) { 187 _values.add(getValueFromPK(_pk)); 188 } 189 190 return _values; 191 } 192 193 public ClubItemValue getValueFromPK(ClubItemPK pk) 194 throws PersistenceDatabaseException { 195 ClubItemValue _value; 196 197 // See if we already have the entity in the session cache 198 ClubItem _entity = (ClubItem)session.getEntity(pk); 199 if(_entity == null) 200 _value = getEntityFromPK(EntityPermission.READ_ONLY, pk).getClubItemValue(); 201 else 202 _value = _entity.getClubItemValue(); 203 204 return _value; 205 } 206 207 public java.util.List<ClubItemValue> getValuesFromResultSet(ResultSet rs) 208 throws PersistenceDatabaseException { 209 java.util.List<ClubItemValue> _result = new ArrayList<>(); 210 211 try { 212 while(rs.next()) { 213 _result.add(getValueFromResultSet(rs)); 214 } 215 } catch (SQLException se) { 216 throw new PersistenceDatabaseException(se); 217 } 218 219 return _result; 220 } 221 222 public ClubItemValue getValueFromResultSet(ResultSet rs) 223 throws PersistenceDatabaseException { 224 ClubItemValue _value; 225 226 try { 227 Long clbitm_clubitemid = rs.getLong(CLBITM_CLUBITEMID); 228 ClubItemPK _pk = new ClubItemPK(clbitm_clubitemid); 229 230 // See if we already have the entity in the session cache 231 ClubItem _entity = (ClubItem)session.getEntity(_pk); 232 233 if(_entity == null) { 234 Long clbitm_clb_clubid = rs.getLong(CLBITM_CLB_CLUBID); 235 if(rs.wasNull()) 236 clbitm_clb_clubid = null; 237 238 Long clbitm_clbitmtyp_clubitemtypeid = rs.getLong(CLBITM_CLBITMTYP_CLUBITEMTYPEID); 239 if(rs.wasNull()) 240 clbitm_clbitmtyp_clubitemtypeid = null; 241 242 Long clbitm_itm_itemid = rs.getLong(CLBITM_ITM_ITEMID); 243 if(rs.wasNull()) 244 clbitm_itm_itemid = null; 245 246 Long clbitm_subscriptiontime = rs.getLong(CLBITM_SUBSCRIPTIONTIME); 247 if(rs.wasNull()) 248 clbitm_subscriptiontime = null; 249 250 Long clbitm_fromtime = rs.getLong(CLBITM_FROMTIME); 251 if(rs.wasNull()) 252 clbitm_fromtime = null; 253 254 Long clbitm_thrutime = rs.getLong(CLBITM_THRUTIME); 255 if(rs.wasNull()) 256 clbitm_thrutime = null; 257 258 _value = new ClubItemValue(_pk, new ClubPK(clbitm_clb_clubid), new ClubItemTypePK(clbitm_clbitmtyp_clubitemtypeid), new ItemPK(clbitm_itm_itemid), clbitm_subscriptiontime, clbitm_fromtime, clbitm_thrutime); 259 } else 260 _value = _entity.getClubItemValue(); 261 } catch (SQLException se) { 262 throw new PersistenceDatabaseException(se); 263 } 264 265 return _value; 266 } 267 268 public java.util.List<ClubItem> getEntitiesFromPKs(EntityPermission entityPermission, Collection<ClubItemPK> pks) 269 throws PersistenceDatabaseException { 270 java.util.List<ClubItem> _entities = new ArrayList<>(pks.size()); 271 272 for(ClubItemPK _pk: pks) { 273 _entities.add(getEntityFromPK(entityPermission, _pk)); 274 } 275 276 return _entities; 277 } 278 279 public ClubItem getEntityFromValue(EntityPermission entityPermission, ClubItemValue value) { 280 return getEntityFromPK(entityPermission, value.getPrimaryKey()); 281 } 282 283 public ClubItem getEntityFromCache(ClubItemPK pk) { 284 ClubItemValue _value = (ClubItemValue)session.getValueCache().get(pk); 285 286 return _value == null ? null : new ClubItem(_value, EntityPermission.READ_ONLY); 287 } 288 289 public ClubItem getEntityFromPK(EntityPermission entityPermission, ClubItemPK pk) 290 throws PersistenceDatabaseException { 291 ClubItem _entity; 292 293 // See if we already have the entity in the session cache 294 _entity = (ClubItem)session.getEntity(pk); 295 if(_entity != null) { 296 // If the requested permission is READ_WRITE, and the cached permission is 297 // READ_ONLY, then pretend that the cached object wasn't found, and create 298 // a new entity that is READ_WRITE. 299 if(entityPermission.equals(EntityPermission.READ_WRITE)) { 300 if(_entity.getEntityPermission().equals(EntityPermission.READ_ONLY)) 301 _entity = null; 302 } 303 } 304 305 if(_entity == null && entityPermission.equals(EntityPermission.READ_ONLY)) { 306 _entity = getEntityFromCache(pk); 307 } 308 309 if(_entity == null) { 310 PreparedStatement _ps = session.prepareStatement(entityPermission.equals(EntityPermission.READ_ONLY)? SQL_SELECT_READ_ONLY: SQL_SELECT_READ_WRITE); 311 long _entityId = pk.getEntityId(); 312 ResultSet _rs = null; 313 314 try { 315 _ps.setLong(1, _entityId); 316 _rs = _ps.executeQuery(); 317 if(_rs.next()) { 318 _entity = getEntityFromResultSet(entityPermission, _rs); 319 } 320 } catch (SQLException se) { 321 throw new PersistenceDatabaseException(se); 322 } finally { 323 if(_rs != null) { 324 try { 325 _rs.close(); 326 } catch (SQLException se) { 327 // do nothing 328 } 329 } 330 } 331 } 332 333 return _entity; 334 } 335 336 public Set<ClubItemPK> getPKsFromQueryAsSet(PreparedStatement ps, final Object... params) 337 throws PersistenceDatabaseException { 338 Set<ClubItemPK> _pks; 339 ResultSet _rs = null; 340 341 try { 342 if(params.length != 0) { 343 Session.setQueryParams(ps, params); 344 } 345 346 _rs = ps.executeQuery(); 347 _pks = getPKsFromResultSetAsSet(_rs); 348 _rs.close(); 349 } catch (SQLException se) { 350 throw new PersistenceDatabaseException(se); 351 } finally { 352 if(_rs != null) { 353 try { 354 _rs.close(); 355 } catch (SQLException se) { 356 // do nothing 357 } 358 } 359 } 360 361 return _pks; 362 } 363 364 public java.util.List<ClubItemPK> getPKsFromQueryAsList(PreparedStatement ps, final Object... params) 365 throws PersistenceDatabaseException { 366 java.util.List<ClubItemPK> _pks; 367 ResultSet _rs = null; 368 369 try { 370 if(params.length != 0) { 371 Session.setQueryParams(ps, params); 372 } 373 374 _rs = ps.executeQuery(); 375 _pks = getPKsFromResultSetAsList(_rs); 376 _rs.close(); 377 } catch (SQLException se) { 378 throw new PersistenceDatabaseException(se); 379 } finally { 380 if(_rs != null) { 381 try { 382 _rs.close(); 383 } catch (SQLException se) { 384 // do nothing 385 } 386 } 387 } 388 389 return _pks; 390 } 391 392 public ClubItemPK getPKFromQuery(PreparedStatement ps, final Object... params) 393 throws PersistenceDatabaseException { 394 ClubItemPK _pk = null; 395 ResultSet _rs = null; 396 397 try { 398 if(params.length != 0) { 399 Session.setQueryParams(ps, params); 400 } 401 402 _rs = ps.executeQuery(); 403 if(_rs.next()) { 404 _pk = getPKFromResultSet(_rs); 405 } 406 _rs.close(); 407 } catch (SQLException se) { 408 throw new PersistenceDatabaseException(se); 409 } finally { 410 if(_rs != null) { 411 try { 412 _rs.close(); 413 } catch (SQLException se) { 414 // do nothing 415 } 416 } 417 } 418 419 return _pk; 420 } 421 422 public java.util.List<ClubItem> getEntitiesFromQuery(EntityPermission entityPermission, Map<EntityPermission, String>queryMap, final Object... params) 423 throws PersistenceDatabaseException { 424 PreparedStatement ps = session.prepareStatement(ClubItemFactory.class, queryMap.get(entityPermission)); 425 426 return getEntitiesFromQuery(entityPermission, ps, params); 427 } 428 429 public java.util.List<ClubItem> getEntitiesFromQuery(EntityPermission entityPermission, Map<EntityPermission, String>queryMap) 430 throws PersistenceDatabaseException { 431 PreparedStatement ps = session.prepareStatement(ClubItemFactory.class, queryMap.get(entityPermission)); 432 433 return getEntitiesFromQuery(entityPermission, ps); 434 } 435 436 public java.util.List<ClubItem> getEntitiesFromQuery(EntityPermission entityPermission, ResultQuery<?> query) 437 throws PersistenceDatabaseException { 438 PreparedStatement ps = session.prepareStatement(ClubItemFactory.class, query.getSQL()); 439 440 return getEntitiesFromQuery(entityPermission, ps, query.getBindValues().toArray()); 441 } 442 443 public java.util.List<ClubItem> getEntitiesFromQuery(EntityPermission entityPermission, PreparedStatement ps, final Object... params) 444 throws PersistenceDatabaseException { 445 java.util.List<ClubItem> _entities; 446 ResultSet _rs = null; 447 448 try { 449 if(params.length != 0) { 450 Session.setQueryParams(ps, params); 451 } 452 453 _rs = ps.executeQuery(); 454 _entities = getEntitiesFromResultSet(entityPermission, _rs); 455 _rs.close(); 456 } catch (SQLException se) { 457 throw new PersistenceDatabaseException(se); 458 } finally { 459 if(_rs != null) { 460 try { 461 _rs.close(); 462 } catch (SQLException se) { 463 // do nothing 464 } 465 } 466 } 467 468 return _entities; 469 } 470 471 public ClubItem getEntityFromQuery(EntityPermission entityPermission, Map<EntityPermission, String>queryMap, final Object... params) 472 throws PersistenceDatabaseException { 473 PreparedStatement ps = session.prepareStatement(ClubItemFactory.class, queryMap.get(entityPermission)); 474 475 return getEntityFromQuery(entityPermission, ps, params); 476 } 477 478 public ClubItem getEntityFromQuery(EntityPermission entityPermission, Map<EntityPermission, String>queryMap) 479 throws PersistenceDatabaseException { 480 PreparedStatement ps = session.prepareStatement(ClubItemFactory.class, queryMap.get(entityPermission)); 481 482 return getEntityFromQuery(entityPermission, ps); 483 } 484 485 public ClubItem getEntityFromQuery(EntityPermission entityPermission, ResultQuery<?> query) 486 throws PersistenceDatabaseException { 487 PreparedStatement ps = session.prepareStatement(ClubItemFactory.class, query.getSQL()); 488 489 return getEntityFromQuery(entityPermission, ps, query.getBindValues().toArray()); 490 } 491 492 public ClubItem getEntityFromQuery(EntityPermission entityPermission, PreparedStatement ps, final Object... params) 493 throws PersistenceDatabaseException { 494 ClubItem _entity = null; 495 ResultSet _rs = null; 496 497 try { 498 if(params.length != 0) { 499 Session.setQueryParams(ps, params); 500 } 501 502 _rs = ps.executeQuery(); 503 if(_rs.next()) { 504 _entity = getEntityFromResultSet(entityPermission, _rs); 505 } 506 _rs.close(); 507 } catch (SQLException se) { 508 throw new PersistenceDatabaseException(se); 509 } finally { 510 if(_rs != null) { 511 try { 512 _rs.close(); 513 } catch (SQLException se) { 514 // do nothing 515 } 516 } 517 } 518 519 return _entity; 520 } 521 522 public java.util.List<ClubItem> getEntitiesFromResultSet(EntityPermission entityPermission, ResultSet rs) 523 throws PersistenceDatabaseException { 524 java.util.List<ClubItem> _result = new ArrayList<>(); 525 526 try { 527 while(rs.next()) { 528 _result.add(getEntityFromResultSet(entityPermission, rs)); 529 } 530 } catch (SQLException se) { 531 throw new PersistenceDatabaseException(se); 532 } 533 534 return _result; 535 } 536 537 public ClubItem getEntityFromResultSet(EntityPermission entityPermission, ResultSet rs) 538 throws PersistenceDatabaseException { 539 ClubItem _entity; 540 541 try { 542 Long clbitm_clubitemid = rs.getLong(CLBITM_CLUBITEMID); 543 ClubItemPK _pk = new ClubItemPK(clbitm_clubitemid); 544 545 // See if we already have the entity in the session cache 546 _entity = (ClubItem)session.getEntity(_pk); 547 if(_entity != null) { 548 // If the requested permission is READ_WRITE, and the cached permission is 549 // READ_ONLY, then pretend that the cached object wasn't found, and create 550 // a new entity that is READ_WRITE. 551 if(entityPermission.equals(EntityPermission.READ_WRITE)) { 552 if(_entity.getEntityPermission().equals(EntityPermission.READ_ONLY)) 553 _entity = null; 554 } 555 } 556 boolean foundInSessionCache = _entity != null; 557 558 if(_entity == null && entityPermission.equals(EntityPermission.READ_ONLY)) { 559 _entity = getEntityFromCache(_pk); 560 } 561 562 if(_entity == null) { 563 Long clbitm_clb_clubid = rs.getLong(CLBITM_CLB_CLUBID); 564 if(rs.wasNull()) 565 clbitm_clb_clubid = null; 566 567 Long clbitm_clbitmtyp_clubitemtypeid = rs.getLong(CLBITM_CLBITMTYP_CLUBITEMTYPEID); 568 if(rs.wasNull()) 569 clbitm_clbitmtyp_clubitemtypeid = null; 570 571 Long clbitm_itm_itemid = rs.getLong(CLBITM_ITM_ITEMID); 572 if(rs.wasNull()) 573 clbitm_itm_itemid = null; 574 575 Long clbitm_subscriptiontime = rs.getLong(CLBITM_SUBSCRIPTIONTIME); 576 if(rs.wasNull()) 577 clbitm_subscriptiontime = null; 578 579 Long clbitm_fromtime = rs.getLong(CLBITM_FROMTIME); 580 if(rs.wasNull()) 581 clbitm_fromtime = null; 582 583 Long clbitm_thrutime = rs.getLong(CLBITM_THRUTIME); 584 if(rs.wasNull()) 585 clbitm_thrutime = null; 586 587 ClubItemValue _value = new ClubItemValue(_pk, clbitm_clb_clubid == null? null: new ClubPK(clbitm_clb_clubid), clbitm_clbitmtyp_clubitemtypeid == null? null: new ClubItemTypePK(clbitm_clbitmtyp_clubitemtypeid), clbitm_itm_itemid == null? null: new ItemPK(clbitm_itm_itemid), clbitm_subscriptiontime, clbitm_fromtime, clbitm_thrutime); 588 _entity = new ClubItem(_value, entityPermission); 589 } 590 591 if(!foundInSessionCache) { 592 if(entityPermission.equals(EntityPermission.READ_ONLY)) { 593 session.putReadOnlyEntity(_pk, _entity); 594 session.getValueCache().put(_entity.getClubItemValue()); 595 } else { 596 session.putReadWriteEntity(_pk, _entity); 597 } 598 } 599 } catch (SQLException se) { 600 throw new PersistenceDatabaseException(se); 601 } 602 603 return _entity; 604 } 605 606 public ClubItem create(Club club, ClubItemType clubItemType, Item item, Long subscriptionTime, Long fromTime, Long thruTime) 607 throws PersistenceDatabaseException, PersistenceNotNullException { 608 return create(club == null ? null : club.getPrimaryKey(), clubItemType == null ? null : clubItemType.getPrimaryKey(), item == null ? null : item.getPrimaryKey(), subscriptionTime, fromTime, thruTime); 609 } 610 611 private void bindForCreate(PreparedStatement _ps, ClubItemValue _value) 612 throws SQLException { 613 _ps.setLong(1, _value.getEntityId()); 614 615 ClubPK clbitm_clb_clubid = _value.getClubPK(); 616 if(clbitm_clb_clubid == null) 617 _ps.setNull(2, Types.BIGINT); 618 else 619 _ps.setLong(2, clbitm_clb_clubid.getEntityId()); 620 621 ClubItemTypePK clbitm_clbitmtyp_clubitemtypeid = _value.getClubItemTypePK(); 622 if(clbitm_clbitmtyp_clubitemtypeid == null) 623 _ps.setNull(3, Types.BIGINT); 624 else 625 _ps.setLong(3, clbitm_clbitmtyp_clubitemtypeid.getEntityId()); 626 627 ItemPK clbitm_itm_itemid = _value.getItemPK(); 628 if(clbitm_itm_itemid == null) 629 _ps.setNull(4, Types.BIGINT); 630 else 631 _ps.setLong(4, clbitm_itm_itemid.getEntityId()); 632 633 Long clbitm_subscriptiontime = _value.getSubscriptionTime(); 634 if(clbitm_subscriptiontime == null) 635 _ps.setNull(5, Types.BIGINT); 636 else 637 _ps.setLong(5, clbitm_subscriptiontime); 638 639 Long clbitm_fromtime = _value.getFromTime(); 640 if(clbitm_fromtime == null) 641 _ps.setNull(6, Types.BIGINT); 642 else 643 _ps.setLong(6, clbitm_fromtime); 644 645 Long clbitm_thrutime = _value.getThruTime(); 646 if(clbitm_thrutime == null) 647 _ps.setNull(7, Types.BIGINT); 648 else 649 _ps.setLong(7, clbitm_thrutime); 650 651 } 652 653 public ClubItem create(ClubPK clubPK, ClubItemTypePK clubItemTypePK, ItemPK itemPK, Long subscriptionTime, Long fromTime, Long thruTime) 654 throws PersistenceDatabaseException, PersistenceNotNullException { 655 ClubItemPK _pk = getNextPK(); 656 ClubItemValue _value = new ClubItemValue(_pk, clubPK, clubItemTypePK, itemPK, subscriptionTime, fromTime, thruTime); 657 658 PreparedStatement _ps = session.prepareStatement(SQL_INSERT); 659 660 try { 661 bindForCreate(_ps, _value); 662 663 if(PersistenceDebugFlags.CheckEntityInsertRowCount) { 664 int _count = _ps.executeUpdate(); 665 666 if(_count != 1) { 667 throw new PersistenceDatabaseUpdateException("insert failed, _count = " + _count); 668 } 669 } else { 670 _ps.executeUpdate(); 671 } 672 673 session.getValueCache().put(_value); 674 } catch (SQLException se) { 675 throw new PersistenceDatabaseException(se); 676 } 677 678 ClubItem _entity = new ClubItem(_value, EntityPermission.READ_ONLY); 679 session.putReadOnlyEntity(_pk, _entity); 680 681 return _entity; 682 } 683 684 public void create(Collection<ClubItemValue> _values) 685 throws PersistenceDatabaseException, PersistenceNotNullException { 686 int _size = _values.size(); 687 688 if(_size > 0) { 689 PreparedStatement _ps = session.prepareStatement(SQL_INSERT); 690 List<ClubItemValue> _cacheValues = new ArrayList<>(_size); 691 692 try { 693 for(ClubItemValue _value : _values) { 694 _value.setEntityId(entityIdGenerator.getNextEntityId()); 695 bindForCreate(_ps, _value); 696 697 _ps.addBatch(); 698 699 _cacheValues.add(_value); 700 } 701 702 if(PersistenceDebugFlags.CheckEntityInsertRowCount) { 703 int[] _counts = _ps.executeBatch(); 704 705 for(int _countOffset = 0 ; _countOffset < _size ; _countOffset++) { 706 if(_counts[_countOffset] != 1 && _counts[_countOffset] != PreparedStatement.SUCCESS_NO_INFO) { 707 throw new PersistenceDatabaseUpdateException("batch insert failed, _counts[" + _countOffset + "] = " + _counts[_countOffset]); 708 } 709 } 710 } else { 711 _ps.executeBatch(); 712 } 713 714 _ps.clearBatch(); 715 } catch (SQLException se) { 716 throw new PersistenceDatabaseException(se); 717 } 718 719 _cacheValues.forEach((_cacheValue) -> { 720 ClubItem _cacheEntity = new ClubItem(_cacheValue, EntityPermission.READ_ONLY); 721 722 session.putReadOnlyEntity(_cacheValue.getPrimaryKey(), _cacheEntity); 723 }); 724 } 725 } 726 727 private boolean bindForStore(PreparedStatement _ps, ClubItemValue _value) 728 throws SQLException { 729 boolean _hasBeenModified = _value.hasBeenModified(); 730 731 if(_hasBeenModified) { 732 ClubPK clbitm_clb_clubid = _value.getClubPK(); 733 if(clbitm_clb_clubid == null) 734 _ps.setNull(1, Types.BIGINT); 735 else 736 _ps.setLong(1, clbitm_clb_clubid.getEntityId()); 737 738 ClubItemTypePK clbitm_clbitmtyp_clubitemtypeid = _value.getClubItemTypePK(); 739 if(clbitm_clbitmtyp_clubitemtypeid == null) 740 _ps.setNull(2, Types.BIGINT); 741 else 742 _ps.setLong(2, clbitm_clbitmtyp_clubitemtypeid.getEntityId()); 743 744 ItemPK clbitm_itm_itemid = _value.getItemPK(); 745 if(clbitm_itm_itemid == null) 746 _ps.setNull(3, Types.BIGINT); 747 else 748 _ps.setLong(3, clbitm_itm_itemid.getEntityId()); 749 750 Long clbitm_subscriptiontime = _value.getSubscriptionTime(); 751 if(clbitm_subscriptiontime == null) 752 _ps.setNull(4, Types.BIGINT); 753 else 754 _ps.setLong(4, clbitm_subscriptiontime); 755 756 Long clbitm_fromtime = _value.getFromTime(); 757 if(clbitm_fromtime == null) 758 _ps.setNull(5, Types.BIGINT); 759 else 760 _ps.setLong(5, clbitm_fromtime); 761 762 Long clbitm_thrutime = _value.getThruTime(); 763 if(clbitm_thrutime == null) 764 _ps.setNull(6, Types.BIGINT); 765 else 766 _ps.setLong(6, clbitm_thrutime); 767 768 _ps.setLong(7, _value.getPrimaryKey().getEntityId()); 769 770 _value.clearHasBeenModified(); 771 } 772 773 return _hasBeenModified; 774 } 775 776 @Override 777 public void store(ClubItem entity) 778 throws PersistenceDatabaseException { 779 PreparedStatement _ps = session.prepareStatement(SQL_UPDATE); 780 781 try { 782 ClubItemValue _value = entity.getClubItemValue(); 783 784 if(bindForStore(_ps, _value)) { 785 if(PersistenceDebugFlags.CheckEntityUpdateRowCount) { 786 int _count = _ps.executeUpdate(); 787 788 if(_count != 1) { 789 throw new PersistenceDatabaseUpdateException("update failed, _count = " + _count); 790 } 791 } else { 792 _ps.executeUpdate(); 793 } 794 795 session.getValueCache().put(_value); 796 } 797 } catch (SQLException se) { 798 throw new PersistenceDatabaseException(se); 799 } 800 } 801 802 @Override 803 public void store(Collection<ClubItem> entities) 804 throws PersistenceDatabaseException { 805 if(entities.size() > 0) { 806 PreparedStatement _ps = session.prepareStatement(SQL_UPDATE); 807 int _modifiedEntities = 0; 808 809 try { 810 for(ClubItem entity : entities) { 811 if(bindForStore(_ps, entity.getClubItemValue())) { 812 _ps.addBatch(); 813 _modifiedEntities++; 814 } 815 } 816 817 if(_modifiedEntities != 0) { 818 if(PersistenceDebugFlags.CheckEntityUpdateRowCount) { 819 int[] _counts = _ps.executeBatch(); 820 821 for(int _countOffset = 0 ; _countOffset < _modifiedEntities ; _countOffset++) { 822 if(_counts[_countOffset] != 1 && _counts[_countOffset] != PreparedStatement.SUCCESS_NO_INFO) { 823 throw new PersistenceDatabaseUpdateException("batch update failed, _counts[" + _countOffset + "] = " + _counts[_countOffset]); 824 } 825 } 826 } else { 827 _ps.executeBatch(); 828 } 829 830 _ps.clearBatch(); 831 832 entities.forEach((entity) -> { 833 session.getValueCache().put(entity.getClubItemValue()); 834 }); 835 } 836 } catch (SQLException se) { 837 throw new PersistenceDatabaseException(se); 838 } 839 } 840 } 841 842 @Override 843 public void remove(ClubItem entity) 844 throws PersistenceDatabaseException { 845 remove(entity.getPrimaryKey()); 846 } 847 848 @Override 849 public void remove(ClubItemPK pk) 850 throws PersistenceDatabaseException { 851 PreparedStatement _ps = session.prepareStatement(SQL_DELETE); 852 long _entityId = pk.getEntityId(); 853 854 try { 855 _ps.setLong(1, _entityId); 856 857 if(PersistenceDebugFlags.CheckEntityDeleteRowCount) { 858 int _count = _ps.executeUpdate(); 859 860 if(_count != 1) { 861 throw new PersistenceDatabaseUpdateException("remove failed, _count = " + _count); 862 } 863 } else { 864 _ps.executeUpdate(); 865 } 866 867 session.getValueCache().remove(pk); 868 } catch (SQLException se) { 869 throw new PersistenceDatabaseException(se); 870 } 871 872 session.removed(pk, false); 873 } 874 875 @Override 876 public void remove(Collection<ClubItemPK> pks) 877 throws PersistenceDatabaseException { 878 if(pks.size() > 0) { 879 PreparedStatement _ps = session.prepareStatement(SQL_DELETE); 880 int _modifiedEntities = 0; 881 882 try { 883 for(ClubItemPK pk : pks) { 884 long _entityId = pk.getEntityId(); 885 886 _ps.setLong(1, _entityId); 887 888 _ps.addBatch(); 889 _modifiedEntities++; 890 } 891 892 if(_modifiedEntities != 0) { 893 if(PersistenceDebugFlags.CheckEntityDeleteRowCount) { 894 int[] _counts = _ps.executeBatch(); 895 896 for(int _countOffset = 0 ; _countOffset < _modifiedEntities ; _countOffset++) { 897 if(_counts[_countOffset] != 1 && _counts[_countOffset] != PreparedStatement.SUCCESS_NO_INFO) { 898 throw new PersistenceDatabaseUpdateException("batch remove failed, _counts[" + _countOffset + "] = " + _counts[_countOffset]); 899 } 900 } 901 } else { 902 _ps.executeBatch(); 903 } 904 905 _ps.clearBatch(); 906 907 pks.forEach((pk) -> { 908 session.getValueCache().remove(pk); 909 }); 910 } 911 } catch (SQLException se) { 912 throw new PersistenceDatabaseException(se); 913 } 914 915 pks.forEach((pk) -> { 916 session.removed(pk, true); 917 }); 918 } 919 } 920 921 @Override 922 public boolean validPK(ClubItemPK pk) 923 throws PersistenceDatabaseException { 924 boolean valid = false; 925 PreparedStatement _ps = session.prepareStatement(SQL_VALID); 926 ResultSet _rs = null; 927 928 try { 929 _ps.setLong(1, pk.getEntityId()); 930 931 _rs = _ps.executeQuery(); 932 if(_rs.next()) { 933 long _count = _rs.getLong(1); 934 if(_rs.wasNull()) 935 _count = 0; 936 937 if(_count == 1) 938 valid = true; 939 } 940 } catch (SQLException se) { 941 throw new PersistenceDatabaseException(se); 942 } finally { 943 if(_rs != null) { 944 try { 945 _rs.close(); 946 } catch (SQLException se) { 947 // do nothing 948 } 949 } 950 } 951 952 return valid; 953 } 954 955}