[
https://issues.apache.org/jira/browse/CB-13666?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16290447#comment-16290447
]
ASF GitHub Bot commented on CB-13666:
-------------------------------------
maverickmishra closed pull request #62: CB-13666 : Removed deprecated platforms
URL: https://github.com/apache/cordova-plugin-vibration/pull/62
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/README.md b/README.md
index d989247..e5ae6ee 100644
--- a/README.md
+++ b/README.md
@@ -49,15 +49,11 @@ Although in the global scope, they are not available until
after the `deviceread
## Supported Platforms
-navigator.vibrate,<br />
-navigator.notification.vibrate
-- Amazon Fire OS
+navigator.vibrate
+
- Android
-- BlackBerry 10
-- Firefox OS
- iOS
-- Windows Phone 7 and 8
-- Windows (Windows Phone 8.1 devices only)
+- Windows
The Android webview (API level 19 and up) supports the [W3C Vibration
API](https://www.w3.org/TR/vibration/) natively and therefore, the Android
specific implementation of this plugin has been dropped.
@@ -93,7 +89,7 @@ or
navigator.vibrate(3000); // 3000 is ignored
-#### Windows and Blackberry Quirks
+#### Windows Quirks
- __time__: Max time is 5000ms (5s) and min time is 1ms
@@ -115,9 +111,6 @@ Vibrates the device with a given pattern
// Vibrate for 5 seconds
navigator.vibrate([1000, 1000, 3000, 1000, 5000]);
-#### Windows Phone 8 Quirks
-
-- vibrate(pattern) falls back on vibrate with default duration
### Cancel vibration (not supported in iOS)
@@ -135,6 +128,3 @@ or
Passing in a parameter of 0, an empty array, or an array with one element of
value 0 will cancel any vibrations.
-
-
-
diff --git a/package.json b/package.json
index 02792a4..80f80c7 100644
--- a/package.json
+++ b/package.json
@@ -6,15 +6,9 @@
"cordova": {
"id": "cordova-plugin-vibration",
"platforms": [
- "firefoxos",
- "wp7",
- "wp8",
"android",
- "amazon-fireos",
- "ubuntu",
"ios",
- "blackberry10",
- "tizen"
+ "windows"
]
},
"repository": {
@@ -28,15 +22,9 @@
"cordova",
"vibration",
"ecosystem:cordova",
- "cordova-firefoxos",
- "cordova-wp7",
- "cordova-wp8",
"cordova-android",
- "cordova-amazon-fireos",
- "cordova-ubuntu",
"cordova-ios",
- "cordova-blackberry10",
- "cordova-tizen"
+ "cordova-windows"
],
"scripts": {
"test": "npm run eslint",
diff --git a/plugin.xml b/plugin.xml
index d45531e..5a92d3a 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -30,66 +30,6 @@
<repo>https://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration.git</repo>
<issue>https://issues.apache.org/jira/browse/CB/component/12320639</issue>
- <!-- firefoxos -->
- <platform name="firefoxos">
- <config-file target="www/config.xml" parent="/*">
- <feature name="Vibration">
- <param name="firefoxos-package" value="Vibration" />
- </feature>
- </config-file>
- <js-module src="src/firefoxos/VibrationProxy.js" name="VibrationProxy">
- <runs />
- </js-module>
- <js-module src="www/vibration.js" name="notification">
- <merges target="navigator.notification" />
- <merges target="navigator" />
- </js-module>
- </platform>
-
- <!-- wp7 -->
- <platform name="wp7">
- <config-file target="config.xml" parent="/*">
- <feature name="Vibration">
- <param name="wp-package" value="Vibration"/>
- </feature>
- </config-file>
- <js-module src="www/vibration.js" name="notification">
- <merges target="navigator.notification" />
- <merges target="navigator" />
- </js-module>
-
- <source-file src="src/wp/Vibration.cs" />
- </platform>
-
- <!-- wp8 -->
- <platform name="wp8">
- <config-file target="config.xml" parent="/*">
- <feature name="Vibration">
- <param name="wp-package" value="Vibration"/>
- </feature>
- </config-file>
- <js-module src="www/vibration.js" name="notification">
- <merges target="navigator.notification" />
- <merges target="navigator" />
- </js-module>
-
- <source-file src="src/wp/Vibration.cs" />
- </platform>
-
- <!-- windows -->
- <platform name="windows">
- <js-module src="src/windows/VibrationProxy.js" name="VibrationProxy">
- <runs />
- </js-module>
- <js-module src="www/vibration.js" name="notification">
- <merges target="navigator.notification" />
- <merges target="navigator" />
- </js-module>
-
- <framework src="src/windows/Vibration/Vibration.csproj" target="phone"
- type="projectReference" custom="true" versions="<10.0.0" />
- </platform>
-
<!-- android -->
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/manifest">
@@ -97,35 +37,6 @@
</config-file>
</platform>
- <!-- amazon-fireos -->
- <platform name="amazon-fireos">
- <config-file target="res/xml/config.xml" parent="/*">
- <feature name="Vibration">
- <param name="android-package"
value="org.apache.cordova.vibration.Vibration"/>
- </feature>
- </config-file>
- <js-module src="www/vibration.js" name="notification">
- <merges target="navigator.notification" />
- <merges target="navigator" />
- </js-module>
-
- <source-file src="src/android/Vibration.java"
target-dir="src/org/apache/cordova/vibration" />
-
- <config-file target="AndroidManifest.xml" parent="/manifest">
- <uses-permission android:name="android.permission.VIBRATE"/>
- </config-file>
- </platform>
-
- <!-- ubuntu -->
- <platform name="ubuntu">
- <header-file src="src/ubuntu/vibration.h" />
- <source-file src="src/ubuntu/vibration.cpp" />
- <js-module src="www/vibration.js" name="notification">
- <merges target="navigator.notification" />
- <merges target="navigator" />
- </js-module>
- </platform>
-
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
@@ -143,18 +54,18 @@
<framework src="AudioToolbox.framework" weak="true" />
</platform>
- <!-- blackberry10 -->
- <platform name="blackberry10">
- <source-file src="src/blackberry10/index.js" target-dir="Vibration"/>
- <lib-file src="src/blackberry10/native/device/libVibration.so"
arch="device" />
- <lib-file src="src/blackberry10/native/simulator/libVibration.so"
arch="simulator" />
- <config-file target="www/config.xml" parent="/widget">
- <feature name="Vibration" value="Vibration" />
- </config-file>
+ <!-- windows -->
+ <platform name="windows">
+ <js-module src="src/windows/VibrationProxy.js" name="VibrationProxy">
+ <runs />
+ </js-module>
<js-module src="www/vibration.js" name="notification">
<merges target="navigator.notification" />
<merges target="navigator" />
</js-module>
+
+ <framework src="src/windows/Vibration/Vibration.csproj" target="phone"
+ type="projectReference" custom="true" versions="<10.0.0" />
</platform>
<!-- browser -->
@@ -169,14 +80,4 @@
</js-module>
</platform>
- <!-- tizen -->
- <platform name="tizen">
- <js-module src="src/tizen/VibrationProxy.js" name="VibrationProxy">
- <runs />
- </js-module>
- <js-module src="www/vibration.js" name="notification">
- <merges target="navigator.notification" />
- <merges target="navigator" />
- </js-module>
- </platform>
</plugin>
diff --git a/src/blackberry10/index.js b/src/blackberry10/index.js
deleted file mode 100644
index 491f9bf..0000000
--- a/src/blackberry10/index.js
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- *
-*/
-
-/* global PluginResult, JNEXT */
-
-var vibration;
-
-module.exports = {
- vibrate: function (success, fail, args, env) {
- var result = new PluginResult(args, env);
- var duration = args[0];
- var response = vibration.getInstance().vibrate(duration);
- result.ok(response, false);
- }
-};
-
-/// ////////////////////////////////////////////////////////////////
-// JavaScript wrapper for JNEXT plugin
-/// ////////////////////////////////////////////////////////////////
-
-JNEXT.Vibration = function () {
- var self = this;
- var hasInstance = false;
-
- self.vibrate = function (duration) {
- // This is how Javascript calls into native
- return JNEXT.invoke(self.m_id, 'vibrate ' + duration);
- };
-
- self.init = function () {
- // Checks that the jnext library is present and loads it
- if (!JNEXT.require('libVibration')) {
- return false;
- }
-
- // Creates the native object that this interface will call
- self.m_id = JNEXT.createObject('libVibration.Vibration');
-
- if (self.m_id === '') {
- return false;
- }
-
- // Registers for the JNEXT event loop
- JNEXT.registerEvents(self);
- };
-
- self.m_id = '';
-
- // Used by JNEXT library to get the ID
- self.getId = function () {
- return self.m_id;
- };
-
- // Not truly required but useful for instance management
- self.getInstance = function () {
- if (!hasInstance) {
- self.init();
- hasInstance = true;
- }
- return self;
- };
-};
-
-vibration = new JNEXT.Vibration();
diff --git a/src/blackberry10/native/.cproject
b/src/blackberry10/native/.cproject
deleted file mode 100644
index 2e91011..0000000
--- a/src/blackberry10/native/.cproject
+++ /dev/null
@@ -1,526 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<?fileVersion 4.0.0?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you 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.
--->
-<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
- <storageModule moduleId="org.eclipse.cdt.core.settings">
- <cconfiguration
id="com.qnx.qcc.configuration.sharedLib.debug.377515531">
- <storageModule
buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider"
id="com.qnx.qcc.configuration.sharedLib.debug.377515531"
moduleId="org.eclipse.cdt.core.settings" name="Device-Debug">
- <externalSettings>
- <externalSetting>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/Vibration/public"/>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="libraryPath" name="/Vibration/Device-Debug"/>
- <entry flags=""
kind="libraryFile" name="Vibration" srcPrefixMapping="" srcRootPath=""/>
- </externalSetting>
- </externalSettings>
- <extensions>
- <extension
id="com.qnx.tools.ide.qde.core.QDEBynaryParser"
point="org.eclipse.cdt.core.BinaryParser"/>
- <extension
id="com.qnx.tools.ide.qde.core.QDELinkerErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GCCErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GLDErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- </extensions>
- </storageModule>
- <storageModule moduleId="cdtBuildSystem"
version="4.0.0">
- <configuration artifactExtension="so"
artifactName="${ProjName}"
buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
description="" id="com.qnx.qcc.configuration.sharedLib.debug.377515531"
name="Device-Debug" parent="com.qnx.qcc.configuration.sharedLib.debug">
- <folderInfo
id="com.qnx.qcc.configuration.sharedLib.debug.377515531." name="/"
resourcePath="">
- <toolChain
id="com.qnx.qcc.toolChain.sharedLib.debug.971164565" name="QNX QCC"
superClass="com.qnx.qcc.toolChain">
- <option
id="com.qnx.qcc.option.cpu.2087890036" superClass="com.qnx.qcc.option.cpu"
value="com.qnx.qcc.option.gen.cpu.armle-v7" valueType="enumerated"/>
- <targetPlatform
archList="all" binaryParser="com.qnx.tools.ide.qde.core.QDEBynaryParser"
id="com.qnx.qcc.targetPlatform.1402574041" osList="all"
superClass="com.qnx.qcc.targetPlatform"/>
- <builder
buildPath="${workspace_loc:/Vibration}/Device-Debug"
id="com.qnx.nto.2045212918" keepEnvironmentInBuildfile="false" name="CDT
Internal Builder.Debug" parallelBuildOn="true" parallelizationNumber="optimal"
superClass="com.qnx.nto"/>
- <tool
id="com.qnx.qcc.tool.compiler.132315977" name="QCC Compiler"
superClass="com.qnx.qcc.tool.compiler">
- <option
id="com.qnx.qcc.option.compiler.shared.1393127199"
superClass="com.qnx.qcc.option.compiler.shared" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.optlevel.1372523509"
superClass="com.qnx.qcc.option.compiler.optlevel"
value="com.qnx.qcc.option.compiler.optlevel.0" valueType="enumerated"/>
- <option
id="com.qnx.qcc.option.compile.debug.197267590"
superClass="com.qnx.qcc.option.compile.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.includePath.1822603065"
superClass="com.qnx.qcc.option.compiler.includePath" valueType="includePath">
-
<listOptionValue builtIn="false" value="${workspace_loc:/${ProjName}/public}"/>
-
<listOptionValue builtIn="false" value="${QNX_TARGET}/usr/include/freetype2"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/usr/include"/>
- </option>
- <option
id="com.qnx.qcc.option.compiler.security.1943099120"
superClass="com.qnx.qcc.option.compiler.security" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.defines.195649660"
superClass="com.qnx.qcc.option.compiler.defines" valueType="definedSymbols">
-
<listOptionValue builtIn="false" value="_FORTIFY_SOURCE=2"/>
- </option>
- <inputType
id="com.qnx.qcc.inputType.compiler.580792363"
superClass="com.qnx.qcc.inputType.compiler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.assembler.987029866" name="QCC Assembler"
superClass="com.qnx.qcc.tool.assembler">
- <option
id="com.qnx.qcc.option.assembler.debug.1650183957"
superClass="com.qnx.qcc.option.assembler.debug" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.assembler.48195162"
superClass="com.qnx.qcc.inputType.assembler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.linker.1975544943" name="QCC Linker"
superClass="com.qnx.qcc.tool.linker">
- <option
id="com.qnx.qcc.option.linker.debug.1211149040"
superClass="com.qnx.qcc.option.linker.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.shared.1550477607"
superClass="com.qnx.qcc.option.linker.shared" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.langcpp.1528479645"
superClass="com.qnx.qcc.option.linker.langcpp" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.libraryPaths.656170241"
superClass="com.qnx.qcc.option.linker.libraryPaths" valueType="libPaths">
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/lib"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/usr/lib"/>
- </option>
- <option
id="com.qnx.qcc.option.linker.security.1172942377"
superClass="com.qnx.qcc.option.linker.security" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.linker.749863253"
superClass="com.qnx.qcc.inputType.linker">
-
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
-
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
- </inputType>
- </tool>
- <tool
id="com.qnx.qcc.tool.archiver.305797868" name="QCC Archiver"
superClass="com.qnx.qcc.tool.archiver"/>
- </toolChain>
- </folderInfo>
- <sourceEntries>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="src"/>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="public"/>
- </sourceEntries>
- </configuration>
- </storageModule>
- <storageModule
moduleId="org.eclipse.cdt.core.externalSettings"/>
- </cconfiguration>
- <cconfiguration
id="com.qnx.qcc.configuration.sharedLib.release.655086625">
- <storageModule
buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider"
id="com.qnx.qcc.configuration.sharedLib.release.655086625"
moduleId="org.eclipse.cdt.core.settings" name="Device-Release">
- <externalSettings>
- <externalSetting>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/Vibration/public"/>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="libraryPath"
name="/Vibration/Device-Release"/>
- <entry flags=""
kind="libraryFile" name="Vibration" srcPrefixMapping="" srcRootPath=""/>
- </externalSetting>
- </externalSettings>
- <extensions>
- <extension
id="com.qnx.tools.ide.qde.core.QDEBynaryParser"
point="org.eclipse.cdt.core.BinaryParser"/>
- <extension
id="com.qnx.tools.ide.qde.core.QDELinkerErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GCCErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GLDErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- </extensions>
- </storageModule>
- <storageModule moduleId="cdtBuildSystem"
version="4.0.0">
- <configuration artifactExtension="so"
artifactName="${ProjName}"
buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.release,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
description="" id="com.qnx.qcc.configuration.sharedLib.release.655086625"
name="Device-Release" parent="com.qnx.qcc.configuration.sharedLib.release">
- <folderInfo
id="com.qnx.qcc.configuration.sharedLib.release.655086625." name="/"
resourcePath="">
- <toolChain
id="com.qnx.qcc.toolChain.sharedLib.release.2049587681" name="QNX QCC"
superClass="com.qnx.qcc.toolChain">
- <option
id="com.qnx.qcc.option.cpu.395550082" superClass="com.qnx.qcc.option.cpu"
value="com.qnx.qcc.option.gen.cpu.armle-v7" valueType="enumerated"/>
- <targetPlatform
archList="all" binaryParser="com.qnx.tools.ide.qde.core.QDEBynaryParser"
id="com.qnx.qcc.targetPlatform.785796836" osList="all"
superClass="com.qnx.qcc.targetPlatform"/>
- <builder
buildPath="${workspace_loc:/Vibration}/Device-Release"
id="com.qnx.nto.1038591073" keepEnvironmentInBuildfile="false" name="CDT
Internal Builder.Release" parallelBuildOn="true"
parallelizationNumber="optimal" superClass="com.qnx.nto"/>
- <tool
id="com.qnx.qcc.tool.compiler.602676193" name="QCC Compiler"
superClass="com.qnx.qcc.tool.compiler">
- <option
id="com.qnx.qcc.option.compiler.shared.527286912"
superClass="com.qnx.qcc.option.compiler.shared" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.optlevel.2036261479"
superClass="com.qnx.qcc.option.compiler.optlevel"
value="com.qnx.qcc.option.compiler.optlevel.2" valueType="enumerated"/>
- <option
id="com.qnx.qcc.option.compiler.includePath.1214557951"
superClass="com.qnx.qcc.option.compiler.includePath" valueType="includePath">
-
<listOptionValue builtIn="false" value="${workspace_loc:/${ProjName}/public}"/>
-
<listOptionValue builtIn="false" value="${QNX_TARGET}/usr/include/freetype2"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/usr/include"/>
- </option>
- <option
id="com.qnx.qcc.option.compiler.security.1008196277"
superClass="com.qnx.qcc.option.compiler.security" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.defines.1060017509"
superClass="com.qnx.qcc.option.compiler.defines" valueType="definedSymbols">
-
<listOptionValue builtIn="false" value="_FORTIFY_SOURCE=2"/>
- </option>
- <option
id="com.qnx.qcc.option.compiler.qccoptions.1733718200"
superClass="com.qnx.qcc.option.compiler.qccoptions" valueType="stringList">
-
<listOptionValue builtIn="false" value="-frecord-gcc-switches"/>
- </option>
- <inputType
id="com.qnx.qcc.inputType.compiler.1684912453"
superClass="com.qnx.qcc.inputType.compiler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.assembler.1750419766" name="QCC Assembler"
superClass="com.qnx.qcc.tool.assembler">
- <inputType
id="com.qnx.qcc.inputType.assembler.1709300785"
superClass="com.qnx.qcc.inputType.assembler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.linker.964898329" name="QCC Linker"
superClass="com.qnx.qcc.tool.linker">
- <option
id="com.qnx.qcc.option.linker.shared.2055906818"
superClass="com.qnx.qcc.option.linker.shared" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.langcpp.433725757"
superClass="com.qnx.qcc.option.linker.langcpp" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.libraryPaths.866157469"
superClass="com.qnx.qcc.option.linker.libraryPaths" valueType="libPaths">
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/lib"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/usr/lib"/>
- </option>
- <option
id="com.qnx.qcc.option.linker.security.916984508"
superClass="com.qnx.qcc.option.linker.security" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.linker.602198304"
superClass="com.qnx.qcc.inputType.linker">
-
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
-
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
- </inputType>
- </tool>
- <tool
id="com.qnx.qcc.tool.archiver.816267623" name="QCC Archiver"
superClass="com.qnx.qcc.tool.archiver"/>
- </toolChain>
- </folderInfo>
- <sourceEntries>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="src"/>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="public"/>
- </sourceEntries>
- </configuration>
- </storageModule>
- <storageModule
moduleId="org.eclipse.cdt.core.externalSettings"/>
- </cconfiguration>
- <cconfiguration
id="com.qnx.qcc.configuration.sharedLib.profile.1631657520">
- <storageModule
buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider"
id="com.qnx.qcc.configuration.sharedLib.profile.1631657520"
moduleId="org.eclipse.cdt.core.settings" name="Device-Profile">
- <externalSettings>
- <externalSetting>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/Vibration/public"/>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="libraryPath"
name="/Vibration/Device-Profile"/>
- <entry flags=""
kind="libraryFile" name="Vibration" srcPrefixMapping="" srcRootPath=""/>
- </externalSetting>
- </externalSettings>
- <extensions>
- <extension
id="com.qnx.tools.ide.qde.core.QDEBynaryParser"
point="org.eclipse.cdt.core.BinaryParser"/>
- <extension
id="com.qnx.tools.ide.qde.core.QDELinkerErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GCCErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GLDErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- </extensions>
- </storageModule>
- <storageModule moduleId="cdtBuildSystem"
version="4.0.0">
- <configuration artifactExtension="so"
artifactName="${ProjName}"
buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
buildProperties="org.eclipse.cdt.build.core.buildType=com.qnx.buildType.profile,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
description="Build for Profiling"
id="com.qnx.qcc.configuration.sharedLib.profile.1631657520"
name="Device-Profile" parent="com.qnx.qcc.configuration.sharedLib.profile">
- <folderInfo
id="com.qnx.qcc.configuration.sharedLib.profile.1631657520." name="/"
resourcePath="">
- <toolChain
id="com.qnx.qcc.toolChain.sharedLib.profile.282876309" name="QNX QCC"
superClass="com.qnx.qcc.toolChain">
- <option
id="com.qnx.qcc.option.cpu.1459979445" superClass="com.qnx.qcc.option.cpu"
value="com.qnx.qcc.option.gen.cpu.armle-v7" valueType="enumerated"/>
- <targetPlatform
archList="all" binaryParser="com.qnx.tools.ide.qde.core.QDEBynaryParser"
id="com.qnx.qcc.targetPlatform.817609196" osList="all"
superClass="com.qnx.qcc.targetPlatform"/>
- <builder
buildPath="${workspace_loc:/Vibration}/Device-Profile"
id="com.qnx.nto.676566681" keepEnvironmentInBuildfile="false" name="CDT
Internal Builder.Profile" parallelBuildOn="true"
parallelizationNumber="optimal" superClass="com.qnx.nto"/>
- <tool
id="com.qnx.qcc.tool.compiler.1491017260" name="QCC Compiler"
superClass="com.qnx.qcc.tool.compiler">
- <option
id="com.qnx.qcc.option.compiler.shared.1916336926"
superClass="com.qnx.qcc.option.compiler.shared" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.optlevel.493026428"
superClass="com.qnx.qcc.option.compiler.optlevel"
value="com.qnx.qcc.option.compiler.optlevel.0" valueType="enumerated"/>
- <option
id="com.qnx.qcc.option.compile.debug.290853890"
superClass="com.qnx.qcc.option.compile.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.profile2.1269244077"
superClass="com.qnx.qcc.option.compiler.profile2" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.includePath.927622461"
superClass="com.qnx.qcc.option.compiler.includePath" valueType="includePath">
-
<listOptionValue builtIn="false" value="${workspace_loc:/${ProjName}/public}"/>
-
<listOptionValue builtIn="false" value="${QNX_TARGET}/usr/include/freetype2"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/usr/include"/>
- </option>
- <option
id="com.qnx.qcc.option.compiler.security.395040157"
superClass="com.qnx.qcc.option.compiler.security" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.defines.954315933"
superClass="com.qnx.qcc.option.compiler.defines" valueType="definedSymbols">
-
<listOptionValue builtIn="false" value="_FORTIFY_SOURCE=2"/>
- </option>
- <inputType
id="com.qnx.qcc.inputType.compiler.1743648550"
superClass="com.qnx.qcc.inputType.compiler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.assembler.1080707705" name="QCC Assembler"
superClass="com.qnx.qcc.tool.assembler">
- <option
id="com.qnx.qcc.option.assembler.debug.1817254367"
superClass="com.qnx.qcc.option.assembler.debug" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.assembler.1683140498"
superClass="com.qnx.qcc.inputType.assembler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.linker.1605435025" name="QCC Linker"
superClass="com.qnx.qcc.tool.linker">
- <option
id="com.qnx.qcc.option.linker.debug.493747512"
superClass="com.qnx.qcc.option.linker.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.profile2.376547802"
superClass="com.qnx.qcc.option.linker.profile2" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.shared.576455358"
superClass="com.qnx.qcc.option.linker.shared" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.langcpp.604847411"
superClass="com.qnx.qcc.option.linker.langcpp" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.libraryPaths.1497646038"
superClass="com.qnx.qcc.option.linker.libraryPaths" valueType="libPaths">
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/lib"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/usr/lib"/>
- </option>
- <option
id="com.qnx.qcc.option.linker.security.76015439"
superClass="com.qnx.qcc.option.linker.security" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.linker.1395762141"
superClass="com.qnx.qcc.inputType.linker">
-
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
-
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
- </inputType>
- </tool>
- <tool
id="com.qnx.qcc.tool.archiver.2086191534" name="QCC Archiver"
superClass="com.qnx.qcc.tool.archiver"/>
- </toolChain>
- </folderInfo>
- <sourceEntries>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="src"/>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="public"/>
- </sourceEntries>
- </configuration>
- </storageModule>
- <storageModule
moduleId="org.eclipse.cdt.core.externalSettings"/>
- </cconfiguration>
- <cconfiguration
id="com.qnx.qcc.configuration.sharedLib.coverage.1669049686">
- <storageModule
buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider"
id="com.qnx.qcc.configuration.sharedLib.coverage.1669049686"
moduleId="org.eclipse.cdt.core.settings" name="Device-Coverage">
- <externalSettings>
- <externalSetting>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/Vibration/public"/>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="libraryPath"
name="/Vibration/Device-Coverage"/>
- <entry flags=""
kind="libraryFile" name="Vibration" srcPrefixMapping="" srcRootPath=""/>
- </externalSetting>
- </externalSettings>
- <extensions>
- <extension
id="com.qnx.tools.ide.qde.core.QDEBynaryParser"
point="org.eclipse.cdt.core.BinaryParser"/>
- <extension
id="com.qnx.tools.ide.qde.core.QDELinkerErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GCCErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GLDErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- </extensions>
- </storageModule>
- <storageModule moduleId="cdtBuildSystem"
version="4.0.0">
- <configuration artifactExtension="so"
artifactName="${ProjName}"
buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
buildProperties="org.eclipse.cdt.build.core.buildType=com.qnx.buildType.coverage,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
description="Build with Code Coverage"
id="com.qnx.qcc.configuration.sharedLib.coverage.1669049686"
name="Device-Coverage" parent="com.qnx.qcc.configuration.sharedLib.coverage">
- <folderInfo
id="com.qnx.qcc.configuration.sharedLib.coverage.1669049686." name="/"
resourcePath="">
- <toolChain
id="com.qnx.qcc.toolChain.sharedLib.coverage.1862891100" name="QNX QCC"
superClass="com.qnx.qcc.toolChain">
- <option
id="com.qnx.qcc.option.cpu.43877958" superClass="com.qnx.qcc.option.cpu"
value="com.qnx.qcc.option.gen.cpu.armle-v7" valueType="enumerated"/>
- <targetPlatform
archList="all" binaryParser="com.qnx.tools.ide.qde.core.QDEBynaryParser"
id="com.qnx.qcc.targetPlatform.942608594" osList="all"
superClass="com.qnx.qcc.targetPlatform"/>
- <builder
buildPath="${workspace_loc:/Vibration}/Device-Coverage"
id="com.qnx.nto.1447597608" keepEnvironmentInBuildfile="false" name="CDT
Internal Builder.Coverage" parallelBuildOn="true"
parallelizationNumber="optimal" superClass="com.qnx.nto"/>
- <tool
id="com.qnx.qcc.tool.compiler.1522602570" name="QCC Compiler"
superClass="com.qnx.qcc.tool.compiler">
- <option
id="com.qnx.qcc.option.compiler.shared.1730794003"
superClass="com.qnx.qcc.option.compiler.shared" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.optlevel.473996000"
superClass="com.qnx.qcc.option.compiler.optlevel"
value="com.qnx.qcc.option.compiler.optlevel.0" valueType="enumerated"/>
- <option
id="com.qnx.qcc.option.compile.debug.1198148025"
superClass="com.qnx.qcc.option.compile.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.coverage.279342737"
superClass="com.qnx.qcc.option.compiler.coverage" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.includePath.423607238"
superClass="com.qnx.qcc.option.compiler.includePath" valueType="includePath">
-
<listOptionValue builtIn="false" value="${workspace_loc:/${ProjName}/public}"/>
-
<listOptionValue builtIn="false" value="${QNX_TARGET}/usr/include/freetype2"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/usr/include"/>
- </option>
- <option
id="com.qnx.qcc.option.compiler.security.1167771303"
superClass="com.qnx.qcc.option.compiler.security" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.defines.799285689"
superClass="com.qnx.qcc.option.compiler.defines" valueType="definedSymbols">
-
<listOptionValue builtIn="false" value="_FORTIFY_SOURCE=2"/>
- </option>
- <inputType
id="com.qnx.qcc.inputType.compiler.324050984"
superClass="com.qnx.qcc.inputType.compiler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.assembler.562556707" name="QCC Assembler"
superClass="com.qnx.qcc.tool.assembler">
- <option
id="com.qnx.qcc.option.assembler.debug.14550501"
superClass="com.qnx.qcc.option.assembler.debug" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.assembler.1035459541"
superClass="com.qnx.qcc.inputType.assembler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.linker.1249852141" name="QCC Linker"
superClass="com.qnx.qcc.tool.linker">
- <option
id="com.qnx.qcc.option.linker.debug.91523793"
superClass="com.qnx.qcc.option.linker.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.coverage.240724101"
superClass="com.qnx.qcc.option.linker.coverage" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.shared.537604163"
superClass="com.qnx.qcc.option.linker.shared" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.langcpp.624009065"
superClass="com.qnx.qcc.option.linker.langcpp" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.libraryPaths.156619993"
superClass="com.qnx.qcc.option.linker.libraryPaths" valueType="libPaths">
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/lib"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/usr/lib"/>
- </option>
- <option
id="com.qnx.qcc.option.linker.security.1731541195"
superClass="com.qnx.qcc.option.linker.security" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.linker.281780675"
superClass="com.qnx.qcc.inputType.linker">
-
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
-
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
- </inputType>
- </tool>
- <tool
id="com.qnx.qcc.tool.archiver.1056642758" name="QCC Archiver"
superClass="com.qnx.qcc.tool.archiver"/>
- </toolChain>
- </folderInfo>
- <sourceEntries>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="src"/>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="public"/>
- </sourceEntries>
- </configuration>
- </storageModule>
- <storageModule
moduleId="org.eclipse.cdt.core.externalSettings"/>
- </cconfiguration>
- <cconfiguration
id="com.qnx.qcc.configuration.sharedLib.debug.318750407">
- <storageModule
buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider"
id="com.qnx.qcc.configuration.sharedLib.debug.318750407"
moduleId="org.eclipse.cdt.core.settings" name="Simulator-Debug">
- <externalSettings>
- <externalSetting>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/Vibration/public"/>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="libraryPath"
name="/Vibration/Simulator-Debug"/>
- <entry flags=""
kind="libraryFile" name="Vibration" srcPrefixMapping="" srcRootPath=""/>
- </externalSetting>
- </externalSettings>
- <extensions>
- <extension
id="com.qnx.tools.ide.qde.core.QDEBynaryParser"
point="org.eclipse.cdt.core.BinaryParser"/>
- <extension
id="com.qnx.tools.ide.qde.core.QDELinkerErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GCCErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GLDErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- </extensions>
- </storageModule>
- <storageModule moduleId="cdtBuildSystem"
version="4.0.0">
- <configuration artifactExtension="so"
artifactName="${ProjName}"
buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
buildProperties="org.eclipse.cdt.build.core.buildType=org.eclipse.cdt.build.core.buildType.debug,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
description="" id="com.qnx.qcc.configuration.sharedLib.debug.318750407"
name="Simulator-Debug" parent="com.qnx.qcc.configuration.sharedLib.debug">
- <folderInfo
id="com.qnx.qcc.configuration.sharedLib.debug.318750407." name="/"
resourcePath="">
- <toolChain
id="com.qnx.qcc.toolChain.sharedLib.debug.469135654" name="QNX QCC"
superClass="com.qnx.qcc.toolChain">
- <targetPlatform
archList="all" binaryParser="com.qnx.tools.ide.qde.core.QDEBynaryParser"
id="com.qnx.qcc.targetPlatform.603547490" osList="all"
superClass="com.qnx.qcc.targetPlatform"/>
- <builder
buildPath="${workspace_loc:/Vibration}/Simulator-Debug"
id="com.qnx.nto.617065941" keepEnvironmentInBuildfile="false" name="CDT
Internal Builder.Debug" parallelBuildOn="true" parallelizationNumber="optimal"
superClass="com.qnx.nto"/>
- <tool
id="com.qnx.qcc.tool.compiler.275711021" name="QCC Compiler"
superClass="com.qnx.qcc.tool.compiler">
- <option
id="com.qnx.qcc.option.compiler.shared.2083417607"
superClass="com.qnx.qcc.option.compiler.shared" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.optlevel.1329689874"
superClass="com.qnx.qcc.option.compiler.optlevel"
value="com.qnx.qcc.option.compiler.optlevel.0" valueType="enumerated"/>
- <option
id="com.qnx.qcc.option.compile.debug.300609140"
superClass="com.qnx.qcc.option.compile.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.includePath.1025907475"
superClass="com.qnx.qcc.option.compiler.includePath" valueType="includePath">
-
<listOptionValue builtIn="false" value="${workspace_loc:/${ProjName}/public}"/>
-
<listOptionValue builtIn="false" value="${QNX_TARGET}/usr/include/freetype2"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/usr/include"/>
- </option>
- <option
id="com.qnx.qcc.option.compiler.security.1239055828"
superClass="com.qnx.qcc.option.compiler.security" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.defines.2050551984"
superClass="com.qnx.qcc.option.compiler.defines" valueType="definedSymbols">
-
<listOptionValue builtIn="false" value="_FORTIFY_SOURCE=2"/>
- </option>
- <inputType
id="com.qnx.qcc.inputType.compiler.1442442859"
superClass="com.qnx.qcc.inputType.compiler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.assembler.1971343031" name="QCC Assembler"
superClass="com.qnx.qcc.tool.assembler">
- <option
id="com.qnx.qcc.option.assembler.debug.1818701561"
superClass="com.qnx.qcc.option.assembler.debug" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.assembler.262556017"
superClass="com.qnx.qcc.inputType.assembler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.linker.1511042630" name="QCC Linker"
superClass="com.qnx.qcc.tool.linker">
- <option
id="com.qnx.qcc.option.linker.debug.470782220"
superClass="com.qnx.qcc.option.linker.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.shared.1667356098"
superClass="com.qnx.qcc.option.linker.shared" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.langcpp.1195851133"
superClass="com.qnx.qcc.option.linker.langcpp" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.libraryPaths.29130917"
superClass="com.qnx.qcc.option.linker.libraryPaths" valueType="libPaths">
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/lib"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/usr/lib"/>
- </option>
- <option
id="com.qnx.qcc.option.linker.security.372829751"
superClass="com.qnx.qcc.option.linker.security" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.linker.1264830362"
superClass="com.qnx.qcc.inputType.linker">
-
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
-
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
- </inputType>
- </tool>
- <tool
id="com.qnx.qcc.tool.archiver.1549000616" name="QCC Archiver"
superClass="com.qnx.qcc.tool.archiver"/>
- </toolChain>
- </folderInfo>
- <sourceEntries>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="src"/>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="public"/>
- </sourceEntries>
- </configuration>
- </storageModule>
- <storageModule
moduleId="org.eclipse.cdt.core.externalSettings"/>
- </cconfiguration>
- <cconfiguration
id="com.qnx.qcc.configuration.sharedLib.profile.2026630093">
- <storageModule
buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider"
id="com.qnx.qcc.configuration.sharedLib.profile.2026630093"
moduleId="org.eclipse.cdt.core.settings" name="Simulator-Profile">
- <externalSettings>
- <externalSetting>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/Vibration/public"/>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="libraryPath"
name="/Vibration/Simulator-Profile"/>
- <entry flags=""
kind="libraryFile" name="Vibration" srcPrefixMapping="" srcRootPath=""/>
- </externalSetting>
- </externalSettings>
- <extensions>
- <extension
id="com.qnx.tools.ide.qde.core.QDEBynaryParser"
point="org.eclipse.cdt.core.BinaryParser"/>
- <extension
id="com.qnx.tools.ide.qde.core.QDELinkerErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GCCErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GLDErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- </extensions>
- </storageModule>
- <storageModule moduleId="cdtBuildSystem"
version="4.0.0">
- <configuration artifactExtension="so"
artifactName="${ProjName}"
buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
buildProperties="org.eclipse.cdt.build.core.buildType=com.qnx.buildType.profile,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
description="Build for Profiling"
id="com.qnx.qcc.configuration.sharedLib.profile.2026630093"
name="Simulator-Profile" parent="com.qnx.qcc.configuration.sharedLib.profile">
- <folderInfo
id="com.qnx.qcc.configuration.sharedLib.profile.2026630093." name="/"
resourcePath="">
- <toolChain
id="com.qnx.qcc.toolChain.sharedLib.profile.1556550840" name="QNX QCC"
superClass="com.qnx.qcc.toolChain">
- <targetPlatform
archList="all" binaryParser="com.qnx.tools.ide.qde.core.QDEBynaryParser"
id="com.qnx.qcc.targetPlatform.792046885" osList="all"
superClass="com.qnx.qcc.targetPlatform"/>
- <builder
buildPath="${workspace_loc:/Vibration}/Simulator-Profile"
id="com.qnx.nto.1026624341" keepEnvironmentInBuildfile="false" name="CDT
Internal Builder.Profile" parallelBuildOn="true"
parallelizationNumber="optimal" superClass="com.qnx.nto"/>
- <tool
id="com.qnx.qcc.tool.compiler.465539195" name="QCC Compiler"
superClass="com.qnx.qcc.tool.compiler">
- <option
id="com.qnx.qcc.option.compiler.shared.268803332"
superClass="com.qnx.qcc.option.compiler.shared" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.optlevel.435310067"
superClass="com.qnx.qcc.option.compiler.optlevel"
value="com.qnx.qcc.option.compiler.optlevel.0" valueType="enumerated"/>
- <option
id="com.qnx.qcc.option.compile.debug.1617979862"
superClass="com.qnx.qcc.option.compile.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.profile2.1848276705"
superClass="com.qnx.qcc.option.compiler.profile2" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.includePath.362396476"
superClass="com.qnx.qcc.option.compiler.includePath" valueType="includePath">
-
<listOptionValue builtIn="false" value="${workspace_loc:/${ProjName}/public}"/>
-
<listOptionValue builtIn="false" value="${QNX_TARGET}/usr/include/freetype2"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/usr/include"/>
- </option>
- <option
id="com.qnx.qcc.option.compiler.security.900632224"
superClass="com.qnx.qcc.option.compiler.security" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.defines.1404187270"
superClass="com.qnx.qcc.option.compiler.defines" valueType="definedSymbols">
-
<listOptionValue builtIn="false" value="_FORTIFY_SOURCE=2"/>
- </option>
- <inputType
id="com.qnx.qcc.inputType.compiler.1980742037"
superClass="com.qnx.qcc.inputType.compiler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.assembler.2046179860" name="QCC Assembler"
superClass="com.qnx.qcc.tool.assembler">
- <option
id="com.qnx.qcc.option.assembler.debug.1728123212"
superClass="com.qnx.qcc.option.assembler.debug" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.assembler.1163089150"
superClass="com.qnx.qcc.inputType.assembler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.linker.54496955" name="QCC Linker"
superClass="com.qnx.qcc.tool.linker">
- <option
id="com.qnx.qcc.option.linker.debug.1533171992"
superClass="com.qnx.qcc.option.linker.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.profile2.420100114"
superClass="com.qnx.qcc.option.linker.profile2" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.shared.1394492179"
superClass="com.qnx.qcc.option.linker.shared" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.langcpp.1888189753"
superClass="com.qnx.qcc.option.linker.langcpp" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.libraryPaths.1535608973"
superClass="com.qnx.qcc.option.linker.libraryPaths" valueType="libPaths">
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/lib"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/usr/lib"/>
- </option>
- <option
id="com.qnx.qcc.option.linker.security.235501299"
superClass="com.qnx.qcc.option.linker.security" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.linker.617653803"
superClass="com.qnx.qcc.inputType.linker">
-
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
-
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
- </inputType>
- </tool>
- <tool
id="com.qnx.qcc.tool.archiver.607513860" name="QCC Archiver"
superClass="com.qnx.qcc.tool.archiver"/>
- </toolChain>
- </folderInfo>
- <sourceEntries>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="src"/>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="public"/>
- </sourceEntries>
- </configuration>
- </storageModule>
- <storageModule
moduleId="org.eclipse.cdt.core.externalSettings"/>
- </cconfiguration>
- <cconfiguration
id="com.qnx.qcc.configuration.sharedLib.coverage.1737845529">
- <storageModule
buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider"
id="com.qnx.qcc.configuration.sharedLib.coverage.1737845529"
moduleId="org.eclipse.cdt.core.settings" name="Simulator-Coverage">
- <externalSettings>
- <externalSetting>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="includePath" name="/Vibration/public"/>
- <entry
flags="VALUE_WORKSPACE_PATH" kind="libraryPath"
name="/Vibration/Simulator-Coverage"/>
- <entry flags=""
kind="libraryFile" name="Vibration" srcPrefixMapping="" srcRootPath=""/>
- </externalSetting>
- </externalSettings>
- <extensions>
- <extension
id="com.qnx.tools.ide.qde.core.QDEBynaryParser"
point="org.eclipse.cdt.core.BinaryParser"/>
- <extension
id="com.qnx.tools.ide.qde.core.QDELinkerErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GCCErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- <extension
id="org.eclipse.cdt.core.GLDErrorParser"
point="org.eclipse.cdt.core.ErrorParser"/>
- </extensions>
- </storageModule>
- <storageModule moduleId="cdtBuildSystem"
version="4.0.0">
- <configuration artifactExtension="so"
artifactName="${ProjName}"
buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
buildProperties="org.eclipse.cdt.build.core.buildType=com.qnx.buildType.coverage,org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.sharedLib"
description="Build with Code Coverage"
id="com.qnx.qcc.configuration.sharedLib.coverage.1737845529"
name="Simulator-Coverage" parent="com.qnx.qcc.configuration.sharedLib.coverage">
- <folderInfo
id="com.qnx.qcc.configuration.sharedLib.coverage.1737845529." name="/"
resourcePath="">
- <toolChain
id="com.qnx.qcc.toolChain.sharedLib.coverage.813560014" name="QNX QCC"
superClass="com.qnx.qcc.toolChain">
- <targetPlatform
archList="all" binaryParser="com.qnx.tools.ide.qde.core.QDEBynaryParser"
id="com.qnx.qcc.targetPlatform.2059487021" osList="all"
superClass="com.qnx.qcc.targetPlatform"/>
- <builder
buildPath="${workspace_loc:/Vibration}/Simulator-Coverage"
id="com.qnx.nto.1697138981" keepEnvironmentInBuildfile="false" name="CDT
Internal Builder.Coverage" parallelBuildOn="true"
parallelizationNumber="optimal" superClass="com.qnx.nto"/>
- <tool
id="com.qnx.qcc.tool.compiler.632222624" name="QCC Compiler"
superClass="com.qnx.qcc.tool.compiler">
- <option
id="com.qnx.qcc.option.compiler.shared.1095559068"
superClass="com.qnx.qcc.option.compiler.shared" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.optlevel.1930203142"
superClass="com.qnx.qcc.option.compiler.optlevel"
value="com.qnx.qcc.option.compiler.optlevel.0" valueType="enumerated"/>
- <option
id="com.qnx.qcc.option.compile.debug.578985773"
superClass="com.qnx.qcc.option.compile.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.coverage.1160044272"
superClass="com.qnx.qcc.option.compiler.coverage" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.includePath.1573089856"
superClass="com.qnx.qcc.option.compiler.includePath" valueType="includePath">
-
<listOptionValue builtIn="false" value="${workspace_loc:/${ProjName}/public}"/>
-
<listOptionValue builtIn="false" value="${QNX_TARGET}/usr/include/freetype2"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/usr/include"/>
- </option>
- <option
id="com.qnx.qcc.option.compiler.security.231036501"
superClass="com.qnx.qcc.option.compiler.security" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.compiler.defines.1066744967"
superClass="com.qnx.qcc.option.compiler.defines" valueType="definedSymbols">
-
<listOptionValue builtIn="false" value="_FORTIFY_SOURCE=2"/>
- </option>
- <inputType
id="com.qnx.qcc.inputType.compiler.1022269077"
superClass="com.qnx.qcc.inputType.compiler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.assembler.1479728358" name="QCC Assembler"
superClass="com.qnx.qcc.tool.assembler">
- <option
id="com.qnx.qcc.option.assembler.debug.626730276"
superClass="com.qnx.qcc.option.assembler.debug" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.assembler.722608186"
superClass="com.qnx.qcc.inputType.assembler"/>
- </tool>
- <tool
id="com.qnx.qcc.tool.linker.56068196" name="QCC Linker"
superClass="com.qnx.qcc.tool.linker">
- <option
id="com.qnx.qcc.option.linker.debug.1597589951"
superClass="com.qnx.qcc.option.linker.debug" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.coverage.1244601678"
superClass="com.qnx.qcc.option.linker.coverage" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.shared.1289066697"
superClass="com.qnx.qcc.option.linker.shared" value="true" valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.langcpp.1640677180"
superClass="com.qnx.qcc.option.linker.langcpp" value="true"
valueType="boolean"/>
- <option
id="com.qnx.qcc.option.linker.libraryPaths.429486871"
superClass="com.qnx.qcc.option.linker.libraryPaths" valueType="libPaths">
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/lib"/>
-
<listOptionValue builtIn="false"
value="${QNX_TARGET}/../target-override/${CPUVARDIR}/usr/lib"/>
- </option>
- <option
id="com.qnx.qcc.option.linker.security.227221019"
superClass="com.qnx.qcc.option.linker.security" value="true"
valueType="boolean"/>
- <inputType
id="com.qnx.qcc.inputType.linker.1443697759"
superClass="com.qnx.qcc.inputType.linker">
-
<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>
-
<additionalInput kind="additionalinput" paths="$(LIBS)"/>
- </inputType>
- </tool>
- <tool
id="com.qnx.qcc.tool.archiver.973736251" name="QCC Archiver"
superClass="com.qnx.qcc.tool.archiver"/>
- </toolChain>
- </folderInfo>
- <sourceEntries>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="src"/>
- <entry
flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="public"/>
- </sourceEntries>
- </configuration>
- </storageModule>
- <storageModule
moduleId="org.eclipse.cdt.core.externalSettings"/>
- </cconfiguration>
- </storageModule>
- <storageModule moduleId="cdtBuildSystem" version="4.0.0">
- <project id="Vibration.null.2116773605" name="Vibration"/>
- </storageModule>
- <storageModule moduleId="scannerConfiguration">
- <autodiscovery enabled="true" problemReportingEnabled="true"
selectedProfileId="com.qnx.tools.ide.qde.managedbuilder.core.qccScannerInfo"/>
- <scannerConfigBuildInfo
instanceId="com.qnx.qcc.configuration.sharedLib.coverage.1669049686">
- <autodiscovery enabled="true"
problemReportingEnabled="true"
selectedProfileId="com.qnx.tools.ide.qde.managedbuilder.core.qccScannerInfo"/>
- </scannerConfigBuildInfo>
- <scannerConfigBuildInfo
instanceId="com.qnx.qcc.configuration.sharedLib.coverage.1737845529">
- <autodiscovery enabled="true"
problemReportingEnabled="true"
selectedProfileId="com.qnx.tools.ide.qde.managedbuilder.core.qccScannerInfo"/>
- </scannerConfigBuildInfo>
- <scannerConfigBuildInfo
instanceId="com.qnx.qcc.configuration.sharedLib.profile.2026630093">
- <autodiscovery enabled="true"
problemReportingEnabled="true"
selectedProfileId="com.qnx.tools.ide.qde.managedbuilder.core.qccScannerInfo"/>
- </scannerConfigBuildInfo>
- <scannerConfigBuildInfo
instanceId="com.qnx.qcc.configuration.sharedLib.debug.377515531">
- <autodiscovery enabled="true"
problemReportingEnabled="true"
selectedProfileId="com.qnx.tools.ide.qde.managedbuilder.core.qccScannerInfo"/>
- </scannerConfigBuildInfo>
- <scannerConfigBuildInfo
instanceId="com.qnx.qcc.configuration.sharedLib.release.655086625">
- <autodiscovery enabled="true"
problemReportingEnabled="true"
selectedProfileId="com.qnx.tools.ide.qde.managedbuilder.core.qccScannerInfo"/>
- </scannerConfigBuildInfo>
- <scannerConfigBuildInfo
instanceId="com.qnx.qcc.configuration.sharedLib.debug.318750407">
- <autodiscovery enabled="true"
problemReportingEnabled="true"
selectedProfileId="com.qnx.tools.ide.qde.managedbuilder.core.qccScannerInfo"/>
- </scannerConfigBuildInfo>
- <scannerConfigBuildInfo
instanceId="com.qnx.qcc.configuration.sharedLib.profile.1631657520">
- <autodiscovery enabled="true"
problemReportingEnabled="true"
selectedProfileId="com.qnx.tools.ide.qde.managedbuilder.core.qccScannerInfo"/>
- </scannerConfigBuildInfo>
- </storageModule>
- <storageModule
moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
-</cproject>
diff --git a/src/blackberry10/native/.project b/src/blackberry10/native/.project
deleted file mode 100644
index b392177..0000000
--- a/src/blackberry10/native/.project
+++ /dev/null
@@ -1,51 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you 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.
--->
-<projectDescription>
- <name>Vibration</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
-
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
- <triggers>clean,full,incremental,</triggers>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
-
<name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>
- <triggers>full,incremental,</triggers>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
-
<name>com.qnx.tools.bbt.xml.core.bbtXMLValidationBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.cdt.core.cnature</nature>
-
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
-
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
- <nature>com.qnx.tools.ide.bbt.core.bbtnature</nature>
- <nature>org.eclipse.cdt.core.ccnature</nature>
- </natures>
-</projectDescription>
diff --git a/src/blackberry10/native/device/libVibration.so
b/src/blackberry10/native/device/libVibration.so
deleted file mode 100644
index 5be1343..0000000
Binary files a/src/blackberry10/native/device/libVibration.so and /dev/null
differ
diff --git a/src/blackberry10/native/public/plugin.cpp
b/src/blackberry10/native/public/plugin.cpp
deleted file mode 100644
index 94a9ddd..0000000
--- a/src/blackberry10/native/public/plugin.cpp
+++ /dev/null
@@ -1,341 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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 "plugin.h"
-#include "tokenizer.h"
-
-#ifdef _WINDOWS
-#include <windows.h>
-BOOL APIENTRY DllMain( HANDLE hModule,
- DWORD ul_reason_for_call,
- LPVOID lpReserved )
-{
- return TRUE;
-}
-#else
-#include <errno.h>
-#include <string.h>
-
-extern int errno;
-#endif
-
-SendPluginEv SendPluginEvent;
-
-string g_GetSysErrMsg( void )
-{
- string strError = "Unknown";
- // Problem loading
-#ifdef _WINDOWS
- int nErrorCode = GetLastError();
- LPTSTR s;
- if ( ::FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM,
- NULL, nErrorCode, 0, ( LPTSTR ) &s, 0, NULL ) )
- {
- strError = s;
- }
- else
- {
- char szBuf[ 20 ];
- _snprintf_s( szBuf, _countof(szBuf), 19, "%d", nErrorCode );
- strError = szBuf;
- }
-#else
- char szError[80];
- if ( strerror_r( errno, szError, sizeof(szError) ) )
- {
- strError = "no description found";
- }
- else
- {
- strError = szError;
- }
-#endif
- return strError;
-}
-
-void g_sleep( unsigned int mseconds )
-{
-#ifdef _WINDOWS
- Sleep( mseconds );
-#else
- usleep( mseconds * 1000 );
-#endif
-}
-
-string& g_trim( string& str )
-{
- // Whitespace characters
- char whspc[] = " \t\r\n\v\f";
-
- // Whack off first part
- size_t pos = str.find_first_not_of( whspc );
-
- if ( pos != string::npos )
- str.replace( 0, pos, "" );
-
- // Whack off trailing stuff
- pos = str.find_last_not_of( whspc );
-
- if ( pos != string::npos )
- str.replace( pos + 1, str.length() - pos, "" );
-
- return str;
-}
-
-void g_tokenize( const string& str, const string& delimiters, vector<string>&
tokens )
-{
- tokenize( str, tokens, delimiters );
-}
-
-char* SetEventFunc( SendPluginEv funcPtr )
-{
- static char * szObjList = onGetObjList();
- SendPluginEvent = funcPtr;
- return szObjList;
-}
-
-
-const int nMAXSIZE = 512;
-char* g_pszRetVal = NULL;
-
-//-----------------------------------------------------------
-// Map from an object Id to an object instance
-//-----------------------------------------------------------
-typedef std::map<string, JSExt*> StringToJExt_T;
-
-//-----------------------------------------------------------
-// Map from a browser context to an id mapping
-//-----------------------------------------------------------
-typedef std::map<void*, StringToJExt_T*> VoidToMap_T;
-
-VoidToMap_T g_context2Map;
-
-class GlobalSharedModule
-{
-
-public:
- GlobalSharedModule( void )
- {
- g_pszRetVal = new char[ nMAXSIZE ];
- }
-
- ~GlobalSharedModule()
- {
- delete [] g_pszRetVal;
-
- VoidToMap_T::iterator posMaps;
-
- for ( posMaps = g_context2Map.begin(); posMaps != g_context2Map.end();
++posMaps )
- {
- StringToJExt_T& id2Obj = *posMaps->second;
- StringToJExt_T::iterator posMap;
-
- for ( posMap = id2Obj.begin(); posMap != id2Obj.end(); ++posMap )
- {
- JSExt* pJSExt = posMap->second;
-
- if ( pJSExt->CanDelete() )
- {
- delete pJSExt;
- }
- }
-
- id2Obj.erase( id2Obj.begin(), id2Obj.end() );
- }
-
- g_context2Map.erase( g_context2Map.begin(), g_context2Map.end() );
- }
-};
-
-GlobalSharedModule g_sharedModule;
-
-char* g_str2global( const string& strRetVal )
-{
- int nLen = strRetVal.size();
-
- if ( nLen >= nMAXSIZE )
- {
- delete [] g_pszRetVal;
- g_pszRetVal = new char[ nLen + 1 ];
- }
-
- else
- {
- // To minimaize the number of memory reallocations, the assumption
- // is that in most times this will be the case
- delete [] g_pszRetVal;
- g_pszRetVal = new char[ nMAXSIZE ];
- }
-
- strcpy( g_pszRetVal, strRetVal.c_str() );
- return g_pszRetVal;
-}
-
-bool g_unregisterObject( const string& strObjId, void* pContext )
-{
- // Called by the plugin extension implementation
- // if the extension handles the deletion of its object
-
- StringToJExt_T * pID2Obj = NULL;
-
- VoidToMap_T::iterator iter = g_context2Map.find( pContext );
-
- if ( iter != g_context2Map.end() )
- {
- pID2Obj = iter->second;
- }
- else
- {
- return false;
- }
-
- StringToJExt_T& mapID2Obj = *pID2Obj;
-
- StringToJExt_T::iterator r = mapID2Obj.find( strObjId );
-
- if ( r == mapID2Obj.end() )
- {
- return false;
- }
-
- mapID2Obj.erase( strObjId );
- return true;
-}
-
-char* InvokeFunction( const char* szCommand, void* pContext )
-{
- StringToJExt_T * pID2Obj = NULL;
-
- VoidToMap_T::iterator iter = g_context2Map.find( pContext );
-
- if ( iter != g_context2Map.end() )
- {
- pID2Obj = iter->second;
- }
- else
- {
- pID2Obj = new StringToJExt_T;
- g_context2Map[ pContext ] = pID2Obj;
- }
-
- StringToJExt_T& mapID2Obj = *pID2Obj;
-
- string strFullCommand = szCommand;
- vector<string> arParams;
- g_tokenize( strFullCommand, " ", arParams );
- string strCommand = arParams[ 0 ];
- string strRetVal = szERROR;
-
- if ( strCommand == szCREATE )
- {
- string strClassName = arParams[ 1 ];
- string strObjId = arParams[ 2 ];
-
- StringToJExt_T::iterator r = mapID2Obj.find( strObjId );
-
- if ( r != mapID2Obj.end() )
- {
- strRetVal += strObjId;
- strRetVal += " :Object already exists.";
- return g_str2global( strRetVal );
- }
-
- JSExt* pJSExt = onCreateObject( strClassName, strObjId );
-
- if ( pJSExt == NULL )
- {
- strRetVal += strObjId;
- strRetVal += " :Unknown object type ";
- strRetVal += strClassName;
- return g_str2global( strRetVal );
- }
-
- pJSExt->m_pContext = pContext;
- mapID2Obj[ strObjId ] = pJSExt;
-
- strRetVal = szOK;
- strRetVal += strObjId;
- return g_str2global( strRetVal );
- }
- else
- if ( strCommand == szINVOKE )
- {
- string strObjId = arParams[ 1 ];
- string strMethod = arParams[ 2 ];
-
- StringToJExt_T::iterator r = mapID2Obj.find( strObjId );
-
- if ( r == mapID2Obj.end() )
- {
- strRetVal += strObjId;
- strRetVal += " :No object found for id.";
- return g_str2global( strRetVal );
- }
-
- JSExt* pJSExt = r->second;
-
- size_t nLoc = strFullCommand.find( strObjId );
-
- if ( nLoc == string::npos )
- {
- strRetVal += strObjId;
- strRetVal += " :Internal InvokeMethod error.";
- return g_str2global( strRetVal );
- }
-
- if ( strMethod == szDISPOSE )
- {
- StringToJExt_T::iterator r = mapID2Obj.find( strObjId );
-
- if ( r == mapID2Obj.end() )
- {
- strRetVal = szERROR;
- strRetVal += strObjId;
- return g_str2global( strRetVal );
- }
-
- JSExt * pJSExt = mapID2Obj[ strObjId ];
-
- if ( pJSExt->CanDelete() )
- {
- delete pJSExt;
- }
-
- mapID2Obj.erase( strObjId );
- strRetVal = szOK;
- strRetVal += strObjId;
- return g_str2global( strRetVal );
- }
-
- size_t nSuffixLoc = nLoc + strObjId.size();
- string strInvoke = strFullCommand.substr( nSuffixLoc );
- strInvoke = g_trim( strInvoke );
- strRetVal = pJSExt->InvokeMethod( strInvoke );
- return g_str2global( strRetVal );
- }
-
- strRetVal += " :Unknown command ";
- strRetVal += strCommand;
- return g_str2global( strRetVal );
-}
-
-//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
diff --git a/src/blackberry10/native/public/plugin.h
b/src/blackberry10/native/public/plugin.h
deleted file mode 100644
index 48eb44b..0000000
--- a/src/blackberry10/native/public/plugin.h
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- *
-*/
-
-#ifndef _PLUGIN_H
-#define _PLUGIN_H
-
-#include <map>
-#include <string>
-#include <vector>
-#include <unistd.h>
-//#include "tokenizer.h"
-
-using namespace std;
-
-//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-//%% Functions exported by this DLL
-//%% Should always be only SetEventFunc and InvokeFunction
-//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-// g++ requires extern "C" otherwise the names of SetEventFunc and
InvokeFunction
-// are mangled C++ style. MS Visual Studio doesn't seem to care though.
-extern "C"
-{
- typedef void (*SendPluginEv)( const char* szEvent, void* pContext );
- char* SetEventFunc(SendPluginEv funcPtr);
- char* InvokeFunction( const char* szCommand, void* pContext );
-}
-
-// JNEXT Framework function of the form:
-// typedef void (*SendPluginEv)( const char* szEvent );
-// used to notify JavaScript of an asynchronous event
-extern SendPluginEv SendPluginEvent;
-
-/////////////////////////////////////////////////////////////////////////
-// Constants and methods common to all JNEXT extensions types
-/////////////////////////////////////////////////////////////////////////
-#define szERROR "Error "
-#define szOK "Ok "
-
-#define szDISPOSE "Dispose"
-#define szINVOKE "InvokeMethod"
-#define szCREATE "CreateObj"
-
-/////////////////////////////////////////////////////////////////////////
-// Utility functions
-/////////////////////////////////////////////////////////////////////////
-string& g_trim( string& str );
-void g_tokenize(const string& str,const string& delimiters, vector<string>&
tokens);
-char* g_str2static( const string& strRetVal );
-void g_sleep( unsigned int mseconds );
-bool g_unregisterObject( const string& strObjId, void* pContext );
-
-
-/////////////////////////////////////////////////////////////////////////
-// Abstract extension object
-/////////////////////////////////////////////////////////////////////////
-class JSExt
-{
-public:
- virtual ~JSExt() {};
- virtual string InvokeMethod( const string& strCommand ) = 0;
- virtual bool CanDelete( void ) = 0;
- virtual void TryDelete( void ) {}
-public:
- void* m_pContext;
-};
-
-/////////////////////////////////////////////////////////////////////////
-// Callback functions to be implemented by the plugin implementation
-/////////////////////////////////////////////////////////////////////////
-extern char* onGetObjList( void );
-extern JSExt* onCreateObject( const string& strClassName, const string&
strObjId );
-
-#endif
diff --git a/src/blackberry10/native/public/tokenizer.cpp
b/src/blackberry10/native/public/tokenizer.cpp
deleted file mode 100644
index 4a39573..0000000
--- a/src/blackberry10/native/public/tokenizer.cpp
+++ /dev/null
@@ -1,222 +0,0 @@
-/************************************************************************
-The zlib/libpng License
-
-Copyright (c) 2006 Joerg Wiedenmann
-
-This software is provided 'as-is', without any express or implied warranty.
-In no event will the authors be held liable for any damages arising from
-the use of this software.
-
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to the following restrictions:
-
-1. The origin of this software must not be misrepresented;
-you must not claim that you wrote the original software.
-If you use this software in a product, an acknowledgment
-in the product documentation would be appreciated but is
-not required.
-
-2. Altered source versions must be plainly marked as such,
-and must not be misrepresented as being the original software.
-
-3. This notice may not be removed or altered from any source distribution.
-
-***********************************************************************/
-
-/********************************************************************
- created: 2006-01-28
- filename: tokenizer.cpp
- author: J�rg Wiedenmann
-
- purpose: A tokenizer function which provides a very
- customizable way of breaking up strings.
-
- history: 2006-01-28, Original version
- 2006-03-04, Fixed a small parsing bug, thanks
Elias.
-*********************************************************************/
-
-#include "tokenizer.h"
-
-using namespace std;
-
-void tokenize ( const string& str, vector<string>& result,
- const string& delimiters, const string&
delimiters_preserve,
- const string& quote, const string& esc )
-{
- // clear the vector
- if ( false == result.empty() )
- {
- result.clear();
- }
-
- string::size_type pos = 0; // the current position (char) in the string
- char ch = 0; // buffer for the current character
- char delimiter = 0; // the buffer for the delimiter char which
- // will be added to the
tokens if the delimiter
- // is preserved
- char current_quote = 0; // the char of the current open quote
- bool quoted = false; // indicator if there is an open quote
- string token; // string buffer for the token
- bool token_complete = false; // indicates if the current token is
- // read to be
added to the result vector
- string::size_type len = str.length(); // length of the input-string
-
- // for every char in the input-string
- while ( len > pos )
- {
- // get the character of the string and reset the delimiter
buffer
- ch = str.at(pos);
- delimiter = 0;
-
- // assume ch isn't a delimiter
- bool add_char = true;
-
- // check ...
-
- // ... if the delimiter is an escaped character
- bool escaped = false; // indicates if the next char is protected
- if ( false == esc.empty() ) // check if esc-chars are provided
- {
- if ( string::npos != esc.find_first_of(ch) )
- {
- // get the escaped char
- ++pos;
- if ( pos < len ) // if there are more chars left
- {
- // get the next one
- ch = str.at(pos);
-
- // add the escaped character to the
token
- add_char = true;
- }
- else // cannot get any more characters
- {
- // don't add the esc-char
- add_char = false;
- }
-
- // ignore the remaining delimiter checks
- escaped = true;
- }
- }
-
- // ... if the delimiter is a quote
- if ( false == quote.empty() && false == escaped )
- {
- // if quote chars are provided and the char isn't
protected
- if ( string::npos != quote.find_first_of(ch) )
- {
- // if not quoted, set state to open quote and
set
- // the quote character
- if ( false == quoted )
- {
- quoted = true;
- current_quote = ch;
-
- // don't add the quote-char to the token
- add_char = false;
- }
- else // if quote is open already
- {
- // check if it is the matching
character to close it
- if ( current_quote == ch )
- {
- // close quote and reset the
quote character
- quoted = false;
- current_quote = 0;
-
- // don't add the quote-char to
the token
- add_char = false;
- }
- } // else
- }
- }
-
- // ... if the delimiter isn't preserved
- if ( false == delimiters.empty() && false == escaped &&
- false == quoted )
- {
- // if a delimiter is provided and the char isn't
protected by
- // quote or escape char
- if ( string::npos != delimiters.find_first_of(ch) )
- {
- // if ch is a delimiter and the token string
isn't empty
- // the token is complete
- if ( false == token.empty() ) // BUGFIX:
2006-03-04
- {
- token_complete = true;
- }
-
- // don't add the delimiter to the token
- add_char = false;
- }
- }
-
- // ... if the delimiter is preserved - add it as a token
- bool add_delimiter = false;
- if ( false == delimiters_preserve.empty() && false == escaped &&
- false == quoted )
- {
- // if a delimiter which will be preserved is provided
and the
- // char isn't protected by quote or escape char
- if ( string::npos !=
delimiters_preserve.find_first_of(ch) )
- {
- // if ch is a delimiter and the token string
isn't empty
- // the token is complete
- if ( false == token.empty() ) // BUGFIX:
2006-03-04
- {
- token_complete = true;
- }
-
- // don't add the delimiter to the token
- add_char = false;
-
- // add the delimiter
- delimiter = ch;
- add_delimiter = true;
- }
- }
-
-
- // add the character to the token
- if ( true == add_char )
- {
- // add the current char
- token.push_back( ch );
- }
-
- // add the token if it is complete
- if ( true == token_complete && false == token.empty() )
- {
- // add the token string
- result.push_back( token );
-
- // clear the contents
- token.clear();
-
- // build the next token
- token_complete = false;
- }
-
- // add the delimiter
- if ( true == add_delimiter )
- {
- // the next token is the delimiter
- string delim_token;
- delim_token.push_back( delimiter );
- result.push_back( delim_token );
-
- // REMOVED: 2006-03-04, Bugfix
- }
-
- // repeat for the next character
- ++pos;
- } // while
-
- // add the final token
- if ( false == token.empty() )
- {
- result.push_back( token );
- }
-}
diff --git a/src/blackberry10/native/public/tokenizer.h
b/src/blackberry10/native/public/tokenizer.h
deleted file mode 100644
index 75f567c..0000000
--- a/src/blackberry10/native/public/tokenizer.h
+++ /dev/null
@@ -1,55 +0,0 @@
-/************************************************************************
-The zlib/libpng License
-
-Copyright (c) 2006 Joerg Wiedenmann
-
-This software is provided 'as-is', without any express or implied warranty.
-In no event will the authors be held liable for any damages arising from
-the use of this software.
-
-Permission is granted to anyone to use this software for any purpose,
-including commercial applications, and to alter it and redistribute it
-freely, subject to the following restrictions:
-
-1. The origin of this software must not be misrepresented;
- you must not claim that you wrote the original software.
- If you use this software in a product, an acknowledgment
- in the product documentation would be appreciated but is
- not required.
-
-2. Altered source versions must be plainly marked as such,
- and must not be misrepresented as being the original software.
-
-3. This notice may not be removed or altered from any source distribution.
-
-***********************************************************************/
-
-/********************************************************************
- created: 2006-01-28
- filename: tokenizer.cpp
- author: J�rg Wiedenmann
-
- purpose: A tokenizer function which provides a very
- customizable way of breaking up strings.
-*********************************************************************/
-
-#include <vector>
-#include <string>
-using namespace std;
-
-// Function to break up a string into tokens
-//
-// Parameters:
-//-----------
-// str = the input string that will be tokenized
-// result = the tokens for str
-// delimiters = the delimiter characters
-// delimiters preserve = same as above, but the delimiter characters
-// will be put into the result as a token
-// quote = characters to protect the enclosed characters
-// esc = characters to protect a single character
-//
-
-void tokenize ( const string& str, vector<string>& result,
- const string& delimiters, const string&
delimiters_preserve = "",
- const string& quote = "\"", const string& esc = "\\" );
diff --git a/src/blackberry10/native/simulator/libVibration.so
b/src/blackberry10/native/simulator/libVibration.so
deleted file mode 100644
index 2466ad0..0000000
Binary files a/src/blackberry10/native/simulator/libVibration.so and /dev/null
differ
diff --git a/src/blackberry10/native/src/vibration_js.cpp
b/src/blackberry10/native/src/vibration_js.cpp
deleted file mode 100644
index fa342d8..0000000
--- a/src/blackberry10/native/src/vibration_js.cpp
+++ /dev/null
@@ -1,116 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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 <string>
-#include <sstream>
-#include <sys/stat.h>
-#include <sys/types.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include "vibration_js.hpp"
-#include <bps/vibration.h>
-
-using namespace std;
-
-/**
- * Default constructor.
- */
-Vibration::Vibration(const std::string& id) : m_id(id){
- bps_initialize();
-}
-
-/**
- * Vibration destructor.
- */
-Vibration::~Vibration() {
- bps_shutdown();
-}
-
-/**
- * This method returns the list of objects implemented by this native
extension.
- */
-char* onGetObjList() {
- static char name[] = "Vibration";
- return name;
-}
-
-/**
- * This method is used by JNext to instantiate the Vibration object when
- * an object is created on the JavaScript server side.
- */
-JSExt* onCreateObject(const string& className, const string& id) {
- if (className == "Vibration") {
- return new Vibration(id);
- }
- return NULL;
-}
-
-/**
- * Method used by JNext to determine if the object can be deleted.
- */
-bool Vibration::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 Vibration::InvokeMethod(const string& command) {
-
- // parse command and args from string
- int indexOfFirstSpace = command.find_first_of(" ");
- string strCommand = command.substr(0, indexOfFirstSpace);
- string strValue = command.substr(indexOfFirstSpace + 1, command.length());
- char info[1024];
-
- //Process the vibrate command
- if (strCommand == "vibrate") {
- //Get the duration
- int duration = atoi(strValue.substr(0, strValue.length()).c_str());
-
- if (duration <= 0) {
- //Default to 1 second
- duration = 1000;
- } else if (duration > 5000) {
- //Max 5 seconds
- duration = 5000;
- }
-
- //Vibrate
- int value = vibration_request(VIBRATION_INTENSITY_HIGH ,
duration);
-
- //Check return
- if (value == BPS_SUCCESS) {
- sprintf(info, "Vibration successful.");
- } else if(value == BPS_FAILURE) {
- sprintf(info, "Vibration failed.");
- } else {
- sprintf(info, "Vibration unknown error: %d", value);
- }
- return info;
- } else {
- sprintf(info, "Unsupported method: %s", strCommand.c_str());
- }
- return info;
-}
diff --git a/src/blackberry10/native/src/vibration_js.hpp
b/src/blackberry10/native/src/vibration_js.hpp
deleted file mode 100644
index 6c7023f..0000000
--- a/src/blackberry10/native/src/vibration_js.hpp
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- *
-*/
-
-#ifndef VIBRATION_JS_HPP_
-#define VIBRATION_JS_HPP_
-
-#include <string>
-#include "../public/plugin.h"
-
-class Vibration: public JSExt {
-
-public:
- explicit Vibration(const std::string& id);
- virtual ~Vibration();
-
- // Interfaces of JSExt
- virtual bool CanDelete();
- virtual std::string InvokeMethod(const std::string& command);
-
-private:
- std::string m_id;
-};
-
-#endif /* VIBRATION_JS_HPP_ */
diff --git a/src/firefoxos/VibrationProxy.js b/src/firefoxos/VibrationProxy.js
deleted file mode 100644
index d847411..0000000
--- a/src/firefoxos/VibrationProxy.js
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- *
-*/
-
-module.exports = {
-
- vibrate: function (success, fail, milliseconds) {
- if (navigator.notification.vibrate) {
- navigator.vibrate(milliseconds);
- } else {
- console.log('cordova/plugin/firefoxos/vibration, vibrate API does
not exist');
- }
- }
-};
-
-require('cordova/exec/proxy').add('Vibration', module.exports);
diff --git a/src/tizen/VibrationProxy.js b/src/tizen/VibrationProxy.js
deleted file mode 100644
index 53ddd5d..0000000
--- a/src/tizen/VibrationProxy.js
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- *
-*/
-
-module.exports = {
- vibrate: function (milliseconds) {
- if (navigator.vibrate) {
- navigator.vibrate(milliseconds);
- }
- }
-};
-
-require('cordova/tizen/commandProxy').add('Vibration', module.exports);
diff --git a/src/ubuntu/vibration.cpp b/src/ubuntu/vibration.cpp
deleted file mode 100644
index 45c5a83..0000000
--- a/src/ubuntu/vibration.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- *
- * Copyright 2013 Canonical Ltd.
- *
- * 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 "vibration.h"
-
-void Vibration::vibrate(int, int, int mills) {
- QSharedPointer<QFeedbackHapticsEffect> vibrate =
QSharedPointer<QFeedbackHapticsEffect>::create();
- vibrate->setIntensity(1.0);
- vibrate->setDuration(mills);
-
- vibrate->start();
-
- _effects.append(vibrate);
-}
-
-void Vibration::cancelVibration(int, int) {
- _timers.clear();
- _effects.clear();
-}
-
-void Vibration::vibrateWithPattern(int, int, const QList<int> &pattern, int
repeat) {
- QSharedPointer<QTimer> timer = QSharedPointer<QTimer>::create();
- QSharedPointer<int> k = QSharedPointer<int>::create();
-
- QSharedPointer<QFeedbackHapticsEffect> vibrate =
QSharedPointer<QFeedbackHapticsEffect>::create();
- vibrate->setIntensity(1.0);
-
- _effects.append(vibrate);
- _timers.append(timer);
-
- timer->connect(timer.data(), &QTimer::timeout, [=, timer = timer.data()]
() {
- if (*k >= pattern.size()) {
- if (repeat < 0 || repeat >= pattern.size()) {
- timer->stop();
- return;
- }
- *k = repeat;
- }
- bool idle = (*k % 2 == 0);
- if (!idle) {
- vibrate->setDuration(pattern[*k]);
- vibrate->start();
- }
- timer->start(pattern[*k]);
- (*k)++;
- });
- timer->start(1);
-}
diff --git a/src/ubuntu/vibration.h b/src/ubuntu/vibration.h
deleted file mode 100644
index 741b45f..0000000
--- a/src/ubuntu/vibration.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- *
- * Copyright 2013 Canonical Ltd.
- *
- * 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.
- *
-*/
-
-#ifndef _VIBRATION_H_SFAFKNVX3456
-#define _VIBRATION_H_SFAFKNVX3456
-
-#include <QtCore>
-#include <QFeedbackHapticsEffect>
-#include <cplugin.h>
-
-class Vibration: public CPlugin {
- Q_OBJECT
-public:
- explicit Vibration(Cordova *cordova): CPlugin(cordova) {
- }
-
- virtual const QString fullName() override {
- return Vibration::fullID();
- }
-
- virtual const QString shortName() override {
- return "Vibration";
- }
-
- static const QString fullID() {
- return "Vibration";
- }
-public slots:
- void vibrate(int, int, int mills);
- void cancelVibration(int, int);
- void vibrateWithPattern(int, int, const QList<int> &pattern, int);
-
-private:
- QList<QSharedPointer<QFeedbackEffect>> _effects;
- QList<QSharedPointer<QTimer>> _timers;
-};
-
-#endif
diff --git a/src/wp/Vibration.cs b/src/wp/Vibration.cs
deleted file mode 100644
index 258dbc4..0000000
--- a/src/wp/Vibration.cs
+++ /dev/null
@@ -1,117 +0,0 @@
-/*
- 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.
-*/
-
-using System;
-using System.Windows;
-using System.Windows.Controls;
-using Microsoft.Devices;
-using System.Runtime.Serialization;
-using System.Threading;
-using System.Windows.Resources;
-using Microsoft.Phone.Controls;
-using System.Diagnostics;
-using System.Threading.Tasks;
-
-
-namespace WPCordovaClassLib.Cordova.Commands
-{
- public class Vibration : BaseCommand
- {
-
- private static readonly int DEFAULT_DURATION = 200;
- private static readonly int MAX_DURATION = 5000;
- private static readonly int MIN_DURATION = 5;
-
- // bool used to determine if cancel was called during
vibrateWithPattern
- private bool cancelWasCalled = false;
-
- public void vibrate(string vibrateDuration)
- {
- int msecs = DEFAULT_DURATION; // set default
- string callbackId = CurrentCommandCallbackId;
-
- try
- {
- string[] args =
JSON.JsonHelper.Deserialize<string[]>(vibrateDuration);
- msecs = int.Parse(args[0]);
- callbackId = args[1];
-
- if (msecs < MIN_DURATION)
- {
- msecs = MIN_DURATION;
- }
- else if (msecs > MAX_DURATION)
- {
- msecs = MAX_DURATION;
- }
- }
- catch (FormatException)
- {
- DispatchCommandResult(new
PluginResult(PluginResult.Status.JSON_EXCEPTION), callbackId);
- }
-
- vibrateMs(msecs);
-
- // TODO: may need to add listener to trigger DispatchCommandResult
when the vibration ends...
- DispatchCommandResult(new
PluginResult(PluginResult.Status.OK),callbackId);
- }
-
- private static void vibrateMs(int msecs)
- {
- VibrateController.Default.Start(TimeSpan.FromMilliseconds(msecs));
- }
-
- public async Task vibrateWithPattern(string options)
- {
- string callbackId = CurrentCommandCallbackId;
- // clear the cancelWasCalled flag
- cancelWasCalled = false;
- // get options
- try
- {
- string[] args = JSON.JsonHelper.Deserialize<string[]>(options);
- int[] pattern = JSON.JsonHelper.Deserialize<int[]>(args[0]);
- callbackId = args[1];
-
- for (int i = 0; i < pattern.Length && !cancelWasCalled; i++)
- {
- int msecs = pattern[i];
- if (msecs < MIN_DURATION)
- {
- msecs = MIN_DURATION;
- }
- if (i % 2 == 0)
- {
- msecs = (msecs > MAX_DURATION) ? MAX_DURATION : msecs;
-
VibrateController.Default.Start(TimeSpan.FromMilliseconds(msecs));
- }
- await Task.Delay(TimeSpan.FromMilliseconds(msecs));
- }
- DispatchCommandResult(new
PluginResult(PluginResult.Status.OK), callbackId);
- }
- catch (FormatException)
- {
- DispatchCommandResult(new
PluginResult(PluginResult.Status.JSON_EXCEPTION), callbackId);
- }
- }
-
- public void cancelVibration(string options)
- {
- string callbackId =
JSON.JsonHelper.Deserialize<string[]>(options)[0];
- VibrateController.Default.Stop();
- cancelWasCalled = true;
- DispatchCommandResult(new PluginResult(PluginResult.Status.OK),
callbackId);
- }
- }
-}
diff --git a/tests/tests.js b/tests/tests.js
index ff57d9e..74ae349 100644
--- a/tests/tests.js
+++ b/tests/tests.js
@@ -21,19 +21,6 @@
/* eslint-env jasmine */
-exports.defineAutoTests = function () {
-
- describe('Vibration (navigator.notification.vibrate)', function () {
- it('navigator.notification should exist with vibrate function',
function () {
- expect(navigator.notification).toBeDefined();
- expect(typeof navigator.notification.vibrate).toBeDefined();
- expect(typeof navigator.notification.vibrate).toBe('function');
-
- if (cordova.platformId === 'browser') {
expect(navigator.notification.vibrate(0)).toBe(false); } // eslint-disable-line
no-undef
- });
- });
-};
-
exports.defineManualTests = function (contentEl, createActionButton) {
var logMessage = function (message, color) {
var log = document.getElementById('info');
diff --git a/www/blackberry10/vibrate.js b/www/blackberry10/vibrate.js
deleted file mode 100644
index 85abc46..0000000
--- a/www/blackberry10/vibrate.js
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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.
- *
-*/
-
-var vibrate = function (duration) {
- navigator.vibrate(duration);
-};
-
-module.exports = vibrate;
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> Remove deprecated platforms for vibration plugin
> ------------------------------------------------
>
> Key: CB-13666
> URL: https://issues.apache.org/jira/browse/CB-13666
> Project: Apache Cordova
> Issue Type: Task
> Reporter: Vishal Mishra
> Assignee: Vishal Mishra
>
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]