12af17f6ead35156ced93add3b7214ac37312fcc
[mir.git] / source / mircoders / media / MediaHandlerRealVideo.java
1 /*\r
2  * Copyright (C) 2001, 2002 The Mir-coders group\r
3  *\r
4  * This file is part of Mir.\r
5  *\r
6  * Mir is free software; you can redistribute it and/or modify\r
7  * it under the terms of the GNU General Public License as published by\r
8  * the Free Software Foundation; either version 2 of the License, or\r
9  * (at your option) any later version.\r
10  *\r
11  * Mir is distributed in the hope that it will be useful,\r
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14  * GNU General Public License for more details.\r
15  *\r
16  * You should have received a copy of the GNU General Public License\r
17  * along with Mir; if not, write to the Free Software\r
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19  *\r
20  * In addition, as a special exception, The Mir-coders gives permission to link\r
21  * the code of this program with  any library licensed under the Apache Software License,\r
22  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library\r
23  * (or with modified versions of the above that use the same license as the above),\r
24  * and distribute linked combinations including the two.  You must obey the\r
25  * GNU General Public License in all respects for all of the code used other than\r
26  * the above mentioned libraries.  If you modify this file, you may extend this\r
27  * exception to your version of the file, but you are not obligated to do so.\r
28  * If you do not wish to do so, delete this exception statement from your version.\r
29  */\r
30 package  mircoders.media;\r
31 \r
32 import java.io.File;\r
33 import java.io.StringReader;\r
34 import java.util.HashMap;\r
35 import java.util.List;\r
36 import java.util.Map;\r
37 import java.util.Vector;\r
38 \r
39 import mir.entity.Entity;\r
40 import mir.log.LoggerWrapper;\r
41 import mir.media.MediaExc;\r
42 import mir.media.MediaFailure;\r
43 import mir.media.MirMedia;\r
44 import mir.misc.FileUtil;\r
45 import mir.misc.StringUtil;\r
46 \r
47 \r
48 \r
49 /**\r
50  * Handles realVideo .it manages the ram file.\r
51  *\r
52  * 03.2002 - reworked Realmedia handling. -mh\r
53  *\r
54  * @see mir.media.MediaHandlerGeneric\r
55  * @see mir.media.MirMedia\r
56  * @author john <john@manifestor.org>, mh <mh@nadir.org>\r
57  * @version $Id: MediaHandlerRealVideo.java,v 1.19.2.1 2003/09/03 17:49:40 zapata Exp $\r
58  */\r
59 \r
60 \r
61 public class MediaHandlerRealVideo extends MediaHandlerVideo implements MirMedia\r
62 {\r
63   protected LoggerWrapper logger;\r
64 \r
65   public MediaHandlerRealVideo() {\r
66     logger = new LoggerWrapper("Media.Video.Real");\r
67   }\r
68 \r
69   public void produce (Entity ent, Entity mediaTypeEnt) throws MediaExc, MediaFailure {\r
70     // first see if the file exists\r
71     super.produce(ent, mediaTypeEnt);\r
72 \r
73     String baseName = ent.getId();\r
74     String date = ent.getValue("date");\r
75     String datePath = StringUtil.webdbDate2path(date);\r
76     String rtspDir = configuration.getString("Producer.RealMedia.Path");\r
77     String rtspMediaHost = configuration.getString("Producer.RealMedia.Host");\r
78 \r
79     String RealMediaPointer = rtspMediaHost+ent.getValue("publish_path");\r
80     String RealMediaFile = datePath+ent.getId()+".ram";\r
81     try {\r
82       //write an rm (ram?. -mh) file\r
83       FileUtil.write(super.getStoragePath()+File.separator+RealMediaFile,\r
84                       new StringReader(RealMediaPointer), "US-ASCII");\r
85     }\r
86     catch (Throwable e) {\r
87       logger.error("MediaHandlerRealVideo.produce: " + e.toString());\r
88 \r
89       throw new MediaFailure(e);\r
90     }\r
91   }\r
92 \r
93   public List getURL(Entity ent, Entity mediaTypeEnt) {\r
94     List theList = new Vector();\r
95 \r
96     //String stringSize = ent.getValue("size");\r
97     //int size = Integer.parseInt(stringSize, 10)/1024;\r
98     theList.add(ent);\r
99 \r
100     String basePath=StringUtil.regexpReplace(ent.getValue("publish_path"),\r
101                                             ".rm$","");\r
102 \r
103     // @todo the texts ("title") below urgently need to be sanely localizaeble\r
104     // somehow\r
105     Map ramHash = new HashMap();\r
106     ramHash.put("publish_path", basePath+".ram");\r
107     ramHash.put("publish_server", configuration.getString("Producer.Media.Host"));\r
108     ramHash.put("title", "stream URL");\r
109     theList.add(ramHash);\r
110 \r
111     return theList;\r
112 \r
113   }\r
114 \r
115   public String getStoragePath() {\r
116     return configuration.getString("Producer.RealMedia.Path");\r
117   }\r
118 \r
119   public String getDescr(Entity mediaType) {\r
120     return "RealMedia";\r
121   }\r
122 \r
123   public String getPublishHost() {\r
124     return StringUtil.removeSlash(configuration.getString("Producer.RealMedia.Host"));\r
125   }\r
126 \r
127 }\r
128 \r
129 \r
130 \r