diff --git a/.gitignore b/.gitignore index de2c4ae5d..d8650d8d5 100644 --- a/.gitignore +++ b/.gitignore @@ -5,9 +5,9 @@ *.exe *.o *.so - +deps_curl/ sb - +lib/skyhwd/build build data pkg @@ -162,4 +162,4 @@ seeds.csv histogram # Ignore compilator by qemu qemu_* -core \ No newline at end of file +core diff --git a/.travis.yml b/.travis.yml index 7fed954bb..704d02cca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -124,6 +124,7 @@ before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test && sudo apt-get update -qq; fi - ./ci-scripts/install-travis-gcc.sh - eval "CC=gcc-6 && CXX=g++-6" + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then DEPS_DIR="${TRAVIS_BUILD_DIR}/deps" && mkdir ${DEPS_DIR} && cd ${DEPS_DIR} && travis_retry wget --no-check-certificate https://cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz && echo "f3546812c11ce7f5d64dc132a566b749 *cmake-3.3.2-Linux-x86_64.tar.gz" > cmake_md5.txt && md5sum -c cmake_md5.txt && tar -xvf cmake-3.3.2-Linux-x86_64.tar.gz > /dev/null && mv cmake-3.3.2-Linux-x86_64 cmake-install && PATH=${DEPS_DIR}/cmake-install:${DEPS_DIR}/cmake-install/bin:$PATH && cd ${TRAVIS_BUILD_DIR} ; fi env: global: @@ -136,12 +137,12 @@ env: install: - # Install gox - - if [[ -z "$QEMU_PLATFORM" ]]; then go get github.com/gz-c/gox; fi + - if [[ -z "$QEMU_PLATFORM" ]]; then go get github.com/gz-c/gox ; fi - if [[ -z "$QEMU_PLATFORM" ]]; then go get -t ./... ; fi - if [[ -z "$QEMU_PLATFORM" ]]; then make install-linters ; fi - if [[ -z "$QEMU_PLATFORM" ]]; then VERSION=1.10.2 ./ci-scripts/install-golangci-lint.sh ; fi - if [[ -z "$QEMU_PLATFORM" ]]; then make install-deps-libc ; fi + - if [[ -z "$QEMU_PLATFORM" ]]; then make install-lib-skyhwd ; fi script: - echo $PWD diff --git a/Makefile b/Makefile index b6905f15b..3e1957c29 100644 --- a/Makefile +++ b/Makefile @@ -148,6 +148,15 @@ install-deps-Linux: ## Install deps on GNU/Linux install-deps-Darwin: ## Install deps on Mac OSX brew install $(PKG_LIB_TEST) +install-libraries-deps: ## Install deps on GNU/Linux + rm -rf deps + mkdir deps + if [[ "$(UNAME_S)" == "Linux" ]]; then (cd deps && wget --no-check-certificate https://cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz && echo "f3546812c11ce7f5d64dc132a566b749 *cmake-3.3.2-Linux-x86_64.tar.gz" > cmake_md5.txt && md5sum -c cmake_md5.txt && tar -xvf cmake-3.3.2-Linux-x86_64.tar.gz > /dev/null && mv cmake-3.3.2-Linux-x86_64 cmake-install && PATH=$(pwd)/deps/cmake-install:$(pwd)/deps/cmake-install/bin:$PATH ) && (cd deps && sudo apt remove curl && wget http://curl.haxx.se/download/curl-7.58.0.tar.gz && tar -xvf curl-7.58.0.tar.gz && cd curl-7.58.0/ && bash ./configure && make && sudo make install) ; fi + if [[ "$(UNAME_S)" == "Linux" ]]; then brew install curl ; fi + # install uncrustify + git clone https://github.com/uncrustify/uncrustify.git + (cd uncrustify && mkdir build && cd build && cmake .. && make && sudo make install) + install-linters: install-linters-$(UNAME_S) ## Install linters go get -u github.com/FiloSottile/vendorcheck # For some reason this install method is not recommended, see https://github.com/golangci/golangci-lint#install @@ -155,13 +164,16 @@ install-linters: install-linters-$(UNAME_S) ## Install linters go get -u github.com/golangci/golangci-lint/cmd/golangci-lint VERSION=1.10.2 ./ci-scripts/install-golangci-lint.sh -install-deps-libc: install-deps-libc-$(OSNAME) +install-deps-libc: install-deps-libc-$(OSNAME) install-libraries-deps install-deps-libc-linux: configure-build ## Install locally dependencies for testing libskycoin wget -c https://github.com/libcheck/check/releases/download/0.12.0/check-0.12.0.tar.gz tar -xzf check-0.12.0.tar.gz cd check-0.12.0 && ./configure --prefix=/usr --disable-static && make && sudo make install +install-lib-skyhwd: ## Install Sky Hardware wallet deamon rest wrapper + (cd lib/skyhwd && mkdir build && cd build && cmake .. && make && sudo make install) + install-deps-libc-osx: configure-build ## Install locally dependencies for testing libskycoin brew install check diff --git a/lib/skyhwd/.openapi-generator-ignore b/lib/skyhwd/.openapi-generator-ignore new file mode 100644 index 000000000..7484ee590 --- /dev/null +++ b/lib/skyhwd/.openapi-generator-ignore @@ -0,0 +1,23 @@ +# OpenAPI Generator Ignore +# Generated by openapi-generator https://github.com/openapitools/openapi-generator + +# Use this file to prevent files from being overwritten by the generator. +# The patterns follow closely to .gitignore or .dockerignore. + +# As an example, the C# client generator defines ApiClient.cs. +# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line: +#ApiClient.cs + +# You can match any string of characters against a directory, file or extension with a single asterisk (*): +#foo/*/qux +# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux + +# You can recursively match patterns against a directory, file or extension with a double asterisk (**): +#foo/**/qux +# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux + +# You can also negate patterns with an exclamation (!). +# For example, you can ignore all files in a docs folder with the file extension .md: +#docs/*.md +# Then explicitly reverse the ignore rule for a single file: +#!docs/README.md diff --git a/lib/skyhwd/.openapi-generator/VERSION b/lib/skyhwd/.openapi-generator/VERSION new file mode 100644 index 000000000..afa636560 --- /dev/null +++ b/lib/skyhwd/.openapi-generator/VERSION @@ -0,0 +1 @@ +4.0.0-SNAPSHOT \ No newline at end of file diff --git a/lib/skyhwd/CMakeLists.txt b/lib/skyhwd/CMakeLists.txt new file mode 100644 index 000000000..e7c2d255a --- /dev/null +++ b/lib/skyhwd/CMakeLists.txt @@ -0,0 +1,120 @@ +cmake_minimum_required (VERSION 2.6) +project (CGenerator) + +cmake_policy(SET CMP0063 NEW) + +set(CMAKE_C_VISIBILITY_PRESET default) +set(CMAKE_CXX_VISIBILITY_PRESET default) +set(CMAKE_VISIBILITY_INLINES_HIDDEN OFF) +set(CMAKE_BUILD_TYPE Debug) + +set(pkgName "hardware_wallet_daemon_api") + +find_package(CURL 7.58.0 REQUIRED) +if(CURL_FOUND) + include_directories(${CURL_INCLUDE_DIR}) + set(PLATFORM_LIBRARIES ${PLATFORM_LIBRARIES} ${CURL_LIBRARIES} ) +else(CURL_FOUND) + message(FATAL_ERROR "Could not find the CURL library and development files.") +endif() + +set(SRCS + src/list.c + src/apiKey.c + src/apiClient.c + external/cJSON.c + model/apply_settings_request.c + model/check_message_signature_request.c + model/csrf_response.c + model/features_response.c + model/features_response_data.c + model/generate_addresses_request.c + model/generate_addresses_response.c + model/generate_mnemonic_request.c + model/http_error_response.c + model/http_error_response_error.c + model/http_success_response.c + model/inline_response_200.c + model/passphrase_request.c + model/pin_matrix_request.c + model/recovery_request.c + model/set_mnemonic_request.c + model/sign_message_request.c + model/sign_message_response.c + model/transaction_input.c + model/transaction_output.c + model/transaction_sign_request.c + model/transaction_sign_response.c + model/word_request.c + api/DefaultAPI.c + +) + +set(HDRS + include/apiClient.h + include/list.h + include/keyValuePair.h + external/cJSON.h + model/apply_settings_request.h + model/check_message_signature_request.h + model/csrf_response.h + model/features_response.h + model/features_response_data.h + model/generate_addresses_request.h + model/generate_addresses_response.h + model/generate_mnemonic_request.h + model/http_error_response.h + model/http_error_response_error.h + model/http_success_response.h + model/inline_response_200.h + model/passphrase_request.h + model/pin_matrix_request.h + model/recovery_request.h + model/set_mnemonic_request.h + model/sign_message_request.h + model/sign_message_response.h + model/transaction_input.h + model/transaction_output.h + model/transaction_sign_request.h + model/transaction_sign_response.h + model/word_request.h + api/DefaultAPI.h + +) + +# Add library with project file with projectname as library name +add_library(${pkgName} SHARED ${SRCS} ${HDRS}) +# Link dependent libraries +target_link_libraries(${pkgName} ${CURL_LIBRARIES} ) +#install library to destination +install(TARGETS ${pkgName} DESTINATION ${CMAKE_INSTALL_PREFIX}) + +# Setting file variables to null +set(SRCS "") +set(HDRS "") + + +## This section shows how to use the above compiled libary to compile the source files +## set source files +#set(SRCS +# unit-tests/manual-PetAPI.c +# unit-tests/manual-StoreAPI.c +# unit-tests/manual-UserAPI.c +# unit-tests/manual-order.c +# unit-tests/manual-user.c) + +##set header files +#set(HDRS +#) + +## loop over all files in SRCS variable +#foreach(SOURCE_FILE ${SRCS}) +# # Get only the file name from the file as add_executable doesnot support executable with slash("/") +# get_filename_component(FILE_NAME_ONLY ${SOURCE_FILE} NAME_WE) +# # Remove .c from the file name and set it as executable name +# string( REPLACE ".c" "" EXECUTABLE_FILE ${FILE_NAME_ONLY}) +# # Add executable for every source file in SRCS +# add_executable(unit-${EXECUTABLE_FILE} ${SOURCE_FILE}) +# # Link above created libary to executable and dependent libary curl +# target_link_libraries(unit-${EXECUTABLE_FILE} ${CURL_LIBRARIES} ${pkgName} ) +#endforeach(SOURCE_FILE ${SRCS}) diff --git a/lib/skyhwd/README.md b/lib/skyhwd/README.md new file mode 100644 index 000000000..14b9e4283 --- /dev/null +++ b/lib/skyhwd/README.md @@ -0,0 +1,64 @@ +# C API client for hardware_wallet_daemon_api + +## Overview +This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI spec](https://openapis.org) from a remote server, you can easily generate an API client. + +- API version: 0.1.0 +- Package version: +- Build package: org.openapitools.codegen.languages.CLibcurlClientCodegen + +## Installation +You'll need the `curl 7.58.0` package in order to build the API. To have code formatted nicely you also need to have uncrustify version 0.67. + +# Prerequisites + +## Install the `curl 7.58.0` package with the following command on Linux. +```bash +sudo apt remove curl +wget http://curl.haxx.se/download/curl-7.58.0.tar.gz +tar -xvf curl-7.58.0.tar.gz +cd curl-7.58.0/ +./configure +make +sudo make install +``` +## Install the `uncrustify 0.67` package with the following command on Linux. +```bash +git clone https://github.com/uncrustify/uncrustify.git +cd uncrustify +mkdir build +cd build +cmake .. +make +sudo make install +``` + +## Compile the sample: +This will compile the generated code and create a library in build folder which has to be linked to the codes where API will be used. +```bash +mkdir build +cd build +// To install library to specific location use following command +cmake -DCMAKE_INSTALL_PREFIX=/pathtolocaiton .. +// for normal install use following command +cmake .. +make +sudo make install +``` +## How to use compiled library +Considering the test/source code which uses the API is written in main.c(respective api include is written and all objects necessary are defined and created) + +To compile main.c(considering the file is present in build folder) use following command +-L - locaiton of the library(not required if cmake with normal installation is performed) +-l library name +```bash +gcc main.c -L. -lpetstore -o main +``` +once compile, you can run it with ``` ./main ``` + +Note: You dont need to specify includes for models and include folder seperately as they are path linked. You just have to import the api.h file in your code, the include linking will work. + +## Author + +steve@skycoin.net + diff --git a/lib/skyhwd/api/DefaultAPI.c b/lib/skyhwd/api/DefaultAPI.c new file mode 100644 index 000000000..3a0958816 --- /dev/null +++ b/lib/skyhwd/api/DefaultAPI.c @@ -0,0 +1,1300 @@ +#include +#include +#include +#include "DefaultAPI.h" + + +#define MAX_BUFFER_LENGTH 4096 +#define intToStr(dst, src) \ + do {\ + char dst[256];\ + snprintf(dst, 256, "%ld", (long int)(src));\ +}while(0) + +// Apply hardware wallet settings. +// +http_success_response_t* +DefaultAPI_applySettingsPost(apiClient_t *apiClient ,apply_settings_request_t * ApplySettingsRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/apply_settings")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/apply_settings"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_ApplySettingsRequest; + if (ApplySettingsRequest != NULL) + { + //string + localVarSingleItemJSON_ApplySettingsRequest = apply_settings_request_convertToJSON(ApplySettingsRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_ApplySettingsRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_ApplySettingsRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// check whether a skywallet is connected to the machine. +// +inline_response_200_t* +DefaultAPI_availableGet(apiClient_t *apiClient) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = NULL; + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/available")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/available"); + + + + list_addElement(localVarHeaderType,"application/json"); //produces + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "GET"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + inline_response_200_t *elementToReturn = inline_response_200_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + + free(localVarPath); + return elementToReturn; +end: + return NULL; + +} + +// Start seed backup procedure. +// +http_success_response_t* +DefaultAPI_backupPost(apiClient_t *apiClient) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = NULL; + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/backup")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/backup"); + + + + list_addElement(localVarHeaderType,"application/json"); //produces + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + + free(localVarPath); + return elementToReturn; +end: + return NULL; + +} + +// Cancels the current operation. +// +http_success_response_t* +DefaultAPI_cancelPut(apiClient_t *apiClient) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = NULL; + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/cancel")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/cancel"); + + + + list_addElement(localVarHeaderType,"application/json"); //produces + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "PUT"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + + free(localVarPath); + return elementToReturn; +end: + return NULL; + +} + +// Check a message signature matches the given address. +// +http_success_response_t* +DefaultAPI_checkMessageSignaturePost(apiClient_t *apiClient ,check_message_signature_request_t * CheckMessageSignatureRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/check_message_signature")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/check_message_signature"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_CheckMessageSignatureRequest; + if (CheckMessageSignatureRequest != NULL) + { + //string + localVarSingleItemJSON_CheckMessageSignatureRequest = check_message_signature_request_convertToJSON(CheckMessageSignatureRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_CheckMessageSignatureRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_CheckMessageSignatureRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// Configure a pin code on the device. +// +http_success_response_t* +DefaultAPI_configurePinCodePost(apiClient_t *apiClient ,int remove_pin) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = list_create(); + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/configure_pin_code")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/configure_pin_code"); + + + + + // form parameters + char *keyForm_remove_pin; + int valueForm_remove_pin; + keyValuePair_t *keyPairForm_remove_pin = 0; + if (remove_pin != NULL) + { + keyForm_remove_pin = strdup("remove_pin"); + valueForm_remove_pin = (remove_pin); + keyPairForm_remove_pin = keyValuePair_create(keyForm_remove_pin,&valueForm_remove_pin); + list_addElement(localVarFormParameters,keyPairForm_remove_pin); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/x-www-form-urlencoded"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + list_free(localVarFormParameters); + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + free(keyForm_remove_pin); + free(keyPairForm_remove_pin); + return elementToReturn; +end: + return NULL; + +} + +// Returns csrf token +// +csrf_response_t* +DefaultAPI_csrfGet(apiClient_t *apiClient) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = NULL; + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/csrf")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/csrf"); + + + + list_addElement(localVarHeaderType,"application/json"); //produces + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "GET"); + + if (apiClient->response_code == 200) { + printf("%s\n","successful operation"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + csrf_response_t *elementToReturn = csrf_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + + free(localVarPath); + return elementToReturn; +end: + return NULL; + +} + +// Returns device information. +// +features_response_t* +DefaultAPI_featuresGet(apiClient_t *apiClient) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = NULL; + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/features")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/features"); + + + + list_addElement(localVarHeaderType,"application/json"); //produces + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "GET"); + + if (apiClient->response_code == 200) { + printf("%s\n","successful operation"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + features_response_t *elementToReturn = features_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + + free(localVarPath); + return elementToReturn; +end: + return NULL; + +} + +// Update firmware +// +http_success_response_t* +DefaultAPI_firmwareUpdatePut(apiClient_t *apiClient) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = NULL; + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/firmware_update")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/firmware_update"); + + + + list_addElement(localVarHeaderType,"application/json"); //produces + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "PUT"); + + if (apiClient->response_code == 200) { + printf("%s\n","successful operation"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + + free(localVarPath); + return elementToReturn; +end: + return NULL; + +} + +// Generate addresses for the hardware wallet seed. +// +generate_addresses_response_t* +DefaultAPI_generateAddressesPost(apiClient_t *apiClient ,generate_addresses_request_t * GenerateAddressesRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/generate_addresses")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/generate_addresses"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_GenerateAddressesRequest; + if (GenerateAddressesRequest != NULL) + { + //string + localVarSingleItemJSON_GenerateAddressesRequest = generate_addresses_request_convertToJSON(GenerateAddressesRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_GenerateAddressesRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + generate_addresses_response_t *elementToReturn = generate_addresses_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_GenerateAddressesRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// Generate mnemonic can be used to initialize the device with a random seed. +// +http_success_response_t* +DefaultAPI_generateMnemonicPost(apiClient_t *apiClient ,generate_mnemonic_request_t * GenerateMnemonicRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/generate_mnemonic")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/generate_mnemonic"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_GenerateMnemonicRequest; + if (GenerateMnemonicRequest != NULL) + { + //string + localVarSingleItemJSON_GenerateMnemonicRequest = generate_mnemonic_request_convertToJSON(GenerateMnemonicRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_GenerateMnemonicRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","successful operation"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_GenerateMnemonicRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// passphrase ack request. +// +http_success_response_t* +DefaultAPI_intermediatePassphrasePost(apiClient_t *apiClient ,passphrase_request_t * PassphraseRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/intermediate/passphrase")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/intermediate/passphrase"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_PassphraseRequest; + if (PassphraseRequest != NULL) + { + //string + localVarSingleItemJSON_PassphraseRequest = passphrase_request_convertToJSON(PassphraseRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_PassphraseRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_PassphraseRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// pin matrix ack request. +// +http_success_response_t* +DefaultAPI_intermediatePinMatrixPost(apiClient_t *apiClient ,pin_matrix_request_t * PinMatrixRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/intermediate/pin_matrix")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/intermediate/pin_matrix"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_PinMatrixRequest; + if (PinMatrixRequest != NULL) + { + //string + localVarSingleItemJSON_PinMatrixRequest = pin_matrix_request_convertToJSON(PinMatrixRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_PinMatrixRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_PinMatrixRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// word ack request. +// +http_success_response_t* +DefaultAPI_intermediateWordPost(apiClient_t *apiClient ,word_request_t * WordRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/intermediate/word")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/intermediate/word"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_WordRequest; + if (WordRequest != NULL) + { + //string + localVarSingleItemJSON_WordRequest = word_request_convertToJSON(WordRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_WordRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_WordRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// Recover existing wallet using seed. +// +http_success_response_t* +DefaultAPI_recoveryPost(apiClient_t *apiClient ,recovery_request_t * RecoveryRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/recovery")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/recovery"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_RecoveryRequest; + if (RecoveryRequest != NULL) + { + //string + localVarSingleItemJSON_RecoveryRequest = recovery_request_convertToJSON(RecoveryRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_RecoveryRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","intermediate response"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_RecoveryRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// Set mnemonic can be used to initialize the device with your own seed. +// +http_success_response_t* +DefaultAPI_setMnemonicPost(apiClient_t *apiClient ,set_mnemonic_request_t * SetMnemonicRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/set_mnemonic")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/set_mnemonic"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_SetMnemonicRequest; + if (SetMnemonicRequest != NULL) + { + //string + localVarSingleItemJSON_SetMnemonicRequest = set_mnemonic_request_convertToJSON(SetMnemonicRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_SetMnemonicRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_SetMnemonicRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// Sign a message using the secret key at given index. +// +sign_message_response_t* +DefaultAPI_signMessagePost(apiClient_t *apiClient ,sign_message_request_t * SignMessageRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/sign_message")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/sign_message"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_SignMessageRequest; + if (SignMessageRequest != NULL) + { + //string + localVarSingleItemJSON_SignMessageRequest = sign_message_request_convertToJSON(SignMessageRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_SignMessageRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","successful operation"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + sign_message_response_t *elementToReturn = sign_message_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_SignMessageRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// Sign a transaction with the hardware wallet. +// +transaction_sign_response_t* +DefaultAPI_transactionSignPost(apiClient_t *apiClient ,transaction_sign_request_t * TransactionSignRequest) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = list_create(); + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/transaction_sign")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/transaction_sign"); + + + + + // Body Param + cJSON *localVarSingleItemJSON_TransactionSignRequest; + if (TransactionSignRequest != NULL) + { + //string + localVarSingleItemJSON_TransactionSignRequest = transaction_sign_request_convertToJSON(TransactionSignRequest); + localVarBodyParameters = cJSON_Print(localVarSingleItemJSON_TransactionSignRequest); + } + list_addElement(localVarHeaderType,"application/json"); //produces + list_addElement(localVarContentType,"application/json"); //consumes + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "POST"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + transaction_sign_response_t *elementToReturn = transaction_sign_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + list_free(localVarContentType); + free(localVarPath); + cJSON_Delete(localVarSingleItemJSON_TransactionSignRequest); + free(localVarBodyParameters); + return elementToReturn; +end: + return NULL; + +} + +// clean all the configurations. +// +http_success_response_t* +DefaultAPI_wipeDelete(apiClient_t *apiClient) +{ + list_t *localVarQueryParameters = NULL; + list_t *localVarHeaderParameters = NULL; + list_t *localVarFormParameters = NULL; + list_t *localVarHeaderType = list_create(); + list_t *localVarContentType = NULL; + char *localVarBodyParameters = NULL; + + // create the path + long sizeOfPath = strlen("/wipe")+1; + char *localVarPath = malloc(sizeOfPath); + snprintf(localVarPath, sizeOfPath, "/wipe"); + + + + list_addElement(localVarHeaderType,"application/json"); //produces + apiClient_invoke(apiClient, + localVarPath, + localVarQueryParameters, + localVarHeaderParameters, + localVarFormParameters, + localVarHeaderType, + localVarContentType, + localVarBodyParameters, + "DELETE"); + + if (apiClient->response_code == 200) { + printf("%s\n","success"); + } + if (apiClient->response_code == 0) { + printf("%s\n","error"); + } + //nonprimitive not container + cJSON *DefaultAPIlocalVarJSON = cJSON_Parse(apiClient->dataReceived); + http_success_response_t *elementToReturn = http_success_response_parseFromJSON(DefaultAPIlocalVarJSON); + cJSON_Delete(DefaultAPIlocalVarJSON); + if(elementToReturn == NULL) { + // return 0; + } + + //return type + if (apiClient->dataReceived) { + free(apiClient->dataReceived); + } + + + + list_free(localVarHeaderType); + + free(localVarPath); + return elementToReturn; +end: + return NULL; + +} + diff --git a/lib/skyhwd/api/DefaultAPI.h b/lib/skyhwd/api/DefaultAPI.h new file mode 100644 index 000000000..40c9be992 --- /dev/null +++ b/lib/skyhwd/api/DefaultAPI.h @@ -0,0 +1,141 @@ +#include +#include +#include "../include/apiClient.h" +#include "../include/list.h" +#include "../external/cJSON.h" +#include "../include/keyValuePair.h" +#include "../model/apply_settings_request.h" +#include "../model/check_message_signature_request.h" +#include "../model/csrf_response.h" +#include "../model/features_response.h" +#include "../model/generate_addresses_request.h" +#include "../model/generate_addresses_response.h" +#include "../model/generate_mnemonic_request.h" +#include "../model/http_error_response.h" +#include "../model/http_success_response.h" +#include "../model/inline_response_200.h" +#include "../model/passphrase_request.h" +#include "../model/pin_matrix_request.h" +#include "../model/recovery_request.h" +#include "../model/set_mnemonic_request.h" +#include "../model/sign_message_request.h" +#include "../model/sign_message_response.h" +#include "../model/transaction_sign_request.h" +#include "../model/transaction_sign_response.h" +#include "../model/word_request.h" + + +// Apply hardware wallet settings. +// +http_success_response_t* +DefaultAPI_applySettingsPost(apiClient_t *apiClient ,apply_settings_request_t * ApplySettingsRequest); + + +// check whether a skywallet is connected to the machine. +// +inline_response_200_t* +DefaultAPI_availableGet(apiClient_t *apiClient); + + +// Start seed backup procedure. +// +http_success_response_t* +DefaultAPI_backupPost(apiClient_t *apiClient); + + +// Cancels the current operation. +// +http_success_response_t* +DefaultAPI_cancelPut(apiClient_t *apiClient); + + +// Check a message signature matches the given address. +// +http_success_response_t* +DefaultAPI_checkMessageSignaturePost(apiClient_t *apiClient ,check_message_signature_request_t * CheckMessageSignatureRequest); + + +// Configure a pin code on the device. +// +http_success_response_t* +DefaultAPI_configurePinCodePost(apiClient_t *apiClient ,int remove_pin); + + +// Returns csrf token +// +csrf_response_t* +DefaultAPI_csrfGet(apiClient_t *apiClient); + + +// Returns device information. +// +features_response_t* +DefaultAPI_featuresGet(apiClient_t *apiClient); + + +// Update firmware +// +http_success_response_t* +DefaultAPI_firmwareUpdatePut(apiClient_t *apiClient); + + +// Generate addresses for the hardware wallet seed. +// +generate_addresses_response_t* +DefaultAPI_generateAddressesPost(apiClient_t *apiClient ,generate_addresses_request_t * GenerateAddressesRequest); + + +// Generate mnemonic can be used to initialize the device with a random seed. +// +http_success_response_t* +DefaultAPI_generateMnemonicPost(apiClient_t *apiClient ,generate_mnemonic_request_t * GenerateMnemonicRequest); + + +// passphrase ack request. +// +http_success_response_t* +DefaultAPI_intermediatePassphrasePost(apiClient_t *apiClient ,passphrase_request_t * PassphraseRequest); + + +// pin matrix ack request. +// +http_success_response_t* +DefaultAPI_intermediatePinMatrixPost(apiClient_t *apiClient ,pin_matrix_request_t * PinMatrixRequest); + + +// word ack request. +// +http_success_response_t* +DefaultAPI_intermediateWordPost(apiClient_t *apiClient ,word_request_t * WordRequest); + + +// Recover existing wallet using seed. +// +http_success_response_t* +DefaultAPI_recoveryPost(apiClient_t *apiClient ,recovery_request_t * RecoveryRequest); + + +// Set mnemonic can be used to initialize the device with your own seed. +// +http_success_response_t* +DefaultAPI_setMnemonicPost(apiClient_t *apiClient ,set_mnemonic_request_t * SetMnemonicRequest); + + +// Sign a message using the secret key at given index. +// +sign_message_response_t* +DefaultAPI_signMessagePost(apiClient_t *apiClient ,sign_message_request_t * SignMessageRequest); + + +// Sign a transaction with the hardware wallet. +// +transaction_sign_response_t* +DefaultAPI_transactionSignPost(apiClient_t *apiClient ,transaction_sign_request_t * TransactionSignRequest); + + +// clean all the configurations. +// +http_success_response_t* +DefaultAPI_wipeDelete(apiClient_t *apiClient); + + diff --git a/lib/skyhwd/external/cJSON.c b/lib/skyhwd/external/cJSON.c new file mode 100644 index 000000000..cbdec4132 --- /dev/null +++ b/lib/skyhwd/external/cJSON.c @@ -0,0 +1,2932 @@ +/* + Copyright (c) 2009-2017 Dave Gamble and cJSON contributors + + 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. +*/ + +/* cJSON */ +/* JSON parser in C. */ + +/* disable warnings about old C89 functions in MSVC */ +#if !defined(_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) +#define _CRT_SECURE_NO_DEPRECATE +#endif + +#ifdef __GNUC__ +#pragma GCC visibility push(default) +#endif +#if defined(_MSC_VER) +#pragma warning (push) +/* disable warning about single line comments in system headers */ +#pragma warning (disable : 4001) +#endif + +#include +#include +#include +#include +#include +#include + +#ifdef ENABLE_LOCALES +#include +#endif + +#if defined(_MSC_VER) +#pragma warning (pop) +#endif +#ifdef __GNUC__ +#pragma GCC visibility pop +#endif + +#include "cJSON.h" + +/* define our own boolean type */ +#define true ((cJSON_bool)1) +#define false ((cJSON_bool)0) + +typedef struct { + const unsigned char *json; + size_t position; +} error; +static error global_error = { NULL, 0 }; + +CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void) +{ + return (const char*) (global_error.json + global_error.position); +} + +CJSON_PUBLIC(char *) cJSON_GetStringValue(cJSON *item) { + if (!cJSON_IsString(item)) { + return NULL; + } + + return item->valuestring; +} + +/* This is a safeguard to prevent copy-pasters from using incompatible C and header files */ +#if (CJSON_VERSION_MAJOR != 1) || (CJSON_VERSION_MINOR != 7) || (CJSON_VERSION_PATCH != 7) + #error cJSON.h and cJSON.c have different versions. Make sure that both have the same. +#endif + +CJSON_PUBLIC(const char*) cJSON_Version(void) +{ + static char version[15]; + sprintf(version, "%i.%i.%i", CJSON_VERSION_MAJOR, CJSON_VERSION_MINOR, CJSON_VERSION_PATCH); + + return version; +} + +/* Case insensitive string comparison, doesn't consider two NULL pointers equal though */ +static int case_insensitive_strcmp(const unsigned char *string1, const unsigned char *string2) +{ + if ((string1 == NULL) || (string2 == NULL)) + { + return 1; + } + + if (string1 == string2) + { + return 0; + } + + for(; tolower(*string1) == tolower(*string2); (void)string1++, string2++) + { + if (*string1 == '\0') + { + return 0; + } + } + + return tolower(*string1) - tolower(*string2); +} + +typedef struct internal_hooks +{ + void *(*allocate)(size_t size); + void (*deallocate)(void *pointer); + void *(*reallocate)(void *pointer, size_t size); +} internal_hooks; + +#if defined(_MSC_VER) +/* work around MSVC error C2322: '...' address of dillimport '...' is not static */ +static void *internal_malloc(size_t size) +{ + return malloc(size); +} +static void internal_free(void *pointer) +{ + free(pointer); +} +static void *internal_realloc(void *pointer, size_t size) +{ + return realloc(pointer, size); +} +#else +#define internal_malloc malloc +#define internal_free free +#define internal_realloc realloc +#endif + +static internal_hooks global_hooks = { internal_malloc, internal_free, internal_realloc }; + +static unsigned char* cJSON_strdup(const unsigned char* string, const internal_hooks * const hooks) +{ + size_t length = 0; + unsigned char *copy = NULL; + + if (string == NULL) + { + return NULL; + } + + length = strlen((const char*)string) + sizeof(""); + copy = (unsigned char*)hooks->allocate(length); + if (copy == NULL) + { + return NULL; + } + memcpy(copy, string, length); + + return copy; +} + +CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks) +{ + if (hooks == NULL) + { + /* Reset hooks */ + global_hooks.allocate = malloc; + global_hooks.deallocate = free; + global_hooks.reallocate = realloc; + return; + } + + global_hooks.allocate = malloc; + if (hooks->malloc_fn != NULL) + { + global_hooks.allocate = hooks->malloc_fn; + } + + global_hooks.deallocate = free; + if (hooks->free_fn != NULL) + { + global_hooks.deallocate = hooks->free_fn; + } + + /* use realloc only if both free and malloc are used */ + global_hooks.reallocate = NULL; + if ((global_hooks.allocate == malloc) && (global_hooks.deallocate == free)) + { + global_hooks.reallocate = realloc; + } +} + +/* Internal constructor. */ +static cJSON *cJSON_New_Item(const internal_hooks * const hooks) +{ + cJSON* node = (cJSON*)hooks->allocate(sizeof(cJSON)); + if (node) + { + memset(node, '\0', sizeof(cJSON)); + } + + return node; +} + +/* Delete a cJSON structure. */ +CJSON_PUBLIC(void) cJSON_Delete(cJSON *item) +{ + cJSON *next = NULL; + while (item != NULL) + { + next = item->next; + if (!(item->type & cJSON_IsReference) && (item->child != NULL)) + { + cJSON_Delete(item->child); + } + if (!(item->type & cJSON_IsReference) && (item->valuestring != NULL)) + { + global_hooks.deallocate(item->valuestring); + } + if (!(item->type & cJSON_StringIsConst) && (item->string != NULL)) + { + global_hooks.deallocate(item->string); + } + global_hooks.deallocate(item); + item = next; + } +} + +/* get the decimal point character of the current locale */ +static unsigned char get_decimal_point(void) +{ +#ifdef ENABLE_LOCALES + struct lconv *lconv = localeconv(); + return (unsigned char) lconv->decimal_point[0]; +#else + return '.'; +#endif +} + +typedef struct +{ + const unsigned char *content; + size_t length; + size_t offset; + size_t depth; /* How deeply nested (in arrays/objects) is the input at the current offset. */ + internal_hooks hooks; +} parse_buffer; + +/* check if the given size is left to read in a given parse buffer (starting with 1) */ +#define can_read(buffer, size) ((buffer != NULL) && (((buffer)->offset + size) <= (buffer)->length)) +/* check if the buffer can be accessed at the given index (starting with 0) */ +#define can_access_at_index(buffer, index) ((buffer != NULL) && (((buffer)->offset + index) < (buffer)->length)) +#define cannot_access_at_index(buffer, index) (!can_access_at_index(buffer, index)) +/* get a pointer to the buffer at the position */ +#define buffer_at_offset(buffer) ((buffer)->content + (buffer)->offset) + +/* Parse the input text to generate a number, and populate the result into item. */ +static cJSON_bool parse_number(cJSON * const item, parse_buffer * const input_buffer) +{ + double number = 0; + unsigned char *after_end = NULL; + unsigned char number_c_string[64]; + unsigned char decimal_point = get_decimal_point(); + size_t i = 0; + + if ((input_buffer == NULL) || (input_buffer->content == NULL)) + { + return false; + } + + /* copy the number into a temporary buffer and replace '.' with the decimal point + * of the current locale (for strtod) + * This also takes care of '\0' not necessarily being available for marking the end of the input */ + for (i = 0; (i < (sizeof(number_c_string) - 1)) && can_access_at_index(input_buffer, i); i++) + { + switch (buffer_at_offset(input_buffer)[i]) + { + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': + case '8': + case '9': + case '+': + case '-': + case 'e': + case 'E': + number_c_string[i] = buffer_at_offset(input_buffer)[i]; + break; + + case '.': + number_c_string[i] = decimal_point; + break; + + default: + goto loop_end; + } + } +loop_end: + number_c_string[i] = '\0'; + + number = strtod((const char*)number_c_string, (char**)&after_end); + if (number_c_string == after_end) + { + return false; /* parse_error */ + } + + item->valuedouble = number; + + /* use saturation in case of overflow */ + if (number >= INT_MAX) + { + item->valueint = INT_MAX; + } + else if (number <= INT_MIN) + { + item->valueint = INT_MIN; + } + else + { + item->valueint = (int)number; + } + + item->type = cJSON_Number; + + input_buffer->offset += (size_t)(after_end - number_c_string); + return true; +} + +/* don't ask me, but the original cJSON_SetNumberValue returns an integer or double */ +CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number) +{ + if (number >= INT_MAX) + { + object->valueint = INT_MAX; + } + else if (number <= INT_MIN) + { + object->valueint = INT_MIN; + } + else + { + object->valueint = (int)number; + } + + return object->valuedouble = number; +} + +typedef struct +{ + unsigned char *buffer; + size_t length; + size_t offset; + size_t depth; /* current nesting depth (for formatted printing) */ + cJSON_bool noalloc; + cJSON_bool format; /* is this print a formatted print */ + internal_hooks hooks; +} printbuffer; + +/* realloc printbuffer if necessary to have at least "needed" bytes more */ +static unsigned char* ensure(printbuffer * const p, size_t needed) +{ + unsigned char *newbuffer = NULL; + size_t newsize = 0; + + if ((p == NULL) || (p->buffer == NULL)) + { + return NULL; + } + + if ((p->length > 0) && (p->offset >= p->length)) + { + /* make sure that offset is valid */ + return NULL; + } + + if (needed > INT_MAX) + { + /* sizes bigger than INT_MAX are currently not supported */ + return NULL; + } + + needed += p->offset + 1; + if (needed <= p->length) + { + return p->buffer + p->offset; + } + + if (p->noalloc) { + return NULL; + } + + /* calculate new buffer size */ + if (needed > (INT_MAX / 2)) + { + /* overflow of int, use INT_MAX if possible */ + if (needed <= INT_MAX) + { + newsize = INT_MAX; + } + else + { + return NULL; + } + } + else + { + newsize = needed * 2; + } + + if (p->hooks.reallocate != NULL) + { + /* reallocate with realloc if available */ + newbuffer = (unsigned char*)p->hooks.reallocate(p->buffer, newsize); + if (newbuffer == NULL) + { + p->hooks.deallocate(p->buffer); + p->length = 0; + p->buffer = NULL; + + return NULL; + } + } + else + { + /* otherwise reallocate manually */ + newbuffer = (unsigned char*)p->hooks.allocate(newsize); + if (!newbuffer) + { + p->hooks.deallocate(p->buffer); + p->length = 0; + p->buffer = NULL; + + return NULL; + } + if (newbuffer) + { + memcpy(newbuffer, p->buffer, p->offset + 1); + } + p->hooks.deallocate(p->buffer); + } + p->length = newsize; + p->buffer = newbuffer; + + return newbuffer + p->offset; +} + +/* calculate the new length of the string in a printbuffer and update the offset */ +static void update_offset(printbuffer * const buffer) +{ + const unsigned char *buffer_pointer = NULL; + if ((buffer == NULL) || (buffer->buffer == NULL)) + { + return; + } + buffer_pointer = buffer->buffer + buffer->offset; + + buffer->offset += strlen((const char*)buffer_pointer); +} + +/* Render the number nicely from the given item into a string. */ +static cJSON_bool print_number(const cJSON * const item, printbuffer * const output_buffer) +{ + unsigned char *output_pointer = NULL; + double d = item->valuedouble; + int length = 0; + size_t i = 0; + unsigned char number_buffer[26]; /* temporary buffer to print the number into */ + unsigned char decimal_point = get_decimal_point(); + double test; + + if (output_buffer == NULL) + { + return false; + } + + /* This checks for NaN and Infinity */ + if ((d * 0) != 0) + { + length = sprintf((char*)number_buffer, "null"); + } + else + { + /* Try 15 decimal places of precision to avoid nonsignificant nonzero digits */ + length = sprintf((char*)number_buffer, "%1.15g", d); + + /* Check whether the original double can be recovered */ + if ((sscanf((char*)number_buffer, "%lg", &test) != 1) || ((double)test != d)) + { + /* If not, print with 17 decimal places of precision */ + length = sprintf((char*)number_buffer, "%1.17g", d); + } + } + + /* sprintf failed or buffer overrun occured */ + if ((length < 0) || (length > (int)(sizeof(number_buffer) - 1))) + { + return false; + } + + /* reserve appropriate space in the output */ + output_pointer = ensure(output_buffer, (size_t)length + sizeof("")); + if (output_pointer == NULL) + { + return false; + } + + /* copy the printed number to the output and replace locale + * dependent decimal point with '.' */ + for (i = 0; i < ((size_t)length); i++) + { + if (number_buffer[i] == decimal_point) + { + output_pointer[i] = '.'; + continue; + } + + output_pointer[i] = number_buffer[i]; + } + output_pointer[i] = '\0'; + + output_buffer->offset += (size_t)length; + + return true; +} + +/* parse 4 digit hexadecimal number */ +static unsigned parse_hex4(const unsigned char * const input) +{ + unsigned int h = 0; + size_t i = 0; + + for (i = 0; i < 4; i++) + { + /* parse digit */ + if ((input[i] >= '0') && (input[i] <= '9')) + { + h += (unsigned int) input[i] - '0'; + } + else if ((input[i] >= 'A') && (input[i] <= 'F')) + { + h += (unsigned int) 10 + input[i] - 'A'; + } + else if ((input[i] >= 'a') && (input[i] <= 'f')) + { + h += (unsigned int) 10 + input[i] - 'a'; + } + else /* invalid */ + { + return 0; + } + + if (i < 3) + { + /* shift left to make place for the next nibble */ + h = h << 4; + } + } + + return h; +} + +/* converts a UTF-16 literal to UTF-8 + * A literal can be one or two sequences of the form \uXXXX */ +static unsigned char utf16_literal_to_utf8(const unsigned char * const input_pointer, const unsigned char * const input_end, unsigned char **output_pointer) +{ + long unsigned int codepoint = 0; + unsigned int first_code = 0; + const unsigned char *first_sequence = input_pointer; + unsigned char utf8_length = 0; + unsigned char utf8_position = 0; + unsigned char sequence_length = 0; + unsigned char first_byte_mark = 0; + + if ((input_end - first_sequence) < 6) + { + /* input ends unexpectedly */ + goto fail; + } + + /* get the first utf16 sequence */ + first_code = parse_hex4(first_sequence + 2); + + /* check that the code is valid */ + if (((first_code >= 0xDC00) && (first_code <= 0xDFFF))) + { + goto fail; + } + + /* UTF16 surrogate pair */ + if ((first_code >= 0xD800) && (first_code <= 0xDBFF)) + { + const unsigned char *second_sequence = first_sequence + 6; + unsigned int second_code = 0; + sequence_length = 12; /* \uXXXX\uXXXX */ + + if ((input_end - second_sequence) < 6) + { + /* input ends unexpectedly */ + goto fail; + } + + if ((second_sequence[0] != '\\') || (second_sequence[1] != 'u')) + { + /* missing second half of the surrogate pair */ + goto fail; + } + + /* get the second utf16 sequence */ + second_code = parse_hex4(second_sequence + 2); + /* check that the code is valid */ + if ((second_code < 0xDC00) || (second_code > 0xDFFF)) + { + /* invalid second half of the surrogate pair */ + goto fail; + } + + + /* calculate the unicode codepoint from the surrogate pair */ + codepoint = 0x10000 + (((first_code & 0x3FF) << 10) | (second_code & 0x3FF)); + } + else + { + sequence_length = 6; /* \uXXXX */ + codepoint = first_code; + } + + /* encode as UTF-8 + * takes at maximum 4 bytes to encode: + * 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx */ + if (codepoint < 0x80) + { + /* normal ascii, encoding 0xxxxxxx */ + utf8_length = 1; + } + else if (codepoint < 0x800) + { + /* two bytes, encoding 110xxxxx 10xxxxxx */ + utf8_length = 2; + first_byte_mark = 0xC0; /* 11000000 */ + } + else if (codepoint < 0x10000) + { + /* three bytes, encoding 1110xxxx 10xxxxxx 10xxxxxx */ + utf8_length = 3; + first_byte_mark = 0xE0; /* 11100000 */ + } + else if (codepoint <= 0x10FFFF) + { + /* four bytes, encoding 1110xxxx 10xxxxxx 10xxxxxx 10xxxxxx */ + utf8_length = 4; + first_byte_mark = 0xF0; /* 11110000 */ + } + else + { + /* invalid unicode codepoint */ + goto fail; + } + + /* encode as utf8 */ + for (utf8_position = (unsigned char)(utf8_length - 1); utf8_position > 0; utf8_position--) + { + /* 10xxxxxx */ + (*output_pointer)[utf8_position] = (unsigned char)((codepoint | 0x80) & 0xBF); + codepoint >>= 6; + } + /* encode first byte */ + if (utf8_length > 1) + { + (*output_pointer)[0] = (unsigned char)((codepoint | first_byte_mark) & 0xFF); + } + else + { + (*output_pointer)[0] = (unsigned char)(codepoint & 0x7F); + } + + *output_pointer += utf8_length; + + return sequence_length; + +fail: + return 0; +} + +/* Parse the input text into an unescaped cinput, and populate item. */ +static cJSON_bool parse_string(cJSON * const item, parse_buffer * const input_buffer) +{ + const unsigned char *input_pointer = buffer_at_offset(input_buffer) + 1; + const unsigned char *input_end = buffer_at_offset(input_buffer) + 1; + unsigned char *output_pointer = NULL; + unsigned char *output = NULL; + + /* not a string */ + if (buffer_at_offset(input_buffer)[0] != '\"') + { + goto fail; + } + + { + /* calculate approximate size of the output (overestimate) */ + size_t allocation_length = 0; + size_t skipped_bytes = 0; + while (((size_t)(input_end - input_buffer->content) < input_buffer->length) && (*input_end != '\"')) + { + /* is escape sequence */ + if (input_end[0] == '\\') + { + if ((size_t)(input_end + 1 - input_buffer->content) >= input_buffer->length) + { + /* prevent buffer overflow when last input character is a backslash */ + goto fail; + } + skipped_bytes++; + input_end++; + } + input_end++; + } + if (((size_t)(input_end - input_buffer->content) >= input_buffer->length) || (*input_end != '\"')) + { + goto fail; /* string ended unexpectedly */ + } + + /* This is at most how much we need for the output */ + allocation_length = (size_t) (input_end - buffer_at_offset(input_buffer)) - skipped_bytes; + output = (unsigned char*)input_buffer->hooks.allocate(allocation_length + sizeof("")); + if (output == NULL) + { + goto fail; /* allocation failure */ + } + } + + output_pointer = output; + /* loop through the string literal */ + while (input_pointer < input_end) + { + if (*input_pointer != '\\') + { + *output_pointer++ = *input_pointer++; + } + /* escape sequence */ + else + { + unsigned char sequence_length = 2; + if ((input_end - input_pointer) < 1) + { + goto fail; + } + + switch (input_pointer[1]) + { + case 'b': + *output_pointer++ = '\b'; + break; + case 'f': + *output_pointer++ = '\f'; + break; + case 'n': + *output_pointer++ = '\n'; + break; + case 'r': + *output_pointer++ = '\r'; + break; + case 't': + *output_pointer++ = '\t'; + break; + case '\"': + case '\\': + case '/': + *output_pointer++ = input_pointer[1]; + break; + + /* UTF-16 literal */ + case 'u': + sequence_length = utf16_literal_to_utf8(input_pointer, input_end, &output_pointer); + if (sequence_length == 0) + { + /* failed to convert UTF16-literal to UTF-8 */ + goto fail; + } + break; + + default: + goto fail; + } + input_pointer += sequence_length; + } + } + + /* zero terminate the output */ + *output_pointer = '\0'; + + item->type = cJSON_String; + item->valuestring = (char*)output; + + input_buffer->offset = (size_t) (input_end - input_buffer->content); + input_buffer->offset++; + + return true; + +fail: + if (output != NULL) + { + input_buffer->hooks.deallocate(output); + } + + if (input_pointer != NULL) + { + input_buffer->offset = (size_t)(input_pointer - input_buffer->content); + } + + return false; +} + +/* Render the cstring provided to an escaped version that can be printed. */ +static cJSON_bool print_string_ptr(const unsigned char * const input, printbuffer * const output_buffer) +{ + const unsigned char *input_pointer = NULL; + unsigned char *output = NULL; + unsigned char *output_pointer = NULL; + size_t output_length = 0; + /* numbers of additional characters needed for escaping */ + size_t escape_characters = 0; + + if (output_buffer == NULL) + { + return false; + } + + /* empty string */ + if (input == NULL) + { + output = ensure(output_buffer, sizeof("\"\"")); + if (output == NULL) + { + return false; + } + strcpy((char*)output, "\"\""); + + return true; + } + + /* set "flag" to 1 if something needs to be escaped */ + for (input_pointer = input; *input_pointer; input_pointer++) + { + switch (*input_pointer) + { + case '\"': + case '\\': + case '\b': + case '\f': + case '\n': + case '\r': + case '\t': + /* one character escape sequence */ + escape_characters++; + break; + default: + if (*input_pointer < 32) + { + /* UTF-16 escape sequence uXXXX */ + escape_characters += 5; + } + break; + } + } + output_length = (size_t)(input_pointer - input) + escape_characters; + + output = ensure(output_buffer, output_length + sizeof("\"\"")); + if (output == NULL) + { + return false; + } + + /* no characters have to be escaped */ + if (escape_characters == 0) + { + output[0] = '\"'; + memcpy(output + 1, input, output_length); + output[output_length + 1] = '\"'; + output[output_length + 2] = '\0'; + + return true; + } + + output[0] = '\"'; + output_pointer = output + 1; + /* copy the string */ + for (input_pointer = input; *input_pointer != '\0'; (void)input_pointer++, output_pointer++) + { + if ((*input_pointer > 31) && (*input_pointer != '\"') && (*input_pointer != '\\')) + { + /* normal character, copy */ + *output_pointer = *input_pointer; + } + else + { + /* character needs to be escaped */ + *output_pointer++ = '\\'; + switch (*input_pointer) + { + case '\\': + *output_pointer = '\\'; + break; + case '\"': + *output_pointer = '\"'; + break; + case '\b': + *output_pointer = 'b'; + break; + case '\f': + *output_pointer = 'f'; + break; + case '\n': + *output_pointer = 'n'; + break; + case '\r': + *output_pointer = 'r'; + break; + case '\t': + *output_pointer = 't'; + break; + default: + /* escape and print as unicode codepoint */ + sprintf((char*)output_pointer, "u%04x", *input_pointer); + output_pointer += 4; + break; + } + } + } + output[output_length + 1] = '\"'; + output[output_length + 2] = '\0'; + + return true; +} + +/* Invoke print_string_ptr (which is useful) on an item. */ +static cJSON_bool print_string(const cJSON * const item, printbuffer * const p) +{ + return print_string_ptr((unsigned char*)item->valuestring, p); +} + +/* Predeclare these prototypes. */ +static cJSON_bool parse_value(cJSON * const item, parse_buffer * const input_buffer); +static cJSON_bool print_value(const cJSON * const item, printbuffer * const output_buffer); +static cJSON_bool parse_array(cJSON * const item, parse_buffer * const input_buffer); +static cJSON_bool print_array(const cJSON * const item, printbuffer * const output_buffer); +static cJSON_bool parse_object(cJSON * const item, parse_buffer * const input_buffer); +static cJSON_bool print_object(const cJSON * const item, printbuffer * const output_buffer); + +/* Utility to jump whitespace and cr/lf */ +static parse_buffer *buffer_skip_whitespace(parse_buffer * const buffer) +{ + if ((buffer == NULL) || (buffer->content == NULL)) + { + return NULL; + } + + while (can_access_at_index(buffer, 0) && (buffer_at_offset(buffer)[0] <= 32)) + { + buffer->offset++; + } + + if (buffer->offset == buffer->length) + { + buffer->offset--; + } + + return buffer; +} + +/* skip the UTF-8 BOM (byte order mark) if it is at the beginning of a buffer */ +static parse_buffer *skip_utf8_bom(parse_buffer * const buffer) +{ + if ((buffer == NULL) || (buffer->content == NULL) || (buffer->offset != 0)) + { + return NULL; + } + + if (can_access_at_index(buffer, 4) && (strncmp((const char*)buffer_at_offset(buffer), "\xEF\xBB\xBF", 3) == 0)) + { + buffer->offset += 3; + } + + return buffer; +} + +/* Parse an object - create a new root, and populate. */ +CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_terminated) +{ + parse_buffer buffer = { 0, 0, 0, 0, { 0, 0, 0 } }; + cJSON *item = NULL; + + /* reset error position */ + global_error.json = NULL; + global_error.position = 0; + + if (value == NULL) + { + goto fail; + } + + buffer.content = (const unsigned char*)value; + buffer.length = strlen((const char*)value) + sizeof(""); + buffer.offset = 0; + buffer.hooks = global_hooks; + + item = cJSON_New_Item(&global_hooks); + if (item == NULL) /* memory fail */ + { + goto fail; + } + + if (!parse_value(item, buffer_skip_whitespace(skip_utf8_bom(&buffer)))) + { + /* parse failure. ep is set. */ + goto fail; + } + + /* if we require null-terminated JSON without appended garbage, skip and then check for a null terminator */ + if (require_null_terminated) + { + buffer_skip_whitespace(&buffer); + if ((buffer.offset >= buffer.length) || buffer_at_offset(&buffer)[0] != '\0') + { + goto fail; + } + } + if (return_parse_end) + { + *return_parse_end = (const char*)buffer_at_offset(&buffer); + } + + return item; + +fail: + if (item != NULL) + { + cJSON_Delete(item); + } + + if (value != NULL) + { + error local_error; + local_error.json = (const unsigned char*)value; + local_error.position = 0; + + if (buffer.offset < buffer.length) + { + local_error.position = buffer.offset; + } + else if (buffer.length > 0) + { + local_error.position = buffer.length - 1; + } + + if (return_parse_end != NULL) + { + *return_parse_end = (const char*)local_error.json + local_error.position; + } + + global_error = local_error; + } + + return NULL; +} + +/* Default options for cJSON_Parse */ +CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value) +{ + return cJSON_ParseWithOpts(value, 0, 0); +} + +#define cjson_min(a, b) ((a < b) ? a : b) + +static unsigned char *print(const cJSON * const item, cJSON_bool format, const internal_hooks * const hooks) +{ + static const size_t default_buffer_size = 256; + printbuffer buffer[1]; + unsigned char *printed = NULL; + + memset(buffer, 0, sizeof(buffer)); + + /* create buffer */ + buffer->buffer = (unsigned char*) hooks->allocate(default_buffer_size); + buffer->length = default_buffer_size; + buffer->format = format; + buffer->hooks = *hooks; + if (buffer->buffer == NULL) + { + goto fail; + } + + /* print the value */ + if (!print_value(item, buffer)) + { + goto fail; + } + update_offset(buffer); + + /* check if reallocate is available */ + if (hooks->reallocate != NULL) + { + printed = (unsigned char*) hooks->reallocate(buffer->buffer, buffer->offset + 1); + if (printed == NULL) { + goto fail; + } + buffer->buffer = NULL; + } + else /* otherwise copy the JSON over to a new buffer */ + { + printed = (unsigned char*) hooks->allocate(buffer->offset + 1); + if (printed == NULL) + { + goto fail; + } + memcpy(printed, buffer->buffer, cjson_min(buffer->length, buffer->offset + 1)); + printed[buffer->offset] = '\0'; /* just to be sure */ + + /* free the buffer */ + hooks->deallocate(buffer->buffer); + } + + return printed; + +fail: + if (buffer->buffer != NULL) + { + hooks->deallocate(buffer->buffer); + } + + if (printed != NULL) + { + hooks->deallocate(printed); + } + + return NULL; +} + +/* Render a cJSON item/entity/structure to text. */ +CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) +{ + return (char*)print(item, true, &global_hooks); +} + +CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) +{ + return (char*)print(item, false, &global_hooks); +} + +CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt) +{ + printbuffer p = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } }; + + if (prebuffer < 0) + { + return NULL; + } + + p.buffer = (unsigned char*)global_hooks.allocate((size_t)prebuffer); + if (!p.buffer) + { + return NULL; + } + + p.length = (size_t)prebuffer; + p.offset = 0; + p.noalloc = false; + p.format = fmt; + p.hooks = global_hooks; + + if (!print_value(item, &p)) + { + global_hooks.deallocate(p.buffer); + return NULL; + } + + return (char*)p.buffer; +} + +CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buf, const int len, const cJSON_bool fmt) +{ + printbuffer p = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } }; + + if ((len < 0) || (buf == NULL)) + { + return false; + } + + p.buffer = (unsigned char*)buf; + p.length = (size_t)len; + p.offset = 0; + p.noalloc = true; + p.format = fmt; + p.hooks = global_hooks; + + return print_value(item, &p); +} + +/* Parser core - when encountering text, process appropriately. */ +static cJSON_bool parse_value(cJSON * const item, parse_buffer * const input_buffer) +{ + if ((input_buffer == NULL) || (input_buffer->content == NULL)) + { + return false; /* no input */ + } + + /* parse the different types of values */ + /* null */ + if (can_read(input_buffer, 4) && (strncmp((const char*)buffer_at_offset(input_buffer), "null", 4) == 0)) + { + item->type = cJSON_NULL; + input_buffer->offset += 4; + return true; + } + /* false */ + if (can_read(input_buffer, 5) && (strncmp((const char*)buffer_at_offset(input_buffer), "false", 5) == 0)) + { + item->type = cJSON_False; + input_buffer->offset += 5; + return true; + } + /* true */ + if (can_read(input_buffer, 4) && (strncmp((const char*)buffer_at_offset(input_buffer), "true", 4) == 0)) + { + item->type = cJSON_True; + item->valueint = 1; + input_buffer->offset += 4; + return true; + } + /* string */ + if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == '\"')) + { + return parse_string(item, input_buffer); + } + /* number */ + if (can_access_at_index(input_buffer, 0) && ((buffer_at_offset(input_buffer)[0] == '-') || ((buffer_at_offset(input_buffer)[0] >= '0') && (buffer_at_offset(input_buffer)[0] <= '9')))) + { + return parse_number(item, input_buffer); + } + /* array */ + if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == '[')) + { + return parse_array(item, input_buffer); + } + /* object */ + if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == '{')) + { + return parse_object(item, input_buffer); + } + + return false; +} + +/* Render a value to text. */ +static cJSON_bool print_value(const cJSON * const item, printbuffer * const output_buffer) +{ + unsigned char *output = NULL; + + if ((item == NULL) || (output_buffer == NULL)) + { + return false; + } + + switch ((item->type) & 0xFF) + { + case cJSON_NULL: + output = ensure(output_buffer, 5); + if (output == NULL) + { + return false; + } + strcpy((char*)output, "null"); + return true; + + case cJSON_False: + output = ensure(output_buffer, 6); + if (output == NULL) + { + return false; + } + strcpy((char*)output, "false"); + return true; + + case cJSON_True: + output = ensure(output_buffer, 5); + if (output == NULL) + { + return false; + } + strcpy((char*)output, "true"); + return true; + + case cJSON_Number: + return print_number(item, output_buffer); + + case cJSON_Raw: + { + size_t raw_length = 0; + if (item->valuestring == NULL) + { + return false; + } + + raw_length = strlen(item->valuestring) + sizeof(""); + output = ensure(output_buffer, raw_length); + if (output == NULL) + { + return false; + } + memcpy(output, item->valuestring, raw_length); + return true; + } + + case cJSON_String: + return print_string(item, output_buffer); + + case cJSON_Array: + return print_array(item, output_buffer); + + case cJSON_Object: + return print_object(item, output_buffer); + + default: + return false; + } +} + +/* Build an array from input text. */ +static cJSON_bool parse_array(cJSON * const item, parse_buffer * const input_buffer) +{ + cJSON *head = NULL; /* head of the linked list */ + cJSON *current_item = NULL; + + if (input_buffer->depth >= CJSON_NESTING_LIMIT) + { + return false; /* to deeply nested */ + } + input_buffer->depth++; + + if (buffer_at_offset(input_buffer)[0] != '[') + { + /* not an array */ + goto fail; + } + + input_buffer->offset++; + buffer_skip_whitespace(input_buffer); + if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == ']')) + { + /* empty array */ + goto success; + } + + /* check if we skipped to the end of the buffer */ + if (cannot_access_at_index(input_buffer, 0)) + { + input_buffer->offset--; + goto fail; + } + + /* step back to character in front of the first element */ + input_buffer->offset--; + /* loop through the comma separated array elements */ + do + { + /* allocate next item */ + cJSON *new_item = cJSON_New_Item(&(input_buffer->hooks)); + if (new_item == NULL) + { + goto fail; /* allocation failure */ + } + + /* attach next item to list */ + if (head == NULL) + { + /* start the linked list */ + current_item = head = new_item; + } + else + { + /* add to the end and advance */ + current_item->next = new_item; + new_item->prev = current_item; + current_item = new_item; + } + + /* parse next value */ + input_buffer->offset++; + buffer_skip_whitespace(input_buffer); + if (!parse_value(current_item, input_buffer)) + { + goto fail; /* failed to parse value */ + } + buffer_skip_whitespace(input_buffer); + } + while (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == ',')); + + if (cannot_access_at_index(input_buffer, 0) || buffer_at_offset(input_buffer)[0] != ']') + { + goto fail; /* expected end of array */ + } + +success: + input_buffer->depth--; + + item->type = cJSON_Array; + item->child = head; + + input_buffer->offset++; + + return true; + +fail: + if (head != NULL) + { + cJSON_Delete(head); + } + + return false; +} + +/* Render an array to text */ +static cJSON_bool print_array(const cJSON * const item, printbuffer * const output_buffer) +{ + unsigned char *output_pointer = NULL; + size_t length = 0; + cJSON *current_element = item->child; + + if (output_buffer == NULL) + { + return false; + } + + /* Compose the output array. */ + /* opening square bracket */ + output_pointer = ensure(output_buffer, 1); + if (output_pointer == NULL) + { + return false; + } + + *output_pointer = '['; + output_buffer->offset++; + output_buffer->depth++; + + while (current_element != NULL) + { + if (!print_value(current_element, output_buffer)) + { + return false; + } + update_offset(output_buffer); + if (current_element->next) + { + length = (size_t) (output_buffer->format ? 2 : 1); + output_pointer = ensure(output_buffer, length + 1); + if (output_pointer == NULL) + { + return false; + } + *output_pointer++ = ','; + if(output_buffer->format) + { + *output_pointer++ = ' '; + } + *output_pointer = '\0'; + output_buffer->offset += length; + } + current_element = current_element->next; + } + + output_pointer = ensure(output_buffer, 2); + if (output_pointer == NULL) + { + return false; + } + *output_pointer++ = ']'; + *output_pointer = '\0'; + output_buffer->depth--; + + return true; +} + +/* Build an object from the text. */ +static cJSON_bool parse_object(cJSON * const item, parse_buffer * const input_buffer) +{ + cJSON *head = NULL; /* linked list head */ + cJSON *current_item = NULL; + + if (input_buffer->depth >= CJSON_NESTING_LIMIT) + { + return false; /* to deeply nested */ + } + input_buffer->depth++; + + if (cannot_access_at_index(input_buffer, 0) || (buffer_at_offset(input_buffer)[0] != '{')) + { + goto fail; /* not an object */ + } + + input_buffer->offset++; + buffer_skip_whitespace(input_buffer); + if (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == '}')) + { + goto success; /* empty object */ + } + + /* check if we skipped to the end of the buffer */ + if (cannot_access_at_index(input_buffer, 0)) + { + input_buffer->offset--; + goto fail; + } + + /* step back to character in front of the first element */ + input_buffer->offset--; + /* loop through the comma separated array elements */ + do + { + /* allocate next item */ + cJSON *new_item = cJSON_New_Item(&(input_buffer->hooks)); + if (new_item == NULL) + { + goto fail; /* allocation failure */ + } + + /* attach next item to list */ + if (head == NULL) + { + /* start the linked list */ + current_item = head = new_item; + } + else + { + /* add to the end and advance */ + current_item->next = new_item; + new_item->prev = current_item; + current_item = new_item; + } + + /* parse the name of the child */ + input_buffer->offset++; + buffer_skip_whitespace(input_buffer); + if (!parse_string(current_item, input_buffer)) + { + goto fail; /* faile to parse name */ + } + buffer_skip_whitespace(input_buffer); + + /* swap valuestring and string, because we parsed the name */ + current_item->string = current_item->valuestring; + current_item->valuestring = NULL; + + if (cannot_access_at_index(input_buffer, 0) || (buffer_at_offset(input_buffer)[0] != ':')) + { + goto fail; /* invalid object */ + } + + /* parse the value */ + input_buffer->offset++; + buffer_skip_whitespace(input_buffer); + if (!parse_value(current_item, input_buffer)) + { + goto fail; /* failed to parse value */ + } + buffer_skip_whitespace(input_buffer); + } + while (can_access_at_index(input_buffer, 0) && (buffer_at_offset(input_buffer)[0] == ',')); + + if (cannot_access_at_index(input_buffer, 0) || (buffer_at_offset(input_buffer)[0] != '}')) + { + goto fail; /* expected end of object */ + } + +success: + input_buffer->depth--; + + item->type = cJSON_Object; + item->child = head; + + input_buffer->offset++; + return true; + +fail: + if (head != NULL) + { + cJSON_Delete(head); + } + + return false; +} + +/* Render an object to text. */ +static cJSON_bool print_object(const cJSON * const item, printbuffer * const output_buffer) +{ + unsigned char *output_pointer = NULL; + size_t length = 0; + cJSON *current_item = item->child; + + if (output_buffer == NULL) + { + return false; + } + + /* Compose the output: */ + length = (size_t) (output_buffer->format ? 2 : 1); /* fmt: {\n */ + output_pointer = ensure(output_buffer, length + 1); + if (output_pointer == NULL) + { + return false; + } + + *output_pointer++ = '{'; + output_buffer->depth++; + if (output_buffer->format) + { + *output_pointer++ = '\n'; + } + output_buffer->offset += length; + + while (current_item) + { + if (output_buffer->format) + { + size_t i; + output_pointer = ensure(output_buffer, output_buffer->depth); + if (output_pointer == NULL) + { + return false; + } + for (i = 0; i < output_buffer->depth; i++) + { + *output_pointer++ = '\t'; + } + output_buffer->offset += output_buffer->depth; + } + + /* print key */ + if (!print_string_ptr((unsigned char*)current_item->string, output_buffer)) + { + return false; + } + update_offset(output_buffer); + + length = (size_t) (output_buffer->format ? 2 : 1); + output_pointer = ensure(output_buffer, length); + if (output_pointer == NULL) + { + return false; + } + *output_pointer++ = ':'; + if (output_buffer->format) + { + *output_pointer++ = '\t'; + } + output_buffer->offset += length; + + /* print value */ + if (!print_value(current_item, output_buffer)) + { + return false; + } + update_offset(output_buffer); + + /* print comma if not last */ + length = (size_t) ((output_buffer->format ? 1 : 0) + (current_item->next ? 1 : 0)); + output_pointer = ensure(output_buffer, length + 1); + if (output_pointer == NULL) + { + return false; + } + if (current_item->next) + { + *output_pointer++ = ','; + } + + if (output_buffer->format) + { + *output_pointer++ = '\n'; + } + *output_pointer = '\0'; + output_buffer->offset += length; + + current_item = current_item->next; + } + + output_pointer = ensure(output_buffer, output_buffer->format ? (output_buffer->depth + 1) : 2); + if (output_pointer == NULL) + { + return false; + } + if (output_buffer->format) + { + size_t i; + for (i = 0; i < (output_buffer->depth - 1); i++) + { + *output_pointer++ = '\t'; + } + } + *output_pointer++ = '}'; + *output_pointer = '\0'; + output_buffer->depth--; + + return true; +} + +/* Get Array size/item / object item. */ +CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array) +{ + cJSON *child = NULL; + size_t size = 0; + + if (array == NULL) + { + return 0; + } + + child = array->child; + + while(child != NULL) + { + size++; + child = child->next; + } + + /* FIXME: Can overflow here. Cannot be fixed without breaking the API */ + + return (int)size; +} + +static cJSON* get_array_item(const cJSON *array, size_t index) +{ + cJSON *current_child = NULL; + + if (array == NULL) + { + return NULL; + } + + current_child = array->child; + while ((current_child != NULL) && (index > 0)) + { + index--; + current_child = current_child->next; + } + + return current_child; +} + +CJSON_PUBLIC(cJSON *) cJSON_GetArrayItem(const cJSON *array, int index) +{ + if (index < 0) + { + return NULL; + } + + return get_array_item(array, (size_t)index); +} + +static cJSON *get_object_item(const cJSON * const object, const char * const name, const cJSON_bool case_sensitive) +{ + cJSON *current_element = NULL; + + if ((object == NULL) || (name == NULL)) + { + return NULL; + } + + current_element = object->child; + if (case_sensitive) + { + while ((current_element != NULL) && (strcmp(name, current_element->string) != 0)) + { + current_element = current_element->next; + } + } + else + { + while ((current_element != NULL) && (case_insensitive_strcmp((const unsigned char*)name, (const unsigned char*)(current_element->string)) != 0)) + { + current_element = current_element->next; + } + } + + return current_element; +} + +CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string) +{ + return get_object_item(object, string, false); +} + +CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string) +{ + return get_object_item(object, string, true); +} + +CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string) +{ + return cJSON_GetObjectItem(object, string) ? 1 : 0; +} + +/* Utility for array list handling. */ +static void suffix_object(cJSON *prev, cJSON *item) +{ + prev->next = item; + item->prev = prev; +} + +/* Utility for handling references. */ +static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks) +{ + cJSON *reference = NULL; + if (item == NULL) + { + return NULL; + } + + reference = cJSON_New_Item(hooks); + if (reference == NULL) + { + return NULL; + } + + memcpy(reference, item, sizeof(cJSON)); + reference->string = NULL; + reference->type |= cJSON_IsReference; + reference->next = reference->prev = NULL; + return reference; +} + +static cJSON_bool add_item_to_array(cJSON *array, cJSON *item) +{ + cJSON *child = NULL; + + if ((item == NULL) || (array == NULL)) + { + return false; + } + + child = array->child; + + if (child == NULL) + { + /* list is empty, start new one */ + array->child = item; + } + else + { + /* append to the end */ + while (child->next) + { + child = child->next; + } + suffix_object(child, item); + } + + return true; +} + +/* Add item to array/object. */ +CJSON_PUBLIC(void) cJSON_AddItemToArray(cJSON *array, cJSON *item) +{ + add_item_to_array(array, item); +} + +#if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))) + #pragma GCC diagnostic push +#endif +#ifdef __GNUC__ +#pragma GCC diagnostic ignored "-Wcast-qual" +#endif +/* helper function to cast away const */ +static void* cast_away_const(const void* string) +{ + return (void*)string; +} +#if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5)))) + #pragma GCC diagnostic pop +#endif + + +static cJSON_bool add_item_to_object(cJSON * const object, const char * const string, cJSON * const item, const internal_hooks * const hooks, const cJSON_bool constant_key) +{ + char *new_key = NULL; + int new_type = cJSON_Invalid; + + if ((object == NULL) || (string == NULL) || (item == NULL)) + { + return false; + } + + if (constant_key) + { + new_key = (char*)cast_away_const(string); + new_type = item->type | cJSON_StringIsConst; + } + else + { + new_key = (char*)cJSON_strdup((const unsigned char*)string, hooks); + if (new_key == NULL) + { + return false; + } + + new_type = item->type & ~cJSON_StringIsConst; + } + + if (!(item->type & cJSON_StringIsConst) && (item->string != NULL)) + { + hooks->deallocate(item->string); + } + + item->string = new_key; + item->type = new_type; + + return add_item_to_array(object, item); +} + +CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item) +{ + add_item_to_object(object, string, item, &global_hooks, false); +} + +/* Add an item to an object with constant string as key */ +CJSON_PUBLIC(void) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item) +{ + add_item_to_object(object, string, item, &global_hooks, true); +} + +CJSON_PUBLIC(void) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item) +{ + if (array == NULL) + { + return; + } + + add_item_to_array(array, create_reference(item, &global_hooks)); +} + +CJSON_PUBLIC(void) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item) +{ + if ((object == NULL) || (string == NULL)) + { + return; + } + + add_item_to_object(object, string, create_reference(item, &global_hooks), &global_hooks, false); +} + +CJSON_PUBLIC(cJSON*) cJSON_AddNullToObject(cJSON * const object, const char * const name) +{ + cJSON *null = cJSON_CreateNull(); + if (add_item_to_object(object, name, null, &global_hooks, false)) + { + return null; + } + + cJSON_Delete(null); + return NULL; +} + +CJSON_PUBLIC(cJSON*) cJSON_AddTrueToObject(cJSON * const object, const char * const name) +{ + cJSON *true_item = cJSON_CreateTrue(); + if (add_item_to_object(object, name, true_item, &global_hooks, false)) + { + return true_item; + } + + cJSON_Delete(true_item); + return NULL; +} + +CJSON_PUBLIC(cJSON*) cJSON_AddFalseToObject(cJSON * const object, const char * const name) +{ + cJSON *false_item = cJSON_CreateFalse(); + if (add_item_to_object(object, name, false_item, &global_hooks, false)) + { + return false_item; + } + + cJSON_Delete(false_item); + return NULL; +} + +CJSON_PUBLIC(cJSON*) cJSON_AddBoolToObject(cJSON * const object, const char * const name, const cJSON_bool boolean) +{ + cJSON *bool_item = cJSON_CreateBool(boolean); + if (add_item_to_object(object, name, bool_item, &global_hooks, false)) + { + return bool_item; + } + + cJSON_Delete(bool_item); + return NULL; +} + +CJSON_PUBLIC(cJSON*) cJSON_AddNumberToObject(cJSON * const object, const char * const name, const double number) +{ + cJSON *number_item = cJSON_CreateNumber(number); + if (add_item_to_object(object, name, number_item, &global_hooks, false)) + { + return number_item; + } + + cJSON_Delete(number_item); + return NULL; +} + +CJSON_PUBLIC(cJSON*) cJSON_AddStringToObject(cJSON * const object, const char * const name, const char * const string) +{ + cJSON *string_item = cJSON_CreateString(string); + if (add_item_to_object(object, name, string_item, &global_hooks, false)) + { + return string_item; + } + + cJSON_Delete(string_item); + return NULL; +} + +CJSON_PUBLIC(cJSON*) cJSON_AddRawToObject(cJSON * const object, const char * const name, const char * const raw) +{ + cJSON *raw_item = cJSON_CreateRaw(raw); + if (add_item_to_object(object, name, raw_item, &global_hooks, false)) + { + return raw_item; + } + + cJSON_Delete(raw_item); + return NULL; +} + +CJSON_PUBLIC(cJSON*) cJSON_AddObjectToObject(cJSON * const object, const char * const name) +{ + cJSON *object_item = cJSON_CreateObject(); + if (add_item_to_object(object, name, object_item, &global_hooks, false)) + { + return object_item; + } + + cJSON_Delete(object_item); + return NULL; +} + +CJSON_PUBLIC(cJSON*) cJSON_AddArrayToObject(cJSON * const object, const char * const name) +{ + cJSON *array = cJSON_CreateArray(); + if (add_item_to_object(object, name, array, &global_hooks, false)) + { + return array; + } + + cJSON_Delete(array); + return NULL; +} + +CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item) +{ + if ((parent == NULL) || (item == NULL)) + { + return NULL; + } + + if (item->prev != NULL) + { + /* not the first element */ + item->prev->next = item->next; + } + if (item->next != NULL) + { + /* not the last element */ + item->next->prev = item->prev; + } + + if (item == parent->child) + { + /* first element */ + parent->child = item->next; + } + /* make sure the detached item doesn't point anywhere anymore */ + item->prev = NULL; + item->next = NULL; + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which) +{ + if (which < 0) + { + return NULL; + } + + return cJSON_DetachItemViaPointer(array, get_array_item(array, (size_t)which)); +} + +CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which) +{ + cJSON_Delete(cJSON_DetachItemFromArray(array, which)); +} + +CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string) +{ + cJSON *to_detach = cJSON_GetObjectItem(object, string); + + return cJSON_DetachItemViaPointer(object, to_detach); +} + +CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string) +{ + cJSON *to_detach = cJSON_GetObjectItemCaseSensitive(object, string); + + return cJSON_DetachItemViaPointer(object, to_detach); +} + +CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string) +{ + cJSON_Delete(cJSON_DetachItemFromObject(object, string)); +} + +CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string) +{ + cJSON_Delete(cJSON_DetachItemFromObjectCaseSensitive(object, string)); +} + +/* Replace array/object items with new ones. */ +CJSON_PUBLIC(void) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem) +{ + cJSON *after_inserted = NULL; + + if (which < 0) + { + return; + } + + after_inserted = get_array_item(array, (size_t)which); + if (after_inserted == NULL) + { + add_item_to_array(array, newitem); + return; + } + + newitem->next = after_inserted; + newitem->prev = after_inserted->prev; + after_inserted->prev = newitem; + if (after_inserted == array->child) + { + array->child = newitem; + } + else + { + newitem->prev->next = newitem; + } +} + +CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement) +{ + if ((parent == NULL) || (replacement == NULL) || (item == NULL)) + { + return false; + } + + if (replacement == item) + { + return true; + } + + replacement->next = item->next; + replacement->prev = item->prev; + + if (replacement->next != NULL) + { + replacement->next->prev = replacement; + } + if (replacement->prev != NULL) + { + replacement->prev->next = replacement; + } + if (parent->child == item) + { + parent->child = replacement; + } + + item->next = NULL; + item->prev = NULL; + cJSON_Delete(item); + + return true; +} + +CJSON_PUBLIC(void) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem) +{ + if (which < 0) + { + return; + } + + cJSON_ReplaceItemViaPointer(array, get_array_item(array, (size_t)which), newitem); +} + +static cJSON_bool replace_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJSON_bool case_sensitive) +{ + if ((replacement == NULL) || (string == NULL)) + { + return false; + } + + /* replace the name in the replacement */ + if (!(replacement->type & cJSON_StringIsConst) && (replacement->string != NULL)) + { + cJSON_free(replacement->string); + } + replacement->string = (char*)cJSON_strdup((const unsigned char*)string, &global_hooks); + replacement->type &= ~cJSON_StringIsConst; + + cJSON_ReplaceItemViaPointer(object, get_object_item(object, string, case_sensitive), replacement); + + return true; +} + +CJSON_PUBLIC(void) cJSON_ReplaceItemInObject(cJSON *object, const char *string, cJSON *newitem) +{ + replace_item_in_object(object, string, newitem, false); +} + +CJSON_PUBLIC(void) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object, const char *string, cJSON *newitem) +{ + replace_item_in_object(object, string, newitem, true); +} + +/* Create basic types: */ +CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if(item) + { + item->type = cJSON_NULL; + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if(item) + { + item->type = cJSON_True; + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if(item) + { + item->type = cJSON_False; + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if(item) + { + item->type = b ? cJSON_True : cJSON_False; + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if(item) + { + item->type = cJSON_Number; + item->valuedouble = num; + + /* use saturation in case of overflow */ + if (num >= INT_MAX) + { + item->valueint = INT_MAX; + } + else if (num <= INT_MIN) + { + item->valueint = INT_MIN; + } + else + { + item->valueint = (int)num; + } + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateString(const char *string) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if(item) + { + item->type = cJSON_String; + item->valuestring = (char*)cJSON_strdup((const unsigned char*)string, &global_hooks); + if(!item->valuestring) + { + cJSON_Delete(item); + return NULL; + } + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if (item != NULL) + { + item->type = cJSON_String | cJSON_IsReference; + item->valuestring = (char*)cast_away_const(string); + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if (item != NULL) { + item->type = cJSON_Object | cJSON_IsReference; + item->child = (cJSON*)cast_away_const(child); + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateArrayReference(const cJSON *child) { + cJSON *item = cJSON_New_Item(&global_hooks); + if (item != NULL) { + item->type = cJSON_Array | cJSON_IsReference; + item->child = (cJSON*)cast_away_const(child); + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateRaw(const char *raw) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if(item) + { + item->type = cJSON_Raw; + item->valuestring = (char*)cJSON_strdup((const unsigned char*)raw, &global_hooks); + if(!item->valuestring) + { + cJSON_Delete(item); + return NULL; + } + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if(item) + { + item->type=cJSON_Array; + } + + return item; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void) +{ + cJSON *item = cJSON_New_Item(&global_hooks); + if (item) + { + item->type = cJSON_Object; + } + + return item; +} + +/* Create Arrays: */ +CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count) +{ + size_t i = 0; + cJSON *n = NULL; + cJSON *p = NULL; + cJSON *a = NULL; + + if ((count < 0) || (numbers == NULL)) + { + return NULL; + } + + a = cJSON_CreateArray(); + for(i = 0; a && (i < (size_t)count); i++) + { + n = cJSON_CreateNumber(numbers[i]); + if (!n) + { + cJSON_Delete(a); + return NULL; + } + if(!i) + { + a->child = n; + } + else + { + suffix_object(p, n); + } + p = n; + } + + return a; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count) +{ + size_t i = 0; + cJSON *n = NULL; + cJSON *p = NULL; + cJSON *a = NULL; + + if ((count < 0) || (numbers == NULL)) + { + return NULL; + } + + a = cJSON_CreateArray(); + + for(i = 0; a && (i < (size_t)count); i++) + { + n = cJSON_CreateNumber((double)numbers[i]); + if(!n) + { + cJSON_Delete(a); + return NULL; + } + if(!i) + { + a->child = n; + } + else + { + suffix_object(p, n); + } + p = n; + } + + return a; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count) +{ + size_t i = 0; + cJSON *n = NULL; + cJSON *p = NULL; + cJSON *a = NULL; + + if ((count < 0) || (numbers == NULL)) + { + return NULL; + } + + a = cJSON_CreateArray(); + + for(i = 0;a && (i < (size_t)count); i++) + { + n = cJSON_CreateNumber(numbers[i]); + if(!n) + { + cJSON_Delete(a); + return NULL; + } + if(!i) + { + a->child = n; + } + else + { + suffix_object(p, n); + } + p = n; + } + + return a; +} + +CJSON_PUBLIC(cJSON *) cJSON_CreateStringArray(const char **strings, int count) +{ + size_t i = 0; + cJSON *n = NULL; + cJSON *p = NULL; + cJSON *a = NULL; + + if ((count < 0) || (strings == NULL)) + { + return NULL; + } + + a = cJSON_CreateArray(); + + for (i = 0; a && (i < (size_t)count); i++) + { + n = cJSON_CreateString(strings[i]); + if(!n) + { + cJSON_Delete(a); + return NULL; + } + if(!i) + { + a->child = n; + } + else + { + suffix_object(p,n); + } + p = n; + } + + return a; +} + +/* Duplication */ +CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse) +{ + cJSON *newitem = NULL; + cJSON *child = NULL; + cJSON *next = NULL; + cJSON *newchild = NULL; + + /* Bail on bad ptr */ + if (!item) + { + goto fail; + } + /* Create new item */ + newitem = cJSON_New_Item(&global_hooks); + if (!newitem) + { + goto fail; + } + /* Copy over all vars */ + newitem->type = item->type & (~cJSON_IsReference); + newitem->valueint = item->valueint; + newitem->valuedouble = item->valuedouble; + if (item->valuestring) + { + newitem->valuestring = (char*)cJSON_strdup((unsigned char*)item->valuestring, &global_hooks); + if (!newitem->valuestring) + { + goto fail; + } + } + if (item->string) + { + newitem->string = (item->type&cJSON_StringIsConst) ? item->string : (char*)cJSON_strdup((unsigned char*)item->string, &global_hooks); + if (!newitem->string) + { + goto fail; + } + } + /* If non-recursive, then we're done! */ + if (!recurse) + { + return newitem; + } + /* Walk the ->next chain for the child. */ + child = item->child; + while (child != NULL) + { + newchild = cJSON_Duplicate(child, true); /* Duplicate (with recurse) each item in the ->next chain */ + if (!newchild) + { + goto fail; + } + if (next != NULL) + { + /* If newitem->child already set, then crosswire ->prev and ->next and move on */ + next->next = newchild; + newchild->prev = next; + next = newchild; + } + else + { + /* Set newitem->child and move to it */ + newitem->child = newchild; + next = newchild; + } + child = child->next; + } + + return newitem; + +fail: + if (newitem != NULL) + { + cJSON_Delete(newitem); + } + + return NULL; +} + +CJSON_PUBLIC(void) cJSON_Minify(char *json) +{ + unsigned char *into = (unsigned char*)json; + + if (json == NULL) + { + return; + } + + while (*json) + { + if (*json == ' ') + { + json++; + } + else if (*json == '\t') + { + /* Whitespace characters. */ + json++; + } + else if (*json == '\r') + { + json++; + } + else if (*json=='\n') + { + json++; + } + else if ((*json == '/') && (json[1] == '/')) + { + /* double-slash comments, to end of line. */ + while (*json && (*json != '\n')) + { + json++; + } + } + else if ((*json == '/') && (json[1] == '*')) + { + /* multiline comments. */ + while (*json && !((*json == '*') && (json[1] == '/'))) + { + json++; + } + json += 2; + } + else if (*json == '\"') + { + /* string literals, which are \" sensitive. */ + *into++ = (unsigned char)*json++; + while (*json && (*json != '\"')) + { + if (*json == '\\') + { + *into++ = (unsigned char)*json++; + } + *into++ = (unsigned char)*json++; + } + *into++ = (unsigned char)*json++; + } + else + { + /* All other characters. */ + *into++ = (unsigned char)*json++; + } + } + + /* and null-terminate. */ + *into = '\0'; +} + +CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item) +{ + if (item == NULL) + { + return false; + } + + return (item->type & 0xFF) == cJSON_Invalid; +} + +CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item) +{ + if (item == NULL) + { + return false; + } + + return (item->type & 0xFF) == cJSON_False; +} + +CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item) +{ + if (item == NULL) + { + return false; + } + + return (item->type & 0xff) == cJSON_True; +} + + +CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item) +{ + if (item == NULL) + { + return false; + } + + return (item->type & (cJSON_True | cJSON_False)) != 0; +} +CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item) +{ + if (item == NULL) + { + return false; + } + + return (item->type & 0xFF) == cJSON_NULL; +} + +CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item) +{ + if (item == NULL) + { + return false; + } + + return (item->type & 0xFF) == cJSON_Number; +} + +CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item) +{ + if (item == NULL) + { + return false; + } + + return (item->type & 0xFF) == cJSON_String; +} + +CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item) +{ + if (item == NULL) + { + return false; + } + + return (item->type & 0xFF) == cJSON_Array; +} + +CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item) +{ + if (item == NULL) + { + return false; + } + + return (item->type & 0xFF) == cJSON_Object; +} + +CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item) +{ + if (item == NULL) + { + return false; + } + + return (item->type & 0xFF) == cJSON_Raw; +} + +CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive) +{ + if ((a == NULL) || (b == NULL) || ((a->type & 0xFF) != (b->type & 0xFF)) || cJSON_IsInvalid(a)) + { + return false; + } + + /* check if type is valid */ + switch (a->type & 0xFF) + { + case cJSON_False: + case cJSON_True: + case cJSON_NULL: + case cJSON_Number: + case cJSON_String: + case cJSON_Raw: + case cJSON_Array: + case cJSON_Object: + break; + + default: + return false; + } + + /* identical objects are equal */ + if (a == b) + { + return true; + } + + switch (a->type & 0xFF) + { + /* in these cases and equal type is enough */ + case cJSON_False: + case cJSON_True: + case cJSON_NULL: + return true; + + case cJSON_Number: + if (a->valuedouble == b->valuedouble) + { + return true; + } + return false; + + case cJSON_String: + case cJSON_Raw: + if ((a->valuestring == NULL) || (b->valuestring == NULL)) + { + return false; + } + if (strcmp(a->valuestring, b->valuestring) == 0) + { + return true; + } + + return false; + + case cJSON_Array: + { + cJSON *a_element = a->child; + cJSON *b_element = b->child; + + for (; (a_element != NULL) && (b_element != NULL);) + { + if (!cJSON_Compare(a_element, b_element, case_sensitive)) + { + return false; + } + + a_element = a_element->next; + b_element = b_element->next; + } + + /* one of the arrays is longer than the other */ + if (a_element != b_element) { + return false; + } + + return true; + } + + case cJSON_Object: + { + cJSON *a_element = NULL; + cJSON *b_element = NULL; + cJSON_ArrayForEach(a_element, a) + { + /* TODO This has O(n^2) runtime, which is horrible! */ + b_element = get_object_item(b, a_element->string, case_sensitive); + if (b_element == NULL) + { + return false; + } + + if (!cJSON_Compare(a_element, b_element, case_sensitive)) + { + return false; + } + } + + /* doing this twice, once on a and b to prevent true comparison if a subset of b + * TODO: Do this the proper way, this is just a fix for now */ + cJSON_ArrayForEach(b_element, b) + { + a_element = get_object_item(a, b_element->string, case_sensitive); + if (a_element == NULL) + { + return false; + } + + if (!cJSON_Compare(b_element, a_element, case_sensitive)) + { + return false; + } + } + + return true; + } + + default: + return false; + } +} + +CJSON_PUBLIC(void *) cJSON_malloc(size_t size) +{ + return global_hooks.allocate(size); +} + +CJSON_PUBLIC(void) cJSON_free(void *object) +{ + global_hooks.deallocate(object); +} diff --git a/lib/skyhwd/external/cJSON.h b/lib/skyhwd/external/cJSON.h new file mode 100644 index 000000000..6e0bde932 --- /dev/null +++ b/lib/skyhwd/external/cJSON.h @@ -0,0 +1,277 @@ +/* + Copyright (c) 2009-2017 Dave Gamble and cJSON contributors + + 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. +*/ + +#ifndef cJSON__h +#define cJSON__h + +#ifdef __cplusplus +extern "C" +{ +#endif + +/* project version */ +#define CJSON_VERSION_MAJOR 1 +#define CJSON_VERSION_MINOR 7 +#define CJSON_VERSION_PATCH 7 + +#include + +/* cJSON Types: */ +#define cJSON_Invalid (0) +#define cJSON_False (1 << 0) +#define cJSON_True (1 << 1) +#define cJSON_NULL (1 << 2) +#define cJSON_Number (1 << 3) +#define cJSON_String (1 << 4) +#define cJSON_Array (1 << 5) +#define cJSON_Object (1 << 6) +#define cJSON_Raw (1 << 7) /* raw json */ + +#define cJSON_IsReference 256 +#define cJSON_StringIsConst 512 + +/* The cJSON structure: */ +typedef struct cJSON +{ + /* next/prev allow you to walk array/object chains. Alternatively, use GetArraySize/GetArrayItem/GetObjectItem */ + struct cJSON *next; + struct cJSON *prev; + /* An array or object item will have a child pointer pointing to a chain of the items in the array/object. */ + struct cJSON *child; + + /* The type of the item, as above. */ + int type; + + /* The item's string, if type==cJSON_String and type == cJSON_Raw */ + char *valuestring; + /* writing to valueint is DEPRECATED, use cJSON_SetNumberValue instead */ + int valueint; + /* The item's number, if type==cJSON_Number */ + double valuedouble; + + /* The item's name string, if this item is the child of, or is in the list of subitems of an object. */ + char *string; +} cJSON; + +typedef struct cJSON_Hooks +{ + void *(*malloc_fn)(size_t sz); + void (*free_fn)(void *ptr); +} cJSON_Hooks; + +typedef int cJSON_bool; + +#if !defined(__WINDOWS__) && (defined(WIN32) || defined(WIN64) || defined(_MSC_VER) || defined(_WIN32)) +#define __WINDOWS__ +#endif +#ifdef __WINDOWS__ + +/* When compiling for windows, we specify a specific calling convention to avoid issues where we are being called from a project with a different default calling convention. For windows you have 2 define options: + +CJSON_HIDE_SYMBOLS - Define this in the case where you don't want to ever dllexport symbols +CJSON_EXPORT_SYMBOLS - Define this on library build when you want to dllexport symbols (default) +CJSON_IMPORT_SYMBOLS - Define this if you want to dllimport symbol + +For *nix builds that support visibility attribute, you can define similar behavior by + +setting default visibility to hidden by adding +-fvisibility=hidden (for gcc) +or +-xldscope=hidden (for sun cc) +to CFLAGS + +then using the CJSON_API_VISIBILITY flag to "export" the same symbols the way CJSON_EXPORT_SYMBOLS does + +*/ + +/* export symbols by default, this is necessary for copy pasting the C and header file */ +#if !defined(CJSON_HIDE_SYMBOLS) && !defined(CJSON_IMPORT_SYMBOLS) && !defined(CJSON_EXPORT_SYMBOLS) +#define CJSON_EXPORT_SYMBOLS +#endif + +#if defined(CJSON_HIDE_SYMBOLS) +#define CJSON_PUBLIC(type) type __stdcall +#elif defined(CJSON_EXPORT_SYMBOLS) +#define CJSON_PUBLIC(type) __declspec(dllexport) type __stdcall +#elif defined(CJSON_IMPORT_SYMBOLS) +#define CJSON_PUBLIC(type) __declspec(dllimport) type __stdcall +#endif +#else /* !WIN32 */ +#if (defined(__GNUC__) || defined(__SUNPRO_CC) || defined (__SUNPRO_C)) && defined(CJSON_API_VISIBILITY) +#define CJSON_PUBLIC(type) __attribute__((visibility("default"))) type +#else +#define CJSON_PUBLIC(type) type +#endif +#endif + +/* Limits how deeply nested arrays/objects can be before cJSON rejects to parse them. + * This is to prevent stack overflows. */ +#ifndef CJSON_NESTING_LIMIT +#define CJSON_NESTING_LIMIT 1000 +#endif + +/* returns the version of cJSON as a string */ +CJSON_PUBLIC(const char*) cJSON_Version(void); + +/* Supply malloc, realloc and free functions to cJSON */ +CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks); + +/* Memory Management: the caller is always responsible to free the results from all variants of cJSON_Parse (with cJSON_Delete) and cJSON_Print (with stdlib free, cJSON_Hooks.free_fn, or cJSON_free as appropriate). The exception is cJSON_PrintPreallocated, where the caller has full responsibility of the buffer. */ +/* Supply a block of JSON, and this returns a cJSON object you can interrogate. */ +CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value); +/* ParseWithOpts allows you to require (and check) that the JSON is null terminated, and to retrieve the pointer to the final byte parsed. */ +/* If you supply a ptr in return_parse_end and parsing fails, then return_parse_end will contain a pointer to the error so will match cJSON_GetErrorPtr(). */ +CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_terminated); + +/* Render a cJSON entity to text for transfer/storage. */ +CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item); +/* Render a cJSON entity to text for transfer/storage without any formatting. */ +CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item); +/* Render a cJSON entity to text using a buffered strategy. prebuffer is a guess at the final size. guessing well reduces reallocation. fmt=0 gives unformatted, =1 gives formatted */ +CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt); +/* Render a cJSON entity to text using a buffer already allocated in memory with given length. Returns 1 on success and 0 on failure. */ +/* NOTE: cJSON is not always 100% accurate in estimating how much memory it will use, so to be safe allocate 5 bytes more than you actually need */ +CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const cJSON_bool format); +/* Delete a cJSON entity and all subentities. */ +CJSON_PUBLIC(void) cJSON_Delete(cJSON *c); + +/* Returns the number of items in an array (or object). */ +CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array); +/* Retrieve item number "index" from array "array". Returns NULL if unsuccessful. */ +CJSON_PUBLIC(cJSON *) cJSON_GetArrayItem(const cJSON *array, int index); +/* Get item "string" from object. Case insensitive. */ +CJSON_PUBLIC(cJSON *) cJSON_GetObjectItem(const cJSON * const object, const char * const string); +CJSON_PUBLIC(cJSON *) cJSON_GetObjectItemCaseSensitive(const cJSON * const object, const char * const string); +CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string); +/* For analysing failed parses. This returns a pointer to the parse error. You'll probably need to look a few chars back to make sense of it. Defined when cJSON_Parse() returns 0. 0 when cJSON_Parse() succeeds. */ +CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void); + +/* Check if the item is a string and return its valuestring */ +CJSON_PUBLIC(char *) cJSON_GetStringValue(cJSON *item); + +/* These functions check the type of an item */ +CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item); +CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item); +CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item); +CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item); +CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item); +CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item); +CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item); +CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item); +CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item); +CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item); + +/* These calls create a cJSON item of the appropriate type. */ +CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void); +CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void); +CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void); +CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean); +CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num); +CJSON_PUBLIC(cJSON *) cJSON_CreateString(const char *string); +/* raw json */ +CJSON_PUBLIC(cJSON *) cJSON_CreateRaw(const char *raw); +CJSON_PUBLIC(cJSON *) cJSON_CreateArray(void); +CJSON_PUBLIC(cJSON *) cJSON_CreateObject(void); + +/* Create a string where valuestring references a string so + * it will not be freed by cJSON_Delete */ +CJSON_PUBLIC(cJSON *) cJSON_CreateStringReference(const char *string); +/* Create an object/arrray that only references it's elements so + * they will not be freed by cJSON_Delete */ +CJSON_PUBLIC(cJSON *) cJSON_CreateObjectReference(const cJSON *child); +CJSON_PUBLIC(cJSON *) cJSON_CreateArrayReference(const cJSON *child); + +/* These utilities create an Array of count items. */ +CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count); +CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count); +CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count); +CJSON_PUBLIC(cJSON *) cJSON_CreateStringArray(const char **strings, int count); + +/* Append item to the specified array/object. */ +CJSON_PUBLIC(void) cJSON_AddItemToArray(cJSON *array, cJSON *item); +CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item); +/* Use this when string is definitely const (i.e. a literal, or as good as), and will definitely survive the cJSON object. + * WARNING: When this function was used, make sure to always check that (item->type & cJSON_StringIsConst) is zero before + * writing to `item->string` */ +CJSON_PUBLIC(void) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item); +/* Append reference to item to the specified array/object. Use this when you want to add an existing cJSON to a new cJSON, but don't want to corrupt your existing cJSON. */ +CJSON_PUBLIC(void) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item); +CJSON_PUBLIC(void) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item); + +/* Remove/Detatch items from Arrays/Objects. */ +CJSON_PUBLIC(cJSON *) cJSON_DetachItemViaPointer(cJSON *parent, cJSON * const item); +CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromArray(cJSON *array, int which); +CJSON_PUBLIC(void) cJSON_DeleteItemFromArray(cJSON *array, int which); +CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObject(cJSON *object, const char *string); +CJSON_PUBLIC(cJSON *) cJSON_DetachItemFromObjectCaseSensitive(cJSON *object, const char *string); +CJSON_PUBLIC(void) cJSON_DeleteItemFromObject(cJSON *object, const char *string); +CJSON_PUBLIC(void) cJSON_DeleteItemFromObjectCaseSensitive(cJSON *object, const char *string); + +/* Update array items. */ +CJSON_PUBLIC(void) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newitem); /* Shifts pre-existing items to the right. */ +CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement); +CJSON_PUBLIC(void) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newitem); +CJSON_PUBLIC(void) cJSON_ReplaceItemInObject(cJSON *object,const char *string,cJSON *newitem); +CJSON_PUBLIC(void) cJSON_ReplaceItemInObjectCaseSensitive(cJSON *object,const char *string,cJSON *newitem); + +/* Duplicate a cJSON item */ +CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse); +/* Duplicate will create a new, identical cJSON item to the one you pass, in new memory that will +need to be released. With recurse!=0, it will duplicate any children connected to the item. +The item->next and ->prev pointers are always zero on return from Duplicate. */ +/* Recursively compare two cJSON items for equality. If either a or b is NULL or invalid, they will be considered unequal. + * case_sensitive determines if object keys are treated case sensitive (1) or case insensitive (0) */ +CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive); + + +CJSON_PUBLIC(void) cJSON_Minify(char *json); + +/* Helper functions for creating and adding items to an object at the same time. + * They return the added item or NULL on failure. */ +CJSON_PUBLIC(cJSON*) cJSON_AddNullToObject(cJSON * const object, const char * const name); +CJSON_PUBLIC(cJSON*) cJSON_AddTrueToObject(cJSON * const object, const char * const name); +CJSON_PUBLIC(cJSON*) cJSON_AddFalseToObject(cJSON * const object, const char * const name); +CJSON_PUBLIC(cJSON*) cJSON_AddBoolToObject(cJSON * const object, const char * const name, const cJSON_bool boolean); +CJSON_PUBLIC(cJSON*) cJSON_AddNumberToObject(cJSON * const object, const char * const name, const double number); +CJSON_PUBLIC(cJSON*) cJSON_AddStringToObject(cJSON * const object, const char * const name, const char * const string); +CJSON_PUBLIC(cJSON*) cJSON_AddRawToObject(cJSON * const object, const char * const name, const char * const raw); +CJSON_PUBLIC(cJSON*) cJSON_AddObjectToObject(cJSON * const object, const char * const name); +CJSON_PUBLIC(cJSON*) cJSON_AddArrayToObject(cJSON * const object, const char * const name); + +/* When assigning an integer value, it needs to be propagated to valuedouble too. */ +#define cJSON_SetIntValue(object, number) ((object) ? (object)->valueint = (object)->valuedouble = (number) : (number)) +/* helper for the cJSON_SetNumberValue macro */ +CJSON_PUBLIC(double) cJSON_SetNumberHelper(cJSON *object, double number); +#define cJSON_SetNumberValue(object, number) ((object != NULL) ? cJSON_SetNumberHelper(object, (double)number) : (number)) + +/* Macro for iterating over an array or object */ +#define cJSON_ArrayForEach(element, array) for(element = (array != NULL) ? (array)->child : NULL; element != NULL; element = element->next) + +/* malloc/free objects using the malloc/free functions that have been set with cJSON_InitHooks */ +CJSON_PUBLIC(void *) cJSON_malloc(size_t size); +CJSON_PUBLIC(void) cJSON_free(void *object); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/lib/skyhwd/external/cJSON.licence b/lib/skyhwd/external/cJSON.licence new file mode 100644 index 000000000..47234478c --- /dev/null +++ b/lib/skyhwd/external/cJSON.licence @@ -0,0 +1,19 @@ +Copyright (c) 2009-2017 Dave Gamble and cJSON contributors + +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. diff --git a/lib/skyhwd/include/apiClient.h b/lib/skyhwd/include/apiClient.h new file mode 100644 index 000000000..4ff872d6d --- /dev/null +++ b/lib/skyhwd/include/apiClient.h @@ -0,0 +1,38 @@ +#ifndef INCLUDE_API_CLIENT_H +#define INCLUDE_API_CLIENT_H + +#include +#include +#include +#include +#include +#include "../include/list.h" +#include "../include/keyValuePair.h" + +typedef struct apiClient_t { + char *basePath; + int accessToken; + void *dataReceived; + long response_code; + list_t *apiKeys; +} apiClient_t; + +typedef struct binary_t +{ + uint8_t* data; + unsigned int len; +} binary_t; + +apiClient_t* apiClient_create(); + +void apiClient_free(apiClient_t *apiClient); + +void apiClient_invoke(apiClient_t *apiClient,char* operationParameter, list_t *queryParameters, list_t *headerParameters, list_t *formParameters,list_t *headerType,list_t *contentType, char *bodyParameters, char *requestType); + +char *strReplace(char *orig, char *rep, char *with); + +char *base64encode(const void *b64_encode_this, int encode_this_many_bytes); + +char *base64decode(const void *b64_decode_this, int decode_this_many_bytes); + +#endif // INCLUDE_API_CLIENT_H diff --git a/lib/skyhwd/include/keyValuePair.h b/lib/skyhwd/include/keyValuePair.h new file mode 100644 index 000000000..90f92e71f --- /dev/null +++ b/lib/skyhwd/include/keyValuePair.h @@ -0,0 +1,15 @@ +#ifndef _keyValuePair_H_ +#define _keyValuePair_H_ + +#include + +typedef struct keyValuePair_t { + char* key; + void* value; +} keyValuePair_t; + +keyValuePair_t *keyValuePair_create(char *key, void *value); + +void keyValuePair_free(keyValuePair_t *keyValuePair); + +#endif /* _keyValuePair_H_ */ \ No newline at end of file diff --git a/lib/skyhwd/include/list.h b/lib/skyhwd/include/list.h new file mode 100644 index 000000000..7d98d7f30 --- /dev/null +++ b/lib/skyhwd/include/list.h @@ -0,0 +1,39 @@ +#ifndef INCLUDE_LIST_H +#define INCLUDE_LIST_H + +#include "../external/cJSON.h" +#include "../include/list.h" + +typedef struct list_t list_t; + +typedef struct listEntry_t listEntry_t; + +struct listEntry_t { + listEntry_t* nextListEntry; + listEntry_t* prevListEntry; + void* data; +}; + +typedef struct list_t { + listEntry_t *firstEntry; + listEntry_t *lastEntry; + + long count; +} list_t; + +#define list_ForEach(element, list) for(element = (list != NULL) ? (list)->firstEntry : NULL; element != NULL; element = element->nextListEntry) + +list_t* list_create(); +void list_free(list_t* listToFree); + +void list_addElement(list_t* list, void* dataToAddInList); +listEntry_t* list_getElementAt(list_t *list, long indexOfElement); +listEntry_t* list_getWithIndex(list_t* list, int index); +void list_removeElement(list_t* list, listEntry_t* elementToRemove); + +void list_iterateThroughListForward(list_t* list, void (*operationToPerform)(listEntry_t*, void*), void *additionalDataNeededForCallbackFunction); +void list_iterateThroughListBackward(list_t* list, void (*operationToPerform)(listEntry_t*, void*), void *additionalDataNeededForCallbackFunction); + +void listEntry_printAsInt(listEntry_t* listEntry, void *additionalData); +void listEntry_free(listEntry_t *listEntry, void *additionalData); +#endif // INCLUDE_LIST_H diff --git a/lib/skyhwd/libcurl.licence b/lib/skyhwd/libcurl.licence new file mode 100644 index 000000000..b5f47ac94 --- /dev/null +++ b/lib/skyhwd/libcurl.licence @@ -0,0 +1,11 @@ +COPYRIGHT AND PERMISSION NOTICE + +Copyright (c) 1996 - 2018, Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. + +All rights reserved. + +Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +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 OF THIRD PARTY RIGHTS. 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. + +Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. diff --git a/lib/skyhwd/model/apply_settings_request.c b/lib/skyhwd/model/apply_settings_request.c new file mode 100644 index 000000000..2b67c7eeb --- /dev/null +++ b/lib/skyhwd/model/apply_settings_request.c @@ -0,0 +1,108 @@ +#include +#include +#include +#include "apply_settings_request.h" + + + +apply_settings_request_t *apply_settings_request_create( + char *label, + int use_passphrase, + char *language + ) { + apply_settings_request_t *apply_settings_request_local_var = malloc(sizeof(apply_settings_request_t)); + if (!apply_settings_request_local_var) { + return NULL; + } + apply_settings_request_local_var->label = label; + apply_settings_request_local_var->use_passphrase = use_passphrase; + apply_settings_request_local_var->language = language; + + return apply_settings_request_local_var; +} + + +void apply_settings_request_free(apply_settings_request_t *apply_settings_request) { + listEntry_t *listEntry; + free(apply_settings_request->label); + free(apply_settings_request->language); + free(apply_settings_request); +} + +cJSON *apply_settings_request_convertToJSON(apply_settings_request_t *apply_settings_request) { + cJSON *item = cJSON_CreateObject(); + + // apply_settings_request->label + if(apply_settings_request->label) { + if(cJSON_AddStringToObject(item, "label", apply_settings_request->label) == NULL) { + goto fail; //String + } + } + + + // apply_settings_request->use_passphrase + if(apply_settings_request->use_passphrase) { + if(cJSON_AddBoolToObject(item, "use_passphrase", apply_settings_request->use_passphrase) == NULL) { + goto fail; //Bool + } + } + + + // apply_settings_request->language + if(apply_settings_request->language) { + if(cJSON_AddStringToObject(item, "language", apply_settings_request->language) == NULL) { + goto fail; //String + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +apply_settings_request_t *apply_settings_request_parseFromJSON(cJSON *apply_settings_requestJSON){ + + apply_settings_request_t *apply_settings_request_local_var = NULL; + + // apply_settings_request->label + cJSON *label = cJSON_GetObjectItemCaseSensitive(apply_settings_requestJSON, "label"); + if (label) { + if(!cJSON_IsString(label)) + { + goto end; //String + } + } + + // apply_settings_request->use_passphrase + cJSON *use_passphrase = cJSON_GetObjectItemCaseSensitive(apply_settings_requestJSON, "use_passphrase"); + if (use_passphrase) { + if(!cJSON_IsBool(use_passphrase)) + { + goto end; //Bool + } + } + + // apply_settings_request->language + cJSON *language = cJSON_GetObjectItemCaseSensitive(apply_settings_requestJSON, "language"); + if (language) { + if(!cJSON_IsString(language)) + { + goto end; //String + } + } + + + apply_settings_request_local_var = apply_settings_request_create ( + label ? strdup(label->valuestring) : NULL, + use_passphrase ? use_passphrase->valueint : 0, + language ? strdup(language->valuestring) : NULL + ); + + return apply_settings_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/apply_settings_request.h b/lib/skyhwd/model/apply_settings_request.h new file mode 100644 index 000000000..e1b15185b --- /dev/null +++ b/lib/skyhwd/model/apply_settings_request.h @@ -0,0 +1,37 @@ +/* + * apply_settings_request.h + * + * + */ + +#ifndef _apply_settings_request_H_ +#define _apply_settings_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct apply_settings_request_t { + char *label; // string + int use_passphrase; //boolean + char *language; // string + +} apply_settings_request_t; + +apply_settings_request_t *apply_settings_request_create( + char *label, + int use_passphrase, + char *language +); + +void apply_settings_request_free(apply_settings_request_t *apply_settings_request); + +apply_settings_request_t *apply_settings_request_parseFromJSON(cJSON *apply_settings_requestJSON); + +cJSON *apply_settings_request_convertToJSON(apply_settings_request_t *apply_settings_request); + +#endif /* _apply_settings_request_H_ */ + diff --git a/lib/skyhwd/model/check_message_signature_request.c b/lib/skyhwd/model/check_message_signature_request.c new file mode 100644 index 000000000..743d1e9c1 --- /dev/null +++ b/lib/skyhwd/model/check_message_signature_request.c @@ -0,0 +1,124 @@ +#include +#include +#include +#include "check_message_signature_request.h" + + + +check_message_signature_request_t *check_message_signature_request_create( + char *message, + char *signature, + char *address + ) { + check_message_signature_request_t *check_message_signature_request_local_var = malloc(sizeof(check_message_signature_request_t)); + if (!check_message_signature_request_local_var) { + return NULL; + } + check_message_signature_request_local_var->message = message; + check_message_signature_request_local_var->signature = signature; + check_message_signature_request_local_var->address = address; + + return check_message_signature_request_local_var; +} + + +void check_message_signature_request_free(check_message_signature_request_t *check_message_signature_request) { + listEntry_t *listEntry; + free(check_message_signature_request->message); + free(check_message_signature_request->signature); + free(check_message_signature_request->address); + free(check_message_signature_request); +} + +cJSON *check_message_signature_request_convertToJSON(check_message_signature_request_t *check_message_signature_request) { + cJSON *item = cJSON_CreateObject(); + + // check_message_signature_request->message + if (!check_message_signature_request->message) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "message", check_message_signature_request->message) == NULL) { + goto fail; //String + } + + + // check_message_signature_request->signature + if (!check_message_signature_request->signature) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "signature", check_message_signature_request->signature) == NULL) { + goto fail; //String + } + + + // check_message_signature_request->address + if (!check_message_signature_request->address) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "address", check_message_signature_request->address) == NULL) { + goto fail; //String + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +check_message_signature_request_t *check_message_signature_request_parseFromJSON(cJSON *check_message_signature_requestJSON){ + + check_message_signature_request_t *check_message_signature_request_local_var = NULL; + + // check_message_signature_request->message + cJSON *message = cJSON_GetObjectItemCaseSensitive(check_message_signature_requestJSON, "message"); + if (!message) { + goto end; + } + + + if(!cJSON_IsString(message)) + { + goto end; //String + } + + // check_message_signature_request->signature + cJSON *signature = cJSON_GetObjectItemCaseSensitive(check_message_signature_requestJSON, "signature"); + if (!signature) { + goto end; + } + + + if(!cJSON_IsString(signature)) + { + goto end; //String + } + + // check_message_signature_request->address + cJSON *address = cJSON_GetObjectItemCaseSensitive(check_message_signature_requestJSON, "address"); + if (!address) { + goto end; + } + + + if(!cJSON_IsString(address)) + { + goto end; //String + } + + + check_message_signature_request_local_var = check_message_signature_request_create ( + strdup(message->valuestring), + strdup(signature->valuestring), + strdup(address->valuestring) + ); + + return check_message_signature_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/check_message_signature_request.h b/lib/skyhwd/model/check_message_signature_request.h new file mode 100644 index 000000000..df2c147ba --- /dev/null +++ b/lib/skyhwd/model/check_message_signature_request.h @@ -0,0 +1,37 @@ +/* + * check_message_signature_request.h + * + * + */ + +#ifndef _check_message_signature_request_H_ +#define _check_message_signature_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct check_message_signature_request_t { + char *message; // string + char *signature; // string + char *address; // string + +} check_message_signature_request_t; + +check_message_signature_request_t *check_message_signature_request_create( + char *message, + char *signature, + char *address +); + +void check_message_signature_request_free(check_message_signature_request_t *check_message_signature_request); + +check_message_signature_request_t *check_message_signature_request_parseFromJSON(cJSON *check_message_signature_requestJSON); + +cJSON *check_message_signature_request_convertToJSON(check_message_signature_request_t *check_message_signature_request); + +#endif /* _check_message_signature_request_H_ */ + diff --git a/lib/skyhwd/model/csrf_response.c b/lib/skyhwd/model/csrf_response.c new file mode 100644 index 000000000..3ddb0f602 --- /dev/null +++ b/lib/skyhwd/model/csrf_response.c @@ -0,0 +1,67 @@ +#include +#include +#include +#include "csrf_response.h" + + + +csrf_response_t *csrf_response_create( + char *data + ) { + csrf_response_t *csrf_response_local_var = malloc(sizeof(csrf_response_t)); + if (!csrf_response_local_var) { + return NULL; + } + csrf_response_local_var->data = data; + + return csrf_response_local_var; +} + + +void csrf_response_free(csrf_response_t *csrf_response) { + listEntry_t *listEntry; + free(csrf_response->data); + free(csrf_response); +} + +cJSON *csrf_response_convertToJSON(csrf_response_t *csrf_response) { + cJSON *item = cJSON_CreateObject(); + + // csrf_response->data + if(csrf_response->data) { + if(cJSON_AddStringToObject(item, "data", csrf_response->data) == NULL) { + goto fail; //String + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +csrf_response_t *csrf_response_parseFromJSON(cJSON *csrf_responseJSON){ + + csrf_response_t *csrf_response_local_var = NULL; + + // csrf_response->data + cJSON *data = cJSON_GetObjectItemCaseSensitive(csrf_responseJSON, "data"); + if (data) { + if(!cJSON_IsString(data)) + { + goto end; //String + } + } + + + csrf_response_local_var = csrf_response_create ( + data ? strdup(data->valuestring) : NULL + ); + + return csrf_response_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/csrf_response.h b/lib/skyhwd/model/csrf_response.h new file mode 100644 index 000000000..4090897bb --- /dev/null +++ b/lib/skyhwd/model/csrf_response.h @@ -0,0 +1,33 @@ +/* + * csrf_response.h + * + * + */ + +#ifndef _csrf_response_H_ +#define _csrf_response_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct csrf_response_t { + char *data; // string + +} csrf_response_t; + +csrf_response_t *csrf_response_create( + char *data +); + +void csrf_response_free(csrf_response_t *csrf_response); + +csrf_response_t *csrf_response_parseFromJSON(cJSON *csrf_responseJSON); + +cJSON *csrf_response_convertToJSON(csrf_response_t *csrf_response); + +#endif /* _csrf_response_H_ */ + diff --git a/lib/skyhwd/model/features_response.c b/lib/skyhwd/model/features_response.c new file mode 100644 index 000000000..030fb2956 --- /dev/null +++ b/lib/skyhwd/model/features_response.c @@ -0,0 +1,70 @@ +#include +#include +#include +#include "features_response.h" + + + +features_response_t *features_response_create( + features_response_data_t *data + ) { + features_response_t *features_response_local_var = malloc(sizeof(features_response_t)); + if (!features_response_local_var) { + return NULL; + } + features_response_local_var->data = data; + + return features_response_local_var; +} + + +void features_response_free(features_response_t *features_response) { + listEntry_t *listEntry; + features_response_data_free(features_response->data); + free(features_response); +} + +cJSON *features_response_convertToJSON(features_response_t *features_response) { + cJSON *item = cJSON_CreateObject(); + + // features_response->data + if(features_response->data) { + cJSON *data_local_JSON = features_response_data_convertToJSON(features_response->data); + if(data_local_JSON == NULL) { + goto fail; //model + } + cJSON_AddItemToObject(item, "data", data_local_JSON); + if(item->child == NULL) { + goto fail; + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +features_response_t *features_response_parseFromJSON(cJSON *features_responseJSON){ + + features_response_t *features_response_local_var = NULL; + + // features_response->data + cJSON *data = cJSON_GetObjectItemCaseSensitive(features_responseJSON, "data"); + features_response_data_t *data_local_nonprim = NULL; + if (data) { + data_local_nonprim = features_response_data_parseFromJSON(data); //nonprimitive + } + + + features_response_local_var = features_response_create ( + data ? data_local_nonprim : NULL + ); + + return features_response_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/features_response.h b/lib/skyhwd/model/features_response.h new file mode 100644 index 000000000..8fcb72992 --- /dev/null +++ b/lib/skyhwd/model/features_response.h @@ -0,0 +1,34 @@ +/* + * features_response.h + * + * + */ + +#ifndef _features_response_H_ +#define _features_response_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" +#include "features_response_data.h" + + + +typedef struct features_response_t { + features_response_data_t *data; //model + +} features_response_t; + +features_response_t *features_response_create( + features_response_data_t *data +); + +void features_response_free(features_response_t *features_response); + +features_response_t *features_response_parseFromJSON(cJSON *features_responseJSON); + +cJSON *features_response_convertToJSON(features_response_t *features_response); + +#endif /* _features_response_H_ */ + diff --git a/lib/skyhwd/model/features_response_data.c b/lib/skyhwd/model/features_response_data.c new file mode 100644 index 000000000..424c3cfb8 --- /dev/null +++ b/lib/skyhwd/model/features_response_data.c @@ -0,0 +1,441 @@ +#include +#include +#include +#include "features_response_data.h" + + + +features_response_data_t *features_response_data_create( + char *device_id, + int passphrase_protection, + char *label, + int fw_patch, + int fw_major, + int fw_minor, + int minor_version, + int pin_protection, + char *bootloader_hash, + int major_version, + int pin_cached, + char *vendor, + int needs_backup, + int initialized, + char *model, + int passphrase_cached, + int patch_version + ) { + features_response_data_t *features_response_data_local_var = malloc(sizeof(features_response_data_t)); + if (!features_response_data_local_var) { + return NULL; + } + features_response_data_local_var->device_id = device_id; + features_response_data_local_var->passphrase_protection = passphrase_protection; + features_response_data_local_var->label = label; + features_response_data_local_var->fw_patch = fw_patch; + features_response_data_local_var->fw_major = fw_major; + features_response_data_local_var->fw_minor = fw_minor; + features_response_data_local_var->minor_version = minor_version; + features_response_data_local_var->pin_protection = pin_protection; + features_response_data_local_var->bootloader_hash = bootloader_hash; + features_response_data_local_var->major_version = major_version; + features_response_data_local_var->pin_cached = pin_cached; + features_response_data_local_var->vendor = vendor; + features_response_data_local_var->needs_backup = needs_backup; + features_response_data_local_var->initialized = initialized; + features_response_data_local_var->model = model; + features_response_data_local_var->passphrase_cached = passphrase_cached; + features_response_data_local_var->patch_version = patch_version; + + return features_response_data_local_var; +} + + +void features_response_data_free(features_response_data_t *features_response_data) { + listEntry_t *listEntry; + free(features_response_data->device_id); + free(features_response_data->label); + free(features_response_data->bootloader_hash); + free(features_response_data->vendor); + free(features_response_data->model); + free(features_response_data); +} + +cJSON *features_response_data_convertToJSON(features_response_data_t *features_response_data) { + cJSON *item = cJSON_CreateObject(); + + // features_response_data->device_id + if(features_response_data->device_id) { + if(cJSON_AddStringToObject(item, "device_id", features_response_data->device_id) == NULL) { + goto fail; //String + } + } + + + // features_response_data->passphrase_protection + if (!features_response_data->passphrase_protection) { + goto fail; + } + + if(cJSON_AddBoolToObject(item, "passphrase_protection", features_response_data->passphrase_protection) == NULL) { + goto fail; //Bool + } + + + // features_response_data->label + if(features_response_data->label) { + if(cJSON_AddStringToObject(item, "label", features_response_data->label) == NULL) { + goto fail; //String + } + } + + + // features_response_data->fw_patch + if (!features_response_data->fw_patch) { + goto fail; + } + + if(cJSON_AddNumberToObject(item, "fw_patch", features_response_data->fw_patch) == NULL) { + goto fail; //Numeric + } + + + // features_response_data->fw_major + if (!features_response_data->fw_major) { + goto fail; + } + + if(cJSON_AddNumberToObject(item, "fw_major", features_response_data->fw_major) == NULL) { + goto fail; //Numeric + } + + + // features_response_data->fw_minor + if (!features_response_data->fw_minor) { + goto fail; + } + + if(cJSON_AddNumberToObject(item, "fw_minor", features_response_data->fw_minor) == NULL) { + goto fail; //Numeric + } + + + // features_response_data->minor_version + if(features_response_data->minor_version) { + if(cJSON_AddNumberToObject(item, "minor_version", features_response_data->minor_version) == NULL) { + goto fail; //Numeric + } + } + + + // features_response_data->pin_protection + if (!features_response_data->pin_protection) { + goto fail; + } + + if(cJSON_AddBoolToObject(item, "pin_protection", features_response_data->pin_protection) == NULL) { + goto fail; //Bool + } + + + // features_response_data->bootloader_hash + if(features_response_data->bootloader_hash) { + if(cJSON_AddStringToObject(item, "bootloader_hash", features_response_data->bootloader_hash) == NULL) { + goto fail; //String + } + } + + + // features_response_data->major_version + if(features_response_data->major_version) { + if(cJSON_AddNumberToObject(item, "major_version", features_response_data->major_version) == NULL) { + goto fail; //Numeric + } + } + + + // features_response_data->pin_cached + if (!features_response_data->pin_cached) { + goto fail; + } + + if(cJSON_AddBoolToObject(item, "pin_cached", features_response_data->pin_cached) == NULL) { + goto fail; //Bool + } + + + // features_response_data->vendor + if (!features_response_data->vendor) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "vendor", features_response_data->vendor) == NULL) { + goto fail; //String + } + + + // features_response_data->needs_backup + if (!features_response_data->needs_backup) { + goto fail; + } + + if(cJSON_AddBoolToObject(item, "needs_backup", features_response_data->needs_backup) == NULL) { + goto fail; //Bool + } + + + // features_response_data->initialized + if (!features_response_data->initialized) { + goto fail; + } + + if(cJSON_AddBoolToObject(item, "initialized", features_response_data->initialized) == NULL) { + goto fail; //Bool + } + + + // features_response_data->model + if(features_response_data->model) { + if(cJSON_AddStringToObject(item, "model", features_response_data->model) == NULL) { + goto fail; //String + } + } + + + // features_response_data->passphrase_cached + if (!features_response_data->passphrase_cached) { + goto fail; + } + + if(cJSON_AddBoolToObject(item, "passphrase_cached", features_response_data->passphrase_cached) == NULL) { + goto fail; //Bool + } + + + // features_response_data->patch_version + if(features_response_data->patch_version) { + if(cJSON_AddNumberToObject(item, "patch_version", features_response_data->patch_version) == NULL) { + goto fail; //Numeric + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +features_response_data_t *features_response_data_parseFromJSON(cJSON *features_response_dataJSON){ + + features_response_data_t *features_response_data_local_var = NULL; + + // features_response_data->device_id + cJSON *device_id = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "device_id"); + if (device_id) { + if(!cJSON_IsString(device_id)) + { + goto end; //String + } + } + + // features_response_data->passphrase_protection + cJSON *passphrase_protection = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "passphrase_protection"); + if (!passphrase_protection) { + goto end; + } + + + if(!cJSON_IsBool(passphrase_protection)) + { + goto end; //Bool + } + + // features_response_data->label + cJSON *label = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "label"); + if (label) { + if(!cJSON_IsString(label)) + { + goto end; //String + } + } + + // features_response_data->fw_patch + cJSON *fw_patch = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "fw_patch"); + if (!fw_patch) { + goto end; + } + + + if(!cJSON_IsNumber(fw_patch)) + { + goto end; //Numeric + } + + // features_response_data->fw_major + cJSON *fw_major = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "fw_major"); + if (!fw_major) { + goto end; + } + + + if(!cJSON_IsNumber(fw_major)) + { + goto end; //Numeric + } + + // features_response_data->fw_minor + cJSON *fw_minor = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "fw_minor"); + if (!fw_minor) { + goto end; + } + + + if(!cJSON_IsNumber(fw_minor)) + { + goto end; //Numeric + } + + // features_response_data->minor_version + cJSON *minor_version = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "minor_version"); + if (minor_version) { + if(!cJSON_IsNumber(minor_version)) + { + goto end; //Numeric + } + } + + // features_response_data->pin_protection + cJSON *pin_protection = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "pin_protection"); + if (!pin_protection) { + goto end; + } + + + if(!cJSON_IsBool(pin_protection)) + { + goto end; //Bool + } + + // features_response_data->bootloader_hash + cJSON *bootloader_hash = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "bootloader_hash"); + if (bootloader_hash) { + if(!cJSON_IsString(bootloader_hash)) + { + goto end; //String + } + } + + // features_response_data->major_version + cJSON *major_version = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "major_version"); + if (major_version) { + if(!cJSON_IsNumber(major_version)) + { + goto end; //Numeric + } + } + + // features_response_data->pin_cached + cJSON *pin_cached = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "pin_cached"); + if (!pin_cached) { + goto end; + } + + + if(!cJSON_IsBool(pin_cached)) + { + goto end; //Bool + } + + // features_response_data->vendor + cJSON *vendor = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "vendor"); + if (!vendor) { + goto end; + } + + + if(!cJSON_IsString(vendor)) + { + goto end; //String + } + + // features_response_data->needs_backup + cJSON *needs_backup = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "needs_backup"); + if (!needs_backup) { + goto end; + } + + + if(!cJSON_IsBool(needs_backup)) + { + goto end; //Bool + } + + // features_response_data->initialized + cJSON *initialized = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "initialized"); + if (!initialized) { + goto end; + } + + + if(!cJSON_IsBool(initialized)) + { + goto end; //Bool + } + + // features_response_data->model + cJSON *model = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "model"); + if (model) { + if(!cJSON_IsString(model)) + { + goto end; //String + } + } + + // features_response_data->passphrase_cached + cJSON *passphrase_cached = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "passphrase_cached"); + if (!passphrase_cached) { + goto end; + } + + + if(!cJSON_IsBool(passphrase_cached)) + { + goto end; //Bool + } + + // features_response_data->patch_version + cJSON *patch_version = cJSON_GetObjectItemCaseSensitive(features_response_dataJSON, "patch_version"); + if (patch_version) { + if(!cJSON_IsNumber(patch_version)) + { + goto end; //Numeric + } + } + + + features_response_data_local_var = features_response_data_create ( + device_id ? strdup(device_id->valuestring) : NULL, + passphrase_protection->valueint, + label ? strdup(label->valuestring) : NULL, + fw_patch->valuedouble, + fw_major->valuedouble, + fw_minor->valuedouble, + minor_version ? minor_version->valuedouble : 0, + pin_protection->valueint, + bootloader_hash ? strdup(bootloader_hash->valuestring) : NULL, + major_version ? major_version->valuedouble : 0, + pin_cached->valueint, + strdup(vendor->valuestring), + needs_backup->valueint, + initialized->valueint, + model ? strdup(model->valuestring) : NULL, + passphrase_cached->valueint, + patch_version ? patch_version->valuedouble : 0 + ); + + return features_response_data_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/features_response_data.h b/lib/skyhwd/model/features_response_data.h new file mode 100644 index 000000000..6518a20fa --- /dev/null +++ b/lib/skyhwd/model/features_response_data.h @@ -0,0 +1,65 @@ +/* + * features_response_data.h + * + * + */ + +#ifndef _features_response_data_H_ +#define _features_response_data_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct features_response_data_t { + char *device_id; // string + int passphrase_protection; //boolean + char *label; // string + int fw_patch; //numeric + int fw_major; //numeric + int fw_minor; //numeric + int minor_version; //numeric + int pin_protection; //boolean + char *bootloader_hash; // string + int major_version; //numeric + int pin_cached; //boolean + char *vendor; // string + int needs_backup; //boolean + int initialized; //boolean + char *model; // string + int passphrase_cached; //boolean + int patch_version; //numeric + +} features_response_data_t; + +features_response_data_t *features_response_data_create( + char *device_id, + int passphrase_protection, + char *label, + int fw_patch, + int fw_major, + int fw_minor, + int minor_version, + int pin_protection, + char *bootloader_hash, + int major_version, + int pin_cached, + char *vendor, + int needs_backup, + int initialized, + char *model, + int passphrase_cached, + int patch_version +); + +void features_response_data_free(features_response_data_t *features_response_data); + +features_response_data_t *features_response_data_parseFromJSON(cJSON *features_response_dataJSON); + +cJSON *features_response_data_convertToJSON(features_response_data_t *features_response_data); + +#endif /* _features_response_data_H_ */ + diff --git a/lib/skyhwd/model/generate_addresses_request.c b/lib/skyhwd/model/generate_addresses_request.c new file mode 100644 index 000000000..13f649bc6 --- /dev/null +++ b/lib/skyhwd/model/generate_addresses_request.c @@ -0,0 +1,111 @@ +#include +#include +#include +#include "generate_addresses_request.h" + + + +generate_addresses_request_t *generate_addresses_request_create( + int address_n, + int start_index, + int confirm_address + ) { + generate_addresses_request_t *generate_addresses_request_local_var = malloc(sizeof(generate_addresses_request_t)); + if (!generate_addresses_request_local_var) { + return NULL; + } + generate_addresses_request_local_var->address_n = address_n; + generate_addresses_request_local_var->start_index = start_index; + generate_addresses_request_local_var->confirm_address = confirm_address; + + return generate_addresses_request_local_var; +} + + +void generate_addresses_request_free(generate_addresses_request_t *generate_addresses_request) { + listEntry_t *listEntry; + free(generate_addresses_request); +} + +cJSON *generate_addresses_request_convertToJSON(generate_addresses_request_t *generate_addresses_request) { + cJSON *item = cJSON_CreateObject(); + + // generate_addresses_request->address_n + if (!generate_addresses_request->address_n) { + goto fail; + } + + if(cJSON_AddNumberToObject(item, "address_n", generate_addresses_request->address_n) == NULL) { + goto fail; //Numeric + } + + + // generate_addresses_request->start_index + if(generate_addresses_request->start_index) { + if(cJSON_AddNumberToObject(item, "start_index", generate_addresses_request->start_index) == NULL) { + goto fail; //Numeric + } + } + + + // generate_addresses_request->confirm_address + if(generate_addresses_request->confirm_address) { + if(cJSON_AddBoolToObject(item, "confirm_address", generate_addresses_request->confirm_address) == NULL) { + goto fail; //Bool + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +generate_addresses_request_t *generate_addresses_request_parseFromJSON(cJSON *generate_addresses_requestJSON){ + + generate_addresses_request_t *generate_addresses_request_local_var = NULL; + + // generate_addresses_request->address_n + cJSON *address_n = cJSON_GetObjectItemCaseSensitive(generate_addresses_requestJSON, "address_n"); + if (!address_n) { + goto end; + } + + + if(!cJSON_IsNumber(address_n)) + { + goto end; //Numeric + } + + // generate_addresses_request->start_index + cJSON *start_index = cJSON_GetObjectItemCaseSensitive(generate_addresses_requestJSON, "start_index"); + if (start_index) { + if(!cJSON_IsNumber(start_index)) + { + goto end; //Numeric + } + } + + // generate_addresses_request->confirm_address + cJSON *confirm_address = cJSON_GetObjectItemCaseSensitive(generate_addresses_requestJSON, "confirm_address"); + if (confirm_address) { + if(!cJSON_IsBool(confirm_address)) + { + goto end; //Bool + } + } + + + generate_addresses_request_local_var = generate_addresses_request_create ( + address_n->valuedouble, + start_index ? start_index->valuedouble : 0, + confirm_address ? confirm_address->valueint : 0 + ); + + return generate_addresses_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/generate_addresses_request.h b/lib/skyhwd/model/generate_addresses_request.h new file mode 100644 index 000000000..ec938f607 --- /dev/null +++ b/lib/skyhwd/model/generate_addresses_request.h @@ -0,0 +1,37 @@ +/* + * generate_addresses_request.h + * + * + */ + +#ifndef _generate_addresses_request_H_ +#define _generate_addresses_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct generate_addresses_request_t { + int address_n; //numeric + int start_index; //numeric + int confirm_address; //boolean + +} generate_addresses_request_t; + +generate_addresses_request_t *generate_addresses_request_create( + int address_n, + int start_index, + int confirm_address +); + +void generate_addresses_request_free(generate_addresses_request_t *generate_addresses_request); + +generate_addresses_request_t *generate_addresses_request_parseFromJSON(cJSON *generate_addresses_requestJSON); + +cJSON *generate_addresses_request_convertToJSON(generate_addresses_request_t *generate_addresses_request); + +#endif /* _generate_addresses_request_H_ */ + diff --git a/lib/skyhwd/model/generate_addresses_response.c b/lib/skyhwd/model/generate_addresses_response.c new file mode 100644 index 000000000..e12dd3b26 --- /dev/null +++ b/lib/skyhwd/model/generate_addresses_response.c @@ -0,0 +1,90 @@ +#include +#include +#include +#include "generate_addresses_response.h" + + + +generate_addresses_response_t *generate_addresses_response_create( + list_t *data + ) { + generate_addresses_response_t *generate_addresses_response_local_var = malloc(sizeof(generate_addresses_response_t)); + if (!generate_addresses_response_local_var) { + return NULL; + } + generate_addresses_response_local_var->data = data; + + return generate_addresses_response_local_var; +} + + +void generate_addresses_response_free(generate_addresses_response_t *generate_addresses_response) { + listEntry_t *listEntry; + list_ForEach(listEntry, generate_addresses_response->data) { + free(listEntry->data); + } + list_free(generate_addresses_response->data); + free(generate_addresses_response); +} + +cJSON *generate_addresses_response_convertToJSON(generate_addresses_response_t *generate_addresses_response) { + cJSON *item = cJSON_CreateObject(); + + // generate_addresses_response->data + if(generate_addresses_response->data) { + cJSON *data = cJSON_AddArrayToObject(item, "data"); + if(data == NULL) { + goto fail; //primitive container + } + + listEntry_t *dataListEntry; + list_ForEach(dataListEntry, generate_addresses_response->data) { + if(cJSON_AddStringToObject(data, "", (char*)dataListEntry->data) == NULL) + { + goto fail; + } + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +generate_addresses_response_t *generate_addresses_response_parseFromJSON(cJSON *generate_addresses_responseJSON){ + + generate_addresses_response_t *generate_addresses_response_local_var = NULL; + + // generate_addresses_response->data + cJSON *data = cJSON_GetObjectItemCaseSensitive(generate_addresses_responseJSON, "data"); + list_t *dataList; + if (data) { + cJSON *data_local; + if(!cJSON_IsArray(data)) { + goto end;//primitive container + } + dataList = list_create(); + + cJSON_ArrayForEach(data_local, data) + { + if(!cJSON_IsString(data_local)) + { + goto end; + } + list_addElement(dataList , strdup(data_local->valuestring)); + } + } + + + generate_addresses_response_local_var = generate_addresses_response_create ( + data ? dataList : NULL + ); + + return generate_addresses_response_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/generate_addresses_response.h b/lib/skyhwd/model/generate_addresses_response.h new file mode 100644 index 000000000..17f5c9d87 --- /dev/null +++ b/lib/skyhwd/model/generate_addresses_response.h @@ -0,0 +1,33 @@ +/* + * generate_addresses_response.h + * + * + */ + +#ifndef _generate_addresses_response_H_ +#define _generate_addresses_response_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct generate_addresses_response_t { + list_t *data; //primitive container + +} generate_addresses_response_t; + +generate_addresses_response_t *generate_addresses_response_create( + list_t *data +); + +void generate_addresses_response_free(generate_addresses_response_t *generate_addresses_response); + +generate_addresses_response_t *generate_addresses_response_parseFromJSON(cJSON *generate_addresses_responseJSON); + +cJSON *generate_addresses_response_convertToJSON(generate_addresses_response_t *generate_addresses_response); + +#endif /* _generate_addresses_response_H_ */ + diff --git a/lib/skyhwd/model/generate_mnemonic_request.c b/lib/skyhwd/model/generate_mnemonic_request.c new file mode 100644 index 000000000..03e4f0b9d --- /dev/null +++ b/lib/skyhwd/model/generate_mnemonic_request.c @@ -0,0 +1,91 @@ +#include +#include +#include +#include "generate_mnemonic_request.h" + + + +generate_mnemonic_request_t *generate_mnemonic_request_create( + int word_count, + int use_passphrase + ) { + generate_mnemonic_request_t *generate_mnemonic_request_local_var = malloc(sizeof(generate_mnemonic_request_t)); + if (!generate_mnemonic_request_local_var) { + return NULL; + } + generate_mnemonic_request_local_var->word_count = word_count; + generate_mnemonic_request_local_var->use_passphrase = use_passphrase; + + return generate_mnemonic_request_local_var; +} + + +void generate_mnemonic_request_free(generate_mnemonic_request_t *generate_mnemonic_request) { + listEntry_t *listEntry; + free(generate_mnemonic_request); +} + +cJSON *generate_mnemonic_request_convertToJSON(generate_mnemonic_request_t *generate_mnemonic_request) { + cJSON *item = cJSON_CreateObject(); + + // generate_mnemonic_request->word_count + if (!generate_mnemonic_request->word_count) { + goto fail; + } + + if(cJSON_AddNumberToObject(item, "word_count", generate_mnemonic_request->word_count) == NULL) { + goto fail; //Numeric + } + + + // generate_mnemonic_request->use_passphrase + if(generate_mnemonic_request->use_passphrase) { + if(cJSON_AddBoolToObject(item, "use_passphrase", generate_mnemonic_request->use_passphrase) == NULL) { + goto fail; //Bool + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +generate_mnemonic_request_t *generate_mnemonic_request_parseFromJSON(cJSON *generate_mnemonic_requestJSON){ + + generate_mnemonic_request_t *generate_mnemonic_request_local_var = NULL; + + // generate_mnemonic_request->word_count + cJSON *word_count = cJSON_GetObjectItemCaseSensitive(generate_mnemonic_requestJSON, "word_count"); + if (!word_count) { + goto end; + } + + + if(!cJSON_IsNumber(word_count)) + { + goto end; //Numeric + } + + // generate_mnemonic_request->use_passphrase + cJSON *use_passphrase = cJSON_GetObjectItemCaseSensitive(generate_mnemonic_requestJSON, "use_passphrase"); + if (use_passphrase) { + if(!cJSON_IsBool(use_passphrase)) + { + goto end; //Bool + } + } + + + generate_mnemonic_request_local_var = generate_mnemonic_request_create ( + word_count->valuedouble, + use_passphrase ? use_passphrase->valueint : 0 + ); + + return generate_mnemonic_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/generate_mnemonic_request.h b/lib/skyhwd/model/generate_mnemonic_request.h new file mode 100644 index 000000000..4cc8f98e8 --- /dev/null +++ b/lib/skyhwd/model/generate_mnemonic_request.h @@ -0,0 +1,35 @@ +/* + * generate_mnemonic_request.h + * + * + */ + +#ifndef _generate_mnemonic_request_H_ +#define _generate_mnemonic_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct generate_mnemonic_request_t { + int word_count; //numeric + int use_passphrase; //boolean + +} generate_mnemonic_request_t; + +generate_mnemonic_request_t *generate_mnemonic_request_create( + int word_count, + int use_passphrase +); + +void generate_mnemonic_request_free(generate_mnemonic_request_t *generate_mnemonic_request); + +generate_mnemonic_request_t *generate_mnemonic_request_parseFromJSON(cJSON *generate_mnemonic_requestJSON); + +cJSON *generate_mnemonic_request_convertToJSON(generate_mnemonic_request_t *generate_mnemonic_request); + +#endif /* _generate_mnemonic_request_H_ */ + diff --git a/lib/skyhwd/model/http_error_response.c b/lib/skyhwd/model/http_error_response.c new file mode 100644 index 000000000..db5a965dc --- /dev/null +++ b/lib/skyhwd/model/http_error_response.c @@ -0,0 +1,70 @@ +#include +#include +#include +#include "http_error_response.h" + + + +http_error_response_t *http_error_response_create( + http_error_response_error_t *error + ) { + http_error_response_t *http_error_response_local_var = malloc(sizeof(http_error_response_t)); + if (!http_error_response_local_var) { + return NULL; + } + http_error_response_local_var->error = error; + + return http_error_response_local_var; +} + + +void http_error_response_free(http_error_response_t *http_error_response) { + listEntry_t *listEntry; + http_error_response_error_free(http_error_response->error); + free(http_error_response); +} + +cJSON *http_error_response_convertToJSON(http_error_response_t *http_error_response) { + cJSON *item = cJSON_CreateObject(); + + // http_error_response->error + if(http_error_response->error) { + cJSON *error_local_JSON = http_error_response_error_convertToJSON(http_error_response->error); + if(error_local_JSON == NULL) { + goto fail; //model + } + cJSON_AddItemToObject(item, "error", error_local_JSON); + if(item->child == NULL) { + goto fail; + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +http_error_response_t *http_error_response_parseFromJSON(cJSON *http_error_responseJSON){ + + http_error_response_t *http_error_response_local_var = NULL; + + // http_error_response->error + cJSON *error = cJSON_GetObjectItemCaseSensitive(http_error_responseJSON, "error"); + http_error_response_error_t *error_local_nonprim = NULL; + if (error) { + error_local_nonprim = http_error_response_error_parseFromJSON(error); //nonprimitive + } + + + http_error_response_local_var = http_error_response_create ( + error ? error_local_nonprim : NULL + ); + + return http_error_response_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/http_error_response.h b/lib/skyhwd/model/http_error_response.h new file mode 100644 index 000000000..cdcde0916 --- /dev/null +++ b/lib/skyhwd/model/http_error_response.h @@ -0,0 +1,34 @@ +/* + * http_error_response.h + * + * + */ + +#ifndef _http_error_response_H_ +#define _http_error_response_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" +#include "http_error_response_error.h" + + + +typedef struct http_error_response_t { + http_error_response_error_t *error; //model + +} http_error_response_t; + +http_error_response_t *http_error_response_create( + http_error_response_error_t *error +); + +void http_error_response_free(http_error_response_t *http_error_response); + +http_error_response_t *http_error_response_parseFromJSON(cJSON *http_error_responseJSON); + +cJSON *http_error_response_convertToJSON(http_error_response_t *http_error_response); + +#endif /* _http_error_response_H_ */ + diff --git a/lib/skyhwd/model/http_error_response_error.c b/lib/skyhwd/model/http_error_response_error.c new file mode 100644 index 000000000..a265271c7 --- /dev/null +++ b/lib/skyhwd/model/http_error_response_error.c @@ -0,0 +1,87 @@ +#include +#include +#include +#include "http_error_response_error.h" + + + +http_error_response_error_t *http_error_response_error_create( + int code, + char *message + ) { + http_error_response_error_t *http_error_response_error_local_var = malloc(sizeof(http_error_response_error_t)); + if (!http_error_response_error_local_var) { + return NULL; + } + http_error_response_error_local_var->code = code; + http_error_response_error_local_var->message = message; + + return http_error_response_error_local_var; +} + + +void http_error_response_error_free(http_error_response_error_t *http_error_response_error) { + listEntry_t *listEntry; + free(http_error_response_error->message); + free(http_error_response_error); +} + +cJSON *http_error_response_error_convertToJSON(http_error_response_error_t *http_error_response_error) { + cJSON *item = cJSON_CreateObject(); + + // http_error_response_error->code + if(http_error_response_error->code) { + if(cJSON_AddNumberToObject(item, "code", http_error_response_error->code) == NULL) { + goto fail; //Numeric + } + } + + + // http_error_response_error->message + if(http_error_response_error->message) { + if(cJSON_AddStringToObject(item, "message", http_error_response_error->message) == NULL) { + goto fail; //String + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +http_error_response_error_t *http_error_response_error_parseFromJSON(cJSON *http_error_response_errorJSON){ + + http_error_response_error_t *http_error_response_error_local_var = NULL; + + // http_error_response_error->code + cJSON *code = cJSON_GetObjectItemCaseSensitive(http_error_response_errorJSON, "code"); + if (code) { + if(!cJSON_IsNumber(code)) + { + goto end; //Numeric + } + } + + // http_error_response_error->message + cJSON *message = cJSON_GetObjectItemCaseSensitive(http_error_response_errorJSON, "message"); + if (message) { + if(!cJSON_IsString(message)) + { + goto end; //String + } + } + + + http_error_response_error_local_var = http_error_response_error_create ( + code ? code->valuedouble : 0, + message ? strdup(message->valuestring) : NULL + ); + + return http_error_response_error_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/http_error_response_error.h b/lib/skyhwd/model/http_error_response_error.h new file mode 100644 index 000000000..b879c56cb --- /dev/null +++ b/lib/skyhwd/model/http_error_response_error.h @@ -0,0 +1,35 @@ +/* + * http_error_response_error.h + * + * + */ + +#ifndef _http_error_response_error_H_ +#define _http_error_response_error_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct http_error_response_error_t { + int code; //numeric + char *message; // string + +} http_error_response_error_t; + +http_error_response_error_t *http_error_response_error_create( + int code, + char *message +); + +void http_error_response_error_free(http_error_response_error_t *http_error_response_error); + +http_error_response_error_t *http_error_response_error_parseFromJSON(cJSON *http_error_response_errorJSON); + +cJSON *http_error_response_error_convertToJSON(http_error_response_error_t *http_error_response_error); + +#endif /* _http_error_response_error_H_ */ + diff --git a/lib/skyhwd/model/http_success_response.c b/lib/skyhwd/model/http_success_response.c new file mode 100644 index 000000000..8d22bcbf0 --- /dev/null +++ b/lib/skyhwd/model/http_success_response.c @@ -0,0 +1,67 @@ +#include +#include +#include +#include "http_success_response.h" + + + +http_success_response_t *http_success_response_create( + char *data + ) { + http_success_response_t *http_success_response_local_var = malloc(sizeof(http_success_response_t)); + if (!http_success_response_local_var) { + return NULL; + } + http_success_response_local_var->data = data; + + return http_success_response_local_var; +} + + +void http_success_response_free(http_success_response_t *http_success_response) { + listEntry_t *listEntry; + free(http_success_response->data); + free(http_success_response); +} + +cJSON *http_success_response_convertToJSON(http_success_response_t *http_success_response) { + cJSON *item = cJSON_CreateObject(); + + // http_success_response->data + if(http_success_response->data) { + if(cJSON_AddStringToObject(item, "data", http_success_response->data) == NULL) { + goto fail; //String + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +http_success_response_t *http_success_response_parseFromJSON(cJSON *http_success_responseJSON){ + + http_success_response_t *http_success_response_local_var = NULL; + + // http_success_response->data + cJSON *data = cJSON_GetObjectItemCaseSensitive(http_success_responseJSON, "data"); + if (data) { + if(!cJSON_IsString(data)) + { + goto end; //String + } + } + + + http_success_response_local_var = http_success_response_create ( + data ? strdup(data->valuestring) : NULL + ); + + return http_success_response_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/http_success_response.h b/lib/skyhwd/model/http_success_response.h new file mode 100644 index 000000000..73e202471 --- /dev/null +++ b/lib/skyhwd/model/http_success_response.h @@ -0,0 +1,33 @@ +/* + * http_success_response.h + * + * + */ + +#ifndef _http_success_response_H_ +#define _http_success_response_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct http_success_response_t { + char *data; // string + +} http_success_response_t; + +http_success_response_t *http_success_response_create( + char *data +); + +void http_success_response_free(http_success_response_t *http_success_response); + +http_success_response_t *http_success_response_parseFromJSON(cJSON *http_success_responseJSON); + +cJSON *http_success_response_convertToJSON(http_success_response_t *http_success_response); + +#endif /* _http_success_response_H_ */ + diff --git a/lib/skyhwd/model/inline_response_200.c b/lib/skyhwd/model/inline_response_200.c new file mode 100644 index 000000000..a5e2716bf --- /dev/null +++ b/lib/skyhwd/model/inline_response_200.c @@ -0,0 +1,66 @@ +#include +#include +#include +#include "inline_response_200.h" + + + +inline_response_200_t *inline_response_200_create( + int data + ) { + inline_response_200_t *inline_response_200_local_var = malloc(sizeof(inline_response_200_t)); + if (!inline_response_200_local_var) { + return NULL; + } + inline_response_200_local_var->data = data; + + return inline_response_200_local_var; +} + + +void inline_response_200_free(inline_response_200_t *inline_response_200) { + listEntry_t *listEntry; + free(inline_response_200); +} + +cJSON *inline_response_200_convertToJSON(inline_response_200_t *inline_response_200) { + cJSON *item = cJSON_CreateObject(); + + // inline_response_200->data + if(inline_response_200->data) { + if(cJSON_AddBoolToObject(item, "data", inline_response_200->data) == NULL) { + goto fail; //Bool + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +inline_response_200_t *inline_response_200_parseFromJSON(cJSON *inline_response_200JSON){ + + inline_response_200_t *inline_response_200_local_var = NULL; + + // inline_response_200->data + cJSON *data = cJSON_GetObjectItemCaseSensitive(inline_response_200JSON, "data"); + if (data) { + if(!cJSON_IsBool(data)) + { + goto end; //Bool + } + } + + + inline_response_200_local_var = inline_response_200_create ( + data ? data->valueint : 0 + ); + + return inline_response_200_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/inline_response_200.h b/lib/skyhwd/model/inline_response_200.h new file mode 100644 index 000000000..18d83b1e3 --- /dev/null +++ b/lib/skyhwd/model/inline_response_200.h @@ -0,0 +1,33 @@ +/* + * inline_response_200.h + * + * + */ + +#ifndef _inline_response_200_H_ +#define _inline_response_200_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct inline_response_200_t { + int data; //boolean + +} inline_response_200_t; + +inline_response_200_t *inline_response_200_create( + int data +); + +void inline_response_200_free(inline_response_200_t *inline_response_200); + +inline_response_200_t *inline_response_200_parseFromJSON(cJSON *inline_response_200JSON); + +cJSON *inline_response_200_convertToJSON(inline_response_200_t *inline_response_200); + +#endif /* _inline_response_200_H_ */ + diff --git a/lib/skyhwd/model/object.c b/lib/skyhwd/model/object.c new file mode 100644 index 000000000..d10669384 --- /dev/null +++ b/lib/skyhwd/model/object.c @@ -0,0 +1,31 @@ +#include +#include +#include +#include "object.h" + +object_t *object_create() { + object_t *object = malloc(sizeof(object_t)); + + return object; +} + +void object_free(object_t *object) { + free (object); +} + +cJSON *object_convertToJSON(object_t *object) { + cJSON *item = cJSON_CreateObject(); + + return item; +fail: + cJSON_Delete(item); + return NULL; +} + +object_t *object_parseFromJSON(char *jsonString){ + object_t *object = NULL; + + return object; +end: + return NULL; +} diff --git a/lib/skyhwd/model/object.h b/lib/skyhwd/model/object.h new file mode 100644 index 000000000..6b1a77fc5 --- /dev/null +++ b/lib/skyhwd/model/object.h @@ -0,0 +1,26 @@ +/* + * object.h + */ + +#ifndef _object_H_ +#define _object_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + +typedef struct object_t { + void *temporary; +} object_t; + +object_t *object_create(); + +void object_free(object_t *object); + +object_t *object_parseFromJSON(char *jsonString); + +cJSON *object_convertToJSON(object_t *object); + +#endif /* _object_H_ */ diff --git a/lib/skyhwd/model/passphrase_request.c b/lib/skyhwd/model/passphrase_request.c new file mode 100644 index 000000000..d245a530c --- /dev/null +++ b/lib/skyhwd/model/passphrase_request.c @@ -0,0 +1,72 @@ +#include +#include +#include +#include "passphrase_request.h" + + + +passphrase_request_t *passphrase_request_create( + char *passphrase + ) { + passphrase_request_t *passphrase_request_local_var = malloc(sizeof(passphrase_request_t)); + if (!passphrase_request_local_var) { + return NULL; + } + passphrase_request_local_var->passphrase = passphrase; + + return passphrase_request_local_var; +} + + +void passphrase_request_free(passphrase_request_t *passphrase_request) { + listEntry_t *listEntry; + free(passphrase_request->passphrase); + free(passphrase_request); +} + +cJSON *passphrase_request_convertToJSON(passphrase_request_t *passphrase_request) { + cJSON *item = cJSON_CreateObject(); + + // passphrase_request->passphrase + if (!passphrase_request->passphrase) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "passphrase", passphrase_request->passphrase) == NULL) { + goto fail; //String + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +passphrase_request_t *passphrase_request_parseFromJSON(cJSON *passphrase_requestJSON){ + + passphrase_request_t *passphrase_request_local_var = NULL; + + // passphrase_request->passphrase + cJSON *passphrase = cJSON_GetObjectItemCaseSensitive(passphrase_requestJSON, "passphrase"); + if (!passphrase) { + goto end; + } + + + if(!cJSON_IsString(passphrase)) + { + goto end; //String + } + + + passphrase_request_local_var = passphrase_request_create ( + strdup(passphrase->valuestring) + ); + + return passphrase_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/passphrase_request.h b/lib/skyhwd/model/passphrase_request.h new file mode 100644 index 000000000..f9889afc8 --- /dev/null +++ b/lib/skyhwd/model/passphrase_request.h @@ -0,0 +1,33 @@ +/* + * passphrase_request.h + * + * + */ + +#ifndef _passphrase_request_H_ +#define _passphrase_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct passphrase_request_t { + char *passphrase; // string + +} passphrase_request_t; + +passphrase_request_t *passphrase_request_create( + char *passphrase +); + +void passphrase_request_free(passphrase_request_t *passphrase_request); + +passphrase_request_t *passphrase_request_parseFromJSON(cJSON *passphrase_requestJSON); + +cJSON *passphrase_request_convertToJSON(passphrase_request_t *passphrase_request); + +#endif /* _passphrase_request_H_ */ + diff --git a/lib/skyhwd/model/pin_matrix_request.c b/lib/skyhwd/model/pin_matrix_request.c new file mode 100644 index 000000000..b828babc8 --- /dev/null +++ b/lib/skyhwd/model/pin_matrix_request.c @@ -0,0 +1,72 @@ +#include +#include +#include +#include "pin_matrix_request.h" + + + +pin_matrix_request_t *pin_matrix_request_create( + char *pin + ) { + pin_matrix_request_t *pin_matrix_request_local_var = malloc(sizeof(pin_matrix_request_t)); + if (!pin_matrix_request_local_var) { + return NULL; + } + pin_matrix_request_local_var->pin = pin; + + return pin_matrix_request_local_var; +} + + +void pin_matrix_request_free(pin_matrix_request_t *pin_matrix_request) { + listEntry_t *listEntry; + free(pin_matrix_request->pin); + free(pin_matrix_request); +} + +cJSON *pin_matrix_request_convertToJSON(pin_matrix_request_t *pin_matrix_request) { + cJSON *item = cJSON_CreateObject(); + + // pin_matrix_request->pin + if (!pin_matrix_request->pin) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "pin", pin_matrix_request->pin) == NULL) { + goto fail; //String + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +pin_matrix_request_t *pin_matrix_request_parseFromJSON(cJSON *pin_matrix_requestJSON){ + + pin_matrix_request_t *pin_matrix_request_local_var = NULL; + + // pin_matrix_request->pin + cJSON *pin = cJSON_GetObjectItemCaseSensitive(pin_matrix_requestJSON, "pin"); + if (!pin) { + goto end; + } + + + if(!cJSON_IsString(pin)) + { + goto end; //String + } + + + pin_matrix_request_local_var = pin_matrix_request_create ( + strdup(pin->valuestring) + ); + + return pin_matrix_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/pin_matrix_request.h b/lib/skyhwd/model/pin_matrix_request.h new file mode 100644 index 000000000..d497bc636 --- /dev/null +++ b/lib/skyhwd/model/pin_matrix_request.h @@ -0,0 +1,33 @@ +/* + * pin_matrix_request.h + * + * + */ + +#ifndef _pin_matrix_request_H_ +#define _pin_matrix_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct pin_matrix_request_t { + char *pin; // string + +} pin_matrix_request_t; + +pin_matrix_request_t *pin_matrix_request_create( + char *pin +); + +void pin_matrix_request_free(pin_matrix_request_t *pin_matrix_request); + +pin_matrix_request_t *pin_matrix_request_parseFromJSON(cJSON *pin_matrix_requestJSON); + +cJSON *pin_matrix_request_convertToJSON(pin_matrix_request_t *pin_matrix_request); + +#endif /* _pin_matrix_request_H_ */ + diff --git a/lib/skyhwd/model/recovery_request.c b/lib/skyhwd/model/recovery_request.c new file mode 100644 index 000000000..483e899f9 --- /dev/null +++ b/lib/skyhwd/model/recovery_request.c @@ -0,0 +1,111 @@ +#include +#include +#include +#include "recovery_request.h" + + + +recovery_request_t *recovery_request_create( + int word_count, + int use_passphrase, + int dry_run + ) { + recovery_request_t *recovery_request_local_var = malloc(sizeof(recovery_request_t)); + if (!recovery_request_local_var) { + return NULL; + } + recovery_request_local_var->word_count = word_count; + recovery_request_local_var->use_passphrase = use_passphrase; + recovery_request_local_var->dry_run = dry_run; + + return recovery_request_local_var; +} + + +void recovery_request_free(recovery_request_t *recovery_request) { + listEntry_t *listEntry; + free(recovery_request); +} + +cJSON *recovery_request_convertToJSON(recovery_request_t *recovery_request) { + cJSON *item = cJSON_CreateObject(); + + // recovery_request->word_count + if (!recovery_request->word_count) { + goto fail; + } + + if(cJSON_AddNumberToObject(item, "word_count", recovery_request->word_count) == NULL) { + goto fail; //Numeric + } + + + // recovery_request->use_passphrase + if(recovery_request->use_passphrase) { + if(cJSON_AddBoolToObject(item, "use_passphrase", recovery_request->use_passphrase) == NULL) { + goto fail; //Bool + } + } + + + // recovery_request->dry_run + if(recovery_request->dry_run) { + if(cJSON_AddBoolToObject(item, "dry_run", recovery_request->dry_run) == NULL) { + goto fail; //Bool + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +recovery_request_t *recovery_request_parseFromJSON(cJSON *recovery_requestJSON){ + + recovery_request_t *recovery_request_local_var = NULL; + + // recovery_request->word_count + cJSON *word_count = cJSON_GetObjectItemCaseSensitive(recovery_requestJSON, "word_count"); + if (!word_count) { + goto end; + } + + + if(!cJSON_IsNumber(word_count)) + { + goto end; //Numeric + } + + // recovery_request->use_passphrase + cJSON *use_passphrase = cJSON_GetObjectItemCaseSensitive(recovery_requestJSON, "use_passphrase"); + if (use_passphrase) { + if(!cJSON_IsBool(use_passphrase)) + { + goto end; //Bool + } + } + + // recovery_request->dry_run + cJSON *dry_run = cJSON_GetObjectItemCaseSensitive(recovery_requestJSON, "dry_run"); + if (dry_run) { + if(!cJSON_IsBool(dry_run)) + { + goto end; //Bool + } + } + + + recovery_request_local_var = recovery_request_create ( + word_count->valuedouble, + use_passphrase ? use_passphrase->valueint : 0, + dry_run ? dry_run->valueint : 0 + ); + + return recovery_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/recovery_request.h b/lib/skyhwd/model/recovery_request.h new file mode 100644 index 000000000..60e77dced --- /dev/null +++ b/lib/skyhwd/model/recovery_request.h @@ -0,0 +1,37 @@ +/* + * recovery_request.h + * + * + */ + +#ifndef _recovery_request_H_ +#define _recovery_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct recovery_request_t { + int word_count; //numeric + int use_passphrase; //boolean + int dry_run; //boolean + +} recovery_request_t; + +recovery_request_t *recovery_request_create( + int word_count, + int use_passphrase, + int dry_run +); + +void recovery_request_free(recovery_request_t *recovery_request); + +recovery_request_t *recovery_request_parseFromJSON(cJSON *recovery_requestJSON); + +cJSON *recovery_request_convertToJSON(recovery_request_t *recovery_request); + +#endif /* _recovery_request_H_ */ + diff --git a/lib/skyhwd/model/set_mnemonic_request.c b/lib/skyhwd/model/set_mnemonic_request.c new file mode 100644 index 000000000..df5bb7865 --- /dev/null +++ b/lib/skyhwd/model/set_mnemonic_request.c @@ -0,0 +1,72 @@ +#include +#include +#include +#include "set_mnemonic_request.h" + + + +set_mnemonic_request_t *set_mnemonic_request_create( + char *mnemonic + ) { + set_mnemonic_request_t *set_mnemonic_request_local_var = malloc(sizeof(set_mnemonic_request_t)); + if (!set_mnemonic_request_local_var) { + return NULL; + } + set_mnemonic_request_local_var->mnemonic = mnemonic; + + return set_mnemonic_request_local_var; +} + + +void set_mnemonic_request_free(set_mnemonic_request_t *set_mnemonic_request) { + listEntry_t *listEntry; + free(set_mnemonic_request->mnemonic); + free(set_mnemonic_request); +} + +cJSON *set_mnemonic_request_convertToJSON(set_mnemonic_request_t *set_mnemonic_request) { + cJSON *item = cJSON_CreateObject(); + + // set_mnemonic_request->mnemonic + if (!set_mnemonic_request->mnemonic) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "mnemonic", set_mnemonic_request->mnemonic) == NULL) { + goto fail; //String + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +set_mnemonic_request_t *set_mnemonic_request_parseFromJSON(cJSON *set_mnemonic_requestJSON){ + + set_mnemonic_request_t *set_mnemonic_request_local_var = NULL; + + // set_mnemonic_request->mnemonic + cJSON *mnemonic = cJSON_GetObjectItemCaseSensitive(set_mnemonic_requestJSON, "mnemonic"); + if (!mnemonic) { + goto end; + } + + + if(!cJSON_IsString(mnemonic)) + { + goto end; //String + } + + + set_mnemonic_request_local_var = set_mnemonic_request_create ( + strdup(mnemonic->valuestring) + ); + + return set_mnemonic_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/set_mnemonic_request.h b/lib/skyhwd/model/set_mnemonic_request.h new file mode 100644 index 000000000..bea29b565 --- /dev/null +++ b/lib/skyhwd/model/set_mnemonic_request.h @@ -0,0 +1,33 @@ +/* + * set_mnemonic_request.h + * + * + */ + +#ifndef _set_mnemonic_request_H_ +#define _set_mnemonic_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct set_mnemonic_request_t { + char *mnemonic; // string + +} set_mnemonic_request_t; + +set_mnemonic_request_t *set_mnemonic_request_create( + char *mnemonic +); + +void set_mnemonic_request_free(set_mnemonic_request_t *set_mnemonic_request); + +set_mnemonic_request_t *set_mnemonic_request_parseFromJSON(cJSON *set_mnemonic_requestJSON); + +cJSON *set_mnemonic_request_convertToJSON(set_mnemonic_request_t *set_mnemonic_request); + +#endif /* _set_mnemonic_request_H_ */ + diff --git a/lib/skyhwd/model/sign_message_request.c b/lib/skyhwd/model/sign_message_request.c new file mode 100644 index 000000000..7cf4432c2 --- /dev/null +++ b/lib/skyhwd/model/sign_message_request.c @@ -0,0 +1,97 @@ +#include +#include +#include +#include "sign_message_request.h" + + + +sign_message_request_t *sign_message_request_create( + int address_n, + char *message + ) { + sign_message_request_t *sign_message_request_local_var = malloc(sizeof(sign_message_request_t)); + if (!sign_message_request_local_var) { + return NULL; + } + sign_message_request_local_var->address_n = address_n; + sign_message_request_local_var->message = message; + + return sign_message_request_local_var; +} + + +void sign_message_request_free(sign_message_request_t *sign_message_request) { + listEntry_t *listEntry; + free(sign_message_request->message); + free(sign_message_request); +} + +cJSON *sign_message_request_convertToJSON(sign_message_request_t *sign_message_request) { + cJSON *item = cJSON_CreateObject(); + + // sign_message_request->address_n + if (!sign_message_request->address_n) { + goto fail; + } + + if(cJSON_AddNumberToObject(item, "address_n", sign_message_request->address_n) == NULL) { + goto fail; //Numeric + } + + + // sign_message_request->message + if (!sign_message_request->message) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "message", sign_message_request->message) == NULL) { + goto fail; //String + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +sign_message_request_t *sign_message_request_parseFromJSON(cJSON *sign_message_requestJSON){ + + sign_message_request_t *sign_message_request_local_var = NULL; + + // sign_message_request->address_n + cJSON *address_n = cJSON_GetObjectItemCaseSensitive(sign_message_requestJSON, "address_n"); + if (!address_n) { + goto end; + } + + + if(!cJSON_IsNumber(address_n)) + { + goto end; //Numeric + } + + // sign_message_request->message + cJSON *message = cJSON_GetObjectItemCaseSensitive(sign_message_requestJSON, "message"); + if (!message) { + goto end; + } + + + if(!cJSON_IsString(message)) + { + goto end; //String + } + + + sign_message_request_local_var = sign_message_request_create ( + address_n->valuedouble, + strdup(message->valuestring) + ); + + return sign_message_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/sign_message_request.h b/lib/skyhwd/model/sign_message_request.h new file mode 100644 index 000000000..f4ad45977 --- /dev/null +++ b/lib/skyhwd/model/sign_message_request.h @@ -0,0 +1,35 @@ +/* + * sign_message_request.h + * + * + */ + +#ifndef _sign_message_request_H_ +#define _sign_message_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct sign_message_request_t { + int address_n; //numeric + char *message; // string + +} sign_message_request_t; + +sign_message_request_t *sign_message_request_create( + int address_n, + char *message +); + +void sign_message_request_free(sign_message_request_t *sign_message_request); + +sign_message_request_t *sign_message_request_parseFromJSON(cJSON *sign_message_requestJSON); + +cJSON *sign_message_request_convertToJSON(sign_message_request_t *sign_message_request); + +#endif /* _sign_message_request_H_ */ + diff --git a/lib/skyhwd/model/sign_message_response.c b/lib/skyhwd/model/sign_message_response.c new file mode 100644 index 000000000..72674f304 --- /dev/null +++ b/lib/skyhwd/model/sign_message_response.c @@ -0,0 +1,67 @@ +#include +#include +#include +#include "sign_message_response.h" + + + +sign_message_response_t *sign_message_response_create( + char *data + ) { + sign_message_response_t *sign_message_response_local_var = malloc(sizeof(sign_message_response_t)); + if (!sign_message_response_local_var) { + return NULL; + } + sign_message_response_local_var->data = data; + + return sign_message_response_local_var; +} + + +void sign_message_response_free(sign_message_response_t *sign_message_response) { + listEntry_t *listEntry; + free(sign_message_response->data); + free(sign_message_response); +} + +cJSON *sign_message_response_convertToJSON(sign_message_response_t *sign_message_response) { + cJSON *item = cJSON_CreateObject(); + + // sign_message_response->data + if(sign_message_response->data) { + if(cJSON_AddStringToObject(item, "data", sign_message_response->data) == NULL) { + goto fail; //String + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +sign_message_response_t *sign_message_response_parseFromJSON(cJSON *sign_message_responseJSON){ + + sign_message_response_t *sign_message_response_local_var = NULL; + + // sign_message_response->data + cJSON *data = cJSON_GetObjectItemCaseSensitive(sign_message_responseJSON, "data"); + if (data) { + if(!cJSON_IsString(data)) + { + goto end; //String + } + } + + + sign_message_response_local_var = sign_message_response_create ( + data ? strdup(data->valuestring) : NULL + ); + + return sign_message_response_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/sign_message_response.h b/lib/skyhwd/model/sign_message_response.h new file mode 100644 index 000000000..b4f84c9b1 --- /dev/null +++ b/lib/skyhwd/model/sign_message_response.h @@ -0,0 +1,33 @@ +/* + * sign_message_response.h + * + * + */ + +#ifndef _sign_message_response_H_ +#define _sign_message_response_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct sign_message_response_t { + char *data; // string + +} sign_message_response_t; + +sign_message_response_t *sign_message_response_create( + char *data +); + +void sign_message_response_free(sign_message_response_t *sign_message_response); + +sign_message_response_t *sign_message_response_parseFromJSON(cJSON *sign_message_responseJSON); + +cJSON *sign_message_response_convertToJSON(sign_message_response_t *sign_message_response); + +#endif /* _sign_message_response_H_ */ + diff --git a/lib/skyhwd/model/transaction_input.c b/lib/skyhwd/model/transaction_input.c new file mode 100644 index 000000000..754404f61 --- /dev/null +++ b/lib/skyhwd/model/transaction_input.c @@ -0,0 +1,97 @@ +#include +#include +#include +#include "transaction_input.h" + + + +transaction_input_t *transaction_input_create( + int index, + char *hash + ) { + transaction_input_t *transaction_input_local_var = malloc(sizeof(transaction_input_t)); + if (!transaction_input_local_var) { + return NULL; + } + transaction_input_local_var->index = index; + transaction_input_local_var->hash = hash; + + return transaction_input_local_var; +} + + +void transaction_input_free(transaction_input_t *transaction_input) { + listEntry_t *listEntry; + free(transaction_input->hash); + free(transaction_input); +} + +cJSON *transaction_input_convertToJSON(transaction_input_t *transaction_input) { + cJSON *item = cJSON_CreateObject(); + + // transaction_input->index + if (!transaction_input->index) { + goto fail; + } + + if(cJSON_AddNumberToObject(item, "index", transaction_input->index) == NULL) { + goto fail; //Numeric + } + + + // transaction_input->hash + if (!transaction_input->hash) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "hash", transaction_input->hash) == NULL) { + goto fail; //String + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +transaction_input_t *transaction_input_parseFromJSON(cJSON *transaction_inputJSON){ + + transaction_input_t *transaction_input_local_var = NULL; + + // transaction_input->index + cJSON *index = cJSON_GetObjectItemCaseSensitive(transaction_inputJSON, "index"); + if (!index) { + goto end; + } + + + if(!cJSON_IsNumber(index)) + { + goto end; //Numeric + } + + // transaction_input->hash + cJSON *hash = cJSON_GetObjectItemCaseSensitive(transaction_inputJSON, "hash"); + if (!hash) { + goto end; + } + + + if(!cJSON_IsString(hash)) + { + goto end; //String + } + + + transaction_input_local_var = transaction_input_create ( + index->valuedouble, + strdup(hash->valuestring) + ); + + return transaction_input_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/transaction_input.h b/lib/skyhwd/model/transaction_input.h new file mode 100644 index 000000000..9488a324b --- /dev/null +++ b/lib/skyhwd/model/transaction_input.h @@ -0,0 +1,35 @@ +/* + * transaction_input.h + * + * + */ + +#ifndef _transaction_input_H_ +#define _transaction_input_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct transaction_input_t { + int index; //numeric + char *hash; // string + +} transaction_input_t; + +transaction_input_t *transaction_input_create( + int index, + char *hash +); + +void transaction_input_free(transaction_input_t *transaction_input); + +transaction_input_t *transaction_input_parseFromJSON(cJSON *transaction_inputJSON); + +cJSON *transaction_input_convertToJSON(transaction_input_t *transaction_input); + +#endif /* _transaction_input_H_ */ + diff --git a/lib/skyhwd/model/transaction_output.c b/lib/skyhwd/model/transaction_output.c new file mode 100644 index 000000000..bc2676a23 --- /dev/null +++ b/lib/skyhwd/model/transaction_output.c @@ -0,0 +1,149 @@ +#include +#include +#include +#include "transaction_output.h" + + + +transaction_output_t *transaction_output_create( + int address_index, + char *address, + char *coins, + char *hours + ) { + transaction_output_t *transaction_output_local_var = malloc(sizeof(transaction_output_t)); + if (!transaction_output_local_var) { + return NULL; + } + transaction_output_local_var->address_index = address_index; + transaction_output_local_var->address = address; + transaction_output_local_var->coins = coins; + transaction_output_local_var->hours = hours; + + return transaction_output_local_var; +} + + +void transaction_output_free(transaction_output_t *transaction_output) { + listEntry_t *listEntry; + free(transaction_output->address); + free(transaction_output->coins); + free(transaction_output->hours); + free(transaction_output); +} + +cJSON *transaction_output_convertToJSON(transaction_output_t *transaction_output) { + cJSON *item = cJSON_CreateObject(); + + // transaction_output->address_index + if (!transaction_output->address_index) { + goto fail; + } + + if(cJSON_AddNumberToObject(item, "address_index", transaction_output->address_index) == NULL) { + goto fail; //Numeric + } + + + // transaction_output->address + if (!transaction_output->address) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "address", transaction_output->address) == NULL) { + goto fail; //String + } + + + // transaction_output->coins + if (!transaction_output->coins) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "coins", transaction_output->coins) == NULL) { + goto fail; //String + } + + + // transaction_output->hours + if (!transaction_output->hours) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "hours", transaction_output->hours) == NULL) { + goto fail; //String + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +transaction_output_t *transaction_output_parseFromJSON(cJSON *transaction_outputJSON){ + + transaction_output_t *transaction_output_local_var = NULL; + + // transaction_output->address_index + cJSON *address_index = cJSON_GetObjectItemCaseSensitive(transaction_outputJSON, "address_index"); + if (!address_index) { + goto end; + } + + + if(!cJSON_IsNumber(address_index)) + { + goto end; //Numeric + } + + // transaction_output->address + cJSON *address = cJSON_GetObjectItemCaseSensitive(transaction_outputJSON, "address"); + if (!address) { + goto end; + } + + + if(!cJSON_IsString(address)) + { + goto end; //String + } + + // transaction_output->coins + cJSON *coins = cJSON_GetObjectItemCaseSensitive(transaction_outputJSON, "coins"); + if (!coins) { + goto end; + } + + + if(!cJSON_IsString(coins)) + { + goto end; //String + } + + // transaction_output->hours + cJSON *hours = cJSON_GetObjectItemCaseSensitive(transaction_outputJSON, "hours"); + if (!hours) { + goto end; + } + + + if(!cJSON_IsString(hours)) + { + goto end; //String + } + + + transaction_output_local_var = transaction_output_create ( + address_index->valuedouble, + strdup(address->valuestring), + strdup(coins->valuestring), + strdup(hours->valuestring) + ); + + return transaction_output_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/transaction_output.h b/lib/skyhwd/model/transaction_output.h new file mode 100644 index 000000000..d4fe0baf2 --- /dev/null +++ b/lib/skyhwd/model/transaction_output.h @@ -0,0 +1,39 @@ +/* + * transaction_output.h + * + * + */ + +#ifndef _transaction_output_H_ +#define _transaction_output_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct transaction_output_t { + int address_index; //numeric + char *address; // string + char *coins; // string + char *hours; // string + +} transaction_output_t; + +transaction_output_t *transaction_output_create( + int address_index, + char *address, + char *coins, + char *hours +); + +void transaction_output_free(transaction_output_t *transaction_output); + +transaction_output_t *transaction_output_parseFromJSON(cJSON *transaction_outputJSON); + +cJSON *transaction_output_convertToJSON(transaction_output_t *transaction_output); + +#endif /* _transaction_output_H_ */ + diff --git a/lib/skyhwd/model/transaction_sign_request.c b/lib/skyhwd/model/transaction_sign_request.c new file mode 100644 index 000000000..f598044c0 --- /dev/null +++ b/lib/skyhwd/model/transaction_sign_request.c @@ -0,0 +1,154 @@ +#include +#include +#include +#include "transaction_sign_request.h" + + + +transaction_sign_request_t *transaction_sign_request_create( + list_t *transaction_inputs, + list_t *transaction_outputs + ) { + transaction_sign_request_t *transaction_sign_request_local_var = malloc(sizeof(transaction_sign_request_t)); + if (!transaction_sign_request_local_var) { + return NULL; + } + transaction_sign_request_local_var->transaction_inputs = transaction_inputs; + transaction_sign_request_local_var->transaction_outputs = transaction_outputs; + + return transaction_sign_request_local_var; +} + + +void transaction_sign_request_free(transaction_sign_request_t *transaction_sign_request) { + listEntry_t *listEntry; + list_ForEach(listEntry, transaction_sign_request->transaction_inputs) { + transaction_input_free(listEntry->data); + } + list_free(transaction_sign_request->transaction_inputs); + list_ForEach(listEntry, transaction_sign_request->transaction_outputs) { + transaction_output_free(listEntry->data); + } + list_free(transaction_sign_request->transaction_outputs); + free(transaction_sign_request); +} + +cJSON *transaction_sign_request_convertToJSON(transaction_sign_request_t *transaction_sign_request) { + cJSON *item = cJSON_CreateObject(); + + // transaction_sign_request->transaction_inputs + if (!transaction_sign_request->transaction_inputs) { + goto fail; + } + + cJSON *transaction_inputs = cJSON_AddArrayToObject(item, "transaction_inputs"); + if(transaction_inputs == NULL) { + goto fail; //nonprimitive container + } + + listEntry_t *transaction_inputsListEntry; + if (transaction_sign_request->transaction_inputs) { + list_ForEach(transaction_inputsListEntry, transaction_sign_request->transaction_inputs) { + cJSON *itemLocal = transaction_input_convertToJSON(transaction_inputsListEntry->data); + if(itemLocal == NULL) { + goto fail; + } + cJSON_AddItemToArray(transaction_inputs, itemLocal); + } + } + + + // transaction_sign_request->transaction_outputs + if (!transaction_sign_request->transaction_outputs) { + goto fail; + } + + cJSON *transaction_outputs = cJSON_AddArrayToObject(item, "transaction_outputs"); + if(transaction_outputs == NULL) { + goto fail; //nonprimitive container + } + + listEntry_t *transaction_outputsListEntry; + if (transaction_sign_request->transaction_outputs) { + list_ForEach(transaction_outputsListEntry, transaction_sign_request->transaction_outputs) { + cJSON *itemLocal = transaction_output_convertToJSON(transaction_outputsListEntry->data); + if(itemLocal == NULL) { + goto fail; + } + cJSON_AddItemToArray(transaction_outputs, itemLocal); + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +transaction_sign_request_t *transaction_sign_request_parseFromJSON(cJSON *transaction_sign_requestJSON){ + + transaction_sign_request_t *transaction_sign_request_local_var = NULL; + + // transaction_sign_request->transaction_inputs + cJSON *transaction_inputs = cJSON_GetObjectItemCaseSensitive(transaction_sign_requestJSON, "transaction_inputs"); + if (!transaction_inputs) { + goto end; + } + + list_t *transaction_inputsList; + + cJSON *transaction_inputs_local_nonprimitive; + if(!cJSON_IsArray(transaction_inputs)){ + goto end; //nonprimitive container + } + + transaction_inputsList = list_create(); + + cJSON_ArrayForEach(transaction_inputs_local_nonprimitive,transaction_inputs ) + { + if(!cJSON_IsObject(transaction_inputs_local_nonprimitive)){ + goto end; + } + transaction_input_t *transaction_inputsItem = transaction_input_parseFromJSON(transaction_inputs_local_nonprimitive); + + list_addElement(transaction_inputsList, transaction_inputsItem); + } + + // transaction_sign_request->transaction_outputs + cJSON *transaction_outputs = cJSON_GetObjectItemCaseSensitive(transaction_sign_requestJSON, "transaction_outputs"); + if (!transaction_outputs) { + goto end; + } + + list_t *transaction_outputsList; + + cJSON *transaction_outputs_local_nonprimitive; + if(!cJSON_IsArray(transaction_outputs)){ + goto end; //nonprimitive container + } + + transaction_outputsList = list_create(); + + cJSON_ArrayForEach(transaction_outputs_local_nonprimitive,transaction_outputs ) + { + if(!cJSON_IsObject(transaction_outputs_local_nonprimitive)){ + goto end; + } + transaction_output_t *transaction_outputsItem = transaction_output_parseFromJSON(transaction_outputs_local_nonprimitive); + + list_addElement(transaction_outputsList, transaction_outputsItem); + } + + + transaction_sign_request_local_var = transaction_sign_request_create ( + transaction_inputsList, + transaction_outputsList + ); + + return transaction_sign_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/transaction_sign_request.h b/lib/skyhwd/model/transaction_sign_request.h new file mode 100644 index 000000000..a9960d9bf --- /dev/null +++ b/lib/skyhwd/model/transaction_sign_request.h @@ -0,0 +1,37 @@ +/* + * transaction_sign_request.h + * + * + */ + +#ifndef _transaction_sign_request_H_ +#define _transaction_sign_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" +#include "transaction_input.h" +#include "transaction_output.h" + + + +typedef struct transaction_sign_request_t { + list_t *transaction_inputs; //nonprimitive container + list_t *transaction_outputs; //nonprimitive container + +} transaction_sign_request_t; + +transaction_sign_request_t *transaction_sign_request_create( + list_t *transaction_inputs, + list_t *transaction_outputs +); + +void transaction_sign_request_free(transaction_sign_request_t *transaction_sign_request); + +transaction_sign_request_t *transaction_sign_request_parseFromJSON(cJSON *transaction_sign_requestJSON); + +cJSON *transaction_sign_request_convertToJSON(transaction_sign_request_t *transaction_sign_request); + +#endif /* _transaction_sign_request_H_ */ + diff --git a/lib/skyhwd/model/transaction_sign_response.c b/lib/skyhwd/model/transaction_sign_response.c new file mode 100644 index 000000000..40a421b6f --- /dev/null +++ b/lib/skyhwd/model/transaction_sign_response.c @@ -0,0 +1,90 @@ +#include +#include +#include +#include "transaction_sign_response.h" + + + +transaction_sign_response_t *transaction_sign_response_create( + list_t *data + ) { + transaction_sign_response_t *transaction_sign_response_local_var = malloc(sizeof(transaction_sign_response_t)); + if (!transaction_sign_response_local_var) { + return NULL; + } + transaction_sign_response_local_var->data = data; + + return transaction_sign_response_local_var; +} + + +void transaction_sign_response_free(transaction_sign_response_t *transaction_sign_response) { + listEntry_t *listEntry; + list_ForEach(listEntry, transaction_sign_response->data) { + free(listEntry->data); + } + list_free(transaction_sign_response->data); + free(transaction_sign_response); +} + +cJSON *transaction_sign_response_convertToJSON(transaction_sign_response_t *transaction_sign_response) { + cJSON *item = cJSON_CreateObject(); + + // transaction_sign_response->data + if(transaction_sign_response->data) { + cJSON *data = cJSON_AddArrayToObject(item, "data"); + if(data == NULL) { + goto fail; //primitive container + } + + listEntry_t *dataListEntry; + list_ForEach(dataListEntry, transaction_sign_response->data) { + if(cJSON_AddStringToObject(data, "", (char*)dataListEntry->data) == NULL) + { + goto fail; + } + } + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +transaction_sign_response_t *transaction_sign_response_parseFromJSON(cJSON *transaction_sign_responseJSON){ + + transaction_sign_response_t *transaction_sign_response_local_var = NULL; + + // transaction_sign_response->data + cJSON *data = cJSON_GetObjectItemCaseSensitive(transaction_sign_responseJSON, "data"); + list_t *dataList; + if (data) { + cJSON *data_local; + if(!cJSON_IsArray(data)) { + goto end;//primitive container + } + dataList = list_create(); + + cJSON_ArrayForEach(data_local, data) + { + if(!cJSON_IsString(data_local)) + { + goto end; + } + list_addElement(dataList , strdup(data_local->valuestring)); + } + } + + + transaction_sign_response_local_var = transaction_sign_response_create ( + data ? dataList : NULL + ); + + return transaction_sign_response_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/transaction_sign_response.h b/lib/skyhwd/model/transaction_sign_response.h new file mode 100644 index 000000000..b75a690ed --- /dev/null +++ b/lib/skyhwd/model/transaction_sign_response.h @@ -0,0 +1,33 @@ +/* + * transaction_sign_response.h + * + * + */ + +#ifndef _transaction_sign_response_H_ +#define _transaction_sign_response_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct transaction_sign_response_t { + list_t *data; //primitive container + +} transaction_sign_response_t; + +transaction_sign_response_t *transaction_sign_response_create( + list_t *data +); + +void transaction_sign_response_free(transaction_sign_response_t *transaction_sign_response); + +transaction_sign_response_t *transaction_sign_response_parseFromJSON(cJSON *transaction_sign_responseJSON); + +cJSON *transaction_sign_response_convertToJSON(transaction_sign_response_t *transaction_sign_response); + +#endif /* _transaction_sign_response_H_ */ + diff --git a/lib/skyhwd/model/word_request.c b/lib/skyhwd/model/word_request.c new file mode 100644 index 000000000..1bb8c15ef --- /dev/null +++ b/lib/skyhwd/model/word_request.c @@ -0,0 +1,72 @@ +#include +#include +#include +#include "word_request.h" + + + +word_request_t *word_request_create( + char *word + ) { + word_request_t *word_request_local_var = malloc(sizeof(word_request_t)); + if (!word_request_local_var) { + return NULL; + } + word_request_local_var->word = word; + + return word_request_local_var; +} + + +void word_request_free(word_request_t *word_request) { + listEntry_t *listEntry; + free(word_request->word); + free(word_request); +} + +cJSON *word_request_convertToJSON(word_request_t *word_request) { + cJSON *item = cJSON_CreateObject(); + + // word_request->word + if (!word_request->word) { + goto fail; + } + + if(cJSON_AddStringToObject(item, "word", word_request->word) == NULL) { + goto fail; //String + } + + return item; +fail: + if (item) { + cJSON_Delete(item); + } + return NULL; +} + +word_request_t *word_request_parseFromJSON(cJSON *word_requestJSON){ + + word_request_t *word_request_local_var = NULL; + + // word_request->word + cJSON *word = cJSON_GetObjectItemCaseSensitive(word_requestJSON, "word"); + if (!word) { + goto end; + } + + + if(!cJSON_IsString(word)) + { + goto end; //String + } + + + word_request_local_var = word_request_create ( + strdup(word->valuestring) + ); + + return word_request_local_var; +end: + return NULL; + +} diff --git a/lib/skyhwd/model/word_request.h b/lib/skyhwd/model/word_request.h new file mode 100644 index 000000000..4d88c16ea --- /dev/null +++ b/lib/skyhwd/model/word_request.h @@ -0,0 +1,33 @@ +/* + * word_request.h + * + * + */ + +#ifndef _word_request_H_ +#define _word_request_H_ + +#include +#include "../external/cJSON.h" +#include "../include/list.h" +#include "../include/keyValuePair.h" + + + +typedef struct word_request_t { + char *word; // string + +} word_request_t; + +word_request_t *word_request_create( + char *word +); + +void word_request_free(word_request_t *word_request); + +word_request_t *word_request_parseFromJSON(cJSON *word_requestJSON); + +cJSON *word_request_convertToJSON(word_request_t *word_request); + +#endif /* _word_request_H_ */ + diff --git a/lib/skyhwd/src/apiClient.c b/lib/skyhwd/src/apiClient.c new file mode 100644 index 000000000..fffb6edfa --- /dev/null +++ b/lib/skyhwd/src/apiClient.c @@ -0,0 +1,446 @@ +#include +#include +#include +#include +#include "../include/apiClient.h" +#ifdef OPENSSL +#include "openssl/pem.h" +#endif + +size_t writeDataCallback(void *buffer, size_t size, size_t nmemb, void *userp); + +apiClient_t *apiClient_create() { + curl_global_init(CURL_GLOBAL_ALL); + apiClient_t *apiClient = malloc(sizeof(apiClient_t)); + apiClient->basePath = "http://127.0.0.1:9510/api/v1"; + apiClient->dataReceived = NULL; + apiClient->response_code = 0; + apiClient->apiKeys = NULL; + + return apiClient; +} + +void apiClient_free(apiClient_t *apiClient) { + if(apiClient->accessToken) { + list_free(apiClient->apiKeys); + } + free(apiClient); + curl_global_cleanup(); +} + +void replaceSpaceWithPlus(char *stringToProcess) { + for(int i = 0; i < strlen(stringToProcess); i++) { + if(stringToProcess[i] == ' ') { + stringToProcess[i] = '+'; + } + } +} + +char *assembleTargetUrl(char *basePath, + char *operationParameter, + list_t *queryParameters) { + int neededBufferSizeForQueryParameters = 0; + listEntry_t *listEntry; + + if(queryParameters != NULL) { + list_ForEach(listEntry, queryParameters) { + keyValuePair_t *pair = listEntry->data; + neededBufferSizeForQueryParameters += + strlen(pair->key) + strlen(pair->value); + } + + neededBufferSizeForQueryParameters += + (queryParameters->count * 2); // each keyValuePair is separated by a = and a & except the last, but this makes up for the ? at the beginning + } + + int operationParameterLength = 0; + int basePathLength = strlen(basePath); + bool slashNeedsToBeAppendedToBasePath = false; + + if(operationParameter != NULL) { + operationParameterLength = (1 + strlen(operationParameter)); + } + if(basePath[strlen(basePath) - 1] != '/') { + slashNeedsToBeAppendedToBasePath = true; + basePathLength++; + } + + char *targetUrl = + malloc( + neededBufferSizeForQueryParameters + basePathLength + operationParameterLength + + 1); + + strcpy(targetUrl, basePath); + + if(operationParameter != NULL) { + strcat(targetUrl, operationParameter); + } + + if(queryParameters != NULL) { + strcat(targetUrl, "?"); + list_ForEach(listEntry, queryParameters) { + keyValuePair_t *pair = listEntry->data; + replaceSpaceWithPlus(pair->key); + strcat(targetUrl, pair->key); + strcat(targetUrl, "="); + replaceSpaceWithPlus(pair->value); + strcat(targetUrl, pair->value); + if(listEntry->nextListEntry != NULL) { + strcat(targetUrl, "&"); + } + } + } + + return targetUrl; +} + +char *assembleHeaderField(char *key, char *value) { + char *header = malloc(strlen(key) + strlen(value) + 3); + + strcpy(header, key), + strcat(header, ": "); + strcat(header, value); + + return header; +} + +void postData(CURL *handle, char *bodyParameters) { + curl_easy_setopt(handle, CURLOPT_POSTFIELDS, bodyParameters); + curl_easy_setopt(handle, CURLOPT_POSTFIELDSIZE_LARGE, + strlen(bodyParameters)); +} + +int lengthOfKeyPair(keyValuePair_t *keyPair) { + long length = 0; + if((keyPair->key != NULL) && + (keyPair->value != NULL) ) + { + length = strlen(keyPair->key) + strlen(keyPair->value); + return length; + } + return 0; +} + + +void apiClient_invoke(apiClient_t *apiClient, + char *operationParameter, + list_t *queryParameters, + list_t *headerParameters, + list_t *formParameters, + list_t *headerType, + list_t *contentType, + char *bodyParameters, + char *requestType) { + CURL *handle = curl_easy_init(); + CURLcode res; + + if(handle) { + listEntry_t *listEntry; + curl_mime *mime = NULL; + struct curl_slist *headers = NULL; + char *buffContent = NULL; + char *buffHeader = NULL; + binary_t *fileVar = NULL; + char *formString = NULL; + + if(headerType != NULL) { + list_ForEach(listEntry, headerType) { + if(strstr((char *) listEntry->data, + "xml") == NULL) + { + buffHeader = malloc(strlen( + "Accept: ") + + strlen((char *) + listEntry-> + data) + 1); + sprintf(buffHeader, "%s%s", "Accept: ", + (char *) listEntry->data); + headers = curl_slist_append(headers, + buffHeader); + free(buffHeader); + } + } + } + if(contentType != NULL) { + list_ForEach(listEntry, contentType) { + if(strstr((char *) listEntry->data, + "xml") == NULL) + { + buffContent = + malloc(strlen( + "Content-Type: ") + strlen( + (char *) + listEntry->data) + + 1); + sprintf(buffContent, "%s%s", + "Content-Type: ", + (char *) listEntry->data); + headers = curl_slist_append(headers, + buffContent); + } + } + } else { + headers = curl_slist_append(headers, + "Content-Type: application/json"); + } + + if(requestType != NULL) { + curl_easy_setopt(handle, CURLOPT_CUSTOMREQUEST, + requestType); + } + + if(formParameters != NULL) { + if(strstr(buffContent, + "application/x-www-form-urlencoded") != NULL) + { + long parameterLength = 0; + long keyPairLength = 0; + list_ForEach(listEntry, formParameters) { + keyValuePair_t *keyPair = + listEntry->data; + + keyPairLength = + lengthOfKeyPair(keyPair) + 1; + + if(listEntry->nextListEntry != NULL) { + parameterLength++; + } + parameterLength = parameterLength + + keyPairLength; + } + + formString = malloc(parameterLength + 1); + memset(formString, 0, parameterLength + 1); + + list_ForEach(listEntry, formParameters) { + keyValuePair_t *keyPair = + listEntry->data; + if((keyPair->key != NULL) && + (keyPair->value != NULL) ) + { + strcat(formString, + keyPair->key); + strcat(formString, "="); + strcat(formString, + keyPair->value); + if(listEntry->nextListEntry != + NULL) + { + strcat(formString, "&"); + } + } + } + curl_easy_setopt(handle, CURLOPT_POSTFIELDS, + formString); + } + if(strstr(buffContent, "multipart/form-data") != NULL) { + mime = curl_mime_init(handle); + list_ForEach(listEntry, formParameters) { + keyValuePair_t *keyValuePair = + listEntry->data; + + if((keyValuePair->key != NULL) && + (keyValuePair->value != NULL) ) + { + curl_mimepart *part = + curl_mime_addpart(mime); + + curl_mime_name(part, + keyValuePair->key); + + + if(strcmp(keyValuePair->key, + "file") == 0) + { + memcpy(&fileVar, + keyValuePair->value, + sizeof(fileVar)); + curl_mime_data(part, + fileVar->data, + fileVar->len); + curl_mime_filename(part, + "image.png"); + } else { + curl_mime_data(part, + keyValuePair->value, + CURL_ZERO_TERMINATED); + } + } + } + curl_easy_setopt(handle, CURLOPT_MIMEPOST, + mime); + } + } + + list_ForEach(listEntry, headerParameters) { + keyValuePair_t *keyValuePair = listEntry->data; + if((keyValuePair->key != NULL) && + (keyValuePair->value != NULL) ) + { + char *headerValueToWrite = assembleHeaderField( + keyValuePair->key, keyValuePair->value); + curl_slist_append(headers, headerValueToWrite); + free(headerValueToWrite); + } + } + // this would only be generated for apiKey authentication + if (apiClient->apiKeys != NULL) + { + list_ForEach(listEntry, apiClient->apiKeys) { + keyValuePair_t *apiKey = listEntry->data; + if((apiKey->key != NULL) && + (apiKey->value != NULL) ) + { + char *headerValueToWrite = assembleHeaderField( + apiKey->key, apiKey->value); + curl_slist_append(headers, headerValueToWrite); + free(headerValueToWrite); + } + } + } + + char *targetUrl = + assembleTargetUrl(apiClient->basePath, + operationParameter, + queryParameters); + + curl_easy_setopt(handle, CURLOPT_URL, targetUrl); + curl_easy_setopt(handle, + CURLOPT_WRITEFUNCTION, + writeDataCallback); + curl_easy_setopt(handle, + CURLOPT_WRITEDATA, + &apiClient->dataReceived); + curl_easy_setopt(handle, CURLOPT_HTTPHEADER, headers); + curl_easy_setopt(handle, CURLOPT_VERBOSE, 0); // to get curl debug msg 0: to disable, 1L:to enable + + + if(bodyParameters != NULL) { + postData(handle, bodyParameters); + } + + res = curl_easy_perform(handle); + + curl_slist_free_all(headers); + + free(targetUrl); + + if(contentType != NULL) { + free(buffContent); + } + + if(res == CURLE_OK) { + curl_easy_getinfo(handle, CURLINFO_RESPONSE_CODE, &apiClient->response_code); + } else { + char *url,*ip,*scheme; + long port; + curl_easy_getinfo(handle, CURLINFO_EFFECTIVE_URL, &url); + curl_easy_getinfo(handle, CURLINFO_PRIMARY_IP, &ip); + curl_easy_getinfo(handle, CURLINFO_PRIMARY_PORT, &port); + curl_easy_getinfo(handle, CURLINFO_SCHEME, &scheme); + fprintf(stderr, "curl_easy_perform() failed\n\nURL: %s\nIP: %s\nPORT: %li\nSCHEME: %s\nStrERROR: %s\n",url,ip,port,scheme, + curl_easy_strerror(res)); + } + + curl_easy_cleanup(handle); + if(formParameters != NULL) { + free(formString); + curl_mime_free(mime); + } + } +} + +size_t writeDataCallback(void *buffer, size_t size, size_t nmemb, void *userp) { + *(char **) userp = strdup(buffer); + + return size * nmemb; +} + +char *strReplace(char *orig, char *rep, char *with) { + char *result; // the return string + char *ins; // the next insert point + char *tmp; // varies + int lenRep; // length of rep (the string to remove) + int lenWith; // length of with (the string to replace rep with) + int lenFront; // distance between rep and end of last rep + int count; // number of replacements + + // sanity checks and initialization + if(!orig || !rep) + { + return NULL; + } + lenRep = strlen(rep); + if(lenRep == 0) { + return NULL; // empty rep causes infinite loop during count + } + if(!with) { + with = ""; + } + lenWith = strlen(with); + + // count the number of replacements needed + ins = orig; + for(count = 0; tmp = strstr(ins, rep); ++count) { + ins = tmp + lenRep; + } + + tmp = result = malloc(strlen(orig) + (lenWith - lenRep) * count + 1); + + if(!result) { + return NULL; + } + char *originalPointer = orig; // copying original pointer to free the memory + // first time through the loop, all the variable are set correctly + // from here on, + // tmp points to the end of the result string + // ins points to the next occurrence of rep in orig + // orig points to the remainder of orig after "end of rep" + while(count--) { + ins = strstr(orig, rep); + lenFront = ins - orig; + tmp = strncpy(tmp, orig, lenFront) + lenFront; + tmp = strcpy(tmp, with) + lenWith; + orig += lenFront + lenRep; // move to next "end of rep" + } + strcpy(tmp, orig); + free(originalPointer); + return result; +} + +char *sbi_base64encode (const void *b64_encode_this, int encode_this_many_bytes){ +#ifdef OPENSSL + BIO *b64_bio, *mem_bio; //Declares two OpenSSL BIOs: a base64 filter and a memory BIO. + BUF_MEM *mem_bio_mem_ptr; //Pointer to a "memory BIO" structure holding our base64 data. + b64_bio = BIO_new(BIO_f_base64()); //Initialize our base64 filter BIO. + mem_bio = BIO_new(BIO_s_mem()); //Initialize our memory sink BIO. + BIO_push(b64_bio, mem_bio); //Link the BIOs by creating a filter-sink BIO chain. + BIO_set_flags(b64_bio, BIO_FLAGS_BASE64_NO_NL); //No newlines every 64 characters or less. + BIO_write(b64_bio, b64_encode_this, encode_this_many_bytes); //Records base64 encoded data. + BIO_flush(b64_bio); //Flush data. Necessary for b64 encoding, because of pad characters. + BIO_get_mem_ptr(mem_bio, &mem_bio_mem_ptr); //Store address of mem_bio's memory structure. + BIO_set_close(mem_bio, BIO_NOCLOSE); //Permit access to mem_ptr after BIOs are destroyed. + BIO_free_all(b64_bio); //Destroys all BIOs in chain, starting with b64 (i.e. the 1st one). + BUF_MEM_grow(mem_bio_mem_ptr, (*mem_bio_mem_ptr).length + 1); //Makes space for end null. + (*mem_bio_mem_ptr).data[(*mem_bio_mem_ptr).length] = '\0'; //Adds null-terminator to tail. + return (*mem_bio_mem_ptr).data; //Returns base-64 encoded data. (See: "buf_mem_st" struct). +#endif +} + +char *sbi_base64decode (const void *b64_decode_this, int decode_this_many_bytes){ +#ifdef OPENSSL + BIO *b64_bio, *mem_bio; //Declares two OpenSSL BIOs: a base64 filter and a memory BIO. + char *base64_decoded = calloc( (decode_this_many_bytes*3)/4+1, sizeof(char) ); //+1 = null. + b64_bio = BIO_new(BIO_f_base64()); //Initialize our base64 filter BIO. + mem_bio = BIO_new(BIO_s_mem()); //Initialize our memory source BIO. + BIO_write(mem_bio, b64_decode_this, decode_this_many_bytes); //Base64 data saved in source. + BIO_push(b64_bio, mem_bio); //Link the BIOs by creating a filter-source BIO chain. + BIO_set_flags(b64_bio, BIO_FLAGS_BASE64_NO_NL); //Don't require trailing newlines. + int decoded_byte_index = 0; //Index where the next base64_decoded byte should be written. + while ( 0 < BIO_read(b64_bio, base64_decoded+decoded_byte_index, 1) ){ //Read byte-by-byte. + decoded_byte_index++; //Increment the index until read of BIO decoded data is complete. + } //Once we're done reading decoded data, BIO_read returns -1 even though there's no error. + BIO_free_all(b64_bio); //Destroys all BIOs in chain, starting with b64 (i.e. the 1st one). + return base64_decoded; //Returns base-64 decoded data with trailing null terminator. +#endif +} diff --git a/lib/skyhwd/src/apiKey.c b/lib/skyhwd/src/apiKey.c new file mode 100644 index 000000000..2bf8fc3e9 --- /dev/null +++ b/lib/skyhwd/src/apiKey.c @@ -0,0 +1,14 @@ +#include +#include +#include "../include/keyValuePair.h" + +keyValuePair_t *keyValuePair_create(char *key, void *value) { + keyValuePair_t *keyValuePair = malloc(sizeof(keyValuePair_t)); + keyValuePair->key = key; + keyValuePair->value = value; + return keyValuePair; +} + +void keyValuePair_free(keyValuePair_t *keyValuePair) { + free(keyValuePair); +} diff --git a/lib/skyhwd/src/list.c b/lib/skyhwd/src/list.c new file mode 100644 index 000000000..73eee13c2 --- /dev/null +++ b/lib/skyhwd/src/list.c @@ -0,0 +1,166 @@ +#include +#include +#include + +#include "../include/list.h" +static listEntry_t *listEntry_create(void *data) { + listEntry_t *createdListEntry = malloc(sizeof(listEntry_t)); + if(createdListEntry == NULL) { + // TODO Malloc Failure + return NULL; + } + createdListEntry->data = data; + + return createdListEntry; +} + +void listEntry_free(listEntry_t *listEntry, void *additionalData) { + free(listEntry); +} + +void listEntry_printAsInt(listEntry_t *listEntry, void *additionalData) { + printf("%i\n", *((int *) (listEntry->data))); +} + +list_t *list_create() { + list_t *createdList = malloc(sizeof(list_t)); + if(createdList == NULL) { + // TODO Malloc Failure + return NULL; + } + createdList->firstEntry = NULL; + createdList->lastEntry = NULL; + createdList->count = 0; + + return createdList; +} + +void list_iterateThroughListForward(list_t *list, + void (*operationToPerform)( + listEntry_t *, + void *callbackFunctionUsedData), + void *additionalDataNeededForCallbackFunction) +{ + listEntry_t *currentListEntry = list->firstEntry; + listEntry_t *nextListEntry; + + if(currentListEntry == NULL) { + return; + } + + nextListEntry = currentListEntry->nextListEntry; + + operationToPerform(currentListEntry, + additionalDataNeededForCallbackFunction); + currentListEntry = nextListEntry; + + while(currentListEntry != NULL) { + nextListEntry = currentListEntry->nextListEntry; + operationToPerform(currentListEntry, + additionalDataNeededForCallbackFunction); + currentListEntry = nextListEntry; + } +} + +void list_iterateThroughListBackward(list_t *list, + void (*operationToPerform)( + listEntry_t *, + void *callbackFunctionUsedData), + void *additionalDataNeededForCallbackFunction) +{ + listEntry_t *currentListEntry = list->lastEntry; + listEntry_t *nextListEntry = currentListEntry->prevListEntry; + + if(currentListEntry == NULL) { + return; + } + + operationToPerform(currentListEntry, + additionalDataNeededForCallbackFunction); + currentListEntry = nextListEntry; + + while(currentListEntry != NULL) { + nextListEntry = currentListEntry->prevListEntry; + operationToPerform(currentListEntry, + additionalDataNeededForCallbackFunction); + currentListEntry = nextListEntry; + } +} + +void list_free(list_t *list) { + list_iterateThroughListForward(list, listEntry_free, NULL); + free(list); +} + +void list_addElement(list_t *list, void *dataToAddInList) { + listEntry_t *newListEntry = listEntry_create(dataToAddInList); + if(newListEntry == NULL) { + // TODO Malloc Failure + return; + } + if(list->firstEntry == NULL) { + list->firstEntry = newListEntry; + list->lastEntry = newListEntry; + + newListEntry->prevListEntry = NULL; + newListEntry->nextListEntry = NULL; + + list->count++; + + return; + } + + list->lastEntry->nextListEntry = newListEntry; + newListEntry->prevListEntry = list->lastEntry; + newListEntry->nextListEntry = NULL; + list->lastEntry = newListEntry; + + list->count++; +} + +void list_removeElement(list_t *list, listEntry_t *elementToRemove) { + listEntry_t *elementBeforeElementToRemove = + elementToRemove->prevListEntry; + listEntry_t *elementAfterElementToRemove = + elementToRemove->nextListEntry; + + if(elementBeforeElementToRemove != NULL) { + elementBeforeElementToRemove->nextListEntry = + elementAfterElementToRemove; + } else { + list->firstEntry = elementAfterElementToRemove; + } + + if(elementAfterElementToRemove != NULL) { + elementAfterElementToRemove->prevListEntry = + elementBeforeElementToRemove; + } else { + list->lastEntry = elementBeforeElementToRemove; + } + + listEntry_free(elementToRemove, NULL); + + list->count--; +} + +listEntry_t *list_getElementAt(list_t *list, long indexOfElement) { + listEntry_t *currentListEntry; + + if((list->count / 2) > indexOfElement) { + currentListEntry = list->firstEntry; + + for(int i = 0; i < indexOfElement; i++) { + currentListEntry = currentListEntry->nextListEntry; + } + + return currentListEntry; + } else { + currentListEntry = list->lastEntry; + + for(int i = 1; i < (list->count - indexOfElement); i++) { + currentListEntry = currentListEntry->prevListEntry; + } + + return currentListEntry; + } +} diff --git a/lib/skyhwd/uncrustify-rules.cfg b/lib/skyhwd/uncrustify-rules.cfg new file mode 100644 index 000000000..fa6d5bfb3 --- /dev/null +++ b/lib/skyhwd/uncrustify-rules.cfg @@ -0,0 +1,210 @@ +tok_split_gte=false +utf8_byte=false +utf8_force=true +indent_cmt_with_tabs=false +indent_align_string=false +indent_braces=false +indent_braces_no_func=false +indent_braces_no_class=false +indent_braces_no_struct=false +indent_brace_parent=false +indent_namespace=false +indent_extern=true +indent_class=false +indent_class_colon=false +indent_else_if=false +indent_var_def_cont=false +indent_func_call_param=false +indent_func_def_param=false +indent_func_proto_param=false +indent_func_class_param=false +indent_func_ctor_var_param=false +indent_template_param=false +indent_func_param_double=false +indent_relative_single_line_comments=false +indent_col1_comment=false +indent_access_spec_body=false +indent_paren_nl=false +indent_comma_paren=false +indent_bool_paren=false +indent_first_bool_expr=false +indent_square_nl=false +indent_preserve_sql=false +indent_align_assign=true +sp_balance_nested_parens=false +align_keep_tabs=false +align_with_tabs=true +align_on_tabstop=true +align_func_params=true +align_same_func_call_params=false +align_var_def_colon=false +align_var_def_attribute=false +align_var_def_inline=false +align_right_cmt_mix=false +align_on_operator=false +align_mix_var_proto=false +align_single_line_func=false +align_single_line_brace=false +align_nl_cont=false +align_left_shift=true +align_oc_decl_colon=false +nl_collapse_empty_body=true +nl_assign_leave_one_liners=false +nl_class_leave_one_liners=false +nl_enum_leave_one_liners=false +nl_getset_leave_one_liners=false +nl_func_leave_one_liners=false +nl_if_leave_one_liners=false +nl_multi_line_cond=true +nl_multi_line_define=false +nl_before_case=true +nl_after_case=true +nl_after_return=false +nl_after_semicolon=true +nl_after_brace_open=false +nl_after_brace_open_cmt=false +nl_after_vbrace_open=false +nl_after_vbrace_open_empty=false +nl_after_brace_close=false +nl_after_vbrace_close=false +nl_define_macro=false +nl_squeeze_ifdef=false +nl_ds_struct_enum_cmt=false +nl_ds_struct_enum_close_brace=false +nl_create_if_one_liner=false +nl_create_for_one_liner=false +nl_create_while_one_liner=false +ls_for_split_full=false +ls_func_split_full=false +nl_after_multiline_comment=false +eat_blanks_after_open_brace=true +eat_blanks_before_close_brace=true +mod_full_brace_if_chain=false +mod_pawn_semicolon=false +mod_full_paren_if_bool=true +mod_remove_extra_semicolon=true +mod_sort_import=true +mod_sort_using=false +mod_sort_include=false +mod_move_case_break=false +mod_remove_empty_return=true +cmt_indent_multi=true +cmt_c_group=false +cmt_c_nl_start=true +cmt_c_nl_end=true +cmt_cpp_group=false +cmt_cpp_nl_start=true +cmt_cpp_nl_end=true +cmt_cpp_to_c=false +cmt_star_cont=false +cmt_multi_check_last=true +cmt_insert_before_preproc=false +pp_indent_at_level=false +pp_region_indent_code=false +pp_if_indent_code=false +pp_define_at_level=false +align_var_def_star_style=1 +align_var_def_amp_style=0 +code_width=80 +indent_with_tabs=1 +sp_arith=force +sp_assign=force +sp_assign_default=force +sp_enum_assign=force +sp_bool=force +sp_compare=force +sp_inside_paren=remove +sp_before_ptr_star=force +sp_before_unnamed_ptr_star=force +sp_between_ptr_star=remove +sp_after_ptr_star=remove +sp_before_sparen=remove +sp_inside_sparen=remove +sp_sparen_brace=force +sp_before_semi=remove +sp_before_semi_for_empty=force +sp_after_semi=force +sp_after_semi_for=force +sp_after_semi_for_empty=force +sp_before_square=remove +sp_before_squares=remove +sp_inside_square=remove +sp_after_comma=force +sp_before_comma=remove +sp_paren_comma=force +sp_before_case_colon=remove +sp_after_cast=force +sp_inside_paren_cast=remove +sp_sizeof_paren=remove +sp_inside_braces_struct=force +sp_type_func=remove +sp_func_proto_paren=remove +sp_func_def_paren=remove +sp_inside_fparens=remove +sp_inside_fparen=remove +sp_square_fparen=remove +sp_fparen_brace=force +sp_func_call_paren=remove +sp_attribute_paren=remove +sp_defined_paren=remove +sp_macro=force +sp_macro_func=force +sp_else_brace=force +sp_brace_else=force +sp_brace_typedef=force +sp_not=remove +sp_inv=remove +sp_addr=remove +sp_member=remove +sp_deref=remove +sp_sign=remove +sp_incdec=remove +sp_before_nl_cont=force +sp_cond_colon=force +sp_cond_question=force +sp_case_label=force +sp_cmt_cpp_start=force +sp_endif_cmt=force +sp_before_tr_emb_cmt=force +nl_start_of_file=remove +nl_end_of_file=add +nl_assign_brace=remove +nl_enum_brace=remove +nl_struct_brace=remove +nl_union_brace=remove +nl_if_brace=remove +nl_brace_else=remove +nl_elseif_brace=remove +nl_else_brace=remove +nl_else_if=remove +nl_brace_finally=remove +nl_finally_brace=remove +nl_try_brace=remove +nl_for_brace=remove +nl_catch_brace=remove +nl_brace_catch=remove +nl_while_brace=remove +nl_do_brace=remove +nl_brace_while=remove +nl_switch_brace=remove +nl_class_brace=remove +nl_func_type_name=remove +nl_func_proto_type_name=remove +nl_func_paren=remove +nl_func_def_paren=remove +nl_func_decl_start=remove +nl_func_def_start=remove +nl_func_decl_args=remove +nl_func_def_args=remove +nl_func_decl_end=remove +nl_func_def_end=remove +nl_func_decl_empty=remove +nl_func_def_empty=remove +nl_fdef_brace=remove +nl_return_expr=remove +pos_bool=trail_break +mod_full_brace_do=force +mod_full_brace_for=force +mod_full_brace_if=force +mod_full_brace_while=force +mod_paren_on_return=remove \ No newline at end of file