/plugins/Archive/tags/archive-0_2/ArchiveDirectoryCache.java

# · Java · 210 lines · 149 code · 17 blank · 44 comment · 16 complexity · 5f5926f9c60266290e7c22d276a11714 MD5 · raw file

  1. /*
  2. * ArchiveDirectoryCache.java - Caches remote directories to improve performance
  3. * Copyright (C) 2000 Slava Pestov
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with DirectoryCache.class program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. import java.io.*;
  20. import java.util.Enumeration;
  21. import java.util.Hashtable;
  22. import org.gjt.sp.jedit.io.*;
  23. import org.gjt.sp.jedit.MiscUtilities;
  24. import org.gjt.sp.jedit.jEdit;
  25. import org.gjt.sp.util.Log;
  26. public class ArchiveDirectoryCache
  27. {
  28. /**
  29. * Returns the specified cached directory listing, or null if
  30. * it is not in the cache.
  31. * @param url The URL
  32. * @since jEdit 2.6pre2
  33. */
  34. public static VFS.DirectoryEntry[] getCachedDirectory(String url)
  35. {
  36. url = canon(url);
  37. synchronized(lock)
  38. {
  39. String path = (String)urlToCacheFileHash.get(url);
  40. if(path != null)
  41. {
  42. ObjectInputStream in = null;
  43. try
  44. {
  45. in = new ObjectInputStream(
  46. new BufferedInputStream(
  47. new FileInputStream(path)));
  48. return (VFS.DirectoryEntry[])in.readObject();
  49. }
  50. catch(Exception e)
  51. {
  52. Log.log(Log.ERROR,ArchiveDirectoryCache.class,e);
  53. return null;
  54. }
  55. finally
  56. {
  57. if(in != null)
  58. {
  59. try
  60. {
  61. in.close();
  62. }
  63. catch(Exception e)
  64. {
  65. }
  66. }
  67. }
  68. }
  69. else
  70. return null;
  71. }
  72. }
  73. /**
  74. * Caches the specified directory listing.
  75. * @param url The URL
  76. * @param directory The directory listing
  77. * @since jEdit 2.6pre2
  78. */
  79. public static void setCachedDirectory(String url, VFS.DirectoryEntry[] directory)
  80. {
  81. if(cacheDirectory == null)
  82. return;
  83. url = canon(url);
  84. synchronized(lock)
  85. {
  86. // filename generation algorithm is really simple...
  87. tmpFileCount++;
  88. long time = System.currentTimeMillis();
  89. String path = MiscUtilities.constructPath(cacheDirectory,
  90. "cache-" + tmpFileCount + "-" + time + ".tmp");
  91. ObjectOutputStream out = null;
  92. try
  93. {
  94. out = new ObjectOutputStream(
  95. new BufferedOutputStream(
  96. new FileOutputStream(path)));
  97. out.writeObject(directory);
  98. Log.log(Log.DEBUG,ArchiveDirectoryCache.class,"Cached "
  99. + url + " to " + path);
  100. urlToCacheFileHash.put(url,path);
  101. }
  102. catch(Exception e)
  103. {
  104. Log.log(Log.ERROR,ArchiveDirectoryCache.class,e);
  105. }
  106. finally
  107. {
  108. if(out != null)
  109. {
  110. try
  111. {
  112. out.close();
  113. }
  114. catch(Exception e)
  115. {
  116. }
  117. }
  118. }
  119. }
  120. }
  121. /**
  122. * Removes the cached listing of the specified directory.
  123. * @param url The URL
  124. * @since jEdit 2.6pre5
  125. */
  126. public static void clearCachedDirectory(String url)
  127. {
  128. url = canon(url);
  129. synchronized(lock)
  130. {
  131. String path = (String)urlToCacheFileHash.remove(url);
  132. if(path == null)
  133. return;
  134. else
  135. {
  136. Log.log(Log.DEBUG,ArchiveDirectoryCache.class,"Deleting " + path);
  137. new File(path).delete();
  138. }
  139. }
  140. }
  141. /**
  142. * Removes all cached directory listings.
  143. * @since jEdit 2.6pre5
  144. */
  145. public static void clearAllCachedDirectories()
  146. {
  147. synchronized(lock)
  148. {
  149. Enumeration files = urlToCacheFileHash.elements();
  150. while(files.hasMoreElements())
  151. {
  152. String path = (String)files.nextElement();
  153. Log.log(Log.DEBUG,ArchiveDirectoryCache.class,"Deleting " + path);
  154. new File(path).delete();
  155. }
  156. urlToCacheFileHash.clear();
  157. }
  158. }
  159. // private members
  160. private static Object lock = new Object();
  161. private static int tmpFileCount;
  162. private static Hashtable urlToCacheFileHash;
  163. private static String cacheDirectory;
  164. private ArchiveDirectoryCache() {}
  165. /* This method exists so that foo/ and foo will both be cached
  166. * as the same URL. When the VFSPath class arrives, will get rid
  167. * of this kludge */
  168. private static String canon(String url)
  169. {
  170. if(url.length() != 0 && (url.endsWith("/")
  171. || url.endsWith(File.separator)))
  172. return url.substring(0,url.length() - 1);
  173. else
  174. return url;
  175. }
  176. static
  177. {
  178. urlToCacheFileHash = new Hashtable();
  179. String settingsDirectory = jEdit.getSettingsDirectory();
  180. if(settingsDirectory == null)
  181. {
  182. Log.log(Log.WARNING,ArchiveDirectoryCache.class,"-nosettings "
  183. + "command line switch specified; remote directories");
  184. Log.log(Log.WARNING,ArchiveDirectoryCache.class,"will not be cached.");
  185. }
  186. else
  187. {
  188. cacheDirectory = MiscUtilities.constructPath(settingsDirectory,
  189. "archive");
  190. new File(cacheDirectory).mkdirs();
  191. }
  192. }
  193. }