2023-10-19 19:46:23 +02:00
import { extractPages } from "./functions/extractPages.js" ;
import { impose } from "./functions/impose.js" ;
import { mergePDFs } from "./functions/mergePDFs.js" ;
import { rotatePages } from "./functions/rotatePDF.js" ;
import { splitPDF } from "./functions/splitPDF.js" ;
import { organizeWaitOperations } from "./public/organizeWaitOperations.js" ;
2023-10-19 21:23:58 +02:00
export async function * traverseOperations ( operations , input ) {
2023-10-19 19:46:23 +02:00
const waitOperations = organizeWaitOperations ( operations ) ;
2023-10-20 02:27:16 +02:00
let results = [ ] ;
2023-10-19 21:23:58 +02:00
for await ( const value of nextOperation ( operations , input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
return results ;
2023-10-19 21:23:58 +02:00
// TODO: Pult all nextOperation() in the for await, like for "extract"
async function * nextOperation ( operations , input ) {
2023-10-20 02:51:58 +02:00
console . log ( Array . isArray ( operations ) && operations . length == 0 ) ;
2023-10-19 19:46:23 +02:00
if ( Array . isArray ( operations ) && operations . length == 0 ) { // isEmpty
2023-10-20 02:27:16 +02:00
if ( Array . isArray ( input ) ) {
console . log ( "operation done: " + input [ 0 ] . fileName + "+" ) ;
results = results . concat ( input ) ;
return ;
}
else {
console . log ( "operation done: " + input . fileName ) ;
results . push ( input ) ;
return ;
}
2023-10-19 19:46:23 +02:00
}
for ( let i = 0 ; i < operations . length ; i ++ ) {
2023-10-19 21:23:58 +02:00
for await ( const value of computeOperation ( operations [ i ] , structuredClone ( input ) ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
}
2023-10-19 21:23:58 +02:00
async function * computeOperation ( operation , input ) {
2023-10-20 02:51:58 +02:00
yield "Starting: " + operation . type ;
2023-10-19 19:46:23 +02:00
switch ( operation . type ) {
case "done" :
console . log ( "Done operation will get called if all waits are done. Skipping for now." )
break ;
case "wait" :
const waitOperation = waitOperations [ operation . values . id ] ;
2023-10-20 02:10:03 +02:00
if ( Array . isArray ( input ) ) {
// waitOperation.input.concat(input); // May have unexpected concequences. Better throw an error for now.
throw new Error ( "Wait recieved an array as input. I don't know if this can happen, but if it does happen, I will investigate. Please share your workflow (:" ) ;
}
else {
waitOperation . input . push ( input ) ;
}
// Wait for all elements of previous split to finish
if ( input . splitCount && input . splitCount > 0 ) {
input . splitCount -- ;
return ;
}
2023-10-19 19:46:23 +02:00
waitOperation . waitCount -- ;
if ( waitOperation . waitCount == 0 ) {
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( waitOperation . doneOperation . operations , waitOperation . input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
break ;
case "removeObjects" :
console . warn ( "RemoveObjects not implemented yet." )
if ( Array . isArray ( input ) ) {
for ( let i = 0 ; i < input . length ; i ++ ) {
// TODO: modfiy input
input [ i ] . fileName += "_removedObjects" ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input [ i ] ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
}
else {
// TODO: modfiy input
input . fileName += "_removedObjects" ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
break ;
case "extract" :
if ( Array . isArray ( input ) ) {
for ( let i = 0 ; i < input . length ; i ++ ) {
input [ i ] . fileName += "_extractedPages" ;
input [ i ] . buffer = await extractPages ( input [ i ] . buffer , operation . values [ "pagesToExtractArray" ] ) ;
2023-10-19 21:23:58 +02:00
for await ( const value of nextOperation ( operation . operations , input [ i ] ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
}
else {
input . fileName += "_extractedPages" ;
input . buffer = await extractPages ( input . buffer , operation . values [ "pagesToExtractArray" ] ) ;
2023-10-19 21:23:58 +02:00
for await ( const value of nextOperation ( operation . operations , input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
break ;
case "split" :
2023-10-20 02:27:16 +02:00
// TODO: When a split goes into another split function and then into a wait function it might break the done condition, as it will count multiple times.
2023-10-19 19:46:23 +02:00
if ( Array . isArray ( input ) ) {
for ( let i = 0 ; i < input . length ; i ++ ) {
2023-10-20 02:27:16 +02:00
const splitResult = await splitPDF ( input [ i ] . buffer , operation . values [ "pagesToSplitAfterArray" ] ) ;
2023-10-19 19:46:23 +02:00
2023-10-20 02:27:16 +02:00
const splits = [ ] ;
for ( let j = 0 ; j < splitResult . length ; j ++ ) {
splits . push ( {
originalFileName : input [ i ] . originalFileName ,
fileName : input [ i ] . fileName + "_split" + j ,
buffer : splitResult [ j ] ,
splitCount : splitResult . length
} )
}
for await ( const value of nextOperation ( operation . operations , splits ) ) {
yield value ;
2023-10-19 19:46:23 +02:00
}
}
}
else {
2023-10-20 02:27:16 +02:00
const splitResult = await splitPDF ( input . buffer , operation . values [ "pagesToSplitAfterArray" ] ) ;
2023-10-19 19:46:23 +02:00
2023-10-20 02:27:16 +02:00
const splits = [ ] ;
for ( let j = 0 ; j < splitResult . length ; j ++ ) {
splits . push ( {
originalFileName : input . originalFileName ,
fileName : input . fileName + "_split" + j ,
buffer : splitResult [ j ] ,
splitCount : splitResult . length
} )
}
for await ( const value of nextOperation ( operation . operations , splits ) ) {
yield value ;
2023-10-19 19:46:23 +02:00
}
}
break ;
case "fillField" :
console . warn ( "FillField not implemented yet." )
if ( Array . isArray ( input ) ) {
for ( let i = 0 ; i < input . length ; i ++ ) {
// TODO: modfiy input
input [ i ] . fileName += "_filledField" ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input [ i ] ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
}
else {
// TODO: modfiy input
input . fileName += "_filledField" ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
break ;
case "extractImages" :
console . warn ( "ExtractImages not implemented yet." )
if ( Array . isArray ( input ) ) {
for ( let i = 0 ; i < input . length ; i ++ ) {
// TODO: modfiy input
input [ i ] . fileName += "_extractedImages" ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input [ i ] ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
}
else {
// TODO: modfiy input
input . fileName += "_extractedImages" ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
break ;
case "merge" :
if ( Array . isArray ( input ) && input . length > 1 ) {
const inputs = input ;
input = {
originalFileName : inputs . map ( input => input . originalFileName ) . join ( "_and_" ) ,
fileName : inputs . map ( input => input . fileName ) . join ( "_and_" ) + "_merged" ,
buffer : await mergePDFs ( inputs . map ( input => input . buffer ) )
}
}
else {
// Only one input, no need to merge
input . fileName += "_merged" ;
}
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
break ;
case "transform" : {
console . warn ( "Transform not implemented yet." )
if ( Array . isArray ( input ) ) {
for ( let i = 0 ; i < input . length ; i ++ ) {
// TODO: modfiy input
input [ i ] . fileName += "_transformed" ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input [ i ] ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
}
else {
// TODO: modfiy input
input . fileName += "_transformed" ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
break ;
}
case "extract" :
if ( Array . isArray ( input ) ) {
for ( let i = 0 ; i < input . length ; i ++ ) {
input [ i ] . fileName += "_extractedPages" ;
input [ i ] . buffer = await extractPages ( input [ i ] . buffer , operation . values [ "pagesToExtractArray" ] ) ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input [ i ] ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
}
else {
input . fileName += "_extractedPages" ;
input . buffer = await extractPages ( input . buffer , operation . values [ "pagesToExtractArray" ] ) ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
break ;
case "rotate" :
if ( Array . isArray ( input ) ) {
for ( let i = 0 ; i < input . length ; i ++ ) {
input [ i ] . fileName += "_turned" ;
input [ i ] . buffer = await rotatePages ( input [ i ] . buffer , operation . values [ "rotation" ] ) ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input [ i ] ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
}
else {
input . fileName += "_turned" ;
input . buffer = await rotatePages ( input . buffer , operation . values [ "rotation" ] ) ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
break ;
case "impose" :
if ( Array . isArray ( input ) ) {
for ( let i = 0 ; i < input . length ; i ++ ) {
input [ i ] . fileName += "_imposed" ;
input [ i ] . buffer = await impose ( input [ i ] . buffer , operation . values [ "nup" ] , operation . values [ "format" ] ) ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input [ i ] ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
}
else {
input . fileName += "_imposed" ;
input . buffer = await impose ( input . buffer , operation . values [ "nup" ] , operation . values [ "format" ] ) ;
2023-10-20 02:51:58 +02:00
for await ( const value of nextOperation ( operation . operations , input ) ) {
yield value ;
}
2023-10-19 19:46:23 +02:00
}
break ;
default :
console . log ( "operation type unknown: " , operation . type ) ;
break ;
}
}
}