/
Code In The Air Code In The Air

Code In The Air - PowerPoint Presentation

sherrill-nordquist
sherrill-nordquist . @sherrill-nordquist
Follow
386 views
Uploaded On 2017-11-05

Code In The Air - PPT Presentation

Simplifying Tasking on Smartphones Lenin Ravindranath Tiffany Chen Anirudh Sivaraman Hari Balakrishnan Tasking Applications Run continuously determine user contextactivity and trigger actions ID: 602926

users task activity cita task users cita activity tasking activities pred execution devices meeting developers framework client coordination getdevice

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "Code In The Air" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

Code In The Air

:

Simplifying Tasking on Smartphones

Lenin Ravindranath,

Tiffany Chen

, Anirudh Sivaraman, Hari Balakrishnan

Tasking Applications

Run continuously, determine user context/activity and trigger actions

Often involves coordination between multiple users and devices

Remind to fax document when I come to office

Make my phone

silent when

I am in the

lab and I

am meeting my advisor

Notify me when my

friend is nearby

Disable Wi-Fi when I am outdoors and moving

When I am driving, track and store movement tracks

Send me a text message whenever my spouse leaves work

Trivial for end-users to state

but

non-trivial to develop

Simple implementation can be

energy-consuming

Code In The Air (CITA)

Rapid development of tasking applications

Activity detection as primitives

CITA helps developers and end-users

Multi-phone programming

Write only server side scripts even for tasks involving

*

multiple users and devices

*

a variety of sensors/activitiesWritten in JavaScript

End-Users

Developers

State Condition-Action rules in UI“Mix and match” activities and tasks

Task Compiler

Task Runtime

Tasking Framework

UI

Scripting

Users/Developers

Activity Layer

Push Service

Push Client

Task Runtime

Activity Layer

Sensors

Web

Phone

Server

Sub task

Task

Tasking Framework

CITA Server

CITA Client

CITA Client

CITA Client

Users/Developers

Tasks

(JavaScript)

Split-Task

Execution

Split-Task

Execution

Split-Task

Execution

Task

Coordination

Activity Layer

p = getDevice(“Alice”);

q

= getDevice(“Jim”);

p

red = getPredicate(“leaveWork”);

f

unction main() {

p.watch(pred, “callback”);

}

function callback() {

q.vibrate();

q.alert(“Alice left work”);

}

p = getDevice(“Tiffany”);

function main() {

pred = getPredicate(“walking”) pred = pred.and(“outdoors”); p.watch(pred, “callback”);}function callback() { p.wifi.disable();}

Disable Wi-Fi when I am outdoors and walking

Alert when my spouse leaves work

Program devices as objects

Automatic code partitioning, execution and coordination across multiple devices and users

S

everal inbuilt activities

Tasking Framework

Architecture

Activity Composition Framework

Compose complex activities by combining existing activities using predicates

I am in a Meeting AND(John is in the Meeting ORAlice in is the Meeting)

AND, OR NOTWITHIN, FOR

Energy-efficient execution of primitive and complex activities

InLocation, IsWalking, IsDriving, IsMoving, IsBiking, EnterPlace, LeavePlace, IsOutdoor