/src/java/com/bpp/hibernate/BudgetTimetableActivitiesHibernateHelper.java

https://bitbucket.org/SayomiOla/bpp · Java · 272 lines · 196 code · 58 blank · 18 comment · 28 complexity · e8984a45662d095267b2ae2eac6a0874 MD5 · raw file

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package com.bpp.hibernate;
  6. import com.bpp.utility.Utility;
  7. import com.google.gson.Gson;
  8. import java.util.HashMap;
  9. import java.util.List;
  10. import org.hibernate.Criteria;
  11. import org.hibernate.Query;
  12. import org.hibernate.Session;
  13. import org.hibernate.HibernateException;
  14. import org.hibernate.SQLQuery;
  15. import org.hibernate.Transaction;
  16. /**
  17. * Budget Timetable Activities Hibernate Helper class
  18. *
  19. * @author Lekan
  20. * @since 17/6/2017
  21. */
  22. public class BudgetTimetableActivitiesHibernateHelper {
  23. public static final String TABLE_NAME = "BudgetTimetableActivities";
  24. public static final String RAW_TABLE_NAME = "Budget_Timetable_Activities";
  25. public synchronized String insert(BudgetTimetableActivities btt) {
  26. BudgetTimetableActivities checkBtt = exists(btt.getName(), btt.getBudgetTimetable().getId());
  27. if (checkBtt == null) {
  28. final Session session = HibernateUtil.getSessionFactory().getCurrentSession();
  29. Transaction tx = null;
  30. try {
  31. tx = session.beginTransaction();
  32. session.save(btt);
  33. tx.commit();
  34. } catch (HibernateException e) {
  35. if (tx != null) {
  36. tx.rollback();
  37. }
  38. e.printStackTrace();
  39. return "";
  40. } finally {
  41. //session.close();
  42. }
  43. return Utility.ActionResponse.INSERTED.toString();
  44. } else {
  45. return Utility.ActionResponse.RECORD_EXISTS.toString();
  46. }
  47. }
  48. public synchronized String update(BudgetTimetableActivities btt) {
  49. BudgetTimetableActivities checkBtt = exists(btt.getName(), btt.getBudgetTimetable().getId());
  50. if (checkBtt != null) {
  51. final Session session = HibernateUtil.getSessionFactory().getCurrentSession();
  52. Transaction tx = null;
  53. try {
  54. tx = session.beginTransaction();
  55. session.merge(btt);
  56. tx.commit();
  57. } catch (HibernateException e) {
  58. System.out.println("error: "+e.getMessage());
  59. if (tx != null) {
  60. tx.rollback();
  61. }
  62. e.printStackTrace();
  63. return "";
  64. } finally {
  65. //session.close();
  66. }
  67. return Utility.ActionResponse.UPDATED.toString();
  68. } else {
  69. return Utility.ActionResponse.NO_RECORD.toString();
  70. }
  71. }
  72. public synchronized String delete(BudgetTimetableActivities btt) {
  73. BudgetTimetableActivities checkBtt = exists(btt.getName(), btt.getBudgetTimetable().getId());
  74. if (checkBtt != null) {
  75. final Session session = HibernateUtil.getSessionFactory().getCurrentSession();
  76. Transaction tx = null;
  77. try {
  78. tx = session.beginTransaction();
  79. session.delete(btt);
  80. tx.commit();
  81. } catch (HibernateException e) {
  82. if (tx != null) {
  83. tx.rollback();
  84. }
  85. e.printStackTrace();
  86. return "";
  87. } finally {
  88. //session.close();
  89. }
  90. return Utility.ActionResponse.DELETED.toString();
  91. } else {
  92. return Utility.ActionResponse.NO_RECORD.toString();
  93. }
  94. }
  95. public synchronized BudgetTimetableActivities exists(String name, int budgetTimetableID) {
  96. BudgetTimetableActivities btt = null;
  97. final Session session = HibernateUtil.getSessionFactory().getCurrentSession();
  98. Transaction tx = null;
  99. try {
  100. tx = session.beginTransaction();
  101. Query q = session.createQuery("from " + TABLE_NAME + " as a where a.name = '" + name +
  102. "' and a.budgetTimetable.id = " + budgetTimetableID);
  103. btt = (BudgetTimetableActivities) q.uniqueResult();
  104. tx.commit();
  105. }
  106. catch (HibernateException e) {
  107. if (tx != null) {
  108. tx.rollback();
  109. }
  110. e.printStackTrace();
  111. }
  112. finally {
  113. //session.close();
  114. }
  115. return btt;
  116. }
  117. public synchronized String getMaxserialNo() {
  118. String tablename = "dbo." + RAW_TABLE_NAME;
  119. List recordlist = null;
  120. String resp = "";
  121. final Session session = HibernateUtil.getSessionFactory().getCurrentSession();
  122. Transaction tx = null;
  123. try {
  124. tx = session.beginTransaction();
  125. String sql = "select max(id) as maxserialno from " + tablename;
  126. SQLQuery q = session.createSQLQuery(sql);
  127. q.setMaxResults(1);
  128. q.setResultTransformer(Criteria.ALIAS_TO_ENTITY_MAP);
  129. recordlist = q.list();
  130. HashMap hmap = (HashMap) recordlist.get(0);
  131. if (hmap.get("maxserialno") == null) {
  132. resp = "0";
  133. } else {
  134. resp = hmap.get("maxserialno").toString();
  135. }
  136. tx.commit();
  137. } catch (HibernateException e) {
  138. if (tx != null) {
  139. tx.rollback();
  140. }
  141. e.printStackTrace();
  142. } finally {
  143. //session.close();
  144. }
  145. return resp;
  146. }
  147. public synchronized BudgetTimetableActivities fetchObj(int id) {
  148. BudgetTimetableActivities budgetTimetableActivity = null;
  149. final Session session = HibernateUtil.getSessionFactory().getCurrentSession();
  150. Transaction tx = null;
  151. try {
  152. tx = session.beginTransaction();
  153. Query q = session.createQuery("from " + TABLE_NAME + " as a where a.id = " + id);
  154. budgetTimetableActivity = (BudgetTimetableActivities) q.uniqueResult();
  155. tx.commit();
  156. } catch (HibernateException e) {
  157. if (tx != null) {
  158. tx.rollback();
  159. }
  160. e.printStackTrace();
  161. } finally {
  162. //session.close();
  163. }
  164. return budgetTimetableActivity;
  165. }
  166. public synchronized String fetch(int id) {
  167. List budgetTimetableList = null;
  168. String jsonList = "";
  169. final Session session = HibernateUtil.getSessionFactory().getCurrentSession();
  170. Transaction tx = null;
  171. try {
  172. tx = session.beginTransaction();
  173. String sql = "select * from " + RAW_TABLE_NAME + " as a where a.id = " + id;
  174. SQLQuery q = session.createSQLQuery(sql);
  175. budgetTimetableList = q.list();
  176. Gson gson = new Gson();
  177. jsonList = gson.toJson(budgetTimetableList);
  178. tx.commit();
  179. } catch (HibernateException e) {
  180. if (tx != null) {
  181. tx.rollback();
  182. }
  183. e.printStackTrace();
  184. } finally {
  185. //session.close();
  186. }
  187. return jsonList;
  188. }
  189. public synchronized String fetchAll(int budgetTimetableID) {
  190. List budgetTimetableList = null;
  191. String jsonList = "";
  192. final Session session = HibernateUtil.getSessionFactory().getCurrentSession();
  193. Transaction tx = null;
  194. try {
  195. tx = session.beginTransaction();
  196. String sql = "select a.id, a.name, a.description, a.from_date, a.to_date, b.name as phase from " + RAW_TABLE_NAME + " a " +
  197. "inner join " + BudgetPhasesHibernateHelper.RAW_TABLE_NAME + " b on a.budget_phase_id = b.id " +
  198. "where a.budget_timetable_id = " + budgetTimetableID + " order by a.id";
  199. SQLQuery q = session.createSQLQuery(sql);
  200. budgetTimetableList = q.list();
  201. Gson gson = new Gson();
  202. jsonList = gson.toJson(budgetTimetableList);
  203. tx.commit();
  204. } catch (HibernateException e) {
  205. if (tx != null) {
  206. tx.rollback();
  207. }
  208. e.printStackTrace();
  209. } finally {
  210. //session.close();
  211. }
  212. return jsonList;
  213. }
  214. }