Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Doxygen considered harmful

Doxygen considered harmful

Scheduled Pinned Locked Moved The Lounge
jsoncareerlearning
23 Posts 8 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Y YvesDaoust

    For the Nth time in my developer's career, I came across an API which was documented using Doxygen. (For the sake of mercy, I won't name it.) As usual, all you are entitled to is a very terse introductory page, accompanied by the bloody, endless, uninformative Class Reference. As a bonus, you also get that wonderfully useless File List. This way to document software drives me mad. It forces you to scan the whole API before you know if the functionality suits your needs, and gives you no hint on the philosophy of the stuff. This turns the discovery of otherwise valuable products into a painful guesswork and causes the learning curve to raise vertically. I put most of the blame on Doxygen, because it gives programmers a false feeling that they did document their API, and that they did it in a "lush" way. I put the blame on Doxygen because of the poor presentation style it spreads and legitimizes, which favors form over content.

    L Offline
    L Offline
    Lost User
    wrote on last edited by
    #7

    YvesDaoust wrote:

    This way to document software drives me mad. It forces you to scan the whole API before you know if the functionality suits your needs, and gives you no hint on the philosophy of the stuff.

    It creates a reference, which should be part of the documentation; allows for quick lookups on the API and the syntax, but is indeed a lousy way of communicating it's use.

    Bastard Programmer from Hell :suss: if you can't read my code, try converting it here[^]

    Y 1 Reply Last reply
    0
    • Y YvesDaoust

      My point is: not only. Unless I am myself ignorant, Doxygen provides no place to shape a well-structured document with chapters, sections, titles, narrative comments... and all the samples I have seen were in the same vein. Probably am I naive to hope that a tool used for internal purposes by the maintainers of the code satisfies the users too...

      E Offline
      E Offline
      Espen Harlinn
      wrote on last edited by
      #8

      YvesDaoust wrote:

      Unless I am myself ignorant

      Surprise[^] :-O Look for: \Page \subpage \section \subsection \subsubsection \paragraph \tableofcontents

      Espen Harlinn Principal Architect, Software - Goodtech Projects & Services AS Projects promoting programming in "natural language" are intrinsically doomed to fail. Edsger W.Dijkstra

      M Y 2 Replies Last reply
      0
      • Y YvesDaoust

        For the Nth time in my developer's career, I came across an API which was documented using Doxygen. (For the sake of mercy, I won't name it.) As usual, all you are entitled to is a very terse introductory page, accompanied by the bloody, endless, uninformative Class Reference. As a bonus, you also get that wonderfully useless File List. This way to document software drives me mad. It forces you to scan the whole API before you know if the functionality suits your needs, and gives you no hint on the philosophy of the stuff. This turns the discovery of otherwise valuable products into a painful guesswork and causes the learning curve to raise vertically. I put most of the blame on Doxygen, because it gives programmers a false feeling that they did document their API, and that they did it in a "lush" way. I put the blame on Doxygen because of the poor presentation style it spreads and legitimizes, which favors form over content.

        M Offline
        M Offline
        Mark_Wallace
        wrote on last edited by
        #9

        YvesDaoust wrote:

        bloody, endless, uninformative Class Reference

        Well, that's exactly what it is, so no problem. What it is not is a user guide/programming guide, so don't expect it to be one, but do complain if there isn't one. The general process is that developers refer to a user guide/programming guide until they've had a bit of practice, and then almost exclusively use the class reference. That's just how it works. Without the kick start of a user guide/programming guide, though, a class reference is just a pain in the @rse.

        I wanna be a eunuchs developer! Pass me a bread knife!

        Y B 2 Replies Last reply
        0
        • E Espen Harlinn

          YvesDaoust wrote:

          Unless I am myself ignorant

          Surprise[^] :-O Look for: \Page \subpage \section \subsection \subsubsection \paragraph \tableofcontents

          Espen Harlinn Principal Architect, Software - Goodtech Projects & Services AS Projects promoting programming in "natural language" are intrinsically doomed to fail. Edsger W.Dijkstra

          M Offline
          M Offline
          Mark_Wallace
          wrote on last edited by
          #10

          Ooh, don't go there. There be the monsters of out-of-date and unchecked examples, etc, that result in plumes of smoke coming out of customers' machines and ears. The only place to build a usage-oriented document is in a word processor.

          I wanna be a eunuchs developer! Pass me a bread knife!

          Y E 2 Replies Last reply
          0
          • Y YvesDaoust

            For the Nth time in my developer's career, I came across an API which was documented using Doxygen. (For the sake of mercy, I won't name it.) As usual, all you are entitled to is a very terse introductory page, accompanied by the bloody, endless, uninformative Class Reference. As a bonus, you also get that wonderfully useless File List. This way to document software drives me mad. It forces you to scan the whole API before you know if the functionality suits your needs, and gives you no hint on the philosophy of the stuff. This turns the discovery of otherwise valuable products into a painful guesswork and causes the learning curve to raise vertically. I put most of the blame on Doxygen, because it gives programmers a false feeling that they did document their API, and that they did it in a "lush" way. I put the blame on Doxygen because of the poor presentation style it spreads and legitimizes, which favors form over content.

            P Offline
            P Offline
            peterchen
            wrote on last edited by
            #11

            ... because of all the "Clicking the Print button prints the document" boilerplate. The problem here is that typical programmers aren't used to documentation, don't read documentation, much less their own. Don't blame the tool, blame the tool.

            ORDER BY what user wants

            Y 1 Reply Last reply
            0
            • L Lost User

              YvesDaoust wrote:

              This way to document software drives me mad. It forces you to scan the whole API before you know if the functionality suits your needs, and gives you no hint on the philosophy of the stuff.

              It creates a reference, which should be part of the documentation; allows for quick lookups on the API and the syntax, but is indeed a lousy way of communicating it's use.

              Bastard Programmer from Hell :suss: if you can't read my code, try converting it here[^]

              Y Offline
              Y Offline
              YvesDaoust
              wrote on last edited by
              #12

              Agreed.

              1 Reply Last reply
              0
              • E Espen Harlinn

                YvesDaoust wrote:

                Unless I am myself ignorant

                Surprise[^] :-O Look for: \Page \subpage \section \subsection \subsubsection \paragraph \tableofcontents

                Espen Harlinn Principal Architect, Software - Goodtech Projects & Services AS Projects promoting programming in "natural language" are intrinsically doomed to fail. Edsger W.Dijkstra

                Y Offline
                Y Offline
                YvesDaoust
                wrote on last edited by
                #13

                Yes they are there. They must be there. It is more that I have not see them in use. And, yes, Doxygen is not the true reason.

                E 1 Reply Last reply
                0
                • M Mark_Wallace

                  Ooh, don't go there. There be the monsters of out-of-date and unchecked examples, etc, that result in plumes of smoke coming out of customers' machines and ears. The only place to build a usage-oriented document is in a word processor.

                  I wanna be a eunuchs developer! Pass me a bread knife!

                  Y Offline
                  Y Offline
                  YvesDaoust
                  wrote on last edited by
                  #14

                  Good to know!

                  1 Reply Last reply
                  0
                  • M Mark_Wallace

                    YvesDaoust wrote:

                    bloody, endless, uninformative Class Reference

                    Well, that's exactly what it is, so no problem. What it is not is a user guide/programming guide, so don't expect it to be one, but do complain if there isn't one. The general process is that developers refer to a user guide/programming guide until they've had a bit of practice, and then almost exclusively use the class reference. That's just how it works. Without the kick start of a user guide/programming guide, though, a class reference is just a pain in the @rse.

                    I wanna be a eunuchs developer! Pass me a bread knife!

                    Y Offline
                    Y Offline
                    YvesDaoust
                    wrote on last edited by
                    #15

                    All agreed.

                    1 Reply Last reply
                    0
                    • M Mark_Wallace

                      Ooh, don't go there. There be the monsters of out-of-date and unchecked examples, etc, that result in plumes of smoke coming out of customers' machines and ears. The only place to build a usage-oriented document is in a word processor.

                      I wanna be a eunuchs developer! Pass me a bread knife!

                      E Offline
                      E Offline
                      Espen Harlinn
                      wrote on last edited by
                      #16

                      Mark Wallace wrote:

                      The only place to build a usage-oriented document is in a word processor

                      And those documents are always up-to-date? I would usually start out writing stuff in Word, but quite often I end up with something that doxygen is able to consume :-)

                      Espen Harlinn Principal Architect, Software - Goodtech Projects & Services AS Projects promoting programming in "natural language" are intrinsically doomed to fail. Edsger W.Dijkstra

                      M 1 Reply Last reply
                      0
                      • P peterchen

                        ... because of all the "Clicking the Print button prints the document" boilerplate. The problem here is that typical programmers aren't used to documentation, don't read documentation, much less their own. Don't blame the tool, blame the tool.

                        ORDER BY what user wants

                        Y Offline
                        Y Offline
                        YvesDaoust
                        wrote on last edited by
                        #17

                        You said the right thing(s).

                        1 Reply Last reply
                        0
                        • Y YvesDaoust

                          Yes they are there. They must be there. It is more that I have not see them in use. And, yes, Doxygen is not the true reason.

                          E Offline
                          E Offline
                          Espen Harlinn
                          wrote on last edited by
                          #18

                          YvesDaoust wrote:

                          Doxygen is not the true reason

                          I think I can heartily agree with that :)

                          Espen Harlinn Principal Architect, Software - Goodtech Projects & Services AS Projects promoting programming in "natural language" are intrinsically doomed to fail. Edsger W.Dijkstra

                          Y 1 Reply Last reply
                          0
                          • E Espen Harlinn

                            YvesDaoust wrote:

                            Doxygen is not the true reason

                            I think I can heartily agree with that :)

                            Espen Harlinn Principal Architect, Software - Goodtech Projects & Services AS Projects promoting programming in "natural language" are intrinsically doomed to fail. Edsger W.Dijkstra

                            Y Offline
                            Y Offline
                            YvesDaoust
                            wrote on last edited by
                            #19

                            By the way, an opposite approach has been pursued by D. E. Knuth with his Literate programming approach. http://en.wikipedia.org/wiki/Literate_programming[^] This can probably be no better answer, for the same reaons.

                            E 1 Reply Last reply
                            0
                            • E Espen Harlinn

                              Mark Wallace wrote:

                              The only place to build a usage-oriented document is in a word processor

                              And those documents are always up-to-date? I would usually start out writing stuff in Word, but quite often I end up with something that doxygen is able to consume :-)

                              Espen Harlinn Principal Architect, Software - Goodtech Projects & Services AS Projects promoting programming in "natural language" are intrinsically doomed to fail. Edsger W.Dijkstra

                              M Offline
                              M Offline
                              Mark_Wallace
                              wrote on last edited by
                              #20

                              You could, but once it's inside the codebase, you've lost it, and so has anyone who has to check that it's up to date, correct, etc. And that's not to mention that the examples will be scattered all over the shop, with no way of knowing if they're in a good place that will be found by the developers looking for them -- an example for the CListCtrl class, for example, could contain a perfect one-line code example of using an "IceBox" object and its "keepBeerCool" method, which will never be found when developers search for a solution for their beer warming up, because, well, because they're wisely not using CListCtrl, are they? If, on the other hand, all the usage-centric/use-case examples are in a word-processor document, it's dead easy to keep track of them all, dead easy to distribute them to people for checking/confirmation/etc, and dead easy for users (i.e. the poor mugs doing the developing with warm beer)to find them.

                              I wanna be a eunuchs developer! Pass me a bread knife!

                              E 1 Reply Last reply
                              0
                              • M Mark_Wallace

                                YvesDaoust wrote:

                                bloody, endless, uninformative Class Reference

                                Well, that's exactly what it is, so no problem. What it is not is a user guide/programming guide, so don't expect it to be one, but do complain if there isn't one. The general process is that developers refer to a user guide/programming guide until they've had a bit of practice, and then almost exclusively use the class reference. That's just how it works. Without the kick start of a user guide/programming guide, though, a class reference is just a pain in the @rse.

                                I wanna be a eunuchs developer! Pass me a bread knife!

                                B Offline
                                B Offline
                                Brady Kelly
                                wrote on last edited by
                                #21

                                Mark Wallace wrote:

                                bloody, endless, uninformative Class Reference

                                Well, that's exactly what it is, so no problem.

                                Well, there is in fact a problem if the class reference is, as the OP said, uninformative, and most are. Constructor documentation that says "Instantiates a new instance of MyClass." is as useful as a chocolate teapot.

                                1 Reply Last reply
                                0
                                • M Mark_Wallace

                                  You could, but once it's inside the codebase, you've lost it, and so has anyone who has to check that it's up to date, correct, etc. And that's not to mention that the examples will be scattered all over the shop, with no way of knowing if they're in a good place that will be found by the developers looking for them -- an example for the CListCtrl class, for example, could contain a perfect one-line code example of using an "IceBox" object and its "keepBeerCool" method, which will never be found when developers search for a solution for their beer warming up, because, well, because they're wisely not using CListCtrl, are they? If, on the other hand, all the usage-centric/use-case examples are in a word-processor document, it's dead easy to keep track of them all, dead easy to distribute them to people for checking/confirmation/etc, and dead easy for users (i.e. the poor mugs doing the developing with warm beer)to find them.

                                  I wanna be a eunuchs developer! Pass me a bread knife!

                                  E Offline
                                  E Offline
                                  Espen Harlinn
                                  wrote on last edited by
                                  #22

                                  Mark Wallace wrote:

                                  usage-centric/use-case examples are in a word-processor document

                                  I have no problem with that ... But then we have the documentation that's mostly for other developers. Given that many of us work with rather standardized directory structures that quite often have a \docs directory - which is a logical place to keep a makefile that's responsible for keeping the stuff up-to-date - it shouldn't be all that hard to figure out.

                                  Espen Harlinn Principal Architect, Software - Goodtech Projects & Services AS Projects promoting programming in "natural language" are intrinsically doomed to fail. Edsger W.Dijkstra

                                  1 Reply Last reply
                                  0
                                  • Y YvesDaoust

                                    By the way, an opposite approach has been pursued by D. E. Knuth with his Literate programming approach. http://en.wikipedia.org/wiki/Literate_programming[^] This can probably be no better answer, for the same reaons.

                                    E Offline
                                    E Offline
                                    Espen Harlinn
                                    wrote on last edited by
                                    #23

                                    As Peter said it: blame the tool. ;)

                                    Espen Harlinn Principal Architect, Software - Goodtech Projects & Services AS Projects promoting programming in "natural language" are intrinsically doomed to fail. Edsger W.Dijkstra

                                    1 Reply Last reply
                                    0
                                    Reply
                                    • Reply as topic
                                    Log in to reply
                                    • Oldest to Newest
                                    • Newest to Oldest
                                    • Most Votes


                                    • Login

                                    • Don't have an account? Register

                                    • Login or register to search.
                                    • First post
                                      Last post
                                    0
                                    • Categories
                                    • Recent
                                    • Tags
                                    • Popular
                                    • World
                                    • Users
                                    • Groups