First public contribution.
2 # Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 # This component and the accompanying materials are made available
5 # under the terms of "Eclipse Public License v1.0"
6 # which accompanies this distribution, and is available
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 # Initial Contributors:
10 # Nokia Corporation - initial contribution.
20 # A simple class to maintain a single 'default supported range' feature
28 my $class = ref($arg) || $arg;
42 return undef unless(ref($self));
44 return $self->{lowuid} unless(defined($arg));
45 $self->{lowuid} = $arg;
52 return undef unless(ref($self));
54 return $self->{highuid} unless(defined($arg));
55 $self->{highuid} = $arg;
62 return undef unless(ref($self));
64 return $self->{endian} unless($arg =~ m/(LE|BE)i/);
66 $self->{endian} = $arg;
70 # Return the content of this object as packed binary, i.e 8 bytes
71 # of the specified endian-ness.
75 return undef unless(ref($self));
76 my $packstring = "V2";
77 $packstring = "N2" if($self->{endian} eq "BE");
78 my $retstring = pack($packstring, ( $self->LowUID, $self->HighUID ) );
82 # Display the content of the DSR in english.
86 return undef unless(ref($self));
88 $fd = *STDOUT unless(defined($fd));
89 printf $fd "LOW UID 0x%08x\n", $self->LowUID();
90 printf $fd "HIGH UID 0x%08x\n", $self->HighUID();