I've split out the image scaling code into a separate class and returned this class...
[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 mir.entity.Entity;
34 import mir.log.LoggerWrapper;
35 import mir.media.MediaExc;
36 import mir.media.MediaFailure;
37 import mir.media.image.ImageMagickImageProcessor;
38 import mir.media.image.ImageProcessor;
39 import mir.misc.StringUtil;
40
41 import java.io.BufferedInputStream;
42 import java.io.File;
43 import java.io.FileInputStream;
44 import java.io.IOException;
45 import java.io.InputStream;
46
47 /**
48  * Image handler that stores images outside of the database.
49  * 
50  * @author Zapata
51  * @version 1.0
52  */
53
54 public class MediaHandlerImagesExtern extends MediaHandlerGeneric {
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 aMediaTypeEntity) throws MediaExc, MediaFailure {
69       String date = anImageEntity.getFieldValue("date");
70       String datePath = StringUtil.webdbDate2path(date);
71       String ext = "." + aMediaTypeEntity.getFieldValue("name");
72       String fileBasePath = datePath + anImageEntity.getId();
73       String filePath = fileBasePath + ext;
74       String iconPath = getBaseIconStoragePath() + fileBasePath + ".jpg";
75       String iconStoragePath = configuration.getString("Producer.StorageRoot") + iconPath;
76       String imageFilePath = getBaseStoragePath() + File.separator + filePath;
77
78       File imageFile = new File(imageFilePath);
79       File iconFile = new File(iconStoragePath);
80
81       if (!imageFile.exists()) {
82         throw new MediaExc("error in MediaHandlerImagesExtern.execute(): " + filePath + " does not exist!");
83       }
84       else {
85         ImageProcessor processor;
86         try {
87           processor = new ImageMagickImageProcessor(imageFile);
88         }
89         catch (IOException e) {
90           throw new MediaFailure(e);
91         }
92
93         processor.descaleImage(maxIconSize, minDescaleRatio, minDescaleReduction);
94         File dir = new File(iconFile.getParent());
95         if (dir!=null && !dir.exists()){
96           dir.mkdirs();
97         }
98         processor.writeScaledData(iconFile, "JPEG");
99
100         anImageEntity.setFieldValue("img_height",
101             Integer.toString(processor.getHeight()));
102         anImageEntity.setFieldValue("img_width",
103             Integer.toString(processor.getWidth()));
104
105         anImageEntity.setFieldValue("icon_height",
106             Integer.toString(processor.getScaledHeight()));
107         anImageEntity.setFieldValue("icon_width",
108             Integer.toString(processor.getScaledWidth()));
109
110         processor.cleanup();
111         anImageEntity.setFieldValue("icon_path", iconPath);
112         anImageEntity.setFieldValue("publish_path", filePath);
113
114         anImageEntity.update();
115         reportChange(iconStoragePath);
116         reportChange(imageFilePath);
117       }
118   }
119
120
121   /** {@inheritDoc} */
122   public InputStream getThumbnail(Entity anImageEntity) throws MediaExc, MediaFailure {
123     try {
124       File file = new File(configuration.getString("Producer.StorageRoot") + anImageEntity.getFieldValue("icon_path"));
125
126       if (!file.exists()) {
127         // hackish
128         file = new File(configuration.getHome(), "../img/photo_big.gif");
129       }
130
131       return new BufferedInputStream(
132         new FileInputStream(file),8192);
133     }
134     catch (Throwable t) {
135       return null;
136     }
137   }
138
139   public String getIconMimeType(Entity anImageEntity, Entity aMediaType) {
140     return "image/jpeg";
141   }
142
143   public String getBaseStoragePath()
144   {
145     return configuration.getString("Producer.Image.Path");
146   }
147
148   public String getBaseIconStoragePath()
149   {
150     return configuration.getString("Producer.Image.IconPath");
151   }
152
153   public String getPublishHost()
154   {
155     return StringUtil.removeSlash(configuration.getString("Producer.Image.Host"));
156   }
157
158   public String getTinyIconName()
159   {
160     return configuration.getString("Producer.Icon.TinyImage");
161   }
162
163   public String getBigIconName()
164   {
165     return configuration.getString("Producer.Icon.BigImage");
166   }
167
168   public String getIconAltName()
169   {
170     return "Image";
171   }
172
173   public String getDescr(Entity mediaType)
174   {
175      return "image/jpeg";
176   }
177 }