You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

106 lines
3.1 KiB
C++

/*
* Copyright 2013-2014 BlackBerry Limited.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "../public/tokenizer.h"
#include "barcodescanner_js.hpp"
#include "barcodescanner_ndk.hpp"
using namespace std;
/**
* Default constructor.
*/
BarcodeScannerJS::BarcodeScannerJS(const std::string& id) :
m_id(id) {
m_pLogger = new webworks::Logger("BarcodeScannerJS", this);
m_pBarcodeScannerController = new webworks::BarcodeScannerNDK(this);
}
/**
* BarcodeScannerJS destructor.
*/
BarcodeScannerJS::~BarcodeScannerJS() {
if (m_pBarcodeScannerController)
delete m_pBarcodeScannerController;
if (m_pLogger)
delete m_pLogger;
}
webworks::Logger* BarcodeScannerJS::getLog() {
return m_pLogger;
}
/**
* This method returns the list of objects implemented by this native
* extension.
*/
char* onGetObjList() {
static char name[] = "BarcodeScannerJS";
return name;
}
/**
* This method is used by JNext to instantiate the BarcodeScannerJS object when
* an object is created on the JavaScript server side.
*/
JSExt* onCreateObject(const string& className, const string& id) {
if (className == "BarcodeScannerJS") {
return new BarcodeScannerJS(id);
}
return NULL;
}
/**
* Method used by JNext to determine if the object can be deleted.
*/
bool BarcodeScannerJS::CanDelete() {
return true;
}
/**
* It will be called from JNext JavaScript side with passed string.
* This method implements the interface for the JavaScript to native binding
* for invoking native code. This method is triggered when JNext.invoke is
* called on the JavaScript side with this native objects id.
*/
string BarcodeScannerJS::InvokeMethod(const std::string& command) {
// command appears with parameters following after a space
size_t commandIndex = command.find_first_of(" ");
std::string strCommand = command.substr(0, commandIndex);
size_t callbackIndex = command.find_first_of(" ", commandIndex + 1);
std::string callbackId = command.substr(commandIndex + 1, callbackIndex - commandIndex - 1);
std::string arg = command.substr(callbackIndex + 1, command.length());
if (strCommand == "startRead") {
m_pBarcodeScannerController->startRead(callbackId, arg);
}
else if (strCommand == "stopRead") {
m_pBarcodeScannerController->stopRead(callbackId);
}
strCommand.append(";");
strCommand.append(command);
return strCommand;
}
// Notifies JavaScript of an event
void BarcodeScannerJS::NotifyEvent(const std::string& event) {
std::string eventString = m_id + " ";
eventString.append(event);
SendPluginEvent(eventString.c_str(), m_pContext);
}