Giter VIP home page Giter VIP logo

Comments (5)

gofal avatar gofal commented on May 20, 2024 2

of course this line of code

            //Supposedly, only one instance of Libre Office can be run simultaneously
            while (pname.Length > 0)
            {
                Thread.Sleep(5000);
            }

is a bug. After waiting for 5 seconds the array pname still has the same content, even if meanwhile the process of soffice.exe has exitet. you have to requery again every 5 seconds:

     //Supposedly, only one instance of Libre Office can be run simultaneously
     while (pname.Length > 0)
     {
        Thread.Sleep(5000);
        pname = Process.GetProcessesByName("soffice");
     }

from net-core-docx-html-to-pdf-converter.

dylanvdmerwe avatar dylanvdmerwe commented on May 20, 2024

A rudimentary, but works, way to handle this would be to lock the Convert method in ConvertWithLibreOffice.

   private static readonly object processLock = new object();

        public static void Convert(string inputFile, string outputFile, string libreOfficePath)
        {
            lock (processLock)
            {
                List<string> commandArgs = new List<string>();
                string convertedFile = "";

                if (libreOfficePath == "")
                {
                    libreOfficePath = GetLibreOfficePath();
                }

and remove this code:

                //Supposedly, only one instance of Libre Office can be run simultaneously
                while (pname.Length > 0)
                {
                    Thread.Sleep(5000);
                }

from net-core-docx-html-to-pdf-converter.

dylanvdmerwe avatar dylanvdmerwe commented on May 20, 2024

Note that this will fix it for one process. But if you have multiple processes using this library (i.e. on a server) and both need to use libreoffice to generate files, you will have errors as it does not seem multiple libreoffices can be started at the same time.

from net-core-docx-html-to-pdf-converter.

dylanvdmerwe avatar dylanvdmerwe commented on May 20, 2024

Are we using the right LibreOffice params? Surely there's a way to run multiple conversions (LibreOffice processes) at the same time?

from net-core-docx-html-to-pdf-converter.

martinweihrauch avatar martinweihrauch commented on May 20, 2024

Dang - that is a very valid point, which we have not yet considered!!
If you have any time to check this out, it would be great. Then you could make a pull request and I could integrate it!!
Best
Martin

from net-core-docx-html-to-pdf-converter.

Related Issues (11)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.