-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
446 lines (377 loc) · 14.3 KB
/
main.js
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
// main.js
import './style.css'
import {
PDFDocument,
PDFName,
PDFNumber,
PDFStream,
PDFArray
} from 'pdf-lib'
import { inflate, deflate } from 'pako'
// 1. Render the page
function renderPage() {
const app = document.querySelector('#app')
app.innerHTML = `
<div class="container mt-5">
<h1 class="mb-4">PDF Processor</h1>
<div class="mb-3">
<input type="file" id="pdf-upload" accept="application/pdf" class="form-control">
</div>
<button id="process-btn" class="btn btn-primary mb-4">Remove Most Common Substring</button>
<!-- Progress Bar -->
<div class="progress mb-3" style="height: 25px; display: none;" id="progress-container">
<div class="progress-bar" role="progressbar" style="width: 0%;" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" id="progress-bar">
0%
</div>
</div>
<!-- Status Block -->
<div class="alert alert-info align-items-center" role="alert" style="display: none;" id="status-block">
<div class="spinner-border spinner-border-sm me-2" role="status" aria-hidden="true" id="spinner"></div>
<span id="status-message">Processing...</span>
</div>
</div>
`
// Select elements after setting innerHTML
const progressContainer = document.getElementById('progress-container')
const progressBar = document.getElementById('progress-bar')
const statusBlock = document.getElementById('status-block')
const statusMessage = document.getElementById('status-message')
const processBtn = document.getElementById('process-btn')
const spinner = document.getElementById('spinner')
// Ensure both progress container and status block are hidden on page load
window.onload = function () {
hideProgressIndicators()
}
// Add event listener to the process button
processBtn.addEventListener('click', handleProcessButtonClick)
}
// 2. Read the file from the file input after user clicked the button
async function handleProcessButtonClick() {
const pdfInput = document.getElementById('pdf-upload').files[0]
const processBtn = document.getElementById('process-btn')
if (!pdfInput) {
alert('Please upload a PDF file.')
hideProgressIndicators()
return
}
processBtn.disabled = true
showProgressIndicators()
updateProgress(0, 'Starting the PDF processing...')
let reader = new FileReader()
reader.onload = async function (event) {
try {
updateProgress(10, 'Reading the PDF file...')
let typedArray = new Uint8Array(event.target.result)
// 3. Put the file into processPdf function and return the pdfDoc for download
const modifiedPdfBytes = await processPdf(typedArray)
// 4. Create download link and clean up all the resources
await createDownloadLink(modifiedPdfBytes)
// Clean up resources
typedArray = null
reader.abort()
reader = null
if (window.gc) {
window.gc()
}
updateProgress(100, 'Processing complete!', 'bg-success')
hideProgressIndicators()
processBtn.disabled = false
} catch (error) {
console.error('An error occurred during processing:', error)
updateProgress(0, 'An error occurred. Please try again.', 'bg-danger')
hideProgressIndicators()
processBtn.disabled = false
}
}
reader.readAsArrayBuffer(pdfInput)
}
// 3. Process the PDF file
async function processPdf(typedArray) {
updateProgress(20, 'Loading the PDF document...')
let pdfDoc = await PDFDocument.load(typedArray)
let pages = pdfDoc.getPages()
let substringCounter = new Map()
const patternString = ' Td <'
const desiredLength = 100
const patternBytes = new TextEncoder('latin1').encode(patternString)
updateProgress(30, 'Processing the first page...')
const firstPage = pages[0]
const contentStreamRefs = firstPage.node.normalizedEntries().Contents
if (contentStreamRefs) {
const contentStreamArray = Array.isArray(contentStreamRefs) ? contentStreamRefs : [contentStreamRefs]
for (const [index, streamRef] of contentStreamArray.entries()) {
updateProgress(30 + (index + 1) * 5, `Processing content stream ${index + 1}/${contentStreamArray.length}...`)
await processContentStream(streamRef, pdfDoc, substringCounter, patternBytes, desiredLength)
}
}
updateProgress(50, 'Identifying the most common substring...')
let mostCommonSubstringHex = ''
let maxCount = 0
for (const [substringHex, count] of substringCounter.entries()) {
if (count > maxCount) {
maxCount = count
mostCommonSubstringHex = substringHex
}
}
console.log(`Most common substring: ${hexToAscii(mostCommonSubstringHex)} (Occurrences: ${maxCount})`)
updateProgress(60, 'Replacing the most common substring in all pages...')
let mostCommonSubstringBytes = hexStringToUint8Array(mostCommonSubstringHex)
const totalPages = pages.length
for (const [pageIndex, page] of pages.entries()) {
updateProgress(60 + ((pageIndex + 1) / totalPages) * 20, `Modifying page ${pageIndex + 1}/${totalPages}...`)
const contentStreamRefs = page.node.normalizedEntries().Contents
if (contentStreamRefs) {
const contentStreamArray = Array.isArray(contentStreamRefs) ? contentStreamRefs : [contentStreamRefs]
for (const streamRef of contentStreamArray) {
await replaceInContentStream(streamRef, pdfDoc, mostCommonSubstringBytes)
}
}
}
updateProgress(85, 'Saving the modified PDF...')
return await pdfDoc.save()
}
// 4. Create download link and clean up resources
async function createDownloadLink(modifiedPdfBytes) {
updateProgress(90, 'Preparing download...')
const blob = new Blob([modifiedPdfBytes], { type: 'application/pdf' })
const link = document.createElement('a')
link.href = URL.createObjectURL(blob)
link.download = 'output_without_common_substring.pdf'
link.click()
// Release memory resources
URL.revokeObjectURL(link.href)
link.remove()
}
// Helper functions
function updateProgress(percent, message, barClass = 'bg-info') {
const progressBar = document.getElementById('progress-bar')
const statusMessage = document.getElementById('status-message')
const statusBlock = document.getElementById('status-block')
const spinner = document.getElementById('spinner')
progressBar.style.width = `${percent}%`
progressBar.setAttribute('aria-valuenow', percent)
progressBar.textContent = `${percent}%`
statusMessage.textContent = message
statusBlock.className = `alert ${barClass} align-items-center`
if (percent < 100) {
spinner.style.display = 'inline-block'
} else {
spinner.style.display = 'none'
}
}
function showProgressIndicators() {
const progressContainer = document.getElementById('progress-container')
const statusBlock = document.getElementById('status-block')
const spinner = document.getElementById('spinner')
progressContainer.style.display = 'block'
statusBlock.style.display = 'flex'
spinner.style.display = 'inline-block'
}
function hideProgressIndicators() {
const progressContainer = document.getElementById('progress-container')
const statusBlock = document.getElementById('status-block')
const spinner = document.getElementById('spinner')
progressContainer.style.display = 'none'
statusBlock.style.display = 'none'
spinner.style.display = 'none'
resetProgress()
}
function resetProgress() {
const progressBar = document.getElementById('progress-bar')
const statusMessage = document.getElementById('status-message')
progressBar.style.width = '0%'
progressBar.setAttribute('aria-valuenow', 0)
progressBar.textContent = '0%'
progressBar.classList.remove('bg-success', 'bg-danger')
progressBar.classList.add('bg-info')
statusMessage.textContent = ''
}
// Process content stream and count substrings
async function processContentStream(streamRef, pdfDoc, substringCounter, patternBytes, desiredLength) {
const contentStream = pdfDoc.context.lookup(streamRef)
if (contentStream instanceof PDFStream) {
let contentBytes = contentStream.contents
const filters = contentStream.dict.get(PDFName.of('Filter'))
let isCompressed = false
if (filters) {
isCompressed = true
if (filters instanceof PDFName && filters.asString() === '/FlateDecode') {
try {
if (contentBytes && contentBytes.length > 0) {
contentBytes = inflate(contentBytes)
} else {
console.warn('contentBytes is undefined or empty, skipping inflation.')
return
}
} catch (e) {
console.error('Error inflating contentBytes:', e)
return
}
} else if (filters instanceof PDFArray && filters.asArray().some(filter => filter.asString() === '/FlateDecode')) {
try {
if (contentBytes && contentBytes.length > 0) {
contentBytes = inflate(contentBytes)
} else {
console.warn('contentBytes is undefined or empty, skipping inflation.')
return
}
} catch (e) {
console.error('Error inflating contentBytes:', e)
return
}
} else {
alert(`Unsupported compression method: ${filters instanceof PDFName ? filters.asString() : filters.asArray().map(f => f.asString()).join(', ')}`)
return
}
}
if (!contentBytes || contentBytes.length === 0) {
console.warn('contentBytes is undefined or empty, skipping.')
return
}
const positions = findPatternPositions(contentBytes, patternBytes)
for (const position of positions) {
const substringBytes = contentBytes.slice(position, position + desiredLength)
const substringHex = uint8ArrayToHexString(substringBytes)
const count = substringCounter.get(substringHex) || 0
substringCounter.set(substringHex, count + 1)
}
} else if (contentStream instanceof PDFArray) {
for (const subStreamRef of contentStream.asArray()) {
await processContentStream(subStreamRef, pdfDoc, substringCounter, patternBytes, desiredLength)
}
} else {
console.error('contentStream is not an instance of PDFStream or PDFArray', contentStream)
}
}
// Find pattern positions in byte array
function findPatternPositions(contentBytes, patternBytes) {
const positions = []
const len = contentBytes.length
const patternLen = patternBytes.length
for (let i = 0; i <= len - patternLen; i++) {
let match = true
for (let j = 0; j < patternLen; j++) {
if (contentBytes[i + j] !== patternBytes[j]) {
match = false
break
}
}
if (match) {
positions.push(i)
i += patternLen - 1
}
}
return positions
}
// Convert Uint8Array to hexadecimal string
function uint8ArrayToHexString(uint8Array) {
return Array.from(uint8Array).map(b => b.toString(16).padStart(2, '0')).join('')
}
// Convert hexadecimal string to Uint8Array
function hexStringToUint8Array(hexString) {
const result = []
for (let i = 0; i < hexString.length; i += 2) {
result.push(parseInt(hexString.substr(i, 2), 16))
}
return new Uint8Array(result)
}
// Convert hexadecimal string to ASCII string (for log output)
function hexToAscii(hexString) {
const hexes = hexString.match(/.{1,2}/g) || []
return hexes.map(hex => String.fromCharCode(parseInt(hex, 16))).join('')
}
// Remove specified byte sequence from byte array
function removeByteSequence(contentBytes, sequenceBytes) {
const contentLength = contentBytes.length
const sequenceLength = sequenceBytes.length
let result = []
let i = 0
while (i <= contentLength - sequenceLength) {
let match = true
for (let j = 0; j < sequenceLength; j++) {
if (contentBytes[i + j] !== sequenceBytes[j]) {
match = false
break
}
}
if (match) {
i += sequenceLength
} else {
result.push(contentBytes[i])
i++
}
}
while (i < contentLength) {
result.push(contentBytes[i])
i++
}
return new Uint8Array(result)
}
// Replace substring in content stream
async function replaceInContentStream(streamRef, pdfDoc, mostCommonSubstringBytes) {
const contentStream = pdfDoc.context.lookup(streamRef)
if (contentStream instanceof PDFStream) {
let contentBytes = contentStream.contents
const filters = contentStream.dict.get(PDFName.of('Filter'))
let isCompressed = false
if (filters) {
isCompressed = true
if (filters instanceof PDFName && filters.asString() === '/FlateDecode') {
try {
if (contentBytes && contentBytes.length > 0) {
contentBytes = inflate(contentBytes)
} else {
console.warn('contentBytes is undefined or empty, skipping inflation.')
return
}
} catch (e) {
console.error('Error inflating contentBytes:', e)
return
}
} else if (filters instanceof PDFArray && filters.asArray().some(filter => filter.asString() === '/FlateDecode')) {
try {
if (contentBytes && contentBytes.length > 0) {
contentBytes = inflate(contentBytes)
} else {
console.warn('contentBytes is undefined or empty, skipping inflation.')
return
}
} catch (e) {
console.error('Error inflating contentBytes:', e)
return
}
} else {
alert(`Unsupported compression method: ${filters instanceof PDFName ? filters.asString() : filters.asArray().map(f => f.asString()).join(', ')}`)
return
}
}
if (!contentBytes || contentBytes.length === 0) {
console.warn('contentBytes is undefined or empty, skipping.')
return
}
contentBytes = removeByteSequence(contentBytes, mostCommonSubstringBytes)
if (isCompressed) {
try {
if (contentBytes && contentBytes.length > 0) {
contentBytes = deflate(contentBytes)
} else {
console.warn('contentBytes is undefined or empty, skipping deflation.')
return
}
} catch (e) {
console.error('Error deflating contentBytes:', e)
return
}
}
contentStream.contents = contentBytes
contentStream.dict.set(PDFName.of('Length'), PDFNumber.of(contentBytes.length))
} else if (contentStream instanceof PDFArray) {
for (const subStreamRef of contentStream.asArray()) {
await replaceInContentStream(subStreamRef, pdfDoc, mostCommonSubstringBytes)
}
} else {
console.error('contentStream is not an instance of PDFStream or PDFArray', contentStream)
}
}
// Initialize the application
renderPage()