Javascript wrappers for LPS22HB Sensor library

Dependencies:   LPS22HB

Dependents:   ST_SENSOR_JS

LPS22HB_JS-js.cpp

Committer:
akhtar.syedzeeshan@gmail.com
Date:
2017-10-23
Revision:
3:3e19d8808491
Parent:
2:5ed6416b6b4d
Child:
4:c2cf5deba40f

File content as of revision 3:3e19d8808491:

/**
 ******************************************************************************
 * @file    LPS22HB_JS-js.cpp
 * @author  ST
 * @version V1.0.0
 * @date    9 October 2017
 * @brief   Implementation of an LPS22HB Pressure and Temperature sensor for use
 *          with Javascript.
 ******************************************************************************
 * @attention
 *
 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *   1. Redistributions of source code must retain the above copyright notice,
 *      this list of conditions and the following disclaimer.
 *   2. Redistributions in binary form must reproduce the above copyright notice,
 *      this list of conditions and the following disclaimer in the documentation
 *      and/or other materials provided with the distribution.
 *   3. Neither the name of STMicroelectronics nor the names of its contributors
 *      may be used to endorse or promote products derived from this software
 *      without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 ******************************************************************************
 */


/* Includes ------------------------------------------------------------------*/

#include "jerryscript-mbed-util/logging.h"
#include "jerryscript-mbed-library-registry/wrap_tools.h"

// Load the library that we'll wrap
#include "LPS22HB_JS.h"

#include "mbed.h"

/* Class Implementation ------------------------------------------------------*/

/**
 * LPS22HB_JS#destructor
 *
 * Called if/when the LPS22HB_JS is GC'ed.
 */
void NAME_FOR_CLASS_NATIVE_DESTRUCTOR(LPS22HB_JS)(void *void_ptr) {
    delete static_cast<LPS22HB_JS*>(void_ptr);
}

 
/**
 * Type infomation of the native LPS22HB_JS pointer
 *
 * Set LPS22HB_JS#destructor as the free callback.
 */
static const jerry_object_native_info_t native_obj_type_info = {
    .free_cb = NAME_FOR_CLASS_NATIVE_DESTRUCTOR(LPS22HB_JS)
};


/**
 * LPS22HB_JS#get_temperature (native JavaScript method)
 *
 * @returns temperature
 */
DECLARE_CLASS_FUNCTION(LPS22HB_JS, get_temperature) {
    CHECK_ARGUMENT_COUNT(LPS22HB_JS, get_temperature, (args_count == 0));
 
    
    // Unwrap native LPS22HB_JS object
    void *void_ptr;
    const jerry_object_native_info_t *type_ptr;
    bool has_ptr = jerry_get_object_native_pointer(this_obj, &void_ptr, &type_ptr);

    if (!has_ptr || type_ptr != &native_obj_type_info) {
        return jerry_create_error(JERRY_ERROR_TYPE,
                                  (const jerry_char_t *) "Failed to get native LPS22HB_JS pointer");
    }

    LPS22HB_JS *native_ptr = static_cast<LPS22HB_JS*>(void_ptr);
 
    // Get the result from the C++ API
    float result = native_ptr->get_temperature();
    
    // Cast it back to JavaScript and return
    return jerry_create_number(result);
}


/**
 * LPS22HB_JS#get_pressure (native JavaScript method)
 *
 * @returns pressure
 */
DECLARE_CLASS_FUNCTION(LPS22HB_JS, get_pressure) {
    CHECK_ARGUMENT_COUNT(LPS22HB_JS, get_pressure, (args_count == 0));
 
    
    // Unwrap native LPS22HB_JS object
    void *void_ptr;
    const jerry_object_native_info_t *type_ptr;
    bool has_ptr = jerry_get_object_native_pointer(this_obj, &void_ptr, &type_ptr);

    if (!has_ptr || type_ptr != &native_obj_type_info) {
        return jerry_create_error(JERRY_ERROR_TYPE,
                                  (const jerry_char_t *) "Failed to get native LPS22HB_JS pointer");
    }

    LPS22HB_JS *native_ptr = static_cast<LPS22HB_JS*>(void_ptr);
 
    // Get the result from the C++ API
    float result = native_ptr->get_pressure();
    
    // Cast it back to JavaScript and return
    return jerry_create_number(result);
}

/**
 * LPS22HB_JS (native JavaScript constructor)
 *
 * @returns a JavaScript object representing LPS22HB_JS.
 */
DECLARE_CLASS_CONSTRUCTOR(LPS22HB_JS) {
    CHECK_ARGUMENT_COUNT(LPS22HB_JS, __constructor, args_count == 1);
    CHECK_ARGUMENT_TYPE_ALWAYS(LPS22HB_JS, __constructor, 0, object);
    
    // Unwrap native LPS22HB_JS object
    void *i2c_ptr;
    const jerry_object_native_info_t *i2c_type_ptr;
    bool i2c_has_ptr = jerry_get_object_native_pointer(args[0], &i2c_ptr, &i2c_type_ptr);

    // Check if we have the i2c pointer
    if (!i2c_has_ptr) {
        printf("Not a I2C input!");
        return jerry_create_error(JERRY_ERROR_TYPE,
                                  (const jerry_char_t *) "Failed to get native DigitalOut pointer");
    }

    // Cast the argument to C++
    I2C* i2c = reinterpret_cast<I2C*>(i2c_ptr);
    
    // Extract native LPS22HB_JS pointer (from this object) 
    LPS22HB_JS *native_ptr = new LPS22HB_JS(*i2c);

    jerry_value_t js_object = jerry_create_object();
    jerry_set_object_native_pointer(js_object, native_ptr, &native_obj_type_info);

    // attach methods
    ATTACH_CLASS_FUNCTION(js_object, LPS22HB_JS, get_temperature);
    ATTACH_CLASS_FUNCTION(js_object, LPS22HB_JS, get_pressure);
    
    return js_object;
}