1 /* 2 * Copyright (C) 2017-2018 NXP Semiconductors 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #include "NCIParser.h" 18 19 #include <iostream> 20 21 using namespace std; 22 23 #define C_TO_CPP(c2cpp) (reinterpret_cast<NCI_Parser*>(c2cpp)) 24 #define CPP_TO_C(cpp2c) (reinterpret_cast<void*>(cpp2c)) 25 NCI_Parser_Interface()26NCI_Parser_Interface::NCI_Parser_Interface() { 27 // TODO 28 } 29 ~NCI_Parser_Interface()30NCI_Parser_Interface::~NCI_Parser_Interface() { 31 // TODO 32 } 33 native_createParser()34void* native_createParser() { return CPP_TO_C(NCI_Parser::getInstance()); } 35 native_destroyParser(void * psNNP)36void native_destroyParser(void* psNNP) { C_TO_CPP(psNNP)->resetInstance(); } 37 native_initParser(void * psNNP)38void native_initParser(void* psNNP) { C_TO_CPP(psNNP)->initParser(); } 39 native_deinitParser(void * psNNP)40void native_deinitParser(void* psNNP) { C_TO_CPP(psNNP)->deinitParser(); } 41 native_parseNciMsg(void * psNNP,unsigned char * msg,unsigned short len)42void native_parseNciMsg(void* psNNP, unsigned char* msg, unsigned short len) { 43 C_TO_CPP(psNNP)->parseNciPacket(msg, len); 44 } 45