- redid part of the media handling
[mir.git] / source / mircoders / localizer / basic / MirBasicMediaLocalizer.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.localizer.basic;\r
31 \r
32 import java.util.HashMap;\r
33 import java.util.Map;\r
34 \r
35 import mir.media.MediaHandler;\r
36 import mir.config.*;\r
37 import mircoders.localizer.MirLocalizerExc;\r
38 import mircoders.localizer.MirLocalizerFailure;\r
39 import mircoders.localizer.MirMediaLocalizer;\r
40 import mircoders.media.*;\r
41 \r
42 /**\r
43  * <p>Title: </p>\r
44  * <p>Description: </p>\r
45  * <p>Copyright: Copyright (c) 2003</p>\r
46  * <p>Company: </p>\r
47  * @author not attributable\r
48  * @version 1.0\r
49  */\r
50 \r
51 public class MirBasicMediaLocalizer implements MirMediaLocalizer {\r
52   private Map mediaHandlers;\r
53 \r
54   /**\r
55    *\r
56    * @throws MirLocalizerExc\r
57    * @throws MirLocalizerFailure\r
58    */\r
59   public MirBasicMediaLocalizer() throws MirLocalizerExc, MirLocalizerFailure {\r
60     MirPropertiesConfiguration configuration;\r
61 \r
62     try {\r
63       configuration = MirPropertiesConfiguration.instance();\r
64     }\r
65     catch (Throwable t) {\r
66       throw new MirLocalizerFailure("Can't get configuration", t);\r
67     }\r
68 \r
69     mediaHandlers = new HashMap();\r
70 \r
71 \r
72     registerMediaHandler("Audio", new MediaHandlerAudio());\r
73     registerMediaHandler("Generic", new MediaHandlerGeneric());\r
74     registerMediaHandler("ImagesExtern", new MediaHandlerImagesExtern());\r
75     registerMediaHandler("ImagesJpeg", new MediaHandlerImagesJpeg());\r
76     registerMediaHandler("ImagesPng", new MediaHandlerImagesPng());\r
77     registerMediaHandler("Mp3", new MediaHandlerMp3());\r
78     registerMediaHandler("Ogg", new MediaHandlerOgg());\r
79     registerMediaHandler("RealAudio", new MediaHandlerRealAudio());\r
80     registerMediaHandler("RealVideo", new MediaHandlerRealVideo());\r
81     registerMediaHandler("Video", new MediaHandlerVideo());\r
82 \r
83     registerMediaHandler("VideoUrl", new URLMediaHandler(\r
84         configuration.getString("Producer.Icon.BigVideo"),\r
85         configuration.getString("Producer.Icon.TinyVideo"),\r
86         "Video Url"));\r
87 \r
88     registerMediaHandler("AudioUrl", new URLMediaHandler(\r
89         configuration.getString("Producer.Icon.BigAudio"),\r
90         configuration.getString("Producer.Icon.TinyAudio"),\r
91         "Audio Url"));\r
92 \r
93     registerMediaHandler("ImageUrl", new URLMediaHandler(\r
94         configuration.getString("Producer.Icon.BigImage"),\r
95         configuration.getString("Producer.Icon.TinyImage"),\r
96         "Image Url"));\r
97 \r
98     registerMediaHandler("OtherUrl", new URLMediaHandler(\r
99         configuration.getString("Producer.Icon.BigAudio"),\r
100         configuration.getString("Producer.Icon.TinyAudio"),\r
101         "Url"));\r
102   }\r
103 \r
104   /** returns the {@link MediaHandler} associated with name <code>aName</code> by way of\r
105    *     an internal <code>Map</code>. This <code>Map</code> can be manipulated by calling\r
106    *     <code>registerMediaHandler</code> and <code>unregisterMediaHandler</code>\r
107    */\r
108   public MediaHandler getHandler(String aName) {\r
109     synchronized (mediaHandlers) {\r
110       return (MediaHandler) mediaHandlers.get(aName);\r
111     }\r
112   }\r
113 \r
114   /** adds a media handler to the registry */\r
115   public void registerMediaHandler(String aName, MediaHandler aHandler) {\r
116     synchronized (mediaHandlers) {\r
117       mediaHandlers.put(aName, aHandler);\r
118     }\r
119   }\r
120 \r
121   /** removes a media handler from the registry*/\r
122   public void unregisterMediaHandler(String aName) {\r
123     synchronized (mediaHandlers) {\r
124       mediaHandlers.remove(aName);\r
125     }\r
126   }\r
127 }