efa2e501887ea639697a1e79b75602a964f996e0
[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 net.sf.hibernate.Criteria;
38 import net.sf.hibernate.HibernateException;
39 import net.sf.hibernate.Session;
40 import net.sf.hibernate.SessionFactory;
41 import net.sf.hibernate.Transaction;
42 import net.sf.hibernate.expression.Expression;
43
44 /**
45  * 
46  * StorageService
47  * @author idefix
48  * @version $Id: StorageService.java,v 1.1 2003/08/17 19:11:49 idfx Exp $
49  */
50 public abstract class StorageService {
51         private Class objectClass;
52         private SessionFactory factory;
53         
54         public StorageService(Class objectClass, SessionFactory factory){
55                 this.objectClass = objectClass;
56                 this.factory = factory;
57         }
58
59         public List list(int offset, int limit){
60                 return list(offset, limit, null);
61         }
62         
63         public List list(int offset, int limit, Expression expression){
64                 try {
65                         Session session = factory.openSession();
66                         Transaction transaction = session.beginTransaction();
67                         Criteria criteria = session.createCriteria(objectClass);
68                         if(expression != null){
69                                 System.out.println(expression.toString());
70                                 criteria = criteria.add(expression);
71                         }       
72                         criteria.setFirstResult(offset)
73                                 .setMaxResults(limit);
74                         List returnList = criteria.list();
75                         transaction.commit();
76                         session.close();
77                         return returnList;
78                 } catch (HibernateException e) {
79                         throw new StorageServiceFailure(e);
80                 }
81         }
82         
83         public Object load(Integer id){
84                 try {
85                         Session session = factory.openSession();
86                         Transaction transaction = session.beginTransaction();
87                         Object returnObject = session.load(objectClass, id);
88                         transaction.commit();
89                         session.close();
90                         return returnObject;
91                 } catch (HibernateException e) {
92                         throw new StorageServiceFailure(e);
93                 }       
94         }
95         
96         public Integer add(Object newObject){
97                 try {
98                         Session session = factory.openSession();
99                         Transaction transaction = session.beginTransaction();
100                         Integer newid = (Integer)session.save(newObject);
101                         session.close();
102                         return newid;
103                 } catch (HibernateException e) {
104                         throw new StorageServiceFailure(e);
105                 }                       
106         }
107         
108         public void update(Object toUpdate){
109                 try {
110                         Session session = factory.openSession();
111                         Transaction transaction = session.beginTransaction();
112                         session.update(toUpdate);
113                         session.close();
114                 } catch (HibernateException e) {
115                         throw new StorageServiceFailure(e);
116                 }                       
117         }
118         
119         public void delete(Object toDelete){
120                 try {
121                         Session session = factory.openSession();
122                         Transaction transaction = session.beginTransaction();
123                         session.delete(toDelete);
124                         session.close();
125                 } catch (HibernateException e) {
126                         throw new StorageServiceFailure(e);
127                 }                       
128         }
129         
130 }