-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMainForm.cs
313 lines (269 loc) · 10.5 KB
/
MainForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==================================================================== */
/* ================================================================
* POIFS Browser
* Author: NPOI Team
* HomePage: http://www.codeplex.com/npoi
* Contributors:
* Huseyin Tufekcilerli 2008.11 1.0
* Tony Qu 2009.2.18 1.2 alpha
*
* ==============================================================*/
using System;
using System.IO;
using System.Collections;
using System.Windows.Forms;
using NPOI.HPSF;
using NPOI.POIFS.FileSystem;
using NPOI.HSSF.UserModel;
using NPOI.HSSF.Record;
using Cpk.Net;
using System.Threading.Tasks;
namespace NPOI.Tools.POIFSExplorer
{
public partial class MainForm : Form
{
private POIFSFileSystem _currentFileSystem;
public MainForm()
{
InitializeComponent();
}
private async Task OpenCPKDocument(string path)
{
var cpk = new CpkArchive(path);
await cpk.LoadAsync(loadIntoMemory: true);
var rootNodes = await cpk.GetRootEntriesAsync();
documentTreeView.BeginUpdate();
documentTreeView.Nodes.Clear();
var children = DirectoryTreeNode.GetChildren(rootNodes);
documentTreeView.Nodes.AddRange(children);
documentTreeView.EndUpdate();
}
private void OpenPOIFSDocument(string path)
{
HSSFWorkbook hssfworkbook = null;
//HWPFDocument hwpf = null;
using (var stream = File.OpenRead(path))
{
try
{
_currentFileSystem = new POIFSFileSystem(stream);
//supposing every Excel file has .xls as the extension
if (path.ToLower().IndexOf(".xls")>0)
{
hssfworkbook = new HSSFWorkbook(_currentFileSystem);
}
//else if (path.ToLower().IndexOf(".doc") > 0)
//{
// hwpf =new HWPFDocument(_currentFileSystem);
//}
}
catch (Exception)
{
MessageBox.Show("Error opening file. Possibly the file is not an OLE2 Compund file.",
"Open File Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
if (_currentFileSystem != null)
{
this.Text = string.Format("POIFS Browser - {0}", path);
documentTreeView.BeginUpdate();
documentTreeView.Nodes.Clear();
TreeNode[] children=null;
if (hssfworkbook != null)
{
children = DirectoryTreeNode.GetChildren(_currentFileSystem.Root, hssfworkbook);
}
else
{
children = DirectoryTreeNode.GetChildren(_currentFileSystem.Root, null);
}
documentTreeView.Nodes.AddRange(children);
documentTreeView.EndUpdate();
}
}
private void documentTreeView_AfterExpand(object sender, TreeViewEventArgs e)
{
var directoryTreeNode = e.Node as DirectoryTreeNode;
if (directoryTreeNode != null)
{
directoryTreeNode.OnExpanded();
}
}
private void documentTreeView_AfterCollapse(object sender, TreeViewEventArgs e)
{
var directoryTreeNode = e.Node as DirectoryTreeNode;
if (directoryTreeNode != null)
{
directoryTreeNode.OnCollapsed();
}
}
private void documentTreeView_AfterSelect(object sender, TreeViewEventArgs e)
{
ClearViewControls();
if (e.Node is DocumentTreeNode)
{
var documentTreeNode = e.Node as DocumentTreeNode;
var stream = documentTreeNode.GetDocumentStream();
if (stream == null)
return;
var viewableArray = documentTreeNode.DocumentNode.Document.ViewableArray;
if (viewableArray.Length > 0)
{
viewableTextBox.Text = viewableArray.GetValue(0).ToString();
}
if (PropertySet.IsPropertySetStream(stream))
{
var ps = PropertySetFactory.Create(stream);
propertiesListView.Items.AddRange(PropertyListViewItem.Create(ps));
if (!streamTabControl.TabPages.ContainsKey("tabPageProperties"))
{
streamTabControl.TabPages.Add(tabPageProperties);
}
}
else
{
if (streamTabControl.TabPages.ContainsKey("tabPageProperties"))
{
streamTabControl.TabPages.Remove(tabPageProperties);
}
}
if (!streamTabControl.TabPages.ContainsKey("tabPageBinary"))
{
streamTabControl.TabPages.Add(tabPageBinary);
}
}
else if (e.Node is AbstractRecordTreeNode)
{
AbstractRecordTreeNode node = (AbstractRecordTreeNode)e.Node;
if (node.HasBinary)
{
byte[] buffer = node.GetBytes();
viewableTextBox.Text = NPOI.Util.HexDump.Dump(buffer, buffer.Length, 0);
if (!streamTabControl.TabPages.ContainsKey("tabPageBinary"))
{
streamTabControl.TabPages.Add(tabPageBinary);
}
}
else
{
if (streamTabControl.TabPages.ContainsKey("tabPageBinary"))
{
streamTabControl.TabPages.Remove(tabPageBinary);
}
}
if (!streamTabControl.TabPages.ContainsKey("tabPageProperties"))
{
streamTabControl.TabPages.Add(tabPageProperties);
}
propertiesListView.Items.AddRange(node.GetPropertyList());
if (!streamTabControl.TabPages.ContainsKey("tabPageBinary"))
{
streamTabControl.TabPages.Add(tabPageBinary);
}
}
else
{
if (!streamTabControl.TabPages.ContainsKey("tabPageProperties"))
{
streamTabControl.TabPages.Add(tabPageProperties);
}
}
}
private void ClearViewControls()
{
viewableTextBox.Clear();
propertiesListView.Items.Clear();
}
private string filename;
private async void Open_Click(object sender, EventArgs e)
{
var dialog = new OpenFileDialog()
{
Filter = "Microsoft Office 97-2003 Documents|*.xls;*.doc;*.ppt|POIFS File|*.poifs|CPK file for PAL|*.cpk|All files (*.*)|*.*",
Multiselect = false,
Title = "Open Document",
};
var result = dialog.ShowDialog(this);
if (result == DialogResult.OK)
{
filename = dialog.FileName;
if (filename.ToLowerInvariant().EndsWith(".cpk"))
{
//PAL3 cpk file
await OpenCPKDocument(filename);
}
else
{
//OLE2 document
OpenPOIFSDocument(filename);
}
ClearViewControls();
}
}
private void saveAsMenu_Click(object sender, EventArgs e)
{
var documentTreeNode = documentTreeView.SelectedNode as DocumentTreeNode;
var directoryTreeNode = documentTreeView.SelectedNode as DirectoryTreeNode;
if (documentTreeNode != null)
{
var dialog = new SaveFileDialog()
{
Filter = "All files|*.*",
Title = "Save Document Stream As"
};
var result = dialog.ShowDialog(this);
if (result == DialogResult.OK)
{
using (var stream = documentTreeNode.GetDocumentStream())
using (var fileStream = File.OpenWrite(dialog.FileName))
{
var bufferLength = 4096;
var buffer = new byte[bufferLength];
int bytesRead;
while ((bytesRead = stream.Read(buffer, 0, bufferLength)) > 0)
{
fileStream.Write(buffer, 0, bytesRead);
}
}
}
}
}
private void aboutMenuItem_Click(object sender, EventArgs e)
{
AboutDialog.Instance.ShowDialog(this);
}
private void fileExitMenuItem_Click(object sender, EventArgs e)
{
Application.Exit();
}
private async void refreshToolScripButton_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(filename))
return;
if (filename.ToLowerInvariant().EndsWith(".cpk"))
{
//PAL3 cpk file
await OpenCPKDocument(filename);
}
else
{
//OLE2 document
OpenPOIFSDocument(filename);
}
ClearViewControls();
}
}
}