Skip to content

jrobertson/xmlregistry_objects

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Introducing the XML Registry Objects gem

require 'xmlregistry_objects'


s =<<REG
app/app1
admin: jrobertson
pin_no: 1234

app/app2
admin: dsmith
pin_no: 4321

hkey_network/thinclient
active: false
name: niko2

hkey_apps/email
new: true
last_received: 20-Aug-2014 @ 09:10

hkey_apps/suntimes
sunrise: 05:45
sunset: 08:43
REG

reg = XMLRegistry.new 
reg.import s

# the following nested list maps the registry key with 
#                                        associated object and attributes
list = <<EOF
thinclient = [hkey_network/thinclient]
  active? = Bool active
  name = name
email = [hkey_apps/email]
  new? = Bool new
  last_received = last_received
suntimes = [hkey_apps/suntimes]
  sunrise = sunrise
  sunset = sunset
EOF
 

h = XMLRegistryObjects.new(reg,list).to_h

h [:email].last_received  #=> "20-Aug-2014 @ 09:10" 

thinclient = h[:thinclient]
thinclient.name     #=> "niko2" 
thinclient.active?  #=> false 

The above example shows hows objects can easily be contructed to query the XML registry.

The XML Registry Objects gem 2.0.0

require 'xmlregistry_objects'


s =<<REG
app/app1
admin: jrobertson
pin_no: 1234

app/app2
admin: dsmith
pin_no: 4321

hkey_network/thinclient
active: false
name: niko2

hkey_apps/email
new: true
last_received: 20-Aug-2014 @ 09:10

hkey_apps/suntimes
sunrise: 05:45
sunset: 08:43
REG

reg = XMLRegistry.new 
reg.import s

# the following nested list maps the registry key with 
#                                        associated object and attributes
list = <<EOF
thinclient = [hkey_network/thinclient]
  active? = Bool active
  name = name
email = [hkey_apps/email]
  new? = Bool new
  recent = last_received
sun = [hkey_apps/suntimes]
EOF
 

h = XMLRegistryObjects.new(reg,list).to_h

h[:sun].sunset      #=> "08:43" 
h[:email].recent    #=> "20-Aug-2014 @ 09:10" 
h[:thinclient].name #=> "niko2"

Resources

xmlregistry xmlregistry_objects gem

About

Query the registry using objects built dynamically from a string which maps each object to a registry key.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages