Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Doxygen is Slow

Doxygen takes about 12 hours to run on our code base. This is primarily because there is a lot of code to process (~1.5M lines). However, it's very quickly approaching the point at which we can't do nightly documentation updates because they take too long. We've already had to reduce the graph depth to get it down to 12 hours.

I've tried the standard approaches, but I really do need high quality output, and this includes graphs and SEARCH_INCLUDES. I have a fairly good machine to run Doxygen on, but Doxygen doesn't take advantage of its many cores. (It pegs a single CPU on the build server, but is only 4% of the available system.) Having a multithreaded Dot build is handy, though that's only half or so of the build time.

Are there any techniques I can use to run doxygen via multiple processes and manually shard the task? I've seen some talk about creating tag files, but I don't understand enough about them to know if they'd do what I want. What I'm looking for is something like:

doxygen Doxyfile-folder1 doxygen Doxyfile-folder2 doxygen Doxyfile-folder3 doxygen Doxyfile-folder4 doxygen-join output/folder1/html output/folder2/html output/folder3/html output/folder4/html 

Of course, I'm just making stuff up, but that's an idea of what I'm looking for. Also, I'd use a lot more than 4 processes.

like image 618
alficles Avatar asked Nov 23 '11 18:11

alficles


People also ask

How long does doxygen take?

Doxygen takes about 12 hours to run on our code base. This is primarily because there is a lot of code to process (~1.5M lines).

When should I take doxygen?

Doxygen (/ˈdɒksidʒən/ DOK-see-jən) is a documentation generator and static analysis tool for software source trees. When used as a documentation generator, Doxygen extracts information from specially-formatted comments within the code.

Do I need doxygen?

As already explained, Doxygen is a tool that helps in writing reference documentation for different programming language such as Java, C, C++, C#, IDL, D etc. updating of the old configuration file, etc.


1 Answers

Tag files are typically the way to go if

  1. you have a number of logically coherent source files (let's call them components) and
  2. you know the dependencies between the components, e.g. component A uses component B and C, and component B only uses C, and
  3. It is ok (or even preferred) that the index files (e.g. the list of a files/classes/functions) are limited to a single component.
  4. you are interested in HTML output.

A tag file is basically just a structured list of symbols with links to the location in the documentation. Tag files allow doxygen to make links from the documentation of one component to that of another.

It is a 2 step process:

  1. First you run doxygen on each component to generate the tag file for that component. You can do this by disabling all output and use GENERATE_TAGFILE. So for component A, a Doxyfile.tagonly would have the following settings:

    GENERATE_HTML         = NO GENERATE_LATEX        = NO GENERATE_RTF          = NO GENERATE_MAN          = NO GENERATE_TAGFILE      = compA.tag 

    You'll notice that running doxygen this way is very fast.

  2. The second step is to generate the actual documentation. For component A you need a Doxyfile which includes the tag files of the components B and C since we determined A depends on these components.

    GENERATE_HTML         = YES GENERATE_LATEX        = NO GENERATE_RTF          = NO GENERATE_MAN          = NO TAGFILES              = path/to/compB/compB.tag=path/to/compB/htmldocs \                         path/to/compC/compC.tag=path/to/compC/htmldocs 

Using this approach I have been able to generate documentation for 20M+ lines of code distributed over 1500+ components in under 3 hours on a standard desktop PC (Core i5 with 8Gb RAM and Linux 64bit), including source browsing, full call graphs, and UML-style diagrams of all data structures. Note that the first step only took 10 minutes.

To accomplish this I made a script to generate the Doxyfile's for each component based on the list of components and their direct dependencies. In the first step I run 8 instances of doxygen in parallel (using http://www.gnu.org/s/parallel/). In the second step I run 4 instances of doxygen in parallel.

See http://www.doxygen.nl/manual/external.html for more info about tag files.

like image 143
doxygen Avatar answered Oct 13 '22 01:10

doxygen