cleanup / abuse system fix / prepping for a release
[mir.git] / source / mircoders / media / MediaHandlerImagesExtern.java
1 /*
2  * Copyright (C) 2001, 2002 The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with  any library licensed under the Apache Software License,
22  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library
23  * (or with modified versions of the above that use the same license as the above),
24  * and distribute linked combinations including the two.  You must obey the
25  * GNU General Public License in all respects for all of the code used other than
26  * the above mentioned libraries.  If you modify this file, you may extend this
27  * exception to your version of the file, but you are not obligated to do so.
28  * If you do not wish to do so, delete this exception statement from your version.
29  */
30 package mircoders.media;
31
32
33 import java.io.BufferedInputStream;
34 import java.io.File;
35 import java.io.FileInputStream;
36 import java.io.InputStream;
37
38 import mir.entity.Entity;
39 import mir.log.LoggerWrapper;
40 import mir.media.MediaExc;
41 import mir.media.MediaFailure;
42 import mir.media.image.ImageProcessor;
43 import mir.media.image.ImageMagickImageProcessor;
44 import mir.misc.StringUtil;
45
46 /**
47  * Image handler that stores images outside of the database.
48  * 
49  * @author Zapata
50  * @version 1.0
51  */
52
53 public class MediaHandlerImagesExtern extends MediaHandlerGeneric
54 {
55   private int maxIconSize;
56   private float minDescaleRatio;
57   private int minDescaleReduction;
58
59   public MediaHandlerImagesExtern() {
60
61     logger = new LoggerWrapper("Media.Images.Extern");
62
63     maxIconSize = configuration.getInt("Producer.Image.MaxIconSize");
64     minDescaleRatio = configuration.getFloat("Producer.Image.MinDescalePercentage")/100;
65     minDescaleReduction = configuration.getInt("Producer.Image.MinDescaleReduction");
66   }
67
68   public void produce(Entity anImageEntity, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
69     try {
70       String date = anImageEntity.getFieldValue("date");
71       String datePath = StringUtil.webdbDate2path(date);
72       String ext = "." + mediaTypeEnt.getFieldValue("name");
73       String fileBasePath = datePath + anImageEntity.getId();
74       String filePath = fileBasePath + ext;
75       String iconPath = getBaseIconStoragePath() + fileBasePath + ".jpg";
76       String iconStoragePath = configuration.getString("Producer.StorageRoot") + iconPath;
77       String imageFilePath = getBaseStoragePath() + File.separator + filePath;
78
79       File imageFile = new File(imageFilePath);
80       File iconFile = new File(iconStoragePath);
81
82       if (!imageFile.exists()) {
83         throw new MediaExc("error in MediaHandlerImagesExtern.execute(): " + filePath + " does not exist!");
84       }
85       else {
86         ImageProcessor processor = new ImageMagickImageProcessor(imageFile);
87
88         processor.descaleImage(maxIconSize, minDescaleRatio, minDescaleReduction);
89         File dir = new File(iconFile.getParent());
90           if (dir!=null && !dir.exists()){
91             dir.mkdirs();
92         }
93         processor.writeScaledData(iconFile, "JPEG");
94
95         anImageEntity.setFieldValue("img_height", new Integer(processor.getHeight()).toString());
96         anImageEntity.setFieldValue("img_width", new Integer(processor.getWidth()).toString());
97
98         anImageEntity.setFieldValue("icon_height", new Integer(processor.getScaledHeight()).toString());
99         anImageEntity.setFieldValue("icon_width", new Integer(processor.getScaledWidth()).toString());
100
101         processor.cleanup();
102         anImageEntity.setFieldValue("icon_path", iconPath);
103         anImageEntity.setFieldValue("publish_path", filePath);
104
105         anImageEntity.update();
106
107
108       }
109     }
110     catch(Throwable t) {
111       logger.error("MediaHandlerImagesExtern.execute: " + t.toString());
112       t.printStackTrace(logger.asPrintWriter(LoggerWrapper.DEBUG_MESSAGE));
113       throw new MediaFailure(t.getMessage(), t);
114     }
115   }
116
117
118   /** {@inheritDoc} */
119   public InputStream getThumbnail(Entity anImageEntity) throws MediaExc, MediaFailure {
120     try {
121       File file = new File(configuration.getString("Producer.StorageRoot") + anImageEntity.getFieldValue("icon_path"));
122
123       if (!file.exists()) {
124         // hackish
125         file = new File(configuration.getHome(), "../img/photo_big.gif");
126       }
127
128       return new BufferedInputStream(
129         new FileInputStream(file),8192);
130     }
131     catch (Throwable t) {
132       return null;
133     }
134   }
135
136   public String getIconMimeType(Entity anImageEntity, Entity aMediaType) {
137     return "image/jpeg";
138   }
139
140   public String getBaseStoragePath()
141   {
142     return configuration.getString("Producer.Image.Path");
143   }
144
145   public String getBaseIconStoragePath()
146   {
147     return configuration.getString("Producer.Image.IconPath");
148   }
149
150   public String getPublishHost()
151   {
152     return StringUtil.removeSlash(configuration.getString("Producer.Image.Host"));
153   }
154
155   public String getTinyIconName()
156   {
157     return configuration.getString("Producer.Icon.TinyImage");
158   }
159
160   public String getBigIconName()
161   {
162     return configuration.getString("Producer.Icon.BigImage");
163   }
164
165   public String getIconAltName()
166   {
167     return "Image";
168   }
169
170   public String getDescr(Entity mediaType)
171   {
172      return "image/jpeg";
173   }
174 }