2019-07-21

20: Optimally Use LibreOffice as a Files Converter (a C# Implementation)

<The previous article in this series | The table of contents of this series | The next article in this series>

Between OpenDocument/Microsoft Office/etc. formats and to the PDF/CSV format, fast and versatile with the document possibly tweaked. A workable sample

Topics


About: UNO (Universal Network Objects)
About: LibreOffice
About: Apache OpenOffice
About: C#

The table of contents of this article


Starting Context



Target Context


  • The reader will understand how to implement file conversion directly using the UNO API in C#, and will have a workable sample.

Orientation


There is an article on how to build any sample program of this series.

There is an article on how to create a LibreOffice or Apache OpenOffice daemon.

There is an article on how to create a LibreOffice or Apache OpenOffice Microsoft Windows service.

There is an article on encrypting an Office file with any opening password with UNO.

There is an article on setting any editing password into an OpenDocument file with UNO.

There is an article on setting any editing password into a binary Word/Excel file with UNO.

There is an article on setting any editing password into an Office Open XML file with UNO.

There is an article on setting the size of any page of any word processor document with UNO.

There is an article on setting the size of any page of any spread sheets document with UNO.

There is an article on setting any page property of any word processor document with UNO.

There is an article on setting any page property of any spread sheets document with UNO.

There is an article on exporting any office document into a PDF file as per full specifications with UNO.

There is an article on writing any spread sheet to a CSV file in any format with UNO.

There is an article on writing all the spread sheets of any spread sheets document to CSV files with UNO.


Main Body

Stage Direction
Here are Special-Student-7, Tony (a C# programmer), and Abby (a C# programmer) in front of a computer.


0: A Note: 'soffice --convert-to' Will Be Never Used


Special-Student-7
While it is clearly stated that the concept part of this article is supposed to have been read, I can guess that a goodly portion of the readers have not and will not read it, and considering the fact that many people are fixated on using 'soffice --convert-to', I feel it appropriate to remind you again that 'soffice --convert-to' will be never used here.

The reason is elaborated in the concept part.


1: An Implementation of the File Conversion Logic with the UNO API


Special-Student-7
Supposing that you already know what you need to know from the concept part of this article, let us immediately see a C# implementation of the file conversion logic with the UNO API, where 'l_underlyingRemoteUnoObjectsContextInXComponentContext' is a UNO objects context to the LibreOffice or Apache OpenOffice instance, 'l_originalFileUrl' is the URL of the original file, 'l_targetFileUrl' is the URL of the target file, and 'l_fileStoringFilterName' is the file-storing-filter name.

@C# Source Code
namespace theBiasPlanet {
	namespace unoUtilitiesTests {
		namespace fileConvertingTest1 {
			using System;
			using System.Text.RegularExpressions;
			using unoidl.com.sun.star.beans;
			using unoidl.com.sun.star.frame;
			using unoidl.com.sun.star.uno;
			using unoidl.com.sun.star.util;
			~
			
			public class Test1Test {
				private static readonly Regex c_urlRegularExpression;
				
				static Test1Test () {
					c_urlRegularExpression = new Regex ("(.*:)(.*)");
				}
				
				// the 'com.sun.star.util.URLTransformer' UNO service can be used if you want to, as I do this manually.
				private static unoidl.com.sun.star.util.URL getUrlInURL (String a_url) {
					unoidl.com.sun.star.util.URL l_urlInURL = new unoidl.com.sun.star.util.URL ();
					l_urlInURL.Complete = a_url;
					l_urlInURL.Main = l_urlInURL.Complete;
					MatchCollection l_regularExpressionMatches = c_urlRegularExpression.Matches (l_urlInURL.Complete);
					foreach (Match l_regularExpressionMatch in l_regularExpressionMatches) {
						l_urlInURL.Protocol = l_regularExpressionMatch.Groups [1].Value;
						l_urlInURL.User = "";
						l_urlInURL.Password = "";
						l_urlInURL.Server = "";
						l_urlInURL.Port = 0;
						l_urlInURL.Path = l_regularExpressionMatch.Groups [2].Value;
						l_urlInURL.Name = "";
						l_urlInURL.Arguments = "";
						l_urlInURL.Mark = "";
						break;
					}
					return l_urlInURL;
				}
				
				public void main (String [] a_argumentsArray) {
					~
							String l_originalFileUrl = a_argumentsArray [2];
							String l_targetFileUrl = a_argumentsArray [3];
							String l_fileStoringFilterName = a_argumentsArray [4];
							
							XDispatchProvider l_underlyingUnoDesktopInXDispatchProvider = (XDispatchProvider) (l_underlyingRemoteUnoObjectsContextInXComponentContext.getValueByName ("/singletons/com.sun.star.frame.theDesktop").Value);
							XSynchronousDispatch l_underlyingFileOpeningUnoDispatcherInXSynchronousDispatch = (XSynchronousDispatch) (l_underlyingUnoDesktopInXDispatchProvider.queryDispatch (getUrlInURL ("file:///"), "_blank", -1));
							
							unoidl.com.sun.star.util.URL l_originalFileUrlInURL = getUrlInURL (l_originalFileUrl);
							PropertyValue [] l_unoDocumentOpeningPropertiesArray = new PropertyValue [4];
							l_unoDocumentOpeningPropertiesArray [0] = new PropertyValue ("ReadOnly", -1, new uno.Any (true), PropertyState.DIRECT_VALUE);
							l_unoDocumentOpeningPropertiesArray [1] = new PropertyValue ("Hidden", -1, new uno.Any (true), PropertyState.DIRECT_VALUE);
							l_unoDocumentOpeningPropertiesArray [2] = new PropertyValue ("OpenNewView", -1, new uno.Any (true), PropertyState.DIRECT_VALUE);
							l_unoDocumentOpeningPropertiesArray [3] = new PropertyValue ("Silent", -1, new uno.Any (true), PropertyState.DIRECT_VALUE);
							PropertyValue [] l_unoDocumentStoringPropertiesArray = new PropertyValue [2];
							l_unoDocumentStoringPropertiesArray [0] = new PropertyValue ("FilterName", -1, new uno.Any (l_fileStoringFilterName), PropertyState.DIRECT_VALUE);
							l_unoDocumentStoringPropertiesArray [1] = new PropertyValue ("Overwrite", -1, new uno.Any (true), PropertyState.DIRECT_VALUE);
							uno.Any l_underlyingOriginalUnoDocumentInAny = (uno.Any) (l_underlyingFileOpeningUnoDispatcherInXSynchronousDispatch.dispatchWithReturnValue (l_originalFileUrlInURL, l_unoDocumentOpeningPropertiesArray));
							Boolean l_hasSucceeded = false;
							if (l_underlyingOriginalUnoDocumentInAny.hasValue ()) {
								XStorable2 l_underlyingOriginalUnoDocumentInXStorable2 = (XStorable2) (l_underlyingOriginalUnoDocumentInAny.Value);
								try {
									l_underlyingOriginalUnoDocumentInXStorable2.storeToURL (l_targetFileUrl, l_unoDocumentStoringPropertiesArray);
									l_hasSucceeded = true;
								}
								catch (System.Exception l_exception) {
									throw l_exception;
								}
								( (XCloseable) l_underlyingOriginalUnoDocumentInXStorable2).close (false); 
							}
							else {
								Console.Out.WriteLine (String.Format ("### The original file: '{0:s}' cannot be opened.", l_originalFileUrl));
								Console.Out.Flush ();
							}
					~
				}
			}
		}
	}
}


Tony
. . . Hmm, simple enough; all I have to change is the settings of the URLs and the filter name, right?

Special-Student-7
For the minimum requirements, yes, supposing that you have already gotten the UNO objects context of course (if not, you can do so according to an article (for just or for a scrupulous way)).

Tony
"For the minimum requirements" sounds a trick; you allure us to buy the main body rather cheap, and then begin to sell expensive options.

Special-Student-7
I am not selling anything, am I, sir?

Tony
We'll see!

Special-Student-7
Anyway, the code is doing exactly what I said in a section of the concept part of this article: open the original file, store the opened document in the target format, and close the opened document.

As you can probably guess, 'dispatchWithReturnValue' is opening the original file, 'storeToURL' is storing the opened document, and 'close' is closing the opened document.

'l_underlyingFileOpeningUnoDispatcherInXSynchronousDispatch' is a UNO dispatcher and does not need to be gotten per file.

Tony
What filter names can I use?

Special-Student-7
It is cited in the concept part of this article.


2: On Properties for Opening or Storing


Special-Student-7
As is seen in the above code, you can set some properties for opening the file. In fact, these are the specifications of the possible properties, where the datum types are C# types (instead of UNO types). Note that each datum should really be wrapped in a 'uno.Any' instance.

The nameThe datum typeThe description
ReadOnlyBooleanwhether the opened document cannot be written back into the original file: 'true'-> cannot, 'false'-> can
HiddenBooleanwhether the opened document is hidden: 'true'-> hidden, 'false'-> not hidden
OpenNewViewBooleanwhether the document is opened in a new view: 'true'-> in a new view, 'false'-> not in a new view
SilentBooleanwhether the document is opened silently: 'true'-> silently, 'false'-> not silently
PasswordStringthe opening password

A property you may be interested with is the opening password.

Abby
So, I can convert a file that is protected by the opening password.

Special-Student-7
Yes, madam.

Please note that UNO 'string' does not officially accept 'null', so, if there is no opening password, the property itself should not be specified, although 'null' might happen to be accepted.

And please note that 'ReadOnly' does not mean that the opened document cannot be modified, but means that the document cannot be written back into the original file, so, it does not need to be 'false' in order for the document to be tweaked and written into a new file.

You can set some properties also for storing the document. In fact, these are the specifications of the possible properties, where the datum types are C# types (instead of UNO types). Note that each datum should really be wrapped in a 'uno.Any' instance.

The nameThe datum typeThe description
FilterNameStringthe filter name
FilterDatadepends on the casethe filter-specific data for some filters: not always but often an array of 'unoidl.com.sun.star.beans.PropertyValue'
FilterOptionsStringthe filter-specific data for some filters
AsTemplateBooleanwhether the document is stored as a template: 'true'-> as a template, 'false'-> not as a template
AuthorStringthe author name
DocumentTitleStringthe document title
EncryptionDataunoidl.com.sun.star.beans.NamedValue []the encryption data for some filters
PasswordStringthe opening password for some filters
CharacterSetStringthe characters set
VersionInt16the version number
CommentStringthe version description
OverwriteBooleanwhether the file is overwritten: 'true' -> overwritten, 'false' -> not overwritten
ComponentDatadepends on the casesome filter-specific data: not always but often an array of 'unoidl.com.sun.star.beans.NamedValue'
ModifyPasswordInfodepends on the casethe editing password data for some filters

The opening password is really nothing but encryption data; the reason why there are both of 'EncryptionData' and 'Password' is that some filters use one and some other filters use the other; for details, please refer to another article.

Abby
Well, there seems to be only one editing password property, but your description says "for some filters"; how about other filters?

Special-Student-7
The situation concerning setting an editing password is rather complicated: the editing password has to be hashed by a format-specific algorithm and the hash has to be set into a format-specific location, which is not necessarily inside the file-storing properties. . . . The details are explained in an article for OpenDocument files, for Microsoft binary files, and for Office Open XML files.

Abby
Well . . .

Tony
What exactly can be set into those "filter-specific" properties like 'FilterData' and 'FilterOptions'?

Special-Student-7
That cannot be explained in this article for the general logic of file conversion: please refer to some other articles like for PDF files and for CSV files.


3: On Tweaking the Document


Special-Student-7
Of course, the target file may not be satisfactorily controlled only via the file-storing properties.

Then, you can tweak the opened document.

Tony
. . . How?

Special-Student-7
In the above code, 'l_underlyingOriginalUnoDocumentInXStorable2' represents the UNO object of the opened document, via which you can tweak the opened document.

Tony
. . . How?

Special-Student-7
That is of course document-specific and requirement-specific, and please refer to some other articles like for tweaking page properties of word processor documents (here and here) and for tweaking page properties of spread sheets documents (here and here).


4: Here Is a Workable Sample


Special-Student-7
A workable sample can be downloaded from here.

The sample program takes as an argument the path of a JSON file (in fact, it can take multiple JSON file paths) that contains file conversion orders, and fulfills the orders.

The specifications of the JSON file are like these.

@JSON Source Code
[
	{Disabled: %whether this record is disabled or not -> 'true' or 'false'%, 
	OriginalFileUrl: %the original file URL, in which any operating system environment variable can be used like '%{HOME}'%, 
	TargetFileUrl: %the target file URL, in which any operating system environment variable can be used like '%{HOME}'%, 
	FileStoringFilterName: %the file-storing-filter name%, 
	OpeningPassword: %the opening password for the original file%, 
	Title: %the target file title%, 
	EncryptingPassword: %the encrypting password for the target file%, 
	EditingPassword: %the editing password for the target file%, 
	CertificateIssuerName: %the certificate issuer name for signing the target file%, 
	CertificatePassword: %the certificate password for signing the target file%, 
	SignatureTimeStampAuthorityUrl: %the time stamp authority URL for signing the target file%, 
	DocumentTailorNames: [%a document tailor name%, . . .], 
	AllSpreadSheetsAreExported: %whether all the spread sheets are exported or not: 'true' or 'false'%, 
	TargetFileNamingRule: %the naming rule for target CSV files: '0'-> each CSV file is named with the sheet index, '1'-> each CSV file is named with the sheet name%, 
	CsvItemsDelimiterCharacterCode: %the character code of the CSV items delimiter: '44'-> ',' for example%, 
	CsvTextItemQuotationCharacterCode: %the character code of the CSV text item quotation: '34'-> '"' for example%, 
	CsvCharactersEncodingCode: %the CSV characters encoding code: '76' -> UTF-8, '65535' -> UCS-2, '65534' -> UCS-4, '11' -> US-ASCII, '69' -> EUC_JP, '64' -> SHIFT_JIS%, 
	CsvAllTextItemsAreQuoted: %whether all the CSV text items are quoted or not: 'true' or 'false'%, 
	CsvContentsAreExportedAsShown: %whether the CSV contents are exported as shown on the sheets: 'true' or 'false'%, 
	CsvFormulaeThemselvesAreExported: %whether the sheet cell formulae themselves are exported into the CSV files: 'true' or 'false'%, 
	HiddenSpreadSheetsAreExported: %whether also the hidden spread sheets are exported%}, 
	. . .
	{. . .}
]

Abby
"tailor"?

Special-Student-7
Any tailor is an object that is tasked with tweaking the document in a specific way.

Abby
Where did that tailor come from?

Special-Student-7
I have prepared a few sample tailors, but you will have to create one yourself if you have a specific need.

Abby
Well, am I supposed to specify the class name?

Special-Student-7
No, the object name: there may be some multiple tailors from a class, constructed with different parameters.

Tony
My orders are as Web requests, so, I have to modify the sample such that it will accept Web requests . . .

Special-Student-7
If you construct an in-memory JSON record from each Web request, you can pass the JSON record into the 'executeConversionOrder' method.

Tony
What is that . . . something method?

Special-Student-7
The sample has such a method.

I have made the sample to accept multiple orders files, which are processed concurrently, in order to demonstrate that conversions can be done concurrently in this optimal way.


4-1: Building the Sample Project


Special-Student-7
How to build the sample project is explained in an article.

Especially, note that the projects contain also implementations in some other programming languages, which you, a C# programmer, will probably not need; how to ignore such unnecessary code is explained there.

The main project is 'filesConverter'.


4-2: Executing the Sample Program


Special-Student-7
Before we execute the sample program, we have to have started a LibreOffice or Apache OpenOffice instance so that it accepts connections from clients, as we have learned how in a previous article.

Stage Direction
Special-Student-7 starts a LibreOffice instance with the port number 2002.

Special-Student-7
We need a conversion orders JSON file (in the specifications cited above), and we will use the sample JSON file included in the archive file as 'filesConverter/data/FileConversionOrders.json', but at least the file URLs inside it have to be adjusted.

We can execute the sample program like this with the current directory positioned at the sample project directory.

@cmd Source Code
gradle i_executeCsharpExecutableFileTask -Pi_commandLineArguments="\"socket,host=localhost,port=2002,tcpNoDelay=1;urp;StarOffice.ComponentContext\" \"data/FileConversionOrders.json\""

Stage Direction
Special-Student-7 executes the command in the terminal with the current directory positioned at the sample project directory.

Special-Student-7
We can just change the host name from 'localhost' if the LibreOffice or Apache OpenOffice instance is in a remote host, if some firewalls do not block the communication, of course.

And you can specify multiple JSON files like this.

@cmd Source Code
gradle i_executeCsharpExecutableFileTask -Pi_commandLineArguments="\"socket,host=localhost,port=2002,tcpNoDelay=1;urp;StarOffice.ComponentContext\" \"data/FileConversionOrders.json\" \"data/FileConversionOrders2.json\""


4-3: Understanding the Sample Code


Special-Student-7
Note that the sample code uses my utility projects ('coreUtilitiesToBeDisclosed' and 'unoUtilitiesToBeDisclosed'), which include code that is not directly related to the work of file conversion; please understand that it is not so easy to excise only irrelevant parts of the utility projects, because the code is intertwined.

The file conversion logic is in the 'convertFile' method (except for converting to CSV files) or the 'convertSpreadSheetsDocumentFileToCsvFiles' method (for converting to CSV files) of the 'theBiasPlanet.unoUtilities.filesConverting.FilesConverter' class, which (the method) takes the document tailors and the file-storing properties, among some other things.

In order to install a new document tailor, you have to have the class as a 'theBiasPlanet.unoUtilities.documentsHandling.UnoDocumentTailor' child and register an instance of the class with its unique name into the 'l_unoDocumentTailorNameToUnoDocumentTailorMap' variable of the 'theBiasPlanet.filesConverter.programs.FilesConverterConsoleProgram' class.


References


<The previous article in this series | The table of contents of this series | The next article in this series>