Source documentation/ru: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(31 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>


<div class="mw-translate-fuzzy">
The online source documentation is located at http://www.freecadweb.org/api/
{{Docnav/ru
|[[Extra python modules/ru|Дополнительные модули Python]]
|[[List of Commands/ru|Список комманд]]
}}
</div>


{{TOCright}}
Исходный код FreeCAD прокомментирован для автоматической генерации html документации с помощью [http://www.doxygen.org Doxygen].


== Обзор ==
For those wanting to follow closely the latest development versions of FreeCAD, and who try to have a look at the C++ or Python parts, the first insight in the sources can give the feeling you're looking at an hedgehog: you can't discriminate head from tail and don't really know how to catch it!
Исходный код FreeCAD снабжен комментариями, что позволяет автоматически создавать документацию по программированию с использованием [[Doxygen/ru|Doxygen]], популярной системы документирования исходного кода. Doxygen может документировать написанные как на C ++, так на и Python части FreeCAD, в результате чего создаются HTML-страницы с гиперссылками на каждую задокументированную функцию и класс.


The documentation is hosted online at the [https://freecad.github.io/SourceDoc/ FreeCAD API website]. Please note that this documentation may not always be up to date; if you need more details, download FreeCAD's latest source code and compile the documentation yourself. If you have pressing questions about the code please ask in the developer section of the [https://forum.freecadweb.org/index.php FreeCAD forum].
In complement to this Wiki, the [http://www.freecadweb.org/api/ Source Documentation] can hopefully alleviate this feeling, providing an entry point, and allowing for easy browsing through the dozens of files and directories.


Compiling the API documentation follows the same general steps as compiling the FreeCAD executable, as indicated in the [[Compile_on_Linux|Compile on Linux]] page.
=== Build source documentation ===


[[File:FreeCAD_documentation_compilation_workflow.svg|800px]]
Если у вас установлен Doxygen, то собрать документацию очень просто. Отправляйтесь в каталог сборки FreeCADbuild, с конфигурируйте ваши исходники CMake, введя

{{Caption|General workflow to compile FreeCAD's programming documentation. The Doxygen and Graphviz packages must be in the system, as well as the FreeCAD source code itself. CMake configures the system so that with a single make instruction the documentation for the the entire project is compiled into many HTML files with diagrams.}}

== Сборка документации исходных кодов ==

=== Complete documentation ===

Если у вас установлен Doxygen, то собрать документацию очень просто. Также установите [https://www.graphviz.org/ Graphviz], чтобы иметь возможность создавать диаграммы, показывающие отношения между различными классами и библиотеками в коде FreeCAD. Graphviz также используется FreeCAD [[Std_DependencyGraph | графом зависимостей]] для отображения взаимосвязей между различными объектами.
{{Code|code=
{{Code|code=
sudo apt install doxygen graphviz
make DevDoc
}}
}}
and consult the resulting html files starting from Doc/SourceDocu/html/index.html .


Then follow the same steps you would do to compile FreeCAD, as described on the [[Compile_on_Linux|compile on Linux]] page, and summarized here for convenience.
The DevDoc make target above will, if graphviz is installed on your system, generate a 2Gb+ volume of data. An alternative, smaller version (~500Mb), that is the version used on http://www.freecadweb.org/api/ can also be generated by issuing instead:
* Get the source code of FreeCAD and place it in its own directory {{incode|freecad-source}}.
* Create another directory {{incode|freecad-build}} in which you will compile FreeCAD and its documentation.
* Configure the sources with {{incode|cmake}}, making sure you indicate the source directory, and specify the required options for your build.
* Trigger the creation of the documentation using {{incode|make}}.
{{Code|code=
{{Code|code=
git clone https://github.com/FreeCAD/FreeCAD.git freecad-source
mkdir freecad-build
cd freecad-build
cmake -DBUILD_QT5=ON -DPYTHON_EXECUTABLE=/usr/bin/python3 ../freecad-source
}}

While you are inside the build directory issue the following instruction to create only the documentation.
{{Code|code=
make -j$(nproc --ignore=2) DevDoc
}}
Как упоминалось в [[Compiling (Speeding up)/ru|компиляция (ускорение)]], параметр {{incode|-j}} устанавливает количество ядер ЦП, используемых для компиляции. Полученные файлы документации появятся в каталоге
{{Code|code=
freecad-build/doc/SourceDocu/html/
}}

The point of entrance to the documentation is the {{incode|index.html}} file, which you can open with a web browser:
{{Code|code=
xdg-open freecad-build/doc/SourceDocu/html/index.html
}}

The {{incode|DevDoc}} target will generate a significant amount of data, around 5 GB of new files, particularly due to the diagrams created by Graphviz.

=== Reduced documentation ===

The complete documentation uses around 3Gb of disk space. An alternative, smaller version of the documentation which takes only around 600 MB can be generated with a different target. This is the version displayed on the [https://freecad.github.io/SourceDoc/ FreeCAD API website].
{{Code|code=
make -j$(nproc --ignore=2) WebDoc
}}

The documentation on the [https://freecad.github.io/SourceDoc/ FreeCAD API website] is produced automatically from https://github.com/FreeCAD/SourceDoc . Anyone can rebuild it and submit a pull request:

* Fork the repo at https://github.com/FreeCAD/SourceDoc
* on your machine: clone the FreeCAD code (if you haven't yet), create a build dir for the doc, and clone the above SourceDoc repo inside. That SourceDoc will be updated when you rebuild the doc, and you'll be able to commit & push the results afterwards:
{{Code|code=
git clone https://github.com/FreeCAD/FreeCAD
cd FreeCAD
mkdir build
cd build
mkdir -p doc/SourceDocu/html
cd doc/SourceDocu/html
git clone your-fork-url
cd ../../..
cmake -DBUILD_QT5=ON -DPYTHON_EXECUTABLE=/usr/bin/python3 ..
make WebDoc
make WebDoc
cd doc/SourceDocu/html
git commit
git push
}}
}}
* Go to your fork online, and create a pull request.


<div class="mw-translate-fuzzy">
По своей природе, документация искодников есть и всегда будет в стадии разработки. Не стесняйтесь пересобирать её так часто как это необходимо. Если вы наткнетесь на вопиющие недостатки, вы можете написать об этом на форум (Примечание: Это реально полностью проверялось только в процессе сборке с помощью cMake).
== Другие версии ==
[http://free-cad.sf.net/SrcDocu/index.html Документация FreeCAD 0.12], размещенная на Sourceforge.
</div>


== Объединение с документацией Coin3D ==
As an alternative, the doc is generated from time to time and accessible on sourceforge [http://free-cad.sf.net/SrcDocu/index.html here].


В системах UNIX возможно связать документацию исходников Coin3D с FreeCAD-овской. Это даёт упрощение навигации и завершение диаграммы наследования для классво, производных от Coin.
Here is another FreeCAD Doxygen [http://iesensor.com/FreeCADDoc/0.16-dev/ documentation] generate by [http://forum.freecadweb.org/viewtopic.php?t=12613 qingfeng.xia].


* Установите {{incode|libcoin-doc}}, {{incode|libcoin80-doc}} или аналогично названный пакет
=== Integrate Coin3D documentation ===
* Распакуйте архив {{incode|coin.tar.gz}}, расположенный на {{incode|/usr/share/doc/libcoin-doc/html}}, файлы уже могут быть распакованы в Вашей системе.
* Повторите генерацию документации по исходным кодам.


* Если вы установили пакет документации Coin, ссылки будут сгенерированы для доступа онлайновой документации по адресу [https://coin3d.bitbucket.io/Coin/ BitBucket]. Это произойдет, если файл тега Doxygen можно загрузить во время настройки с помощью {{incode|wget}}.
В unix системах, возможно связать документацию исходников Coin3D с FreeCAD-овской.
Это упростит навигацию и закончить диаграмму наследования для производных от Coin классов.


== Using Doxygen ==
* В системах основанных на Debian:
: - Установите пакет libcoin60-doc
: - Распакуйте файл /usr/share/doc/libcoin60-doc/html/coin.tag.gz
: - Восстановите документацию исходных кодов
: Теперь можно читать её в оффлайне.


See the [[Doxygen|Doxygen]] page for an extensive explanation on how to comment C++ and Python source code so that it can be processed by Doxygen to automatically create the documentation.
* Если вы не желаете или не установили пакет документации Coin, ссылки будут сгенерированы для онлайн доступа к coin документации по адресу doc.coin3D.org, если doxygen tag файл будет загружен во время конфигурации(wget).


Essentially, a comment block, starting with {{incode|/**}} or {{incode|///}} for C++, or {{incode|##}} for Python, needs to appear before every class or function definition, so that it is picked up by Doxygen. Many [[Doxygen#Doxygen markup|special commands]], which start with {{incode|\}} or {{incode|@}}, can be used to define parts of the code and format the output. [[Doxygen#Markdown support|Markdown syntax]] is also understood within the comment block, which makes it convenient to emphasize certain parts of the documentation.
{{docnav/ru|Extra python modules/ru|List of Commands/ru}}
{{Code|code=
/**
* Returns the name of the workbench object.
*/
std::string name() const;


/**
[[Category:Developer Documentation/ru]]
* Set the name to the workbench object.
*/
void setName(const std::string&);

/// remove the added TaskWatcher
void removeTaskWatcher(void);
}}


<div class="mw-translate-fuzzy">
{{Docnav/ru
|[[Extra python modules/ru|Дополнительные модули Python]]
|[[List of Commands/ru|Список комманд]]
}}
</div>

{{Userdocnavi{{#translation:}}}}
[[Category:Developer Documentation{{#translation:}}]]
{{clear}}
{{clear}}
<languages/>

Latest revision as of 21:51, 12 November 2021

Обзор

Исходный код FreeCAD снабжен комментариями, что позволяет автоматически создавать документацию по программированию с использованием Doxygen, популярной системы документирования исходного кода. Doxygen может документировать написанные как на C ++, так на и Python части FreeCAD, в результате чего создаются HTML-страницы с гиперссылками на каждую задокументированную функцию и класс.

The documentation is hosted online at the FreeCAD API website. Please note that this documentation may not always be up to date; if you need more details, download FreeCAD's latest source code and compile the documentation yourself. If you have pressing questions about the code please ask in the developer section of the FreeCAD forum.

Compiling the API documentation follows the same general steps as compiling the FreeCAD executable, as indicated in the Compile on Linux page.

General workflow to compile FreeCAD's programming documentation. The Doxygen and Graphviz packages must be in the system, as well as the FreeCAD source code itself. CMake configures the system so that with a single make instruction the documentation for the the entire project is compiled into many HTML files with diagrams.

Сборка документации исходных кодов

Complete documentation

Если у вас установлен Doxygen, то собрать документацию очень просто. Также установите Graphviz, чтобы иметь возможность создавать диаграммы, показывающие отношения между различными классами и библиотеками в коде FreeCAD. Graphviz также используется FreeCAD графом зависимостей для отображения взаимосвязей между различными объектами.

sudo apt install doxygen graphviz

Then follow the same steps you would do to compile FreeCAD, as described on the compile on Linux page, and summarized here for convenience.

  • Get the source code of FreeCAD and place it in its own directory freecad-source.
  • Create another directory freecad-build in which you will compile FreeCAD and its documentation.
  • Configure the sources with cmake, making sure you indicate the source directory, and specify the required options for your build.
  • Trigger the creation of the documentation using make.
git clone https://github.com/FreeCAD/FreeCAD.git freecad-source
mkdir freecad-build
cd freecad-build
cmake -DBUILD_QT5=ON -DPYTHON_EXECUTABLE=/usr/bin/python3 ../freecad-source

While you are inside the build directory issue the following instruction to create only the documentation.

make -j$(nproc --ignore=2) DevDoc

Как упоминалось в компиляция (ускорение), параметр -j устанавливает количество ядер ЦП, используемых для компиляции. Полученные файлы документации появятся в каталоге

freecad-build/doc/SourceDocu/html/

The point of entrance to the documentation is the index.html file, which you can open with a web browser:

xdg-open freecad-build/doc/SourceDocu/html/index.html

The DevDoc target will generate a significant amount of data, around 5 GB of new files, particularly due to the diagrams created by Graphviz.

Reduced documentation

The complete documentation uses around 3Gb of disk space. An alternative, smaller version of the documentation which takes only around 600 MB can be generated with a different target. This is the version displayed on the FreeCAD API website.

make -j$(nproc --ignore=2) WebDoc

The documentation on the FreeCAD API website is produced automatically from https://github.com/FreeCAD/SourceDoc . Anyone can rebuild it and submit a pull request:

  • Fork the repo at https://github.com/FreeCAD/SourceDoc
  • on your machine: clone the FreeCAD code (if you haven't yet), create a build dir for the doc, and clone the above SourceDoc repo inside. That SourceDoc will be updated when you rebuild the doc, and you'll be able to commit & push the results afterwards:
git clone https://github.com/FreeCAD/FreeCAD
cd FreeCAD
mkdir build
cd build
mkdir -p doc/SourceDocu/html
cd doc/SourceDocu/html
git clone your-fork-url
cd ../../..
cmake -DBUILD_QT5=ON -DPYTHON_EXECUTABLE=/usr/bin/python3 ..
make WebDoc
cd doc/SourceDocu/html
git commit
git push
  • Go to your fork online, and create a pull request.

Другие версии

Документация FreeCAD 0.12, размещенная на Sourceforge.

Объединение с документацией Coin3D

В системах UNIX возможно связать документацию исходников Coin3D с FreeCAD-овской. Это даёт упрощение навигации и завершение диаграммы наследования для классво, производных от Coin.

  • Установите libcoin-doc, libcoin80-doc или аналогично названный пакет
  • Распакуйте архив coin.tar.gz, расположенный на /usr/share/doc/libcoin-doc/html, файлы уже могут быть распакованы в Вашей системе.
  • Повторите генерацию документации по исходным кодам.
  • Если вы установили пакет документации Coin, ссылки будут сгенерированы для доступа онлайновой документации по адресу BitBucket. Это произойдет, если файл тега Doxygen можно загрузить во время настройки с помощью wget.

Using Doxygen

See the Doxygen page for an extensive explanation on how to comment C++ and Python source code so that it can be processed by Doxygen to automatically create the documentation.

Essentially, a comment block, starting with /** or /// for C++, or ## for Python, needs to appear before every class or function definition, so that it is picked up by Doxygen. Many special commands, which start with \ or @, can be used to define parts of the code and format the output. Markdown syntax is also understood within the comment block, which makes it convenient to emphasize certain parts of the documentation.

/**
 * Returns the name of the workbench object.
 */
std::string name() const;

/**
 * Set the name to the workbench object.
 */
void setName(const std::string&);

/// remove the added TaskWatcher
void removeTaskWatcher(void);