Adding a new ImageMagickImageProcessor class to replace
[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 // FIXME: delete this when finished testing ImageMagickImageProcessor
44 //import mir.media.image.JAIImageProcessor;
45 import mir.media.image.ImageMagickImageProcessor;
46 import mir.misc.StringUtil;
47
48
49 /**
50  * Image handler that stores images outside of the database. Will be replaced by the new
51  *   media handling system.
52  * @author Zapata
53  * @version 1.0
54  */
55
56 public class MediaHandlerImagesExtern extends MediaHandlerGeneric
57 {
58   private int maxIconSize;
59   private float minDescaleRatio;
60   private int minDescaleReduction;
61
62   public MediaHandlerImagesExtern() {
63
64     logger = new LoggerWrapper("Media.Images.Extern");
65
66     maxIconSize = configuration.getInt("Producer.Image.MaxIconSize");
67     minDescaleRatio = configuration.getFloat("Producer.Image.MinDescalePercentage")/100;
68     minDescaleReduction = configuration.getInt("Producer.Image.MinDescaleReduction");
69   }
70
71   public void produce(Entity anImageEntity, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
72     try {
73       String date = anImageEntity.getFieldValue("date");
74       String datePath = StringUtil.webdbDate2path(date);
75       String ext = "." + mediaTypeEnt.getFieldValue("name");
76       String fileBasePath = datePath + anImageEntity.getId();
77       String filePath = fileBasePath + ext;
78       String iconPath = getIconStoragePath() + fileBasePath + ".jpg";
79       String iconStoragePath = configuration.getString("Producer.StorageRoot") + iconPath;
80       String imageFilePath = getStoragePath() + File.separator + filePath;
81
82       File imageFile = new File(imageFilePath);
83       File iconFile = new File(iconStoragePath);
84
85       if (!imageFile.exists()) {
86         throw new MediaExc("error in MediaHandlerImagesExtern.produce(): " + filePath + " does not exist!");
87       }
88       else {
89         // FIXME: delete this when finished testing ImageMagickImageProcessor
90         //        ImageProcessor processor = new JAIImageProcessor(imageFile);
91         ImageProcessor processor = new ImageMagickImageProcessor(imageFile);
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", new Integer(processor.getHeight()).toString());
101         anImageEntity.setFieldValue("img_width", new Integer(processor.getWidth()).toString());
102
103         anImageEntity.setFieldValue("icon_height", new Integer(processor.getScaledHeight()).toString());
104         anImageEntity.setFieldValue("icon_width", new Integer(processor.getScaledWidth()).toString());
105
106         processor.cleanup();
107         anImageEntity.setFieldValue("icon_path", iconPath);
108         anImageEntity.setFieldValue("publish_path", filePath);
109
110         anImageEntity.update();
111
112
113       }
114     }
115     catch(Throwable t) {
116       logger.error("MediaHandlerImagesExtern.produce: " + t.toString());
117       t.printStackTrace(logger.asPrintWriter(LoggerWrapper.DEBUG_MESSAGE));
118       throw new MediaFailure(t.getMessage(), t);
119     }
120   }
121
122
123   /** {@inheritDoc} */
124   public InputStream getThumbnail(Entity anImageEntity) throws MediaExc, MediaFailure {
125     try {
126       File file = new File(configuration.getString("Producer.StorageRoot") + anImageEntity.getFieldValue("icon_path"));
127
128       if (!file.exists()) {
129         // hackish
130         file = new File(configuration.getHome(), "../img/photo_big.gif");
131       }
132
133       return new BufferedInputStream(
134         new FileInputStream(file),8192);
135     }
136     catch (Throwable t) {
137       return null;
138     }
139   }
140
141   public String getIconMimeType(Entity anImageEntity, Entity aMediaType) {
142     return "image/jpeg";
143   }
144
145   public String getStoragePath()
146   {
147     return configuration.getString("Producer.Image.Path");
148   }
149
150   public String getIconStoragePath()
151   {
152     return configuration.getString("Producer.Image.IconPath");
153   }
154
155   public String getPublishHost()
156   {
157     return StringUtil.removeSlash(configuration.getString("Producer.Image.Host"));
158   }
159
160   public String getTinyIconName()
161   {
162     return configuration.getString("Producer.Icon.TinyImage");
163   }
164
165   public String getBigIconName()
166   {
167     return configuration.getString("Producer.Icon.BigImage");
168   }
169
170   public String getIconAltName()
171   {
172     return "Image";
173   }
174
175   public String getDescr(Entity mediaType)
176   {
177      return "image/jpeg";
178   }
179 }