FSDirectory.cs
上传用户:zhangkuixh
上传日期:2013-09-30
资源大小:5473k
文件大小:24k
源码类别:

搜索引擎

开发平台:

C#

  1. /*
  2.  * Copyright 2004 The Apache Software Foundation
  3.  * 
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  * 
  8.  * http://www.apache.org/licenses/LICENSE-2.0
  9.  * 
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16. using System;
  17. using IndexFileNameFilter = Lucene.Net.Index.IndexFileNameFilter;
  18. namespace Lucene.Net.Store
  19. {
  20. /// <summary> Straightforward implementation of {@link Directory} as a directory of files.
  21. /// 
  22. /// </summary>
  23. /// <seealso cref="Directory">
  24. /// </seealso>
  25. /// <author>  Doug Cutting
  26. /// </author>
  27. public class FSDirectory : Directory
  28. {
  29. private class AnonymousClassLock : Lock
  30. {
  31. public AnonymousClassLock(System.IO.FileInfo lockFile, FSDirectory enclosingInstance)
  32. {
  33. InitBlock(lockFile, enclosingInstance);
  34. }
  35. private void  InitBlock(System.IO.FileInfo lockFile, FSDirectory enclosingInstance)
  36. {
  37. this.lockFile = lockFile;
  38. this.enclosingInstance = enclosingInstance;
  39. }
  40. private System.IO.FileInfo lockFile;
  41. private FSDirectory enclosingInstance;
  42. public FSDirectory Enclosing_Instance
  43. {
  44. get
  45. {
  46. return enclosingInstance;
  47. }
  48. }
  49. public override bool Obtain()
  50. {
  51. if (Lucene.Net.Store.FSDirectory.disableLocks)
  52. return true;
  53. bool tmpBool;
  54. if (System.IO.File.Exists(Enclosing_Instance.lockDir.FullName))
  55. tmpBool = true;
  56. else
  57. tmpBool = System.IO.Directory.Exists(Enclosing_Instance.lockDir.FullName);
  58. if (!tmpBool)
  59. {
  60.                     try
  61.                     {
  62.     System.IO.Directory.CreateDirectory(Enclosing_Instance.lockDir.FullName);
  63.                     }
  64.                     catch (Exception)
  65. {
  66. throw new System.IO.IOException("Cannot create lock directory: " + Enclosing_Instance.lockDir);
  67. }
  68. }
  69.                 try
  70.                 {
  71.                     System.IO.FileStream createdFile = lockFile.Create();
  72.                     createdFile.Close();
  73.                     return true;
  74.                 }
  75.                 catch (Exception)
  76.                 {
  77.                     return false;
  78.                 }
  79.             }
  80. public override void  Release()
  81. {
  82. if (Lucene.Net.Store.FSDirectory.disableLocks)
  83. return ;
  84. bool tmpBool;
  85. if (System.IO.File.Exists(lockFile.FullName))
  86. {
  87. System.IO.File.Delete(lockFile.FullName);
  88. tmpBool = true;
  89. }
  90. else if (System.IO.Directory.Exists(lockFile.FullName))
  91. {
  92. System.IO.Directory.Delete(lockFile.FullName);
  93. tmpBool = true;
  94. }
  95. else
  96. tmpBool = false;
  97. bool generatedAux = tmpBool;
  98. }
  99. public override bool IsLocked()
  100. {
  101. if (Lucene.Net.Store.FSDirectory.disableLocks)
  102. return false;
  103. bool tmpBool;
  104. if (System.IO.File.Exists(lockFile.FullName))
  105. tmpBool = true;
  106. else
  107. tmpBool = System.IO.Directory.Exists(lockFile.FullName);
  108. return tmpBool;
  109. }
  110. public override System.String ToString()
  111. {
  112. return "Lock@" + lockFile;
  113. }
  114. }
  115. /// <summary>This cache of directories ensures that there is a unique Directory
  116. /// instance per path, so that synchronization on the Directory can be used to
  117. /// synchronize access between readers and writers.
  118. /// 
  119. /// This should be a WeakHashMap, so that entries can be GC'd, but that would
  120. /// require Java 1.2.  Instead we use refcounts...
  121. /// </summary>
  122. private static readonly System.Collections.Hashtable DIRECTORIES = System.Collections.Hashtable.Synchronized(new System.Collections.Hashtable());
  123. private static bool disableLocks = false;
  124. /// <summary> Set whether Lucene's use of lock files is disabled. By default, 
  125. /// lock files are enabled. They should only be disabled if the index
  126. /// is on a read-only medium like a CD-ROM.
  127. /// </summary>
  128. public static void  SetDisableLocks(bool doDisableLocks)
  129. {
  130. FSDirectory.disableLocks = doDisableLocks;
  131. }
  132. /// <summary> Returns whether Lucene's use of lock files is disabled.</summary>
  133. /// <returns> true if locks are disabled, false if locks are enabled.
  134. /// </returns>
  135. public static bool GetDisableLocks()
  136. {
  137. return FSDirectory.disableLocks;
  138. }
  139. /// <summary> Directory specified by <code>Lucene.Net.lockDir</code>
  140. /// or <code>java.io.tmpdir</code> system property
  141. /// </summary>
  142. public static readonly System.String LOCK_DIR = SupportClass.AppSettings.Get("Lucene.Net.lockDir", System.IO.Path.GetTempPath());
  143. /// <summary>The default class which implements filesystem-based directories. </summary>
  144. private static System.Type IMPL;
  145. private static System.Security.Cryptography.MD5 DIGESTER;
  146. /// <summary>A buffer optionally used in renameTo method </summary>
  147. private byte[] buffer = null;
  148. /// <summary>Returns the directory instance for the named location.
  149. /// 
  150. /// <p>Directories are cached, so that, for a given canonical path, the same
  151. /// FSDirectory instance will always be returned.  This permits
  152. /// synchronization on directories.
  153. /// 
  154. /// </summary>
  155. /// <param name="path">the path to the directory.
  156. /// </param>
  157. /// <param name="create">if true, create, or erase any existing contents.
  158. /// </param>
  159. /// <returns> the FSDirectory for the named file.  
  160. /// </returns>
  161. public static FSDirectory GetDirectory(System.String path, bool create)
  162. {
  163. return GetDirectory(new System.IO.FileInfo(path), create);
  164. }
  165. /// <summary>Returns the directory instance for the named location.
  166. /// 
  167. /// <p>Directories are cached, so that, for a given canonical path, the same
  168. /// FSDirectory instance will always be returned.  This permits
  169. /// synchronization on directories.
  170. /// 
  171. /// </summary>
  172. /// <param name="file">the path to the directory.
  173. /// </param>
  174. /// <param name="create">if true, create, or erase any existing contents.
  175. /// </param>
  176. /// <returns> the FSDirectory for the named file.  
  177. /// </returns>
  178. public static FSDirectory GetDirectory(System.IO.FileInfo file, bool create)
  179. {
  180. file = new System.IO.FileInfo(file.FullName);
  181. FSDirectory dir;
  182. lock (DIRECTORIES.SyncRoot)
  183. {
  184. dir = (FSDirectory) DIRECTORIES[file];
  185. if (dir == null)
  186. {
  187. try
  188. {
  189. dir = (FSDirectory) System.Activator.CreateInstance(IMPL);
  190. }
  191. catch (System.Exception e)
  192. {
  193. throw new System.SystemException("cannot load FSDirectory class: " + e.ToString());
  194. }
  195. dir.Init(file, create);
  196. DIRECTORIES[file] = dir;
  197. }
  198. else if (create)
  199. {
  200. dir.Create();
  201. }
  202. }
  203. lock (dir)
  204. {
  205. dir.refCount++;
  206. }
  207. return dir;
  208. }
  209. private System.IO.FileInfo directory = null;
  210. private int refCount;
  211. private System.IO.FileInfo lockDir;
  212. public FSDirectory() // protected internal FSDirectory() // {{Aroush}} this shouldn't be 'public' but if it's not the line 'System.Activator.CreateInstance(IMPL);' in function GetDirectory() will fail.
  213. {
  214. }
  215. // permit subclassing
  216. private void  Init(System.IO.FileInfo path, bool create)
  217. {
  218. directory = path;
  219. if (LOCK_DIR == null)
  220. {
  221. lockDir = directory;
  222. }
  223. else
  224. {
  225. lockDir = new System.IO.FileInfo(LOCK_DIR);
  226. }
  227. // Ensure that lockDir exists and is a directory.
  228. bool tmpBool;
  229. if (System.IO.File.Exists(lockDir.FullName))
  230. tmpBool = true;
  231. else
  232. tmpBool = System.IO.Directory.Exists(lockDir.FullName);
  233. if (!tmpBool)
  234. {
  235.                 try
  236.                 {
  237.                     System.IO.Directory.CreateDirectory(lockDir.FullName);
  238.                 }
  239.                 catch (Exception)
  240.                 {
  241.                     throw new System.IO.IOException("Cannot create directory: " + lockDir);
  242.                 }
  243. }
  244. else if (!System.IO.Directory.Exists(lockDir.FullName))
  245. {
  246. throw new System.IO.IOException("Found regular file where directory expected: " + lockDir);
  247. }
  248. if (create)
  249. {
  250. Create();
  251. }
  252. if (!System.IO.Directory.Exists(directory.FullName))
  253. throw new System.IO.IOException(path + " not a directory");
  254. }
  255. private void  Create()
  256. {
  257. lock (this)
  258. {
  259. bool tmpBool;
  260. if (System.IO.File.Exists(directory.FullName))
  261. tmpBool = true;
  262. else
  263. tmpBool = System.IO.Directory.Exists(directory.FullName);
  264. if (!tmpBool)
  265. {
  266.                     try
  267.                     {
  268.                         System.IO.Directory.CreateDirectory(directory.FullName);
  269.                     }
  270.                     catch (Exception)
  271.                     {
  272.                         throw new System.IO.IOException("Cannot create directory: " + directory);
  273.                     }
  274. }
  275.                 try
  276.                 {
  277.                     System.IO.Directory.Exists(directory.FullName);
  278.                 }
  279.                 catch (Exception)
  280.                 {
  281.                     throw new System.IO.IOException(directory + " not a directory");
  282.                 }
  283.                 System.String[] files = System.IO.Directory.GetFileSystemEntries(directory.FullName); // clear old files    // {{Aroush-1.9}} we want the line below, not this one; how do we make the line below work in C#?!
  284.                 //// System.String[] files = System.IO.Directory.GetFileSystemEntries(new IndexFileNameFilter()); // clear old files 
  285. for (int i = 0; i < files.Length; i++)
  286. {
  287. System.IO.FileInfo file = new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, files[i]));
  288. bool tmpBool2;
  289. if (System.IO.File.Exists(file.FullName))
  290. {
  291. System.IO.File.Delete(file.FullName);
  292. tmpBool2 = true;
  293. }
  294. else if (System.IO.Directory.Exists(file.FullName))
  295. {
  296. System.IO.Directory.Delete(file.FullName);
  297. tmpBool2 = true;
  298. }
  299. else
  300. tmpBool2 = false;
  301. if (!tmpBool2)
  302. throw new System.IO.IOException("Cannot delete " + files[i]);
  303. }
  304. System.String lockPrefix = GetLockPrefix().ToString(); // clear old locks
  305. files = System.IO.Directory.GetFileSystemEntries(lockDir.FullName);
  306. if (files == null)
  307. throw new System.IO.IOException("Cannot read lock directory " + lockDir.FullName);
  308. for (int i = 0; i < files.Length; i++)
  309. {
  310. if (!files[i].StartsWith(lockPrefix))
  311. continue;
  312. System.IO.FileInfo lockFile = new System.IO.FileInfo(System.IO.Path.Combine(lockDir.FullName, files[i]));
  313. bool tmpBool3;
  314. if (System.IO.File.Exists(lockFile.FullName))
  315. {
  316. System.IO.File.Delete(lockFile.FullName);
  317. tmpBool3 = true;
  318. }
  319. else if (System.IO.Directory.Exists(lockFile.FullName))
  320. {
  321. System.IO.Directory.Delete(lockFile.FullName);
  322. tmpBool3 = true;
  323. }
  324. else
  325. tmpBool3 = false;
  326. if (!tmpBool3)
  327. throw new System.IO.IOException("Cannot delete " + files[i]);
  328. }
  329. }
  330. }
  331. /// <summary>Returns an array of strings, one for each file in the directory. </summary>
  332. public override System.String[] List()
  333. {
  334. return System.IO.Directory.GetFileSystemEntries(directory.FullName);
  335. }
  336. /// <summary>Returns true iff a file with the given name exists. </summary>
  337. public override bool FileExists(System.String name)
  338. {
  339. System.IO.FileInfo file = new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, name));
  340. bool tmpBool;
  341. if (System.IO.File.Exists(file.FullName))
  342. tmpBool = true;
  343. else
  344. tmpBool = System.IO.Directory.Exists(file.FullName);
  345. return tmpBool;
  346. }
  347. /// <summary>Returns the time the named file was last modified. </summary>
  348. public override long FileModified(System.String name)
  349. {
  350. System.IO.FileInfo file = new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, name));
  351. return (file.LastWriteTime.Ticks);
  352. }
  353. /// <summary>Returns the time the named file was last modified. </summary>
  354. public static long FileModified(System.IO.FileInfo directory, System.String name)
  355. {
  356. System.IO.FileInfo file = new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, name));
  357. return (file.LastWriteTime.Ticks);
  358. }
  359. /// <summary>Set the modified time of an existing file to now. </summary>
  360. public override void  TouchFile(System.String name)
  361. {
  362. System.IO.FileInfo file = new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, name));
  363.             file.LastWriteTime = System.DateTime.Now;
  364. }
  365. /// <summary>Returns the length in bytes of a file in the directory. </summary>
  366. public override long FileLength(System.String name)
  367. {
  368. System.IO.FileInfo file = new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, name));
  369. return file.Exists ? file.Length : 0;
  370. }
  371. /// <summary>Removes an existing file in the directory. </summary>
  372. public override void  DeleteFile(System.String name)
  373. {
  374. System.IO.FileInfo file = new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, name));
  375. bool tmpBool;
  376. if (System.IO.File.Exists(file.FullName))
  377. {
  378. System.IO.File.Delete(file.FullName);
  379. tmpBool = true;
  380. }
  381. else if (System.IO.Directory.Exists(file.FullName))
  382. {
  383. System.IO.Directory.Delete(file.FullName);
  384. tmpBool = true;
  385. }
  386. else
  387. tmpBool = false;
  388. if (!tmpBool)
  389. throw new System.IO.IOException("Cannot delete " + file);
  390. }
  391. /// <summary>Renames an existing file in the directory. </summary>
  392. public override void  RenameFile(System.String from, System.String to)
  393. {
  394. lock (this)
  395. {
  396. System.IO.FileInfo old = new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, from));
  397. System.IO.FileInfo nu = new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, to));
  398. /* This is not atomic.  If the program crashes between the call to
  399. delete() and the call to renameTo() then we're screwed, but I've
  400. been unable to figure out how else to do this... */
  401. bool tmpBool;
  402. if (System.IO.File.Exists(nu.FullName))
  403. tmpBool = true;
  404. else
  405. tmpBool = System.IO.Directory.Exists(nu.FullName);
  406. if (tmpBool)
  407. {
  408. bool tmpBool2;
  409. if (System.IO.File.Exists(nu.FullName))
  410. {
  411. System.IO.File.Delete(nu.FullName);
  412. tmpBool2 = true;
  413. }
  414. else if (System.IO.Directory.Exists(nu.FullName))
  415. {
  416. System.IO.Directory.Delete(nu.FullName);
  417. tmpBool2 = true;
  418. }
  419. else
  420. tmpBool2 = false;
  421. if (!tmpBool2)
  422. throw new System.IO.IOException("Cannot delete " + nu);
  423. }
  424. // Rename the old file to the new one. Unfortunately, the renameTo()
  425. // method does not work reliably under some JVMs.  Therefore, if the
  426. // rename fails, we manually rename by copying the old file to the new one
  427.                 try
  428.                 {
  429.                     old.MoveTo(nu.FullName);
  430.                 }
  431.                 catch (System.Exception)
  432. {
  433. System.IO.Stream in_Renamed = null;
  434. System.IO.Stream out_Renamed = null;
  435. try
  436. {
  437. in_Renamed = new System.IO.FileStream(old.FullName, System.IO.FileMode.Open, System.IO.FileAccess.Read);
  438. out_Renamed = new System.IO.FileStream(nu.FullName, System.IO.FileMode.Create);
  439. // see if the buffer needs to be initialized. Initialization is
  440. // only done on-demand since many VM's will never run into the renameTo
  441. // bug and hence shouldn't waste 1K of mem for no reason.
  442. if (buffer == null)
  443. {
  444. buffer = new byte[1024];
  445. }
  446. int len;
  447.                         len = in_Renamed.Read(buffer, 0, buffer.Length);
  448.                         out_Renamed.Write(buffer, 0, len);
  449. // delete the old file.
  450. bool tmpBool3;
  451. if (System.IO.File.Exists(old.FullName))
  452. {
  453. System.IO.File.Delete(old.FullName);
  454. tmpBool3 = true;
  455. }
  456. else if (System.IO.Directory.Exists(old.FullName))
  457. {
  458. System.IO.Directory.Delete(old.FullName);
  459. tmpBool3 = true;
  460. }
  461. else
  462. tmpBool3 = false;
  463. bool generatedAux = tmpBool3;
  464. }
  465. catch (System.IO.IOException ioe)
  466. {
  467. throw new System.IO.IOException("Cannot rename " + old + " to " + nu);
  468. }
  469. finally
  470. {
  471. if (in_Renamed != null)
  472. {
  473. try
  474. {
  475. in_Renamed.Close();
  476. }
  477. catch (System.IO.IOException e)
  478. {
  479. throw new System.SystemException("Cannot close input stream: " + e.ToString());
  480. }
  481. }
  482. if (out_Renamed != null)
  483. {
  484. try
  485. {
  486. out_Renamed.Close();
  487. }
  488. catch (System.IO.IOException e)
  489. {
  490. throw new System.SystemException("Cannot close output stream: " + e.ToString());
  491. }
  492. }
  493. }
  494. }
  495. }
  496. }
  497. /// <summary>Creates a new, empty file in the directory with the given name.
  498. /// Returns a stream writing this file. 
  499. /// </summary>
  500. public override IndexOutput CreateOutput(System.String name)
  501. {
  502. System.IO.FileInfo file = new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, name));
  503. bool tmpBool;
  504. if (System.IO.File.Exists(file.FullName))
  505. tmpBool = true;
  506. else
  507. tmpBool = System.IO.Directory.Exists(file.FullName);
  508. bool tmpBool2;
  509. if (System.IO.File.Exists(file.FullName))
  510. {
  511. System.IO.File.Delete(file.FullName);
  512. tmpBool2 = true;
  513. }
  514. else if (System.IO.Directory.Exists(file.FullName))
  515. {
  516. System.IO.Directory.Delete(file.FullName);
  517. tmpBool2 = true;
  518. }
  519. else
  520. tmpBool2 = false;
  521. if (tmpBool && !tmpBool2)
  522. // delete existing, if any
  523. throw new System.IO.IOException("Cannot overwrite: " + file);
  524. return new FSIndexOutput(file);
  525. }
  526. /// <summary>Returns a stream reading an existing file. </summary>
  527. public override IndexInput OpenInput(System.String name)
  528. {
  529. return new FSIndexInput(new System.IO.FileInfo(System.IO.Path.Combine(directory.FullName, name)));
  530. }
  531. /// <summary> So we can do some byte-to-hexchar conversion below</summary>
  532. private static readonly char[] HEX_DIGITS = new char[]{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
  533. /// <summary>Constructs a {@link Lock} with the specified name.  Locks are implemented
  534. /// with {@link File#createNewFile()}.
  535. /// 
  536. /// </summary>
  537. /// <param name="name">the name of the lock file
  538. /// </param>
  539. /// <returns> an instance of <code>Lock</code> holding the lock
  540. /// </returns>
  541. public override Lock MakeLock(System.String name)
  542. {
  543. System.Text.StringBuilder buf = GetLockPrefix();
  544. buf.Append("-");
  545. buf.Append(name);
  546. // create a lock file
  547. System.IO.FileInfo lockFile = new System.IO.FileInfo(System.IO.Path.Combine(lockDir.FullName, buf.ToString()));
  548. return new AnonymousClassLock(lockFile, this);
  549. }
  550. private System.Text.StringBuilder GetLockPrefix()
  551. {
  552. System.String dirName; // name to be hashed
  553. try
  554. {
  555. dirName = directory.FullName;
  556. }
  557. catch (System.IO.IOException e)
  558. {
  559. throw new System.SystemException(e.ToString());
  560. }
  561. byte[] digest;
  562. lock (DIGESTER)
  563. {
  564. digest = DIGESTER.ComputeHash(System.Text.Encoding.UTF8.GetBytes(dirName));
  565. }
  566. System.Text.StringBuilder buf = new System.Text.StringBuilder();
  567. buf.Append("lucene-");
  568. for (int i = 0; i < digest.Length; i++)
  569. {
  570. int b = digest[i];
  571. buf.Append(HEX_DIGITS[(b >> 4) & 0xf]);
  572. buf.Append(HEX_DIGITS[b & 0xf]);
  573. }
  574. return buf;
  575. }
  576. /// <summary>Closes the store to future operations. </summary>
  577. public override void  Close()
  578. {
  579. lock (this)
  580. {
  581. if (--refCount <= 0)
  582. {
  583. lock (DIRECTORIES.SyncRoot)
  584. {
  585. DIRECTORIES.Remove(directory);
  586. }
  587. }
  588. }
  589. }
  590. public virtual System.IO.FileInfo GetFile()
  591. {
  592. return directory;
  593. }
  594. /// <summary>For debug output. </summary>
  595. public override System.String ToString()
  596. {
  597. return this.GetType().FullName + "@" + directory;
  598. }
  599. static FSDirectory()
  600. {
  601. {
  602. try
  603. {
  604. System.String name = SupportClass.AppSettings.Get("Lucene.Net.FSDirectory.class", typeof(FSDirectory).FullName);
  605. IMPL = System.Type.GetType(name);
  606. }
  607. catch (System.Security.SecurityException)
  608. {
  609. try
  610. {
  611. IMPL = System.Type.GetType(typeof(FSDirectory).FullName);
  612. }
  613. catch (System.Exception e)
  614. {
  615. throw new System.SystemException("cannot load default FSDirectory class: " + e.ToString());
  616. }
  617. }
  618.                 catch (System.Exception e)
  619.                 {
  620.                     throw new System.SystemException("cannot load FSDirectory class: " + e.ToString());
  621.                 }
  622.             }
  623. {
  624. try
  625. {
  626. DIGESTER = System.Security.Cryptography.MD5.Create();
  627. }
  628. catch (System.Exception e)
  629. {
  630. throw new System.SystemException(e.ToString());
  631. }
  632. }
  633. }
  634. }
  635. public class FSIndexInput : BufferedIndexInput, System.ICloneable
  636. {
  637. private class Descriptor : System.IO.BinaryReader
  638. {
  639. private void  InitBlock(FSIndexInput enclosingInstance)
  640. {
  641. this.enclosingInstance = enclosingInstance;
  642. }
  643. private FSIndexInput enclosingInstance;
  644. public FSIndexInput Enclosing_Instance
  645. {
  646. get
  647. {
  648. return enclosingInstance;
  649. }
  650. }
  651. public long position;
  652. public Descriptor(FSIndexInput enclosingInstance, System.IO.FileInfo file, System.IO.FileAccess mode) 
  653.                 : base(new System.IO.FileStream(file.FullName, System.IO.FileMode.Open, mode, System.IO.FileShare.ReadWrite))
  654. {
  655. InitBlock(enclosingInstance);
  656. }
  657. }
  658. private Descriptor file = null;
  659. internal bool isClone;
  660. private long length;
  661. public FSIndexInput(System.IO.FileInfo path)
  662. {
  663. file = new Descriptor(this, path, System.IO.FileAccess.Read);
  664. length = file.BaseStream.Length;
  665. }
  666. /// <summary>IndexInput methods </summary>
  667. public override void  ReadInternal(byte[] b, int offset, int len)
  668. {
  669. lock (file)
  670. {
  671. long position = GetFilePointer();
  672. if (position != file.position)
  673. {
  674. file.BaseStream.Seek(position, System.IO.SeekOrigin.Begin);
  675. file.position = position;
  676. }
  677. int total = 0;
  678. do 
  679. {
  680. int i = file.Read(b, offset + total, len - total);
  681. if (i <= 0)
  682. throw new System.IO.IOException("read past EOF");
  683. file.position += i;
  684. total += i;
  685. }
  686. while (total < len);
  687. }
  688. }
  689. public override void  Close()
  690. {
  691. if (!isClone && file != null)
  692. file.Close();
  693.             System.GC.SuppressFinalize(this);
  694. }
  695. public override void  SeekInternal(long position)
  696. {
  697. }
  698. public override long Length()
  699. {
  700. return length;
  701. }
  702. ~FSIndexInput()
  703. {
  704. Close(); // close the file
  705. }
  706. public override System.Object Clone()
  707. {
  708. FSIndexInput clone = (FSIndexInput) base.Clone();
  709. clone.isClone = true;
  710. return clone;
  711. }
  712. /// <summary>Method used for testing. Returns true if the underlying
  713. /// file descriptor is valid.
  714. /// </summary>
  715. public /*internal*/ virtual bool IsFDValid()
  716. {
  717. return file.BaseStream.CanRead;
  718. }
  719. }
  720. class FSIndexOutput : BufferedIndexOutput
  721. {
  722. internal System.IO.BinaryWriter file = null;
  723. public FSIndexOutput(System.IO.FileInfo path)
  724. {
  725. file = new System.IO.BinaryWriter(new System.IO.FileStream(path.FullName, System.IO.FileMode.OpenOrCreate, System.IO.FileAccess.Write, System.IO.FileShare.ReadWrite));
  726. }
  727. /// <summary>output methods: </summary>
  728. public override void  FlushBuffer(byte[] b, int size)
  729. {
  730. file.Write(b, 0, size);
  731. }
  732. public override void  Close()
  733. {
  734. base.Close();
  735. file.Close();
  736. System.GC.SuppressFinalize(this);
  737. }
  738. /// <summary>Random-access methods </summary>
  739. public override void  Seek(long pos)
  740. {
  741. base.Seek(pos);
  742. file.BaseStream.Seek(pos, System.IO.SeekOrigin.Begin);
  743. }
  744. public override long Length()
  745. {
  746. return file.BaseStream.Length;
  747. }
  748. ~FSIndexOutput()
  749. {
  750. file.Close(); // close the file
  751. }
  752. }
  753. }