GithubHelp home page GithubHelp logo

kryndex / luna-sysservice Goto Github PK

View Code? Open in Web Editor NEW

This project forked from openwebos/luna-sysservice

0.0 2.0 0.0 1.38 MB

Provides image manipulation, preference, timezone and ringtone services to webOS services and applications.

CMake 0.87% C++ 97.95% C 0.36% Makefile 0.45% Shell 0.01% M4 0.36%

luna-sysservice's Introduction

Summary

Provides image manipulation, preference, timezone and ringtone services for webOS components.

LunaSysService

This service supports the following methods, which are described in detail in the generated documentation:

  • com.palm.image/convert

  • com.palm.image/exResize

  • com.palm.image/imageInfo

  • com.palm.systemservice/getPreferences

  • com.palm.systemservice/getPreferenceValues

  • com.palm.systemservice/setPreferences

  • com.palm.systemservice/backup/preBackup

  • com.palm.systemservice/backup/postRestore

  • com.palm.systemservice/ringtone/addRingtone

  • com.palm.systemservice/ringtone/deleteRingtone

  • com.palm.systemservice/time/convertDate

  • com.palm.systemservice/time/getNTPTime

  • com.palm.systemservice/time/getSystemTime

  • com.palm.systemservice/time/getSystemTimezoneFile

  • com.palm.systemservice/time/launchTimeChangeApps

  • com.palm.systemservice/time/setSystemNetworkTime

  • com.palm.systemservice/time/setSystemTime

  • com.palm.systemservice/time/setTimeChangeLaunch

  • com.palm.systemservice/time/setTimeWithNTP

  • com.palm.systemservice/timezone/getTimeZoneFromEasData

  • com.palm.systemservice/timezone/getTimeZoneRules

  • com.palm.systemservice/wallpaper/convert

  • com.palm.systemservice/wallpaper/deleteWallpaper

  • com.palm.systemservice/wallpaper/importWallpaper

  • com.palm.systemservice/wallpaper/info

  • com.palm.systemservice/wallpaper/refresh

  • com.palm.systemservice/osInfo/query

  • com.palm.systemservice/deviceInfo/query

How to Build on Linux

Building using OpenEmbedded

Using the meta-webos layer for OpenEmbedded is the preferred method of building Open webOS components.

This allows your package to be installed into an Open webOS system, or as part of an Open webOS image.

Building the latest "stable" version

Clone the repository at http://www.github.com/openwebos/build-webos and follow the instructions in that README to build Open webOS.

To build or rebuild a single Open webOS component, if your build-webos directory is ~/openwebos/build-webos, and you are wanting to rebuild the component called "luna-sysservice", do:

$ cd ~/openwebos/build-webos
$ make cleanall-luna-sysservice luna-sysservice

The resulting IPK package will be in your BUILD-[target-machine] directory, under deploy/ipk/[architecture], such as this example:

~/openwebos/build-webos/BUILD-qemux86/deploy/ipk/i586/luna-sysservice_2.0.0-1.00-r5_i586.ipk

You can transfer this to your existing image, and install it by logging into the Open webOS system, and using:

$ ipkg install /path/to/luna-sysservice_2.0.0-1.00-r5_i586.ipk

Or you can create a completely new Open webOS image with:

$ make webos-image

Building your local clone

After successfully building the latest stable version, you may configure build-webos to build this component from your own local clone.

You can specify what directory to use as the local source inside the file "global-webos.conf" in your home directory, or within the file "webos-local.conf" within the build-webos directory, by adding the following:

S_pn-[component-name] = "/path/to/component/source"

such as in this example:

S_pn-luna-sysservice = "/home/user/openwebos/luna-sysservice"

Then follow the instructions above to rebuild and install this package.

Building for Open webOS Desktop

It is often desireable, for rapid iteration and testing purposes, to build a component for use within the Open webOS Desktop system.

Building the latest "stable" version

Clone the repository at http://www.github.com/openwebos/build-desktop and follow the instructions in the README file.

Building your local clone

First, follow the directions to build the latest "stable" version.

To build your local clone of a component, such as luna-sysservice, instead of the "stable" version installed with the build-webos-desktop script:

  • Open the build-webos-desktop.sh script with a text editor
  • Locate the function build_component-name (i.e., build_luna-sysservice)
  • Change the line "cd $BASE/luna-sysservice" to use the folder containing your clone, for example "cd ~/openwebos/luna-sysservice"
  • Close the text editor
  • Remove the file /luna-desktop-binaries/component-name/luna-desktop-build*.stamp (/luna-desktop-binaries/luna-sysservice/luna-desktop-build*.stamp)
  • Rebuild by running the build-webos-desktop.sh script again

Cautions:

  • When you re-clone openwebos/build-desktop, you'll have to overwrite your changes and reapply them
  • Components often advance in parallel with each other, so be prepared to keep your cloned repositories updated
  • Fetch and rebase frequently

Building Standalone (without webOS)

This component of webOS can be built as a standalone piece that does not depend upon the rest of the system.

Dependencies

Below are the tools and libraries (and their minimum versions) required to build this package:

  • cmake (version required by openwebos/cmake-modules-webos)
  • glib-2.0
  • liburiparser
  • libxml-2.0
  • openwebos/cjson
  • openwebos/cmake-modules-webos 1.0.0 RC2
  • openwebos/luna-service2
  • openwebos/nyx-lib 6.0.0
  • openwebos/pbnjson
  • qt4 4.8.2
  • sqlite3

Building Standalone

Using cmake

Once you have downloaded the source, execute the following to build it (after changing into the directory under which it was downloaded):

$ mkdir BUILD
$ cd BUILD
$ cmake ..
$ make
$ sudo make install

The directory under which the files are installed defaults to /usr/local/webos. You can install them elsewhere by supplying a value for WEBOS_INSTALL_ROOT when invoking cmake.

For example:

$ cmake -D WEBOS_INSTALL_ROOT:PATH=$HOME/projects/openwebos ..
$ make
$ make install

will install the files in subdirectories of $HOME/projects/openwebos.

Specifying WEBOS_INSTALL_ROOT also causes pkg-config to look in that tree first before searching the standard locations. You can specify additional directories to be searched prior to this one by setting the PKG_CONFIG_PATH environment variable.

To see all of the make targets that CMake has generated, issue:

$ make help

Using make (not cmake)

First, make sure that you have installed all the required dependencies listed above (excepting cmake and cmake modules).

Next, cd to the folder where you have cloned this source code, and execute the following:

$ make -f Makefile.Ubuntu install

Uninstalling

From the directory where you originally ran make install, enter:

$ [sudo] make uninstall

You will need to use sudo if you did not specify WEBOS_INSTALL_ROOT.

Generating documentation

The tools required to generate the documentation are:

  • doxygen 1.6.3
  • graphviz 2.20.2

Copyright and License Information

All content, including all source code files and documentation files in this repository except otherwise noted are:

Copyright (c) 2010-2013 LG Electronics, Inc.

All content, including all source code files and documentation files in this repository except otherwise noted are: Licensed under the Apache License, Version 2.0 (the "License"); you may not use this content 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.

luna-sysservice's People

Contributors

ony avatar yasaswiniay avatar ericblade-owo avatar jaakkoputaala-owo avatar sakhnik avatar youngeunkim avatar jivchik avatar kdopen avatar kimmoleppala-owo avatar kimmovalkonen-owo avatar maksym-shevchenko-owo avatar premalathamvs avatar sangwoo-kang avatar lemketron avatar teppopennanen-owo avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.