Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/autodesk/automaticcomponenttoolkit
A toolkit to automatically generate software components: abstract API, implementation stubs and language bindings
https://github.com/autodesk/automaticcomponenttoolkit
Last synced: 5 days ago
JSON representation
A toolkit to automatically generate software components: abstract API, implementation stubs and language bindings
- Host: GitHub
- URL: https://github.com/autodesk/automaticcomponenttoolkit
- Owner: Autodesk
- License: bsd-2-clause
- Created: 2018-12-11T21:53:08.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-04T15:34:26.000Z (2 months ago)
- Last Synced: 2024-09-05T21:45:41.972Z (2 months ago)
- Language: Go
- Homepage:
- Size: 12.1 MB
- Stars: 38
- Watchers: 9
- Forks: 22
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Automatic Component Toolkit
[![Build Status](https://travis-ci.org/Autodesk/AutomaticComponentToolkit.svg?branch=master)](https://travis-ci.org/Autodesk/AutomaticComponentToolkit)The Automatic Component Toolkit (ACT) is a code generator that takes an instance of an [Interface Description Language](#interface-description-language-idl) file and generates
a [thin C89-API](#thin-c89-api), [implementation stubs](#implementation-stubs) and [language bindings](#language-bindings) of your desired software component.__You might not know that yet, but this toolkit is the ultimate solution for you if__
- you want to write code that somebody else should use in a separate application
- you want to create an extensible plugin system for your application
- you need to merge two codebases with separate long-lasting history or
- you want to deploy your code into a properly made production cloud service.__Not using ACT for any of these purposes will either make you one of those three things:__
- redevelop most of the features ACT offers over time by yourself
- rewrite your code using ACT in the first place
- live a very miserable life.## Concepts of ACT:
### Interface Description Language (IDL)
The IDL file defines the types and functions of your API and serves as the source for the automatically generated Code.
The exact schema of the IDL and explanation of each element is described in [Documentation/IDL.md](Documentation/IDL.md).### Thin C89-API
A thin C89-API is a C header file that declares all functions, structs, enums and constants exported by your software component. The C89-API unambiguously defines the binary interface (ABI) of the component.### Implementation Stubs
An implementation stub is a collection of source files in a certain programming language *L*
that implements
- the classes, structs, methods, ... defined by the IDL
- as well as the mapping between the thin C89 API and these native classes.
Such an implementation stub fulfills the interface and compiles by itself, however, it does not contain any domain logic.### Language Bindings
A language binding of the component for programming language *C* implements the classes, enums, methods, ... defined by the IDL by
calling the functions exported by your component via the thin C89-API.
A consumer of your component only needs to include the language binding relevant for them and not worry about the C89 interface or the underlying implementation.## How to use ACT:
1) Download the precompiled binaries of from one of the [releases](../../releases)
2) Write an interface description file `idl_file.xml` for your desired component
3) Generate implementation stubs and language bindings for your component:
`act.exe idl_file.xml`
4) Integrate the generated code in your projectYou are probably best of starting of with our extensive [Tutorial](Examples/Primes/Tutorial.md).
Alternatively to 1) build ACT from source ([master](../../tree/master) for a released vesion, [develop](../../tree/develop) for the latest developments):
1. Install go https://golang.org/doc/install
2. Build automaticcomponenttoolkit.go:
`Build\build.bat` on Windows or
`Build\build.sh` on Unix## Language Support
ACT supports generation of bindings or implementation stubs for C++, C, Pascal, Golang, NodeJS and Python3. However, not all features of the IDL are yet supported by the individual binding or implementation language:
#### Feature Matrix: Bindings
| Binding | Status | Operating Systems | class | scalar type | struct | enumeration | string | basicarray | structarray | Callbacks | Error Message Propagation | Injection |
|:---------------:|:----------------------------------------------------------:|:-----------------:|:---------:|:-------------:|:-------------:|:-------------:|:-------------:|:----------:|:-----------:|:---------:|:---------:|:---------:|
| C++ | ![](Documentation/images/Tick.png) mature | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | in | + | + |
| C++ Dynamic | ![](Documentation/images/Tick.png) mature | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | in | + | + |
| C | ![](Documentation/images/Tick.png) mature | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | in | + | - |
| C Dynamic | ![](Documentation/images/Tick.png) mature | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | in | + | - |
| Pascal | ![](Documentation/images/Tick.png) mature | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | in | + | + |
| Python3 | ![](Documentation/images/Tick.png) complete (but not very pythonic) | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | in | + | + |
| Golang | ![](Documentation/images/O.png) partial support | Win, Linux, MacOS | in,return | in,out,return | ? | ? | ? | ? | ? | - | - | - |
| NodeJS | ![](Documentation/images/O.png) partial support | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | ? | ? | - | + | - |
| C# | ![](Documentation/images/O.png) experimental | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | - | - | - | + | - |
| PHP | ![](Documentation/images/X.png) not implemented | Win, Linux, MacOS | - | - | - | - | - | - | - | - | - | - |#### Feature Matrix: Implementation Stubs
| Implementation | Status | Operating Systems | class | scalar type | struct | enumeration | string | basicarray | structarray | Callbacks | Journaling | Error Message Propagation | Injection |
|:--------------:|:-----------------------------------------------------:|:-----------------:|:---------:|:-------------:|:-------------:|:-------------:|:-------------:|:----------:|:-----------:|:---------:|:----------:|:---------:|:---------:|
| C++ | ![](Documentation/images/Tick.png) mature | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | in | + | + | + |
| Pascal | ![](Documentation/images/Tick.png) mature | Win, Linux, MacOS | in,return | in,out,return | in,out,return | in,out,return | in,out,return | in,out | in,out | in | - | + | + |## Example
A complete example of the implementation and usage of an ACT component can be found in [Examples/Primes](Examples/Primes).
This folder also contains a complete [Tutorial](Examples/Primes/Tutorial.md) to set up this example project.## Background: the hourglass pattern-API for shared software components
A very clean approach to creating software components is the hourglass pattern for APIs.
The rationale is to pipe any domain code with a thick API through a C89-interface, narrowing exported types
and functions to C89-types and methods, and thereby also catching all exceptions.Domain-Code with thick API
\ (templates, complex classes, custom /
\ exceptions, custom control flows/
\ ... /
\ /
Narrow C89-interface (thin API)
(return values,
error codes,
error strings)
/ \
/ \
Language bindings in any other language;
Thick APIThis enables producers of libraries to use their own programming paradigms and styles, without affecting their consumer and results in a great isolation of code (and responsibility) between library-producer and -consumer.
Due to the very clear interface, such libraries are very easy to integrate in existing projects.A very detailed introduction the topic this presentation: https://www.youtube.com/watch?v=PVYdHDm0q6Y
### Difficulty of the hourglass pattern:
Generating (and maintaining!) the required layers of interfaces (language bindings, thin API and domain code-API) and their consistency is labor-intensive and error prone _if_ it is not automated. That's what ACT is here for.## Contributing
The Automatic Component Toolkit is an open source project.Contributions are welcome and we are looking for people that can improve existing language bindings or create new bindings or implementation stubs. Have a look at the [contributor's guide](CONTRIBUTING.md) for details.