Uploaded image for project: 'C Driver'
  1. C Driver
  2. CDRIVER-5865

Apply consistent include pattern

    • Type: Icon: Improvement Improvement
    • Resolution: Duplicate
    • Priority: Icon: Minor - P4 Minor - P4
    • None
    • Affects Version/s: None
    • Component/s: None
    • None
    • None
    • C Drivers
    • Hide

      1. What would you like to communicate to the user about this feature?
      2. Would you like the user to see examples of the syntax and/or executable code and its output?
      3. Which versions of the driver/connector does this apply to?

      Show
      1. What would you like to communicate to the user about this feature? 2. Would you like the user to see examples of the syntax and/or executable code and its output? 3. Which versions of the driver/connector does this apply to?
    • None
    • None
    • None
    • None
    • None
    • None

      Scope: Apply a consistent pattern for #include. Note in the developer documentation.

      Proposal: use #include <mongoc/...> and #include <bson/...> instead of #include "..." within the source. Apply to internal files too.

      Rationale: Consistent use of <> ensures include directories are being specified correctly via the build system, rather than bypassing valid include directory specifications through relative path lookup.

      Background & Motivation:

      There are different include patterns in the C driver. Example:

      #include "mongoc-prelude.h" // In src/libmongoc/src/mongoc/mongoc-array-private.h
      #include <mongoc-prelude.h> // In src/libmongoc/src/mongoc/uthash.h
      

      As well as whether or not to prefix with mongoc or bson:

      #include <mongoc/mongoc-error.h> // In src/libmongoc/src/mongoc/mcd-nsinfo.c
      #include "mongoc-error.h" // In src/libmongoc/src/mongoc/mongoc-topology.c
      

      This has caused difficulties for downstream users building the driver outside of CMake. Example: https://github.com/mongodb/mongo-c-driver/pull/1836
       

            Assignee:
            ezra.chung@mongodb.com Ezra Chung
            Reporter:
            kevin.albertson@mongodb.com Kevin Albertson
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              None
              None
              None
              None