| Ekahau documentation | Contained in the Ekahau distribution. |
Ekahau::Response - Response from an Ekahau server
Provides a straightforward encapsulation of the response objects returned by the Ekahau Positioning Engine. This is the base class for the specific responses; in general you will want to use one of them.
This class takes care of parsing responses from the Ekahau server into their individual components.
The responses returned by Ekahau are a sort of half-assed XML. They look superficially like XML, but not enough that they can be parsed by an XML parser. Instead, this module takes a simplistic approach to parsing them. The exact rules for parsing aren't clear from the documentation, so this parsing may not be correct in all circumstances, but we have not observed any misparsing with the current code.
The response is parsed into the hash reference that comprises this object. It's parsed like this:
<#tag cmd args[0] args[1] ...
params{key1}=value1
params{key2}=value2
SEPARATOR1
params{SEPERATOR1}[0]{key3}=value3
params{SEPERATOR1}[0]{key4}=value4
SEPARATOR1
params{SEPERATOR1}[1]{key3}=value3
params{SEPERATOR1}[1]{key4}=value4
>
Here are some examples. First,
<#LOC LOCATION_ESTIMATE 4 accurateX=1427.09 accurateY=2141.73 accurateTime=1117138297067 accurateContextId=22940 latestX=1429.14 latestY=2140.60 latestTime=1117138301067 latestContextId=22940 speed=0.09101 heading=5.78188 >
parses to:
{
'tag' => 'LOC',
'cmd' => 'LOCATION_ESTIMATE',
'args' => [ '4' ],
'params' => {
'latestX' => '1429.14',
'accurateY' => '2141.73',
'heading' => '5.78188',
'accurateTime' => '1117138297067',
'latestY' => '2140.60',
'accurateContextId' => '22940',
'speed' => '0.09101',
'accurateX' => '1427.09',
'latestTime' => '1117138301067',
'latestContextId' => '22940'
},
}
Second,
<#AREA AREA_ESTIMATE 4 AREA name=2425 probability=1.000 contextId=22940 polygon=1396;1396;1554;1554;1394;1396&1964;2200;2200;1964;1964;1964; AREA name=2431 probability=0.000 contextId=22940 polygon=1560;1559;1682;1680;1804;1804;1559;1560&1968;2197;2196;2153;2154;1966;1966;1968; >
parses to:
{
'tag' => 'AREA',
'cmd' => 'AREA_ESTIMATE',
'args' => [ '4' ],
'params' => {
'AREA' => [
{
'contextId' => '22940',
'probability' => '1.000',
'name' => '2425',
'polygon' => '1396;1396;1554;1554;1394;1396&1964;2200;2200;1964;1964;1964;'
}, {
'contextId' => '22940',
'probability' => '0.000',
'name' => '2431',
'polygon' => '1560;1559;1682;1680;1804;1804;1559;1560&1968;2197;2196;2153;2154;1966;1966;1968;'
}
]
}
}
Finally, this response:
<#2376 DEVICE_LIST 1 2 3 >
parses to this:
{
'tag' => '2376',
'cmd' => 'DEVICE_LIST',
'args' => [],
'params' => {
'3' => [ {} ],
'2' => [ {} ],
'1' => [ {} ],
}
}
Creates a new empty object. The only parameter recognized is tag,
which sets the tag property for the response.
Parse a response string into an object. The results are undefined if
$response_str is not a valid Ekahau response.
Populate the fields of an object with the ones in $response_str,
overwriting any existing values. The results are undefined if
$response_str is not a valid Ekahau response.
Returns a hash containing the values for the list of properties in
@prop_names. If @prop_names is empty, all properties will be
returned.
Returns the value for one of this object's properties, specified by
$prop_name. If no property named $prop_name exists, undef is
returned.
Returns true if this response is an Ekahau::Response::Error object, else returns false.
Returns the name of this event in the same format used by Ekahau::Events.
Returns the string Response, to identify the type of this object, and that no more specific information is available.
Return a string representation of the object. This is reconstructed from the object's properties, and so may not be identical to the string which was parsed to create it.
Scott Gifford <gifford@umich.edu>, <sgifford@suspectclass.com>
Copyright (C) 2005 The Regents of the University of Michigan.
See the file LICENSE included with the distribution for license information.
Ekahau::Base, Ekahau::Response::DeviceList, Ekahau::Response::DeviceProperties, Ekahau::Response::Error, Ekahau::Response::LocationEstimate, Ekahau::Response::LocationContext (Ekahau::Response::LocationContext), Ekahau::Response::AreaEstimate, Ekahau::Response::AreaList, Ekahau::Response::StopLocationTrackOK, Ekahau::Response::StopAreaTrackOK, Ekahau::Response::MapImage.
| Ekahau documentation | Contained in the Ekahau distribution. |
package Ekahau::Response; use Ekahau::Base; our $VERSION=Ekahau::Base::VERSION; # Written by Scott Gifford <gifford@umich.edu> # Copyright (C) 2004 The Regents of the University of Michigan. # See the file LICENSE included with the distribution for license # information. use strict; use warnings; use bytes;
use Ekahau::Response::DeviceList; use Ekahau::Response::DeviceProperties; use Ekahau::Response::Error; use Ekahau::Response::LocationEstimate; use Ekahau::Response::LocationContext; use Ekahau::Response::AreaEstimate; use Ekahau::Response::AreaList; use Ekahau::Response::StopLocationTrackOK; use Ekahau::Response::StopAreaTrackOK; use Ekahau::Response::MapImage; use constant RESPONSEBASE => 'Ekahau::Response::'; our %CMDCLASS = ( DEVICE_LIST => RESPONSEBASE.'DeviceList', DEVICE_PROPERTIES => RESPONSEBASE.'DeviceProperties', LOCATION_ESTIMATE => RESPONSEBASE.'LocationEstimate', CONTEXT => RESPONSEBASE.'LocationContext', AREA_ESTIMATE => RESPONSEBASE.'AreaEstimate', STOP_LOCATION_TRACK_OK => RESPONSEBASE.'StopLocationTrackOK', STOP_AREA_TRACK_OK => RESPONSEBASE.'StopAreaTrackOK', AREALIST => RESPONSEBASE.'AreaList', MAP => RESPONSEBASE.'MapImage', ); use constant ERROR_CLASS => 'Ekahau::Response::Error';
sub new { my $class = shift; my(%p) = @_; my $self = {}; if ($p{tag}) { $self->{tag} = $p{tag}; } bless $self, $class; } # Internal method sub init { # Do nothing }
sub parsenew { my $class = shift; my $self = $class->new(); $self->parse(@_); warn "parsenew: cmd is '$self->{cmd}'\n" if ($ENV{VERBOSE}); if (my $newclass = $CMDCLASS{$self->{cmd}}) { bless $self,$newclass; $self->init; } elsif ($self->{cmd} =~ /^(?:MALFORMED_REQUEST|.*_NOT_FOUND|FAILURE|.*_FAILED|.*_PROBLEM)/) { bless $self,ERROR_CLASS; $self->init; } $self; }
sub parse { my $self = shift; my($r) = @_; my $data; $r =~ s/^\s+//; $r =~ s/\s+$//; $self->{string} = $r; # Look for a tag if ($r =~ s/^\s*<(\#\w*?\s)?\s*// and $1) { # Preserve taintedness with substr(X,0,0) chop($self->{tag} = substr($1,1).substr($self->{string},0,0)) } # Does this contain sized data? if ($r =~ /\x0asize=(\d+).*?\x0adata=/sg) { my $data_len = $1; my $data_pos = pos($r); $data = substr($r,$data_pos,$data_len,''); # Remove the "data=" substr($r,-5,5,''); } # Remove trailing angle bracket and whitespace $r =~ s/\s*>\s*$//; # Split the response into lines my @lines = split(/(?<!\\)\x0d?\x0a/,$r); # This probably doesn't handle quoting correctly my @firstline = split(' ',shift @lines); # The first line $self->{cmd} = shift @firstline; $self->{args} = [map { s/^\"//; s/\"$//; $_ } @firstline]; $self->{params}={}; # Are there any arguments that are really parameters? foreach my $i (0..$#{$self->{args}}) { if ($self->{args}[$i] =~ /^(\w+)=(.*)$/) { # Use substr to keep taintedness $self->{params}{$1}=$2.substr($self->{args}[$i],0,0); # Remove argument splice(@{$self->{args}},$i,1,()); } } # Parameters on other lines my $datahash = $self->{params}; foreach my $l (@lines) { my $keep_taintedness = substr($l,0,0); $l =~ s/\\(<|>|\x0d\x0a)/$1/g; if ($l =~ /^([\w.\-]+?)=(.*)$/) { # Using this as a hash key will implictly untaint it, # so require that values be "word characters". my $val = $2.$keep_taintedness; $datahash->{$1}=$val; } else { $datahash = {}; push(@{$self->{params}{$l}},$datahash); } } if (defined($data)) { $self->{params}{data}=$data; } # Special case: copy area up to main parameters, for backwards # compatibility. if ($self->{params}{AREA} and $self->{params}{AREA}[0]) { while(my($k,$v)=each(%{$self->{params}{AREA}[0]})) { $self->{params}{$k} = $v; } } $self; }
sub get_props { my $self = shift; if (!@_) { @_ = keys %{$self->{params}} }; return map { $_ => $self->{params}{$_} } @_; }
sub get_prop { my $self = shift; my $prop = $_[0]; return $self->{params}{($prop)}; }
sub error { 0; }
sub eventname { my $self = shift; $self->error ? 'ERROR' : uc $self->{cmd}; }
sub type { 'Response'; }
sub tostring { my $self = shift; my $str = "<"; if (defined($self->{tag})) { $str .= "#$self->{tag} " }; $str .= $self->{cmd}; if (@{$self->{args}}) { $str .= " ".join(" ",@{$self->{args}}); } if ($self->{params}) { $str .= "\x0d\x0a"; foreach my $var (keys %{$self->{params}}) { my $val = $self->{params}{$var}; if (defined($val)) { $val =~ s/(<|>|\x0d\x0a)/\\$1/g; $str .= "$var=$val\x0d\x0a"; } else { $str .= "$var\x0d\x0a"; } } } $str .= ">\x0d\x0a"; return $str; } 1;
1;