I believe I found out what's causing my 'arbitrary' errors (they only happen sometimes). So here's an update and I welcome any resolutions anyone may have:
I use pdf2text to convert some (work) files to an xls worksheet
everything was going fine until I wrote in an 'opportunity' to edit the XLS file before continuing on with my script.
I
use Spreadsheet::WriteExcel; to create the initial XLS (works fine)
I then use
system('C:/Progra~1/OpenOf~1/Program/Scalc "'.$CurrentDirectory.'/Resources/'.$Filename.'"');(which also works fine) to start OpenOffice for the 'editing' option
then directly after that I (using)
use Spreadsheet::ParseExcel::SaveParser;start reading the file with the line:
$XlsWorkbook = Spreadsheet::ParseExcel::SaveParser->new()->Parse($CurrentDirectory.'/Resources/'.$Filename);
to 'reload' the file to update my 'optional' changes...
I am under the impression (because it only happens 'sometimes') that when I close the file in OpenOffice, my script does not 'wait' long enough for the file to completely close in OpenOffice... thus I end up trying to read cells that haven't been defined yet because OpenOffice hasn't finished closing the file.
I am (of course) going to play with 'sleep' to see if I can slow things down in my script, but, I read in several places that 'sleep' is kinda dangerous in scripts.
Here's the question: is there a way to tell when OpenOffice has actually completed the close operation before trying to read the file again ?
I have looked around and found that the 'system' command I use can be modified for different actions and found this:
system(`nmon -F file.out -s3 -c1`);
I'm not fluent with the 'system' command and I can't seem to find much information on 'system' command options on the net, should i attempt to play around with this suggestion to see if I can make it work ? -or- is there a module somewhere that I can use to 'watch' OpenOffice' and ensure the XLS file has completely finished/closed/saved before trying to read in the 'changes'?
I REALLY hope I explained things well enough here. I'll be holding a tin can out for anyone's two-bits...
I tried re-inventing the wheel again, but everytime I push it, it still falls flat on it's side...