Storage.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.InteropServices;
  5. //using System.IO;
  6. //using System.Runtime.InteropServices;
  7. namespace Biff8Excel.COM
  8. {
  9. public sealed class Storage : IDisposable
  10. {
  11. private bool disposed;
  12. private IStorage storage;
  13. public Storage(IStorage storage)
  14. {
  15. this.storage = storage;
  16. }
  17. ~Storage()
  18. {
  19. this.Dispose();
  20. }
  21. public static Storage CreateDocFile(string storageFile, StorageMode mode)
  22. {
  23. IStorage storage = NativeMethods.StgCreateDocfile(storageFile, (int)mode, 0);
  24. return new Storage(storage);
  25. }
  26. public static Storage Open(string storageFile, StorageMode mode)
  27. {
  28. IStorage storage = NativeMethods.StgOpenStorage(storageFile, IntPtr.Zero, (int)mode, IntPtr.Zero, 0);
  29. return new Storage(storage);
  30. }
  31. public void CopyTo(Storage destinationStorage)
  32. {
  33. this.storage.CopyTo(0, IntPtr.Zero, IntPtr.Zero, destinationStorage.storage);
  34. }
  35. public Storage OpenStorage(string name, bool autoCreate)
  36. {
  37. IStorage subStorage;
  38. try
  39. {
  40. this.storage.OpenStorage(name, null, (int)(StorageMode.ReadWrite | StorageMode.ShareExclusive), IntPtr.Zero, 0, out subStorage);
  41. }
  42. catch (COMException)
  43. {
  44. subStorage = null;
  45. }
  46. if (subStorage == null)
  47. {
  48. if (autoCreate)
  49. return CreateStorage(name);
  50. return null;
  51. }
  52. return new Storage(subStorage);
  53. }
  54. public Storage RecurOpenStorage(string name, bool autoCreate)
  55. {
  56. string pwcsName;
  57. if (name == null)
  58. throw new Biff8ExcelException("名称不得为null");
  59. int pos = name.IndexOf('\\');
  60. if (pos > 0)
  61. {
  62. pwcsName = name.Substring(0, pos);
  63. name = name.Substring(pos + 1);
  64. }
  65. else
  66. {
  67. pwcsName = name;
  68. name = "";
  69. }
  70. Storage subStorage = OpenStorage(pwcsName, autoCreate);
  71. if (subStorage != null && name.Length > 0)
  72. {
  73. return subStorage.RecurOpenStorage(name, autoCreate);
  74. }
  75. return subStorage;
  76. }
  77. public void Dispose()
  78. {
  79. if (!this.disposed)
  80. {
  81. Marshal.ReleaseComObject(this.storage);
  82. this.storage = null;
  83. this.disposed = true;
  84. }
  85. GC.SuppressFinalize(this);
  86. }
  87. public Storage CreateStorage(string name)
  88. {
  89. IStorage subStorage = null;
  90. try
  91. {
  92. //this.storage.OpenStorage(name, null,
  93. // (int)(StorageMode.ReadWrite | StorageMode.ShareExclusive),
  94. // IntPtr.Zero, 0, out subStorage);
  95. this.storage.CreateStorage(name,
  96. (int)(StorageMode.Create | StorageMode.ReadWrite | StorageMode.ShareExclusive),
  97. 0, 0, out subStorage);
  98. this.storage.Commit(0);
  99. return new Storage(subStorage);
  100. }
  101. catch (COMException)
  102. {
  103. if (subStorage != null)
  104. Marshal.ReleaseComObject(subStorage);
  105. }
  106. return null;
  107. }
  108. public COMStream CreateStream(string name)
  109. {
  110. IStreamRef subStream = null;
  111. try
  112. {
  113. //this.storage.OpenStream(name, IntPtr.Zero,
  114. // (int)(StorageMode.ReadWrite | StorageMode.ShareExclusive),
  115. // 0, out subStream);
  116. //if (subStream != null)
  117. // this.storage.DestroyElement(name);
  118. //Now create the element
  119. this.storage.CreateStream(name,
  120. (int)(StorageMode.Create | StorageMode.ReadWrite | StorageMode.ShareExclusive),
  121. 0, 0, out subStream);
  122. this.storage.Commit(0);
  123. return new COMStream(subStream);
  124. }
  125. catch (COMException)
  126. {
  127. if (subStream != null)
  128. Marshal.ReleaseComObject(subStream);
  129. return null;
  130. }
  131. }
  132. public COMStream OpenStream(string name)
  133. {
  134. IStreamRef subStream;
  135. try
  136. {
  137. this.storage.OpenStream(name, IntPtr.Zero,
  138. (int)(StorageMode.ReadWrite | StorageMode.ShareExclusive),
  139. 0, out subStream);
  140. return new COMStream(subStream);
  141. }
  142. catch (COMException)
  143. {
  144. return null;
  145. }
  146. }
  147. public void Commit(int grfCommitFlags)
  148. {
  149. this.storage.Commit(grfCommitFlags);
  150. }
  151. }
  152. }