Generate DBus

gen_dbus is tool for generation of dbus modules.

Developed in python code.

The README is used to introduce the modules and provide instructions on how to install the modules, any machine dependencies it may have and any other information that should be provided before the modules are installed.

gen_dbus python checker gen_dbus python package github issues documentation status github contributors

Installation

gen_dbus python3 build

Navigate to release page download and extract release archive.

To install gen_dbus type the following

tar xvzf gen-dbus-x.y.z.tar.gz
cd gen-dbus-x.y.z/
# python3
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
pip3 install -r requirements.txt
python3 -m build --no-isolation --wheel
pip3 install ./dist/gen_dbus-*-py3-none-any.whl
rm -f get-pip.py
chmod 755 /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_dbus_run.py
ln -s /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_dbus_run.py /usr/local/bin/gen_dbus_run.py

You can use Docker to create image/container, or You can use pip to install

#python3
pip3 install gen_dbus

Dependencies

gen_dbus requires next modules and libraries

Tool structure

gen_dbus is based on OOP

Code structure

gen_dbus/
    ├── conf/
       ├── gen_dbus.cfg
       ├── gen_dbus.logo
       ├── gen_dbus_util.cfg
       ├── project.yaml
       └── template/
           ├── posix_c/
              ├── dbus_client/
                 ├── AUTHORS.template
                 ├── autogen.template
                 ├── ChangeLog.template
                 ├── configure.template
                 ├── COPYING.template
                 ├── Makefile.template
                 ├── NEWS.template
                 ├── README.template
                 └── src/
                     ├── main.template
                     └── Makefile.template
              └── dbus_server/
                  ├── AUTHORS.template
                  ├── autogen.template
                  ├── ChangeLog.template
                  ├── configure.template
                  ├── COPYING.template
                  ├── Makefile.template
                  ├── NEWS.template
                  ├── README.template
                  └── src/
                      ├── main.template
                      └── Makefile.template
           ├── posix_cxx/
              ├── dbus_client/
                 ├── AUTHORS.template
                 ├── autogen.template
                 ├── ChangeLog.template
                 ├── configure.template
                 ├── COPYING.template
                 ├── Makefile.template
                 ├── NEWS.template
                 ├── po/
                    ├── ChangeLog.template
                    ├── LINGUAS.template
                    └── POTFILES.template
                 ├── README.template
                 └── src/
                     ├── main.template
                     └── Makefile.template
              └── dbus_server/
                  ├── AUTHORS.template
                  ├── autogen.template
                  ├── ChangeLog.template
                  ├── configure.template
                  ├── COPYING.template
                  ├── Makefile.template
                  ├── NEWS.template
                  ├── po/
                     ├── ChangeLog.template
                     ├── LINGUAS.template
                     └── POTFILES.template
                  ├── README.template
                  └── src/
                      ├── main.template
                      └── Makefile.template
           └── posix_py/
               ├── dbus_client/
                  ├── AUTHORS.template
                  ├── autogen.template
                  ├── ChangeLog.template
                  ├── configure.template
                  ├── COPYING.template
                  ├── Makefile.template
                  ├── NEWS.template
                  ├── README.template
                  └── src/
                      ├── dbus_client.template
                      └── Makefile.template
               └── dbus_server/
                   ├── AUTHORS.template
                   ├── autogen.template
                   ├── ChangeLog.template
                   ├── configure.template
                   ├── COPYING.template
                   ├── Makefile.template
                   ├── NEWS.template
                   ├── README.template
                   └── src/
                       ├── dbus_server.template
                       └── Makefile.template
    ├── __init__.py
    ├── log/
       └── gen_dbus.log
    ├── pro/
       ├── __init__.py
       ├── read_template.py
       └── write_template.py
    └── run/
        └── gen_dbus_run.py

    23 directories, 76 files

Indices and tables