Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Org.eclipse.higgins.js.pds.client API usage example"

(NYTimes template)
(Execution)
Line 88: Line 88:
 
** (subj=:me pred=rdf:type obj=persona:Person) in ''context''
 
** (subj=:me pred=rdf:type obj=persona:Person) in ''context''
 
** (subj=:me pred=p:role obj=(''newPersonRole''==persona:Ecommerce)) in ''context''
 
** (subj=:me pred=p:role obj=(''newPersonRole''==persona:Ecommerce)) in ''context''
* Loop(0) ra==(p:Ecommerce, http://nytimes.com#phone) // Loop: For every pair ra in rolesAtts...
+
* Loop[0] ra==(p:Ecommerce, http://nytimes.com#gender) // Loop: For every pair ra in rolesAtts...
 
** targetPersons[] := findPersonsByRole (person, p:Ecommerce)
 
** targetPersons[] := findPersonsByRole (person, p:Ecommerce)
 
*** result: targetPersons[0] == <the :me person created above>; targetPersons[] is of size == 1
 
*** result: targetPersons[0] == <the :me person created above>; targetPersons[] is of size == 1
Line 100: Line 100:
 
**** result: latt=="phone"
 
**** result: latt=="phone"
 
*** rule := getRule (template=http://azigo.com/sys/template/nytimes.com, class=http://nytimes.com, att="gender")
 
*** rule := getRule (template=http://azigo.com/sys/template/nytimes.com, class=http://nytimes.com, att="gender")
*** result rule==(see "rule #1" in Initial State section above)
+
**** result rule==(see "rule #2" in Initial State section above)
 +
*** '''pushEvalRule'''(person=:me, rule, value[0]="female")
 +
** EndLoop
 +
* Loop[1] ra==(p:Buyer, http://nytimes.com#bFirstName)
 +
** targetPersons[] := findPersonsByRole (person, p:Buyer)
 +
*** result: targetPersons[] is of size == 0
 +
** create new person and set the value of its role to p:Buyer
 +
** add new person to newPersons[]
 +
** partialAttVals[] := subsetAttVals ()
 +
*** result: partialAttVals[] == (http://nytimes.com#bFirstName, "Alice")
 +
** Loop: av==(http://nytimes.com#bFirstName, "Alice")
 +
*** class := getNamespace()
 +
**** result: class=="http://nytimes.com"
 +
*** latt : getLocalAtt()
 +
**** result: latt=="phone"
 +
*** rule := getRule (template=http://azigo.com/sys/template/nytimes.com, class=http://nytimes.com, att="bFirstName")
 +
**** result rule==(see "rule #1" in Initial State section above)
 +
*** '''pushEvalRule'''(person=:me, rule, value[0]="Alice")
 +
** EndLoop
  
 
== Final State ==
 
== Final State ==
  
 
[[Image:Setattributes final state 2.0.103.png|center]]
 
[[Image:Setattributes final state 2.0.103.png|center]]

Revision as of 14:24, 20 September 2011

{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}

We show an example of calling getAttributes, calling setAttributes and then calling getAttributes a second time. In all cases we read/write the same two attributes in the nytimes.com namespace, bFirstName and phone.

Initial State

Contexts

Pdsclient example 2.0.101.png

NYTimes template

The template context http://azigo.com/sys/templates/nytimes.com contains (among other things) a class named "http://nytimes.com" that has the following mapping rules:

 :NYTimesPerson
     a       owl:Class ;
     rdfs:subClassOf <http://www.eclipse.org/higgins/ontologies/2010/6/higgins#Person> ;

rule #1:

     map:nameRule
             [ a       map:roleSameAs ;
               map:equivalentAttribute
                       fp:givenName ;
               map:predicate :bFirstName ;
               map:role <http://www.eclipse.org/higgins/ontologies/2010/6/persona#Buyer>
             ] ;

rule #2:

     map:relationshipsRule
             [ a       map:roleSameAs ;
               map:equivalentAttribute
                       fp:gender ;
               map:predicate :gender ;
               map:role <http://www.eclipse.org/higgins/ontologies/2010/6/persona#Ecommerce>
             ] ;

call getAttributes()

Call

Example call to getAttributes (domain, audience, attributes[], where[], future)

Execution

  • context := getConnectionContext ()
  • call findRoles()
    • result:
      • ((p:eCommerce, (nytimes.com#bFirstName, nil, nil))
      • (p:Buyer, (nytimes.com#phone, nil, nil)))
  • call sortByRole()
    • result:
      • ((p:eCommerce, (nytimes.com#bFirstName, nil, nil))
      • (p:Buyer, (nytimes.com#phone, nil, nil)))
  • Try to pull attributes from #me person in the nytimes.com
    • result: no result: the nytimes.com context doesn't yet exist
  • Try to pull attributes from #me person in root context
    • call findPersonByRole()
    • result: nil (no persons found that match role)
    • result: no attribute/values found

call setAttributes()

Call

Example call to setAttributes (domain, attributes[])

  • setAttributes ("nytimes.com", attvals[])

Execution

Final State

Setattributes final state 2.0.103.png

Back to the top