-
Notifications
You must be signed in to change notification settings - Fork 0
PLUGIN
= PLUGIN =
uim:doc/PLUGINより転載
Plugin for uim
uim では入力システムのモジュール化のため、 共有ライブラリと Scheme プログラムをロードする プラグインシステムが実装されている。
uimのプラグインはSchemeとライブラリのどちらか、あるいは両方から構成される。
___________ (require-module "foo")
| | ------------------+---> libuim-foo.so
| libuim | |
|___________| +---> foo.scm
uim supports plugin system which loads dynamic library and scheme definition as a input method module.
uim's plugin may consist of scheme file and/or dynamic library.
Schemeエンジンから (require-module "foo")が呼び出されると、libuim-foo.soがメモリに ロードされると同時に'uim_dynlib_instance_init'を実行する。 libuim-foo.soの呼び出しの後、'foo.scm'がロードされる。
When called (require-module "foo") from libuim scheme engine, libuim-foo.so is loaded if existed and call 'uim_dynlib_instance_init' in libuim-foo.so first. After that 'foo.scm' is loaded if existed.
サードパーティのプラグインをインストールしたい場合、
共有ライブラリファイルと Scheme ファイルを /uim.d/plugin/
に置く必要がある。例えば、"foo"というプラグインをインストールする場合
、/uim.d/plugin/ にlibuim-foo.soと foo.scm を置かなければならない。
その後、以下のコマンドを実行し、uim-pref でそのプラグインを有効にする
必要がある。。
$ uim-module-manager --register foo --path=~/.uim.d/plugin
If you want to install 3rd party plugin, you have to place both the dynamic shared object and scheme file to ~/.uim.d/plugin/. For example, if you want to install "foo", you have to put both libuim-foo.so and foo.scm to ~/.uim.d/plugin. And you need to invoke following command to enable the plugin.
サードパーティのプラグインをインストールする場合は、
共有ライブラリファイルを${pkglibdir}/plugin/に置き、
Scheme ファイルを
$ sudo uim-module-manager --register foo
If you want to install 3rd party plugin, you have to place the dynamic shared object to ${pkglibdir}/plugin/ and place the scheme library to ${pkgdatadir}/.
For example, if you want to install "foo", you have to install libuim-foo.so to ${pkglibdir}/plugin and foo.scm to ${pkgdatadir}/. If you want to enable this for all users, invoke following command.
-
uim_dynlib_instance_init(void): Called when plugin is being loaded. In most case, initialize variables and bind scheme symbol and C functions.
-
uim_dynlib_instance_quit(void): Called when plugin is being unloaded.
Plugin's loading scheme
-
Plugin loading: dlopen(libuim-foo.so) -> call uim_dynlib_instance_init -> call "foo.scm"
-
Plugin unloading: call uim_dynlib_instance_quit -> dlclose(libuim-foo.so)
From 1.6.0, uim supports plugin system which loads dynamic library explicitly from scheme file. Use this system if you want to use external C code or library from scheme side.
___________ (require "foo") --> (require-dynlib "bar")
| |
| libuim | ----------> foo.scm --------> libuim-bar.so
|___________|
When called (require-dynlib "bar") from the top of foo.scm, libuim-bar.so is loaded and 'uim_dynlib_instance_init' in libuim-bar.so is called.
-
uim_dynlib_instance_init(void): Called when plugin is being loaded. In most case, initialize variables and bind scheme symbol and C functions.
-
uim_dynlib_instance_quit(void): Called when plugin is being unloaded.
Plugin's loading scheme:
-
Plugin loading: (require-dynlib "foo") -> dlopen(libuim-foo.so) -> call uim_dynlib_instance_init -> (provide "foo")
-
Plugin unloading: (dynlib-unload "foo") -> call uim_dynlib_instance_quit -> dlclose(libuim-foo.so)