/tags/leson1_version3/sphinx4/edu/cmu/sphinx/util/PooledBatchManager.java

# · Java · 288 lines · 147 code · 36 blank · 105 comment · 10 complexity · f8c9ece8f029bcfc5152ed4fa4b751a5 MD5 · raw file

  1. /*
  2. * Copyright 2004 Carnegie Mellon University.
  3. * Portions Copyright 2004 Sun Microsystems, Inc.
  4. * Portions Copyright 2004 Mitsubishi Electronic Research Laboratories.
  5. * All Rights Reserved. Use is subject to license terms.
  6. *
  7. * See the file "license.terms" for information on usage and
  8. * redistribution of this file, and for a DISCLAIMER OF ALL
  9. * WARRANTIES.
  10. *
  11. */
  12. package edu.cmu.sphinx.util;
  13. import java.io.IOException;
  14. import java.io.File;
  15. import java.nio.channels.FileLock;
  16. import java.nio.channels.FileChannel;
  17. import java.io.RandomAccessFile;
  18. import java.io.PrintStream;
  19. import java.io.FileOutputStream;
  20. import java.io.FileFilter;
  21. import java.net.InetAddress;
  22. import java.util.List;
  23. /*
  24. * A simple implementation of the batch manager suitable for single
  25. * threaded batch processing
  26. *
  27. */
  28. public class PooledBatchManager implements BatchManager {
  29. private String batchFile;
  30. private int skip;
  31. private File processingFile;
  32. private final static File topDir = new File("tests");
  33. private final static File inputDir = new File(topDir, "ToRun");
  34. private final static File inProcessDir = new File(topDir, "InProcess");
  35. private final static File completedDir = new File(topDir, "Completed");
  36. private final static File resultsDir = new File(topDir, "Results");
  37. private final static File lockFile = new File(".lock");
  38. private FileLock lock;
  39. private PrintStream oldOut;
  40. private FileFilter testFileFilter = new TestFileFilter();
  41. /**
  42. * Creates a pooled batch manager
  43. *
  44. * @param filename the name of the batch file
  45. * @param skip items to skip between runs
  46. */
  47. public PooledBatchManager(String filename, int skip) {
  48. this.batchFile = filename;
  49. this.skip = skip;
  50. }
  51. /**
  52. * Starts processing the batch
  53. *
  54. */
  55. public void start() throws IOException {
  56. // redirect standard out to a file
  57. lock();
  58. try {
  59. createDirectories();
  60. redirectStdout();
  61. } finally {
  62. unlock();
  63. }
  64. }
  65. /**
  66. * Gets the next available batch item or null if no more are
  67. * available
  68. *
  69. * @return the next available batch item
  70. */
  71. public BatchItem getNextItem() throws IOException {
  72. lock();
  73. try {
  74. // move the last 'in process' file to the 'completed'
  75. // tests section.
  76. if (processingFile != null) {
  77. File completedFile = getCompletedFile(processingFile);
  78. processingFile.renameTo(completedFile);
  79. processingFile = null;
  80. }
  81. File testFile = getNextFile();
  82. if (testFile != null) {
  83. processingFile = getProcessingFile(testFile);
  84. testFile.renameTo(processingFile);
  85. System.out.println("Processing: " + processingFile);
  86. return getBatchItem(processingFile);
  87. } else {
  88. return null;
  89. }
  90. } finally {
  91. unlock();
  92. }
  93. }
  94. /**
  95. * Stops processing the batch
  96. */
  97. public void stop() throws IOException {
  98. }
  99. /**
  100. * Returns the name of the file
  101. *
  102. * @return the filename
  103. */
  104. public String getFilename() {
  105. return batchFile;
  106. }
  107. /**
  108. * Creates the test directiories as necessary
  109. */
  110. private void createDirectories() throws IOException {
  111. if (!topDir.isDirectory()) {
  112. topDir.mkdir();
  113. inProcessDir.mkdir();
  114. completedDir.mkdir();
  115. resultsDir.mkdir();
  116. createInputDirectory();
  117. }
  118. }
  119. /**
  120. * Creates the input directory
  121. */
  122. private void createInputDirectory() throws IOException {
  123. inputDir.mkdir();
  124. // read in the batch file
  125. List list = BatchFile.getLines(batchFile, skip);
  126. for (int i = 0; i < list.size(); i++) {
  127. String name = Integer.toString(i + 1);
  128. String line = (String) list.get(i);
  129. createInputFile(inputDir, name, line);
  130. }
  131. }
  132. /**
  133. * Creates the individual batch files
  134. *
  135. * @param dir the directory to place the input file in
  136. * @param name the name of the file
  137. * @param line the contents of the file
  138. */
  139. private void createInputFile(File dir, String name, String line)
  140. throws IOException {
  141. File path = new File(dir, name);
  142. FileOutputStream fos = new FileOutputStream(path);
  143. PrintStream ps = new PrintStream(fos);
  144. ps.println(line);
  145. ps.close();
  146. }
  147. /**
  148. * Redirects standard out to a file in the results directory with
  149. * a name 'Results_xxx.out'
  150. */
  151. private void redirectStdout() throws IOException {
  152. String myName = getMyName();
  153. File resultFile = File.createTempFile(myName, ".out", resultsDir);
  154. FileOutputStream fos = new FileOutputStream(resultFile);
  155. PrintStream ps = new PrintStream(fos);
  156. oldOut = System.out;
  157. System.setOut(ps);
  158. System.out.println("# These results collected on " + getMyName());
  159. }
  160. /**
  161. * Gets my network name
  162. *
  163. * @return my network name
  164. */
  165. private String getMyName() throws IOException {
  166. return InetAddress.getLocalHost().getHostName();
  167. }
  168. /**
  169. * Close the redirected stdout and restore it to what it was
  170. * before we redirected it.
  171. */
  172. private void closeStdout() throws IOException {
  173. System.out.close();
  174. System.setOut(oldOut);
  175. }
  176. /**
  177. * Lock the test suite so we can manipulate the set of tests
  178. */
  179. private void lock() throws IOException {
  180. RandomAccessFile raf = new RandomAccessFile(lockFile, "rw");
  181. lock = raf.getChannel().lock();
  182. }
  183. /**
  184. * unlock the test suite so we can manipulate the set of tests
  185. */
  186. private void unlock() throws IOException {
  187. lock.release();
  188. lock = null;
  189. }
  190. /**
  191. * Given an 'in process' file, generate the corresonding completed
  192. * file.
  193. *
  194. * @param file the in process file
  195. *
  196. * @return the completed file
  197. */
  198. private File getCompletedFile(File file) {
  199. return new File(completedDir, file.getName());
  200. }
  201. /**
  202. * Given an 'input' file, generate the corresonding inProcess
  203. * file.
  204. *
  205. * @param file the in process file
  206. *
  207. * @return the completed file
  208. */
  209. private File getProcessingFile(File file) {
  210. return new File(inProcessDir, file.getName());
  211. }
  212. /**
  213. * returns the next batch item file in the input directory
  214. */
  215. private File getNextFile() throws IOException {
  216. File[] match = inputDir.listFiles(testFileFilter);
  217. if (match.length > 0) {
  218. return match[0];
  219. }
  220. return null;
  221. }
  222. /**
  223. * Given a file parse the contents of the file into a BatchItem
  224. *
  225. * @param file the file to parse
  226. * @return the contents in the form of a batch item
  227. *
  228. */
  229. private BatchItem getBatchItem(File file) throws IOException {
  230. List list = BatchFile.getLines(file.getPath());
  231. if (list.size() != 1) {
  232. throw new IOException("Bad batch file size");
  233. }
  234. String line = (String) list.get(0);
  235. return new BatchItem(BatchFile.getFilename(line),
  236. BatchFile.getReference(line));
  237. }
  238. }
  239. /**
  240. * Filter that only yields filenames that are integer numbers
  241. */
  242. class TestFileFilter implements FileFilter {
  243. public boolean accept(File pathname) {
  244. String name = pathname.getName();
  245. try {
  246. Integer.parseInt(name);
  247. return true;
  248. } catch (NumberFormatException nfe) {
  249. return false;
  250. }
  251. }
  252. }