ref-wchar-t-napi

1.0.0 • Public • Published

ref-wchar-napi

A ref "type" implementation of wchar_t * (a.k.a. wide string) backed by "node-iconv"

Build Status Build Status

This module offers a "wide strings" (wchar_t *) implementation on top of Node.js Buffers using the ref "type" interface. Supports Node 6, 7, 8, 10, 12.

Installation

Install with npm:

$ npm install ref-wchar-napi

Examples

Say you have a C library that exports a wchar_t char and a wchar_t * wide string:

#if defined(WIN32) || defined(_WIN32)
#define EXPORT __declspec(dllexport)
#else
#define EXPORT
#endif

EXPORT whcar_t w = L'W';

EXPORT wchar_t s[] = L"hello world";

EXPORT wchar_t **str = (wchar_t **)(&s);
var ref = require('ref-napi');
var dlfcn = require('dlfcn');
var wchar_t = require('ref-wchar-napi');
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 <nathan@tootallnate.net>

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.

Package Sidebar

Install

npm i ref-wchar-t-napi

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

11 kB

Total Files

10

Last publish

Collaborators

  • ghouaiey