{"id":15048008,"url":"https://github.com/paulross/cpip","last_synced_at":"2025-04-07T14:12:39.563Z","repository":{"id":37431592,"uuid":"94609442","full_name":"paulross/cpip","owner":"paulross","description":"CPIP - a C/C++ preprocessor implemented in Python.","archived":false,"fork":false,"pushed_at":"2025-03-30T12:02:30.000Z","size":38509,"stargazers_count":44,"open_issues_count":6,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-31T13:17:05.942Z","etag":null,"topics":["c","c-plus-plus","pre-processing","pre-processor","preprocessing","preprocessor","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/paulross.png","metadata":{"files":{"readme":"README.rst","changelog":"HISTORY.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.rst","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-06-17T08:00:14.000Z","updated_at":"2025-02-17T03:18:27.000Z","dependencies_parsed_at":"2022-08-19T20:50:08.467Z","dependency_job_id":"66d7d752-5682-4e8a-b666-b3842ad734ed","html_url":"https://github.com/paulross/cpip","commit_stats":{"total_commits":128,"total_committers":3,"mean_commits":"42.666666666666664","dds":0.0390625,"last_synced_commit":"71d98b062119d068e366e9d7740c69b77b7e9935"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paulross%2Fcpip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paulross%2Fcpip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paulross%2Fcpip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paulross%2Fcpip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paulross","download_url":"https://codeload.github.com/paulross/cpip/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247666014,"owners_count":20975788,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c","c-plus-plus","pre-processing","pre-processor","preprocessing","preprocessor","python"],"created_at":"2024-09-24T21:06:49.621Z","updated_at":"2025-04-07T14:12:39.533Z","avatar_url":"https://github.com/paulross.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"CPIP\n====\n\nCPIP is a C/C++ Preprocessor implemented in Python. It faithfully records all aspects of preprocessing and can produce visualisations that make debugging preprocessing far easier.\n\nFeatures\n--------\n\n* Conformant C/C++ preprocessor.\n* Gives programatic access to every preprocessing token and the state of the preprocessor at any point during preprocessing.\n* Top level tools such as ``CPIPMain.py`` can generate preprocessor visualisations from the command line.\n* Requires only Python 3.6+\n* Fully documented: https://cpip.readthedocs.io.\n* Free software: GNU General Public License v2\n\nInstallation\n------------\n\nInstall cpip from PyPi:\n\n.. code-block:: console\n\n    (CPIP) $ pip install cpip\n\nThis will give you access to the command line entry point ``cpipmain``, to check this:\n\n.. code-block:: console\n\n    (CPIP) $ cpipmain --help\n    ...\n\nYou can check CPIP on some demonstration C code, for example, from the CPIP directory there is a ``demo`` directory.\nYou can process this thus:\n\n.. code-block:: console\n\n    (CPIP) $ cpipmain -l20 -j1 -o demo/output -J demo/sys/ -I demo/usr/ demo/src/main.cpp\n    2017-11-17 10:29:16,370 INFO     preprocessFileToOutput(): demo/src/main.cpp\n    2017-11-17 10:29:16,371 INFO     TU in HTML:\n    2017-11-17 10:29:16,372 INFO       tmp/output_normal_02/main.cpp.html\n    2017-11-17 10:29:16,391 INFO     preprocessFileToOutput(): Processing TU done.\n    2017-11-17 10:29:16,391 INFO     Macro history to:\n    2017-11-17 10:29:16,391 INFO       tmp/output_normal_02\n    2017-11-17 10:29:16,400 INFO     Include graph (SVG) to:\n    2017-11-17 10:29:16,401 INFO       tmp/output_normal_02/main.cpp.include.svg\n    2017-11-17 10:29:16,423 INFO     Writing include graph (TEXT) to:\n    2017-11-17 10:29:16,423 INFO       tmp/output_normal_02/main.cpp.include.svg\n    2017-11-17 10:29:16,424 INFO     Conditional compilation graph in HTML:\n    2017-11-17 10:29:16,424 INFO       tmp/output_normal_02/main.cpp.ccg.html\n    2017-11-17 10:29:16,431 INFO     Done: demo/src/main.cpp\n    2017-11-17 10:29:16,432 INFO     ITU in HTML: .../main.cpp\n    2017-11-17 10:29:16,448 INFO     ITU in HTML: .../system.h\n    2017-11-17 10:29:16,453 INFO     ITU in HTML: .../user.h\n    2017-11-17 10:29:16,462 INFO     preprocessFileToOutput(): demo/src/main.cpp DONE\n    CPU time =    0.087 (S)\n    Bye, bye!\n\nThe result will be in ``demo/output/index.html``.\n\nThere are `other installation methods \u003chttps://github.com/paulross/cpip/blob/master/docs/doc_src/installation.rst\u003e`_ including directly from source.\n\nVisualising Preprocessing\n=============================\n\nThe top level entry point ``cpipmain`` (the script ``CPIPMain.py``) acts like a preprocessor that generates HTML and SVG output for a source code file or directory. This output makes it easy to understand what the preprocessor is doing to your source.\n\nHere is some of that output when preprocessing a single Linux kernel file ``cpu.c`` (`complete output \u003chttps://cpip.readthedocs.io/en/latest/_static/index.html\u003e`_). The ``index.html`` page shows how ``CPIPMain.py`` was invoked [#f1]_, this has a link to to preprocessing pages for that file:\n\n.. Comment: Git hub does not size images so we have to have duplicates here. https://github.com/github/markup/issues/295\n\n.. image:: screenshots/HTMLLinux_cpu.c_Index.png\n    :alt: CPIPMain.py's index.html landing page.\n    :width: 640\n\nThis page has a single link that takes you to the landing page for the file ``cpu.c``, at the top this links to other pages that visualise source code, ``#include`` dependencies, conditional compilation and macros:\n\n.. image:: screenshots/HTMLLinux_cpu.c_Home_Top.png\n    :alt: CPIP landing page after preprocessing cpu.c from the Linux kernel.\n    :width: 640\n    \nLower down this page is a table of files that were involved in preprocessing:\n\n.. image:: screenshots/HTMLLinux_cpu.c_Home_Lower_Lower_edit.png\n    :alt: CPIP landing page after preprocessing cpu.c from the Linux kernel.\n    :width: 480\n\nVisualising the Source Code\n-----------------------------\n\nFrom the ``cpu.c`` landing page the link \"Original Source\" takes you to a syntax highlighted page of the original source of ``cpu.c``.\n\n.. image:: screenshots/HTMLLinux_cpu.c_ITU_edit.png\n    :alt: Annotated source code of cpu.c\n    :width: 480\n\nThe ``cpu.c`` landing page link \"Translation Unit\" takes you to a page that shows the complete translation unit of ``cpu.c`` (i.e. incorporating all the ``#include`` files). This page is annotated so that you can understand what part of the translation unit comes from which file.\n\n.. image:: screenshots/HTMLLinux_cpu.c_TU_edit.png\n    :alt: Annotated translation unit produced by cpu.c\n    :width: 480\n\nVisualising the ``#include`` Dependencies\n---------------------------------------------\n\nThe ``cpu.c`` landing page link \"Normal [SVG]\" takes you to a page that shows the dependencies created by ``#include`` directives. This is a very rich page that represents a tree with the root at center left. ``#include``'s are in order from top to bottom. Each block represents a file, the size is proportional to the number of preprocessing tokens.\n\n.. image:: screenshots/SVG_CPU_OpeningPage_10pc.png\n    :alt: Example of the file stack pop-up in the SVG include graph.\n    :width: 640\n\nZooming in with the controls at the top gives more detail. If the box is coloured cyan it is because the file does not add any content to the translation unit, usually because of conditional compilation:\n\n.. image:: screenshots/SVG_CPU_FileDetail.png\n    :alt: Example of the file stack pop-up in the SVG include graph.\n    :width: 640\n\nThe page is dynamic and hovering over various areas provides more information:\n\nHow and Why the File was Included\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nHovering just to the left of the file box produces a popup that explains how the file inclusion process worked for this file, it has the following fields:\n\n* Inc: The filename and line number of the ``#include`` directive.\n* As: The conditional compilation state at the point of the ``#include`` directive.\n* How: The text of the ``#include`` directive followed by the directory that this file was found in, this directory is prefixed by ``sys=`` for a system include and ``usr=`` for a user include.\n\n.. image:: screenshots/SVGIncPath.png\n    :alt: How the file got included\n    :width: 640\n\nHovering over the filename above the file box shows the file stack (children are below parents).\n\n.. image:: screenshots/SVG_CPU_FileDetail_FileStack.png\n    :alt: Example of the file stack pop-up in the SVG include graph.\n    :width: 640\n\nThis plot can also tell you what types of preprocessor tokens were processed for each file. The coloured bars on the left of the file box indicate the proportion of preprocessing token types, the left is the file on its own, the right is the file and its child files. To understand the legend hover over those bars:\n\n.. image:: screenshots/SVG_CPU_FileDetail_HistLegend.png\n    :alt: Legend for preprocessing token types.\n    :width: 640\n\nTo see the actual count of preprocessing tokens hover over the file box:\n\n.. image:: screenshots/SVG_CPU_FileDetail_TokenCount.png\n    :alt: Count of preprocessing token types.\n    :width: 640\n\nVisualising Conditional Compilation\n--------------------------------------\n\nThe preprocessor is also responsible for handling conditional compilation which becomes very complicated for large projects. ``CPIPMain.py`` produces a succinct representation showing only the conditional directives. The links in each comment takes you to the syntax highlighted page for that file.\n\n.. image:: screenshots/HTMLLinux_cpu.c_CondComp.png\n    :alt: Conditional compilation in the translation unit.\n    :width: 640\n\nUnderstanding Macros\n---------------------------\n\nCPIP tracks every macro definition and usage and ``CPIPMain.py`` produces a page that describes all the macros encountered:\n\n.. image:: screenshots/HTMLLinux_cpu.c_Macro_Top.png\n    :alt: The top of the macro page with down page links to details of each macro.\n    :width: 640\n\nEach link on the page takes you to a description of the macro containing:\n\n* The macro name, how many times it was referenced and whether it is still defined at the end of preprocessing.\n* The verbatim macro definition (rewritten over several lines for long macros).\n* File name and line number of definition, linked.\n* Places that the macro was used, directly or indirectly. This is a table of file paths with links to the use point.\n* Dependencies, two way:\n    * Macros that this macro invokes.\n    * Macros that invoke this macro.\n\n.. image:: screenshots/HTMLLinux_cpu.c_Macro_Detail.png\n    :alt: Macro BITMAP_LAST_WORD_MASK details: definition, where defined, where used and two way dependencies.\n    :width: 640\n\nStatus\n------\n\n.. image:: https://img.shields.io/pypi/v/cpip.svg\n        :target: https://pypi.python.org/pypi/cpip\n\n.. image:: https://img.shields.io/travis/paulross/cpip.svg\n        :target: https://travis-ci.org/paulross/cpip\n\n.. image:: https://readthedocs.org/projects/cpip/badge/?version=latest\n        :target: https://cpip.readthedocs.io/en/latest/?badge=latest\n        :alt: Documentation Status\n\n.. image:: https://pyup.io/repos/github/paulross/cpip/shield.svg\n     :target: https://pyup.io/repos/github/paulross/cpip/\n     :alt: Updates\n\nLicence\n-------\n\nCPIP is a C/C++ Preprocessor implemented in Python.\nCopyright (C) 2008-2017 Paul Ross\n\nThis program is free software; you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation; either version 2 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along\nwith this program; if not, write to the Free Software Foundation, Inc.,\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\n\nCredits\n---------\n\nThis package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n\nAlso many thanks to `SourceForge \u003chttp://cpip.sourceforge.net/\u003e`_ that hosted this project for many years.\n\n.. rubric:: Footnotes\n\n.. [#f1] This was invoked by:\n\n.. code-block:: sh\n\n    $ python3 CPIPMain.py -kp -l20 -o ../../output/linux/cpu -S __STDC__=1 -D __KERNEL__ -D __EXPORTED_HEADERS__ -D BITS_PER_LONG=64 -D CONFIG_HZ=100 -D __x86_64__ -D __GNUC__=4 -D __has_feature(x)=0 -D __has_extension=__has_feature -D __has_attribute=__has_feature -D __has_include=__has_feature -P ~/dev/linux/linux-3.13/include/linux/kconfig.h -J /usr/include/ -J /usr/include/c++/4.2.1/ -J /usr/include/c++/4.2.1/tr1/ -J /Users/paulross/dev/linux/linux-3.13/include/ -J /Users/paulross/dev/linux/linux-3.13/include/uapi/ -J ~/dev/linux/linux-3.13/arch/x86/include/uapi/ -J ~/dev/linux/linux-3.13/arch/x86/include/ -J ~/dev/linux/linux-3.13/arch/x86/include/generated/ ~/dev/linux/linux-3.13/kernel/cpu.c\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaulross%2Fcpip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaulross%2Fcpip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaulross%2Fcpip/lists"}