To create a built-in JS service, you must write the source code and prepare the required configuration files.
For easier understanding, the process to create a built-in JS service is explained using a sample service in Sample Code Repository. The sample service has the following methods:
hello - Calling this method on the target gives response as “Hello, JS Service!!”.
time - Calls methods of another service and gets a value from it.
The directory structure of the sample service must be as follows:
var Service = require('webos-service');
// Register com.example.service.js
var service =new Service("com.example.service.js");
// A method that always returns the same value
service.register("hello", function(message) {
console.log("[com.example.service.js]", "SERVICE_METHOD_CALLED:hello");
message.respond({
answer:"Hello, JS Service!!" });
});
// Call another service
service.register("time", function(message) {
service.call("luna://com.webos.service.systemservice/clock/getTime", {}, function(m2) {
console.log("[com.example.service.js]", "SERVICE_METHOD_CALLED:com.webos.service.systemservice/clock/getTime");
const response ="You appear to have your UTC set to: "+ m2.payload.utc;
message.respond({message: response});
});
});
Line(7~12) : Register the hello method which responds to a request with a “Hello, JS Service!!” message
Line(15~21) : Register the time method. This method gets the value of UTC information from the response received by calling settingsservice’s getSystemSettings method.
README.md
This file provides general information of the JS service and it must be located in the root directory.
Caution
If the README.md file is missing, a build error occurs.
Make sure the ‘Summary’ section is a single line. Even any whitespace at the line above the ‘Description’ section is considered a part of the summary and can cause the build to fail.
Sample README.md
Summary
-------
js service sample
Description
-----------
js service sample
How to Build on Linux
---------------------
## Dependencies
Below are the tools and libraries (and their minimum versions) required to build sample program:
* cmake (version required by cmake-modules-webos)
## Building
$ cd build-webos
$ source oe-init-build-env
$ bitbake com.example.service.js
Copyright and License Information
=================================
Unless otherwise specified, all content, including all source code files and
documentation files in this repository are:
Copyright (c) 2018 LG Electronics, Inc.
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.
SPDX-License-Identifier: Apache-2.0
Step 2: Configure the JS Service
This section describes how to prepare the configuration files required to build and test the built-in JS service.
package.json
This file configures the service metadata and points to the main service file. It is required for packaging (related with Node.js) and must be located in the project root directory. For more details, see Creating JS services.
package.json
{
"name": "com.example.service.js",
"version": "1.0.0",
"description": "Hello JS Service Sample",
"main": "com_example_service_js.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1" },
"author": "LG Electronics",
"license": "Apache 2.0"}
LS2 Configuration Files
To register and execute a service through LS2, it is necessary to create a Service Configuration file, Role file, Permission file, and Groups file. You must create a files/sysbus directory in your project so that the configuration files are installed in the right place on the target.
Note This section briefly describes about configuration files. For more details, see Security Guide.
Service Configuration File
This file contains description of the service type and launch command.
Line(3) : The service can be run with JS service launcher script run-js-service. The -n option means to use Node.js engine.(Currently, -n option is used by default). Set the name of the service along with the service path as parameters to the command.
Line(4) : Set as a dynamic service.
Role File
This file contains allowed service names for each component and individual security settings for each service name.
Line(5~7) : allowedNames - Names that this service is allowed to register. It can be an array of any valid service name strings, empty array [] for none, and empty string "" for an unnamed service.
Line(8~15) : The permissions for the service.
outbound : Array of services that this service is allowed to send requests to. It can include strings of any valid service names. Use “*” for all, empty array [] for none, and empty string "" for unnamed services. It’s possible to use a wildcard (*) at the end of a string.
Client Permission File
This file defines what groups are required for this component to function properly.
Line(3) : Since com.example.service.js calls settingsservice’s getSystemSettings method, add the method’s group name “time.query” to the client permission file. When “webos-service” module is used, it calls activitymanager’s create and complete methods to keep the dynamic service running for 5 seconds. So, add “activity.operation”.
API Permission File
This file defines ACG values of the service and methods those ACG values contain.
Line(3) : Set an ACG value and specify the methods that belong to the ACG value. In this example, the ACG value is “examplejsservice.acgvalue”, and all methods of com.example.service.js are added to this value.
Groups File
This file defines the trust levels of each ACG value.
cmake_minimum_required(VERSION2.8.7)project(com.example.service.jsNONE)set(CMAKE_BUILD_TYPEDebug)include(webOS/webOS)webos_modules_init(163)webos_component(001)set(INSTALL_DIR${WEBOS_INSTALL_WEBOS_SERVICESDIR}/${CMAKE_PROJECT_NAME})#install necessary files to destination directory
install(DIRECTORY.DESTINATION${INSTALL_DIR}USE_SOURCE_PERMISSIONSPATTERN"*~"EXCLUDEPATTERN"CMake*"EXCLUDEPATTERN"build*"EXCLUDEPATTERN"oe-*"EXCLUDEPATTERN"*.lock"EXCLUDEPATTERN"*.in"EXCLUDEPATTERN"files"EXCLUDEPATTERN"README.md"EXCLUDE)webos_build_system_bus_files()
A brief explanation of the above file:
Line(2) : Specify the project name and the file extension type. In this tutorial, we use “com.example.service.js” as the project name for indicating various filenames and pathnames. The file extension type allows CMake to skip unnecessary compiler checks.
Line(5) : Include webOS OSE modules for the build.
Line(7) : Specify the “cmake-modules-webos” version.
Line(8) : Specify webos_component with the component version to use webOS variables for the standard system paths. It commonly follows three digit versioning scheme.
Line(10) : The built-in js services must have source code, package.json, and services.json files for each service name in /usr/palm/services/ under the target. To install the files to the target, set /usr/palm/services/com.example.service.js as the path.
Line(12~21) : Install the required file to /usr/palm/services/com.example.service.js. Exclude the files that do not need to be installed to target device.
Line(23) : Install the LS2 configuration files (/files/sysbus) to target.
Step 3: Build the JS Service
After implementing and configuring the JS service, you must build the service.
Add the Recipe File
webOS OSE uses OpenEmbedded of Yocto Project to build its components. OpenEmbedded needs a recipe file that configures the build environment. For more details about the recipe, see Yocto Project Reference Manual.
You must move the recipe file into webOS OSE project directory.
Destination directory:build-webos/meta-webosose/meta-webos/recipes-webos/<js service name>
where <js service name> is the name of the JS service. For the sample JS service, <js service name> must be replaced by ‘com.example.service.js’.
com.example.service.js.bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
SUMMARY="JS Service Sample"AUTHOR="Author's name <Author's e-mail>"LICENSE="Apache-2.0"LIC_FILES_CHKSUM="file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"WEBOS_VERSION="0.0.1"PR="r0"inherit webos_component
inherit webos_submissions
inherit webos_cmake
inherit webos_system_bus
FILES:${PN} +="${webos_servicesdir}/${PN}/*"
A brief explanation of the above file:
Lines(1~4) : Basic descriptions of the component.
Line(6) : Version of the component. For the webOS OSE component, this field is mandatory.
Line(7) : Revision version of the recipe. Each recipe requires a counter to track its modification history. Make sure that you increment the version when you edit the recipe, unless you only change the value of the WEBOS_VERSION field or comments.
Line(9) : Inherit common functions of webOS OSE. For all components of webOS OSE, this entry is required.
Line(10) : Instruct OpenEmbedded to use the WEBOS_VERSION value as the component version number. If you develop your component on a local repository, this entry is required.
Line(11) : Instruct OpenEmbedded that the component uses CMake for configuration, which is the preferred choice for webOS components.
Line(12) : To register component as a service and install LS2 configuration files, inherit webos_system_bus.
Line(14) : Append the list of files and directories that are placed in a package. Add the files under /usr/palm/service/com.example.service.js directory for packaging.
Configure the Local Source Directory
To build a component that is located on the local system, you must specify the directory information.
You must move the configuration file into webOS OSE project directory.
Line(2) : The local source directory. The syntax of the property is EXTERNALSRC:pn-<component>. For the value, input "<absolute path of the project directory>"
Line(3) : The local build directory. The syntax of the property is EXTERNALSRC_BUILD:pn-<component>. For the value, input "<absolute path of the project directory>/build/"
Line(4) : The appended revision version (PR) for building local source files. The syntax of the property is PR:append:pn-<component>. This property is optional.
Note We recommend that you add a trailing slash (/) at the end of all local directory paths, as in Line(2) and Line(3).
Build the Service
To build the component on the OpenEmbedded environment, enter the following commands on the shell.
After building the service, you must verify its functionality.
Copy the IPK to the target.
When the build is successful, oe-related directories are created under the project root directory. These directories are linked to the directory where the build output is generated from the actual build-webos sub-directory.
Copy the IPK file to the target device using the scp command.
com.example.service.js/oe-workdir/deploy-ipks/raspberrypi_64$ scp com.example.service.js_0.0.1-r0.local0_raspberrypi4_64.ipk root@<target IP address>:/media/internal/downloads
Install the service on the target.
Connect to the target using the ssh command and install com.example.service.js_0.0.1-r0.local0_raspberrypi4_64.ipk.
$ ssh root@<target IP address>
root@raspberrypi4-64:/sysroot/home/root# cd /media/internal/downloads/
root@raspberrypi4-64:/media/internal/downloads# opkg install com.example.service.js_0.0.1-r0.local0_raspberrypi4_64.ipk
Installing com.example.service.js (0.0.1) on root.
Configuring com.example.service.js.
Discover the LS2 configuration files.
To make LS2 daemon scan the LS2 configuration files of the service, use the ls-control command as follows.
root@raspberrypi4-64:/media/internal/downloads# ls-control scan-services
telling hub to reload setting and rescan all directories
Note Rebooting the target after installing the service will have the same effect as running the ls-control command. However, using the command allows you to continue testing without rebooting.
Run the service.
Since the service is a dynamic service, it is executed when its method is called.
root@raspberrypi4-64:/# luna-send -n 1 -f luna://com.example.service.js/time '{}'{"returnValue": true,
"message": "You appear to have your UTC set to: 1637558075"}
Verify the execution of the service.
You can use the journalctl command on the target for debugging the js service. For details on how to use the command, see Viewing Logs.
If you check the result of ls-monitor immediately after calling the com.example.service.js/hello method, you can see that the service is executed dynamically.
If the service is not used for 5 seconds, it is terminated. Run the ls-monitor command again after about 5 seconds, and you will see that the service has been terminated.
root@raspberrypi4-64:/# ls-monitor -l | grep example
Step 5: Deploy the JS Service
Now that you have developed the service and verified its execution, you are ready to add it to the webOS image and then flash it to the target device.
Add the Service to Build Recipe
Add the JS service to the packagegroup recipe file.
After booting the target device, connect to target with SSH and call com.example.service.js and check ls-monitor. You will see that the service is executed as a dynamic type.