node-gir

Node bindings to libgirepository

  • Owner: creationix/node-gir
  • Platform:
  • License:: MIT License
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

node-gir

Node-gir is Node.js bindings to GObject Introspection making it possible to make automatic and dynamic calls to any library that has GI annotations installed. This includes most libraries from the GNOME project.

This will make it possible to script a GNOME desktop system entirely from node much in the way it's done today with Seed, GJS or pygtk. It also allows using GNOME libraries in Node.js applications. With it you can also write the performance-intensive parts of your applications in Vala and call them from Node.js and other languages.

Installation

You need GObject Introspection library to be installed. On a Debian-like system this would be handled by:

$ sudo apt-get install libgirepository1.0-dev

Then just build node-gir with:

$ npm install gir

Testing

The node-gir repository comes with a set of tests that utilize the Midgard2 library to test against. You need also that installed, and then run:

$ npm test

Travis is used for Continous Integration:

Build Status

Architecture

The following graph shows all the parts and how they work together. The only
missing part is node bindings to libgirepository. Hence this project.

BUILD TIME:

          +-----------------------------------------------------------+, foo.c, foo.h, Library sources, with type annotations, +-----------------------------------------------------------+, gcc                                 g-ir-scanner, V, +------------------------+, Foo.gir, <GI-name>.gir, XML file, Invocation information, Required .gir files, API docs, +------------------------+, g-ir-compiler, DEPLOYMENT TIME:, V                                          V
        +-----------------------------+      +---------------------------+, libfoo.so, Foo.typelib, Binary version of the, ELF file, invocation info and, required .typelib files, Machine code, plus, +---------------------------+, dynamic linkage information, A, (DWARF debug data, etc), +-----------------------------+, A, +---------------------------+, libgirepository.so, +-----------+, libffi.so, Can read typelibs and, present them in a, +-----------+, libffi-based way, A, +---------------------------+, A, +------------+
                     +--------------------------, node-gir, +--------->+------------+, +------------------+, NodeJS, +------------------+

Why not use Seed or GJS

Because they are nice, but not what I'm looking for. Node is really popular and
it would be nice to be able to use it for desktop tools and applications.

Implementation Notes

Here are some links and notes as I try to figure out how to do this.

API Ideas

Some of these ideas will go in this binding and some will go in nice wrappers
that use it. I'll know more as we progress.

  • Use camelCase for methods that are bound to look JavaScripty.
  • Use .on(name, callback) to attach signals.
  • Keep the same constructor style used by Seed and GJS
  • Make the module system as node-like as possible.

Things which work

  • All classes get created
  • classes get inherited
  • interface methods are inherited
  • A class has lists of all its properties, methods, signals, vfuncs and fields
  • C structures are propagated as objects (fields are properties)
  • Both methods and static method can be called
  • You can create a class
  • functions can be called (but it does not work so well with 'out' arguments which should be set as returned value)
  • GError is propagated as generic exception
  • property values can be set/get
  • events can be watched
  • flags, enums etc are set

Things which dont work (correct)

  • Conversion between a v8 value and a GValue/GArgument is veeeery buggy (but everything needs it so most things are buggy)
  • No support for libev/libuv; glib is using its own stuff (gst.main())
  • There is no good way to delete an object (memory management sucks at all)
  • types/function.cc need a rewrite
  • GError should be propagated as derived classes depending on GError domain

Main metrics

Overview
Name With Ownercreationix/node-gir
Primary LanguageC++
Program languageC++ (Language Count: 4)
Platform
License:MIT License
所有者活动
Created At2011-04-15 05:35:57
Pushed At2017-10-25 07:53:20
Last Commit At2017-10-25 13:23:20
Release Count0
用户参与
Stargazers Count232
Watchers Count25
Fork Count58
Commits Count250
Has Issues Enabled
Issues Count21
Issue Open Count13
Pull Requests Count19
Pull Requests Open Count3
Pull Requests Close Count1
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private