7d90b7ff8f8b6dff2772b5a77aa14a36f57c7a7c
[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.config.MirPropertiesConfiguration;
39 import mir.entity.Entity;
40 import mir.log.LoggerWrapper;
41 import mir.media.MediaExc;
42 import mir.media.MediaFailure;
43 import mir.misc.StringUtil;
44
45
46 /**
47  * Image handler that stores images outside of the database. Will be replaced by the new
48  *   media handling system.
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     try {
63       MirPropertiesConfiguration configuration = MirPropertiesConfiguration.instance();
64     }
65     catch (Throwable t) {
66       logger.fatal("MediaHandlerImagesExtern: can't get configuration");
67
68       throw new RuntimeException(t.toString());
69     }
70
71     maxIconSize = configuration.getInt("Producer.Image.MaxIconSize");
72     minDescaleRatio = configuration.getFloat("Producer.Image.MinDescalePercentage")/100;
73     minDescaleReduction = configuration.getInt("Producer.Image.MinDescaleReduction");
74   }
75
76   public void produce(Entity anImageEntity, Entity mediaTypeEnt) throws MediaExc, MediaFailure {
77     try {
78       String date = anImageEntity.getFieldValue("date");
79       String datePath = StringUtil.webdbDate2path(date);
80       String ext = "." + mediaTypeEnt.getFieldValue("name");
81       String fileBasePath = datePath + anImageEntity.getId();
82       String filePath = fileBasePath + ext;
83       String iconPath = getIconStoragePath() + fileBasePath + ".jpg";
84       String iconStoragePath = configuration.getString("Producer.StorageRoot") + iconPath;
85       String imageFilePath = getStoragePath() + File.separator + filePath;
86
87       File imageFile = new File(imageFilePath);
88       File iconFile = new File(iconStoragePath);
89
90       if (!imageFile.exists()) {
91         throw new MediaExc("error in MediaHandlerImagesExtern.produce(): " + filePath + " does not exist!");
92       }
93       else {
94         ImageProcessor processor = new ImageProcessor(imageFile);
95
96         processor.descaleImage(maxIconSize, minDescaleRatio, minDescaleReduction);
97         File dir = new File(iconFile.getParent());
98           if (dir!=null && !dir.exists()){
99             dir.mkdirs();
100         }
101         processor.writeScaledData(iconFile, "JPEG");
102
103         anImageEntity.setFieldValue("img_height", new Integer(processor.getHeight()).toString());
104         anImageEntity.setFieldValue("img_width", new Integer(processor.getWidth()).toString());
105
106         anImageEntity.setFieldValue("icon_height", new Integer(processor.getScaledHeight()).toString());
107         anImageEntity.setFieldValue("icon_width", new Integer(processor.getScaledWidth()).toString());
108
109         anImageEntity.setFieldValue("icon_path", iconPath);
110         anImageEntity.setFieldValue("publish_path", filePath);
111
112         anImageEntity.update();
113
114
115       }
116     }
117     catch(Throwable t) {
118       logger.error("MediaHandlerImagesExtern.produce: " + t.getMessage());
119       t.printStackTrace(logger.asPrintWriter(LoggerWrapper.DEBUG_MESSAGE));
120       throw new MediaFailure(t.getMessage(), t);
121     }
122   }
123
124
125   public InputStream getIcon(Entity anImageEntity) throws MediaExc, MediaFailure {
126     try {
127       String filePath =
128           configuration.getString("Producer.StorageRoot") + anImageEntity.getFieldValue("icon_path");
129
130       logger.info(filePath);
131
132       return new BufferedInputStream(
133         new FileInputStream(new File(filePath)),8192);
134     }
135     catch (Throwable t) {
136       return null;
137     }
138   }
139
140   public String getIconMimeType(Entity anImageEntity, Entity aMediaType) {
141     return "image/jpeg";
142   }
143
144   public String getStoragePath()
145   {
146     return configuration.getString("Producer.Image.Path");
147   }
148
149   public String getIconStoragePath()
150   {
151     return configuration.getString("Producer.Image.IconPath");
152   }
153
154   public String getPublishHost()
155   {
156     return StringUtil.removeSlash(configuration.getString("Producer.Image.Host"));
157   }
158
159   public String getTinyIconName()
160   {
161     return configuration.getString("Producer.Icon.TinyImage");
162   }
163
164   public String getBigIconName()
165   {
166     return configuration.getString("Producer.Icon.BigImage");
167   }
168
169   public String getIconAltName()
170   {
171     return "Image";
172   }
173
174   public String getDescr(Entity mediaType)
175   {
176      return "image/jpeg";
177   }
178 }