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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
/*
* undoc - C# Bindings
*
* P/Invoke wrapper for the undoc library.
*
* Usage:
* using Iyulab.Undoc;
*
* using var doc = UndocDocument.FromFile("document.docx");
* string markdown = doc.ToMarkdown();
* Console.WriteLine(markdown);
*
* Copyright (c) 2024 iyulab
* MIT License
*/
using System;
using System.Runtime.InteropServices;
namespace Iyulab.Undoc
{
/// <summary>
/// Flags for markdown rendering.
/// </summary>
[Flags]
public enum MarkdownFlags
{
/// <summary>No flags.</summary>
None = 0,
/// <summary>Include YAML frontmatter with metadata.</summary>
Frontmatter = 1,
/// <summary>Escape special Markdown characters.</summary>
EscapeSpecial = 2,
/// <summary>Add blank lines between paragraphs.</summary>
ParagraphSpacing = 4
}
/// <summary>
/// JSON format options.
/// </summary>
public enum JsonFormat
{
/// <summary>Pretty-printed JSON with indentation.</summary>
Pretty = 0,
/// <summary>Compact JSON without whitespace.</summary>
Compact = 1
}
/// <summary>
/// Native interop methods.
/// </summary>
internal static class UndocNative
{
private const string LibraryName = "undoc";
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr undoc_version();
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr undoc_last_error();
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
public static extern IntPtr undoc_parse_file([MarshalAs(UnmanagedType.LPUTF8Str)] string path);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr undoc_parse_bytes(byte[] data, UIntPtr len);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern void undoc_free_document(IntPtr doc);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr undoc_to_markdown(IntPtr doc, uint flags);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr undoc_to_text(IntPtr doc);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr undoc_to_json(IntPtr doc, int format);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr undoc_plain_text(IntPtr doc);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int undoc_section_count(IntPtr doc);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern int undoc_resource_count(IntPtr doc);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr undoc_get_title(IntPtr doc);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr undoc_get_author(IntPtr doc);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern void undoc_free_string(IntPtr str);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr undoc_get_resource_ids(IntPtr doc);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
public static extern IntPtr undoc_get_resource_info(IntPtr doc, [MarshalAs(UnmanagedType.LPUTF8Str)] string resourceId);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
public static extern IntPtr undoc_get_resource_data(IntPtr doc, [MarshalAs(UnmanagedType.LPUTF8Str)] string resourceId, out UIntPtr outLen);
[DllImport(LibraryName, CallingConvention = CallingConvention.Cdecl)]
public static extern void undoc_free_bytes(IntPtr data, UIntPtr len);
}
/// <summary>
/// Exception thrown when undoc operations fail.
/// </summary>
public class UndocException : Exception
{
public UndocException(string message) : base(message) { }
}
/// <summary>
/// Represents a parsed Office document.
/// </summary>
public class UndocDocument : IDisposable
{
private IntPtr _handle;
private bool _disposed;
/// <summary>
/// Get the library version.
/// </summary>
public static string Version
{
get
{
var ptr = UndocNative.undoc_version();
return Marshal.PtrToStringAnsi(ptr) ?? "";
}
}
private UndocDocument(IntPtr handle)
{
_handle = handle;
}
/// <summary>
/// Parse a document from a file path.
/// </summary>
/// <param name="path">Path to the document file.</param>
/// <returns>Parsed document.</returns>
/// <exception cref="UndocException">If parsing fails.</exception>
public static UndocDocument FromFile(string path)
{
var handle = UndocNative.undoc_parse_file(path);
if (handle == IntPtr.Zero)
{
throw new UndocException(GetLastError());
}
return new UndocDocument(handle);
}
/// <summary>
/// Parse a document from a byte array.
/// </summary>
/// <param name="data">Document data.</param>
/// <returns>Parsed document.</returns>
/// <exception cref="UndocException">If parsing fails.</exception>
public static UndocDocument FromBytes(byte[] data)
{
var handle = UndocNative.undoc_parse_bytes(data, (UIntPtr)data.Length);
if (handle == IntPtr.Zero)
{
throw new UndocException(GetLastError());
}
return new UndocDocument(handle);
}
/// <summary>
/// Convert the document to Markdown.
/// </summary>
/// <param name="flags">Rendering flags.</param>
/// <returns>Markdown string.</returns>
public string ToMarkdown(MarkdownFlags flags = MarkdownFlags.None)
{
ThrowIfDisposed();
var ptr = UndocNative.undoc_to_markdown(_handle, (uint)flags);
if (ptr == IntPtr.Zero)
{
throw new UndocException(GetLastError());
}
try
{
return Marshal.PtrToStringUTF8(ptr) ?? "";
}
finally
{
UndocNative.undoc_free_string(ptr);
}
}
/// <summary>
/// Convert the document to plain text.
/// </summary>
/// <returns>Plain text string.</returns>
public string ToText()
{
ThrowIfDisposed();
var ptr = UndocNative.undoc_to_text(_handle);
if (ptr == IntPtr.Zero)
{
throw new UndocException(GetLastError());
}
try
{
return Marshal.PtrToStringUTF8(ptr) ?? "";
}
finally
{
UndocNative.undoc_free_string(ptr);
}
}
/// <summary>
/// Convert the document to JSON.
/// </summary>
/// <param name="format">JSON format.</param>
/// <returns>JSON string.</returns>
public string ToJson(JsonFormat format = JsonFormat.Pretty)
{
ThrowIfDisposed();
var ptr = UndocNative.undoc_to_json(_handle, (int)format);
if (ptr == IntPtr.Zero)
{
throw new UndocException(GetLastError());
}
try
{
return Marshal.PtrToStringUTF8(ptr) ?? "";
}
finally
{
UndocNative.undoc_free_string(ptr);
}
}
/// <summary>
/// Get the plain text content.
/// </summary>
public string PlainText
{
get
{
ThrowIfDisposed();
var ptr = UndocNative.undoc_plain_text(_handle);
if (ptr == IntPtr.Zero)
{
throw new UndocException(GetLastError());
}
try
{
return Marshal.PtrToStringUTF8(ptr) ?? "";
}
finally
{
UndocNative.undoc_free_string(ptr);
}
}
}
/// <summary>
/// Get the number of sections in the document.
/// </summary>
public int SectionCount
{
get
{
ThrowIfDisposed();
var count = UndocNative.undoc_section_count(_handle);
if (count < 0)
{
throw new UndocException(GetLastError());
}
return count;
}
}
/// <summary>
/// Get the number of embedded resources.
/// </summary>
public int ResourceCount
{
get
{
ThrowIfDisposed();
var count = UndocNative.undoc_resource_count(_handle);
if (count < 0)
{
throw new UndocException(GetLastError());
}
return count;
}
}
/// <summary>
/// Get the document title.
/// </summary>
public string? Title
{
get
{
ThrowIfDisposed();
var ptr = UndocNative.undoc_get_title(_handle);
if (ptr == IntPtr.Zero)
{
return null;
}
try
{
return Marshal.PtrToStringUTF8(ptr);
}
finally
{
UndocNative.undoc_free_string(ptr);
}
}
}
/// <summary>
/// Get the document author.
/// </summary>
public string? Author
{
get
{
ThrowIfDisposed();
var ptr = UndocNative.undoc_get_author(_handle);
if (ptr == IntPtr.Zero)
{
return null;
}
try
{
return Marshal.PtrToStringUTF8(ptr);
}
finally
{
UndocNative.undoc_free_string(ptr);
}
}
}
/// <summary>
/// Get all resource IDs as a JSON array string.
/// </summary>
/// <returns>JSON array of resource IDs, e.g., ["rId1", "rId2"]</returns>
public string GetResourceIds()
{
ThrowIfDisposed();
var ptr = UndocNative.undoc_get_resource_ids(_handle);
if (ptr == IntPtr.Zero)
{
throw new UndocException(GetLastError());
}
try
{
return Marshal.PtrToStringUTF8(ptr) ?? "[]";
}
finally
{
UndocNative.undoc_free_string(ptr);
}
}
/// <summary>
/// Get resource metadata as JSON.
/// </summary>
/// <param name="resourceId">The resource ID.</param>
/// <returns>JSON object with resource metadata.</returns>
public string GetResourceInfo(string resourceId)
{
ThrowIfDisposed();
var ptr = UndocNative.undoc_get_resource_info(_handle, resourceId);
if (ptr == IntPtr.Zero)
{
throw new UndocException(GetLastError());
}
try
{
return Marshal.PtrToStringUTF8(ptr) ?? "{}";
}
finally
{
UndocNative.undoc_free_string(ptr);
}
}
/// <summary>
/// Get resource binary data.
/// </summary>
/// <param name="resourceId">The resource ID.</param>
/// <returns>Binary data of the resource.</returns>
public byte[] GetResourceData(string resourceId)
{
ThrowIfDisposed();
var ptr = UndocNative.undoc_get_resource_data(_handle, resourceId, out var len);
if (ptr == IntPtr.Zero)
{
throw new UndocException(GetLastError());
}
try
{
var data = new byte[(int)len];
Marshal.Copy(ptr, data, 0, (int)len);
return data;
}
finally
{
UndocNative.undoc_free_bytes(ptr, len);
}
}
private static string GetLastError()
{
var ptr = UndocNative.undoc_last_error();
if (ptr == IntPtr.Zero)
{
return "Unknown error";
}
return Marshal.PtrToStringUTF8(ptr) ?? "Unknown error";
}
private void ThrowIfDisposed()
{
if (_disposed)
{
throw new ObjectDisposedException(nameof(UndocDocument));
}
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
if (!_disposed)
{
if (_handle != IntPtr.Zero)
{
UndocNative.undoc_free_document(_handle);
_handle = IntPtr.Zero;
}
_disposed = true;
}
}
~UndocDocument()
{
Dispose(false);
}
}
}