Converted media Interface to use streams (Java IO) instead of byte buffers of
[mir.git] / source / mir / misc / FileUtil.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 the com.oreilly.servlet library, any library
22  * licensed under the Apache Software License, The Sun (tm) Java Advanced
23  * Imaging library (JAI), The Sun JIMI library (or with modified versions of
24  * the above that use the same license as the above), and distribute linked
25  * combinations including the two.  You must obey the GNU General Public
26  * License in all respects for all of the code used other than the above
27  * mentioned libraries.  If you modify this file, you may extend this exception
28  * to your version of the file, but you are not obligated to do so.  If you do
29  * not wish to do so, delete this exception statement from your version.
30  */
31
32 package mir.misc;
33
34 import  java.lang.*;
35 import  java.util.*;
36 import  java.io.*;
37 import  java.net.*;
38 import  freemarker.template.*;
39 import  mir.entity.*;
40 import  mir.storage.*;
41
42 import javax.servlet.http.*;
43 import javax.servlet.*;
44
45 /**
46  * Hilfsklasse zum Mergen von Template und Daten
47  */
48 public final class FileUtil {
49
50   private static String producerStorageRoot;
51
52   //
53   // Initialisierung
54
55   static {
56     producerStorageRoot = MirConfig.getProp("Producer.StorageRoot");
57   }
58
59   /**
60    * Privater Konstruktor, um versehentliche Instantiierung zu verhindern
61    */
62   private FileUtil () {
63   }
64
65   public static File getFile(String filename)
66     throws IOException {
67
68     try {
69       File f = null;
70       f = new File(filename);
71       File dir = new File(f.getParent());
72       dir.mkdirs();
73
74       return f;
75     } catch(Exception e) {
76       throw new IOException(e.toString());
77     }
78
79   }
80
81   public static long write(File f, InputStream in)
82     throws IOException {
83
84     long size = 0;
85
86                 if (in!=null) {
87                         try {
88         FileOutputStream out = new FileOutputStream(f);
89
90         int read;
91         byte[] buf = new byte[8 * 1024];
92         while((read = in.read(buf)) != -1) {
93           out.write(buf, 0, read);
94           size += read;
95         }
96
97         in.close();
98                                 out.close();
99                         } catch(IOException e) {
100         throw new IOException(e.toString());
101       }
102     }
103                 return size;
104         }
105
106   public static long write(String filename, InputStream in)
107     throws IOException {
108
109     long size = 0;
110
111                 if (in!=null) {
112                         try {
113         File f = getFile(filename);
114         size = write(f, in);
115                         } catch(IOException e) {
116         throw new IOException(e.toString());
117       }
118     }
119                 return size;
120         }
121
122   public static long write(String filename, Reader in, String encoding)
123     throws IOException {
124
125     long size = 0;
126
127                 if (in!=null) {
128                         try {
129         File f = getFile(filename);
130         FileOutputStream fOut = new FileOutputStream(f);
131         OutputStreamWriter out = new OutputStreamWriter(fOut, encoding);
132         int read;
133         char[] cbuf = new char[8*1024];
134         while((read = in.read(cbuf)) != -1) {
135           out.write(cbuf, 0, read);
136           size += read;
137         }
138
139                                 out.close();
140         in.close();
141                         } catch(IOException e) {
142         throw new IOException(e.toString());
143       }
144     }
145                 return size;
146         }
147
148   public static boolean read(String filename, byte out[])
149     throws IOException {
150
151     File f = null;
152     f = new File(filename);
153
154                 if (f.exists()) {
155                         try {
156         if (out.length != f.length())
157           return false;
158                                 FileInputStream inStream;
159                                 inStream = new FileInputStream(f);
160                                 inStream.read(out);
161                                 inStream.close();
162                         } catch(IOException e) {
163         throw new IOException(e.toString());
164       }
165     } else {
166       return false;
167     }
168     return true;
169   }
170     
171   public static long getSize(String filename) {
172     File f = null;
173     f = new File(filename);
174     long l=0;
175
176     if (f.exists()) {
177       return f.length();
178     } else {
179       return -1;
180     }
181   }
182
183  
184 }