Skip to content

Latest commit

 

History

History
177 lines (129 loc) · 4.87 KB

PowerPlugin.md

File metadata and controls

177 lines (129 loc) · 4.87 KB

Power Plugin

Version: 1.0

Status: ⚫⚪⚪

Power plugin for Thunder framework.

Table of Contents

Introduction

Scope

This document describes purpose and functionality of the Power plugin. It includes detailed specification of its configuration, methods and properties provided.

Case Sensitivity

All identifiers on the interface described in this document are case-sensitive. Thus, unless stated otherwise, all keywords, entities, properties, relations and actions should be treated as such.

Acronyms, Abbreviations and Terms

The table below provides and overview of acronyms used in this document and their definitions.

Acronym Description
API Application Programming Interface
HTTP Hypertext Transfer Protocol
JSON JavaScript Object Notation; a data interchange format
JSON-RPC A remote procedure call protocol encoded in JSON

The table below provides and overview of terms and abbreviations used in this document and their definitions.

Term Description
callsign The name given to an instance of a plugin. One plugin can be instantiated multiple times, but each instance the instance name, callsign, must be unique.

References

Ref ID Description
HTTP HTTP specification
JSON-RPC JSON-RPC 2.0 specification
JSON JSON specification
Thunder Thunder API Reference

Configuration

The table below lists configuration options of the plugin.

Name Type Description
callsign string Plugin instance name (default: Power)
classname string Class name: Power
locator string Library name: libWPEFrameworkPower.so
autostart boolean Determines if the plugin is to be started automatically along with the framework

Methods

The following methods are provided by the Power plugin:

Power interface methods:

Method Description
set Sets power state

set method

Sets power state.

Parameters

Name Type Description
params object
params.powerstate string Power state (must be one of the following: on, activestandby, passivestandby, suspendtoram, hibernate, poweroff)
params.timeout number Time to wait for power state change

Result

Name Type Description
result null Always null

Errors

Code Message Description
1 ERROR_GENERAL General failure
29 ERROR_DUPLICATE_KEY Trying to set the same power mode
5 ERROR_ILLEGAL_STATE Power state is not supported
30 ERROR_BAD_REQUEST Invalid Power state or Bad JSON param data format

Example

Request

{
    "jsonrpc": "2.0",
    "id": 1234567890,
    "method": "Power.1.set",
    "params": {
        "powerstate": "on",
        "timeout": 0
    }
}

Response

{
    "jsonrpc": "2.0",
    "id": 1234567890,
    "result": null
}

Properties

The following properties are provided by the Power plugin:

Power interface properties:

Property Description
state RO Power state

state property

Provides access to the power state.

This property is read-only.

Value

Name Type Description
(property) string Power state (must be one of the following: on, activestandby, passivestandby, suspendtoram, hibernate, poweroff)

Example

Get Request

{
    "jsonrpc": "2.0",
    "id": 1234567890,
    "method": "Power.1.state"
}

Get Response

{
    "jsonrpc": "2.0",
    "id": 1234567890,
    "result": "on"
}