politecnico di milano dipartimento di elettronica ed
play

Politecnico di Milano Dipartimento di Elettronica ed Informazione - PowerPoint PPT Presentation

Managing and Using Context Information within the PerLa Language Fabio A. Schreiber - Letizia Tanca Romolo Camplani Diego Vigan Politecnico di Milano Dipartimento di Elettronica ed Informazione Outline 1 Introduction The


  1. Managing and Using Context Information within the PerLa Language Fabio A. Schreiber - Letizia Tanca – Romolo Camplani – Diego Viganò Politecnico di Milano Dipartimento di Elettronica ed Informazione

  2. Outline 1 • Introduction • The CDT context model • Context Management in PerLa – Language support – Contextual-block composition • Examples • Conclusions Context in PerLa

  3. Autonomic Pervasive Systems 2  Pervasive systems are widely adopted to monitor many kinds of physical phenomena.  Context-awareness plays a fundamental role since it allows, through the perception of the environment, to make the system autonomic w.r.t. environmental situations and changes .  Context must be managed both at design and run time. Context in PerLa

  4. Context management at design time 3  Context modelling  Application domain modelling (data, functions)  Design of the relationship between the context model and the application domain. Context in PerLa

  5. Context management at design time 4 CONTEXT MODEL Context in PerLa

  6. CDT model 5 Role Phase Risk Overheat Disease Farmer Driver Oenologist Growth Ageing Transport Type Affected hectares $ID $Square_meters  The environment is modelled in terms of dimension nodes, concept (or value) nodes, attributes, and possibly constraints  A context element is defined as Dimension = Value and a context is a conjunction of context elements  A context can be represented as a particular subtree of the CDT Context in PerLa

  7. CDT model 6 REAL WORLD CONTEXT MODEL Site environment season phenomenon time Topography plain steep winter spring summer autumn glacier desert forest day night landslide avalanche earthquake A CONTEXT Context in PerLa Context in PerLa

  8. Context management at design time 7 It is important to separate between • NUMERIC OBSERVABLES • SYMBOLIC OBSERVABLES - 20 ° C – 10 COLD Example: ° C temperatures MILD 11 ° C – 25 ° C 26 ° C – 50 WARM ° C Context in PerLa Context in PerLa

  9. Context management at runtime 8 Context-aware behavior Context activation (through the association between contexts and “ relevant system parts ” ) Other sources Symbolic variables (context dim. values) of context elements Observable, numerical variables gathered from sensors Context in PerLa

  10. Context management at runtime 9 Apply the sensor query only to the sensors in context: phase = ‘growth' AND risk='overheat‘ AND orientation=‘westward’ Context in PerLa Context in PerLa

  11. Context management at runtime 10  Context sensing (numeric observables)  Context recognition (symbolic observables)  Context activation  Context-aware behaviour to be merged into a middleware and a language to manage pervasive systems hiding the complexity of handling different technologies SELECT temperature, humidity WHERE temp>20 SAMPLING EVERY 1h EXECUTE IF device_id > 2 Context in PerLa

  12. Context-aware Sw Behaviour CONTEXT CONTEXT MODEL PROGRAMMING LANGUAGE Design/compile time CONTEXT DECLARATION CONTEXT SENSING Run time CONTEXT RECOGNITION CONTEXTUAL ACTIONS CONTEXT STATE REFRESH Context in PerLa

  13. Contextual block structure 12 ACTIVATION COMPONENT ENABLE COMPONENT DISABLE COMPONENT REFRESH COMPONENT Context in PerLa

  14. The PerLa Context Language 13 CREATE DIMENSION <Dimension Name> CDT declaration in terms of numeric and symbolic [CHILD OF <Parent Node >] observables [CREATE ATTRIBUTE $<Attribute Name >] | {CREATE CONCEPT <Concept Name> WHEN <Condition > Conversion from [EXCLUDES <Dimension Name>.<Concept Name>] numeric to symbolic [CREATE ATTRIBUTE $<Attribute Name >] ∗ observable [EVALUATED ON <Low Level Query >]} ∗ PerLa Definition of contexts and action(s) to be performed Contextual CREATE CONTEXT <Context Name> Activation Block ACTIVE IF <Dimension>= <Value> component [AND <Dimension>= <Value >] ∗ Enable component ON ENABLE (<Context>): <PerLa Query> Disable component ON DISABLE (<Context>): <PerLa Query> Refresh component REFRESH EVERY <Period> Context in PerLa

  15. The PerLa Context language (2/3) 14 Example: Given the previous CDT CREATE DIMENSION Role CREATE CONCEPT Farmer WHEN get_user_role()= ‘ farmer ’ Role Risk CREATE CONCEPT Oenologist WHEN get_user_role()= ‘ oenologist ’ Overheat Disease CREATE CONCEPT Driver WHEN get_user_role()= ‘ driver ’ Farmer Driver Oenologist CREATE DIMENSION Risk Type Affected CREATE CONCEPT Disease hectares WHEN get_interest_topic()= ‘ disease ’ CREATE CONCEPT Overheat $ID $square_ WHEN temperature > 30 AND meters brightness > 0.75; ….. Context in PerLa

  16. The PerLa Context Language (3/3) 15 Role Risk Phase Farmer Overheat Growth CREATE CONTEXT Growth_Monitoring ACTIVE IF phase = ‘ growth' AND role= ‘ farmer ’ AND Risk='overheat' ON ENABLE: SELECT temperature,humidity SAMPLING EVERY 120 s EXECUTE IF location = ‘ vineyard' SET PARAMETER 'alarm' = TRUE; ON DISABLE: SET PARAMETER 'alarm' = FALSE; REFRESH EVERY 24 h; Context in PerLa

  17. PerLa language and middleware 16 High Level Interface  CDT creation and maintenance  Context detection LLQ/HLQ/AQ  Perform context actions analyzer and CM executors The CM associates to every dimension of the CDT a table that contains the values Low Level Interface of every numeric observable sampled from the environment and that is used in relation with the symbolic observables which describe that dimension Context in PerLa

  18. PerLa language and middleware 17 In the previous example we declared a context that includes the observable “ overheat ” (declared using the numeric temperature and brightness) : OVERHEAT: Role Phase Risk temperature > 30 AND brightness > 0.75 Farmer Overheat Growth The context can be considered as ID Temperature Brightness active for all the sensors for which the rule is true, and the context- 1 28 0.60 aware actions will be performed 3 31 0.71 only on them. 4 33 0.80 Context in PerLa

  19. :-) :-) Contextual block automatic composition 18  Problem : given a CDT, the number of possible contexts exponentially grows with the dimensions number  E. g.: 5 dimensions, 3 conceps/dim (average) >500 contexts!  Solution : automatic composition of the contextual block, based on partial components : CONTEXTUAL BLOCK COMPOSITION RUNTIME DESIGN TIME   D R Context in PerLa

  20. Contextual block automatic composition 19 Activation component Enable component Disable component Refresh component Activation component E E E D D D Refresh component Context in PerLa

  21. The designer ’ s tasks 20 … {CREATE CONCEPT <Concept Name> WHEN <Condition > WITH ENABLE COMPONENT <PerLa_Query> Components WITH DISABLE COMPONENT <PerLa_Query> association WITH REFRESH COMPONENT <Period> (components library) …  Building of a composite contextual blocks Generation of all the library possible contextual  Verification of the composite block correctness blocks ( QueryAnalyzer/Optimizer) ) Possible manual  If required for peculiar situations adaptation Design time Context in PerLa

  22. Design time vs. run time composition 21  Design time:  Fully controlled by the designer  Static vision  Run time:  Autonomic behaviour of the system  Contextual blocks are composed only for the active context  No further changes allowed  Performance issues (more contexts can be simultaneously active causing frequent context switching!) A suitable trade-off is a designer ’ s choice based on the system requirements Context in PerLa

  23. An example 22 … WITH ENABLE COMPONENT: SELECT MAX(temperature) SET PARAMETER ’ alarm ’ = TRUE; WITH DISABLE COMPONENT: ON ENABLE : SET PARAMETER ’ alarm ’ = SELECT MAX(temperature), FALSE; equipment_id WITH REFRESH COMPONENT: 5s SAMPLING EVERY 5s SET PARAMETER ’ alarm ’ = TRUE; ON DISABLE: … SET PARAMETER ’ alarm ’ = FALSE; WITH ENABLE COMPONENT: REFRESH EVERY: 1s SELECT equipment_id SAMPLING EVERY 5s WITH REFRESH COMPONENT: 1s  Clause optimization (e.g: SELECT)  Highest refresh frequency selection (lowest time constant) Context in PerLa

  24. Example 1: office risk management 23 • Suppose to have a pervasive system to monitor the potential risks at the DEI Department of Politecnico di Milano Context in PerLa

  25. Example 1: office risk management 24 • Suppose to have a pervasive system to monitor the potential risks at the DEI Department of Politecnico di Milano Context in PerLa

  26. Example 1: office risk management 25 • Suppose to have a pervasive system to monitor the potential risks at the DEI Department of Politecnico di Milano • We want to define a context-aware behaviour to control: – Fire – Earthquake Context in PerLa

  27. Example 1: office risk management 26 • Suppose to have a pervasive system to monitor the potential risks at the DEI Department of Politecnico di Milano Context in PerLa

  28. Example 1: office risk management 27 • Suppose to have a pervasive system to monitor the potential risks at the DEI Department of Politecnico di Milano Context in PerLa

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend