SWIG
JavaCPP
Our great sponsors
SWIG | JavaCPP | |
---|---|---|
15 | 5 | |
4,523 | 3,860 | |
1.5% | 1.3% | |
9.8 | 7.6 | |
5 days ago | 13 days ago | |
C++ | Java | |
GNU General Public License v3.0 or later | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
SWIG
-
Recommendation for software to aid with creating a C# wrapper around a c++ library
Or take a look at the tools CppSharp or SWIG, s.a. Example for SWIG to wrap C++ library in .Net 6.
-
Which language is the most commonly used for the shared logic of Android and iOS apps? Kotlin? C++? Other?
Do what DropBox did for many years. DropBox wrote a blog post about how they used to share their core C++ systems code between their apps. Eventually they gave up and decided it was easier to just write the same code twice, once in Java and once in Swift. However, they went about doing this in a very bizarre way, using their own custom build tooling and whatnot. In particularly, they tried to share C++ data types between Android and iOS via manually generated language bindings via stuff like SWIG. I don't recommend their approach, but it is an approach, so I feel like it's worth mentioning.
-
Is there a compiler that can compile source code into a bunch of source codes for different platforms?
This sounds a bit like SWIG. You give SWIG an "interface file" describing the API of a library, and it uses that to spit out a bunch of language-specific bindings for that library.
-
Wrapping a c++ with .Net framework
Try out http://www.swig.org/
-
Learn Python the hard way
SWIG
- A new tool for calling C++ from python
-
SWIG and Perl
Check out the site www.swig.org it will answer several of your questions. XS code is specific to Perl that you have to know how to code and use. SWIG takes code from C and C++ (actually several languages) and uses code templates to generate all the XS code for you. I wrote both a C library and C++ library doing different things, and used SWIG to import them into Perl (via "use"), Python and PHP. There is a learning curve, but it's not that bad, and there is a lot of great documentation and examples on the SWIG site.
-
Text extraction, HELP
Ohhh alrightt I went through the installation of pypodofo. 1. Install podofo library. For example in archlinux, pacman -S podofo 2. Install swig tool. Note, you should have installed gcc and g++ compilers 3. Build wrapper. python setup.py build 4. Copy dynamic library to python package. cp build/lib.linux-x86_64-3.7/_api.cpython-37m-x86_64-linux-gnu.so pypodofo/ 5. Install requirements. pip install -r requirements.txt (if possible in a virtualenv). 6. Run tests. nosetests tests/
-
Trying to write a cross-language library
Another option is SWIG, but I don't like it too much.
-
Obvious and possible software innovations nobody does
* I was using SWIG (http://www.swig.org/) 15+20 years ago to bind C/C++ to Perl and Java and it still exists.*
I've used it. It took the entire thing you want to call and generated one giant file of munged C. That's sort of where that idea takes you.
But the author is on to something. There's a C to Rust translator. It sucks, because it works by emulating C pointer arithmetic in unsafe Rust, using its own set of primitives along the lines of "offset this pointer by this much". Now you have ugly, unsafe Rust.
What's needed is something that infers the meaning of an ambiguous function call from the code. Something that reasons like this:
Function call:
int read(char* buf, size_t n)
JavaCPP
-
Does Java 18 finally have a better alternative to JNI?
Here is the code for JNI, which uses the prebuilt JavaCPP library to call the getpid function. We don't have to write all the manual C binding code and rituals as the JavaCPP library already does it.
-
JEP 419: Foreign Function and Memory API
Javacpp is the best ffi library of all https://github.com/bytedeco/javacpp
-
If it gets better w age, will java become compatible for machine learning and data science?
As for our approach, we maintain a library called javacpp: https://github.com/bytedeco/javacpp which proves a python wheel like experience where we distribute natively optimized c/c++ code (and even cuda accelerated code) as jar files on maven central. We also are able to develop with a python like experience by passing pointers around and other low level constructs directly allowing optimizations that you typically only get in c/c++.
-
CXX - Safe interop between Rust and C++
https://github.com/bytedeco/javacpp
* it maps naturally and efficiently many common features afforded by the C++ language and often considered problematic, including overloaded operators, class and function templates, callbacks through function pointers, function objects (aka functors), virtual functions and member function pointers, nested struct definitions, variable length arguments, nested namespaces, large data structures containing arbitrary cycles, virtual and multiple inheritance, passing/returning by value/reference/string/vector, anonymous unions, bit fields, exceptions, destructors and shared or unique pointers (via either try-with-resources or garbage collection), and documentation comments*
-
An article on how to use C++ for cross-platform development
I did not try myself, but for JNI maybe this could make lives easier? https://github.com/bytedeco/javacpp
What are some alternatives?
cffi
CppSharp - Tools and libraries to glue C/C++ APIs to high-level languages
JNA - Java Native Access
Cython - The most widely used Python to C compiler
djinni
libffi - A portable foreign-function interface library.
JNR - Java Abstracted Foreign Function Layer
PyCUDA - CUDA integration for Python, plus shiny features
sol2 - Sol3 (sol2 v3.0) - a C++ <-> Lua API wrapper with advanced features and top notch performance - is here, and it's great! Documentation:
Duktape - Duktape - embeddable Javascript engine with a focus on portability and compact footprint
V8 - The official mirror of the V8 Git repository