6a21d9479401a697e488caadcab48e619c2922ed
[mir.git] / source / mir / core / service / storage / StorageService.java
1 /*
2  * StorageService.java
3  * 
4  * Copyright (C) 2001, 2002, 2003 The Mir-coders group
5  *
6  * This file is part of Mir.
7  *
8  * Mir is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * Mir is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with Mir; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  * In addition, as a special exception, The Mir-coders gives permission to link
23  * the code of this program with  any library licensed under the Apache Software License,
24  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library
25  * (or with modified versions of the above that use the same license as the above),
26  * and distribute linked combinations including the two.  You must obey the
27  * GNU General Public License in all respects for all of the code used other than
28  * the above mentioned libraries.  If you modify this file, you may extend this
29  * exception to your version of the file, but you are not obligated to do so.
30  * If you do not wish to do so, delete this exception statement from your version.
31  */
32  
33 package mir.core.service.storage;
34
35 import java.util.List;
36
37 import mir.core.model.IImage;
38 import net.sf.hibernate.Criteria;
39 import net.sf.hibernate.Hibernate;
40 import net.sf.hibernate.HibernateException;
41 import net.sf.hibernate.Session;
42 import net.sf.hibernate.SessionFactory;
43 import net.sf.hibernate.Transaction;
44 import net.sf.hibernate.expression.Expression;
45
46 /**
47  * 
48  * StorageService
49  * @author idefix
50  * @version $Id: StorageService.java,v 1.3 2003/09/05 20:23:59 idfx Exp $
51  */
52 public abstract class StorageService {
53         private Class objectClass;
54         private SessionHolder sessionHolder;
55
56         public StorageService(Class objectClass, SessionFactory factory){
57                 this.objectClass = objectClass;
58                 sessionHolder = new SessionHolder(factory);
59         }
60         
61         public List list(int offset, int limit){
62                 return list(offset, limit, null);
63         }
64         
65         public List list(int offset, int limit, Expression expression){
66                 try {
67                         Session session = sessionHolder.currentSession();
68                         Transaction transaction = session.beginTransaction();
69                         Criteria criteria = session.createCriteria(objectClass);
70                         if(expression != null){
71                                 System.out.println(expression.toString());
72                                 criteria = criteria.add(expression);
73                         }       
74                         criteria.setFirstResult(offset)
75                                 .setMaxResults(limit);
76                         List returnList = criteria.list();
77                         transaction.commit();
78                         sessionHolder.closeSession();
79                         return returnList;
80                 } catch (HibernateException e) {
81                         throw new StorageServiceFailure(e);
82                 } 
83         }
84         
85         public Object load(Integer id){
86                 try {
87                         Session session = sessionHolder.currentSession();
88                         Transaction transaction = session.beginTransaction();
89                         Object returnObject = session.load(objectClass, id);
90                         initializeLazyCollections(returnObject);
91                         transaction.commit();
92                         sessionHolder.closeSession();
93                         return returnObject;
94                 } catch (HibernateException e) {
95                         throw new StorageServiceFailure(e);
96                 }       
97         }
98         
99         /**
100          * @param returnObject
101          */
102         protected abstract void initializeLazyCollections(Object returnObject) 
103                 throws HibernateException;
104         
105         public Integer add(Object newObject){
106                 try {
107                         Session session = sessionHolder.currentSession();
108                         Transaction transaction = session.beginTransaction();
109                         Integer newid = (Integer)session.save(newObject);
110                         transaction.commit();
111                         return newid;
112                 } catch (HibernateException e) {
113                         throw new StorageServiceFailure(e);
114                 }                       
115         }
116         
117         public void update(Object toUpdate){
118                 try {
119                         Session session = sessionHolder.currentSession();
120                         Transaction transaction = session.beginTransaction();
121                         session.update(toUpdate);
122                         transaction.commit();
123                 } catch (HibernateException e) {
124                         throw new StorageServiceFailure(e);
125                 }                       
126         }
127         
128         public void delete(Object toDelete){
129                 try {
130                         Session session = sessionHolder.currentSession();
131                         Transaction transaction = session.beginTransaction();
132                         session.delete(toDelete);
133                         transaction.commit();
134                 } catch (HibernateException e) {
135                         throw new StorageServiceFailure(e);
136                 }                       
137         }
138         
139         public void finalize() throws Throwable {
140                 sessionHolder.closeSession();
141                 super.finalize();       
142         }
143 }