- redid part of the media handling
[mir.git] / source / mircoders / media / MediaHandlerRealAudio.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.StringReader;\r
33 import java.util.HashMap;\r
34 import java.util.List;\r
35 import java.util.Map;\r
36 import java.util.Vector;\r
37 \r
38 import mir.entity.Entity;\r
39 import mir.log.LoggerWrapper;\r
40 import mir.media.MediaExc;\r
41 import mir.media.MediaFailure;\r
42 import mir.media.MediaHandler;\r
43 import mir.misc.FileUtil;\r
44 import mir.misc.StringUtil;\r
45 \r
46 \r
47 \r
48 /**\r
49  * Handles realAudio .it manages the ram file.\r
50  *\r
51  * 03.2002 - reworked Realmedia handling. -mh\r
52  *\r
53  * @see mir.media.MediaHandlerGeneric\r
54  * @see mir.media.MediaHandler\r
55  * @author john <john@manifestor.org>, mh <heckmann@hbe.ca>\r
56  * @version $Id: MediaHandlerRealAudio.java,v 1.19.2.2 2003/12/14 16:37:08 zapata Exp $\r
57  */\r
58 \r
59 \r
60 public class MediaHandlerRealAudio extends MediaHandlerAudio implements MediaHandler\r
61 {\r
62   public MediaHandlerRealAudio() {\r
63     logger = new LoggerWrapper("Media.Audio.Real");\r
64   }\r
65 \r
66   public void produce (Entity ent, Entity mediaTypeEnt ) throws MediaExc, MediaFailure {\r
67 \r
68     // first see if the file exists\r
69     super.produce(ent, mediaTypeEnt);\r
70 \r
71     String baseName = ent.getId();\r
72     String date = ent.getValue("date");\r
73     String datePath = StringUtil.webdbDate2path(date);\r
74     String rtspDir = configuration.getString("Producer.RealMedia.Path");\r
75     String rtspMediaHost = configuration.getString("Producer.RealMedia.Host");\r
76 \r
77     String RealMediaPointer = rtspMediaHost+ent.getValue("publish_path");\r
78     String RealMediaFile = datePath+ent.getId()+".ram";\r
79     try {\r
80       //write an rm (ram?. -mh) file\r
81       FileUtil.write(super.getStoragePath()+"/"+RealMediaFile,\r
82                       new StringReader(RealMediaPointer), "US-ASCII");\r
83     }\r
84     catch (Throwable e) {\r
85       logger.error("MediaHandlerRealAudio.produce: " + e.toString());\r
86       throw new MediaFailure(e);\r
87     }\r
88   }\r
89 \r
90   public List getURL(Entity ent, Entity mediaTypeEnt)\r
91   {\r
92     List theList = new Vector();\r
93 \r
94     //String stringSize = ent.getValue("size");\r
95     //int size = Integer.parseInt(stringSize, 10)/1024;\r
96     theList.add(ent);\r
97 \r
98     String basePath=StringUtil.regexpReplace(ent.getValue("publish_path"),\r
99                                             ".ra$","");\r
100 \r
101     // @todo the texts ("title") below urgently need to be sanely localizaeble\r
102     // somehow\r
103     Map ramHash = new HashMap();\r
104     ramHash.put("publish_path", basePath+".ram");\r
105     ramHash.put("publish_server", configuration.getString("Producer.Media.Host"));\r
106     ramHash.put("title", "stream URL");\r
107     theList.add(ramHash);\r
108 \r
109     return theList;\r
110   }\r
111 \r
112   public String getStoragePath()\r
113   {\r
114     return configuration.getString("Producer.RealMedia.Path");\r
115   }\r
116 \r
117   public String getDescr(Entity mediaType)\r
118   {\r
119     return "RealMedia";\r
120   }\r
121 \r
122   public String getPublishHost()\r
123   {\r
124     return StringUtil.removeSlash(configuration.getString("Producer.RealMedia.Host"));\r
125   }\r
126 \r
127 }\r
128 \r
129 \r
130 \r