Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tootallnate/ref-wchar
A ref "type" implementation of `wchar_t *` (a.k.a. wide string) backed by "node-iconv"
https://github.com/tootallnate/ref-wchar
Last synced: 4 days ago
JSON representation
A ref "type" implementation of `wchar_t *` (a.k.a. wide string) backed by "node-iconv"
- Host: GitHub
- URL: https://github.com/tootallnate/ref-wchar
- Owner: TooTallNate
- Created: 2014-06-20T02:02:58.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-07T17:05:38.000Z (over 8 years ago)
- Last Synced: 2024-12-10T14:04:30.808Z (16 days ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 15
- Watchers: 4
- Forks: 20
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: History.md
Awesome Lists containing this project
README
ref-wchar
==========
### A ref "type" implementation of `wchar_t *` (a.k.a. wide string) backed by "node-iconv"
[![Build Status](https://secure.travis-ci.org/TooTallNate/ref-wchar.svg)](https://travis-ci.org/TooTallNate/ref-wchar)
[![Build Status](https://ci.appveyor.com/api/projects/status/xmne006y9jma3pm0?svg=true)](https://ci.appveyor.com/project/TooTallNate/ref-wchar)This module offers a ["wide
strings"](http://en.wikipedia.org/wiki/Wide_character#C.2FC.2B.2B) (`wchar_t *`)
implementation on top of Node.js Buffers using the ref "type" interface.Installation
------------Install with `npm`:
``` bash
$ npm install ref-wchar
```Examples
--------Say you have a C library that exports a `wchar_t` char and a `wchar_t *` wide
string:``` c
#if defined(WIN32) || defined(_WIN32)
#define EXPORT __declspec(dllexport)
#else
#define EXPORT
#endifEXPORT whcar_t w = L'W';
EXPORT wchar_t s[] = L"hello world";
EXPORT wchar_t **str = (wchar_t **)(&s);
`````` js
var ref = require('ref');
var dlfcn = require('dlfcn');
var wchar_t = require('ref-wchar');
var wchar_string = wchar_t.string;var lib = dlfcn('./libexample');
// get the "w" symbol as a wchar
var w = lib.get('w', wchar_t.size);
ref.get(w, wchar_t);
// "W"// get the "s" symbol as a wide string
var s = ref.reinterpretUntilZeros(lib.get('s'), wchar_t.size);
wchar_t.toString(s);
// "hello world"// get the "str" pointer symbol as a wide string
var str = lib.get('str', wchar_string.size);
ref.get(str, wchar_string);
// "hello world"
```License
-------(The MIT License)
Copyright (c) 2014 Nathan Rajlich <[email protected]>
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.