Update contrib.
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 manage feature flags for a feature set data file.
24 # Create a feature flag object.
28 my $class = ref($arg) || $arg;
29 my($uid, $sf, $ud) = @_;
30 die "You must specify a UID when creating a FeatureFlag object"
31 unless(defined($uid));
32 $sf = 0 unless(defined($sf));
33 $ud = 0 unless(defined($ud));
48 return undef unless(ref($self));
50 return $self->{endian} unless(defined($arg) and $arg =~ m/(^BE$|^LE$)/i);
51 $self->{endian} = lc($1);
52 return $self->{endian};
55 # Return a twelve byte string 'feature flag' information.
59 return undef unless(ref($self));
60 my @arr = ( $self->UID(), $self->StatusFlags(), $self->UserData() );
62 # Decide whether we want big or little endian output.
63 # According to the documentation, 'V', 'N' are GUARANTEED to be 32-bit.
64 my $packstring = "V3"; # Little endian.
65 $packstring = "N3" if($self->Endian() eq "BE");
67 my $string = pack $packstring, @arr;
71 # A single 32-bit number.
75 return undef unless(ref($self));
77 return $self->{uid} unless(defined($uid));
83 # A single 32-bit number.
87 return undef unless(ref($self));
89 return $self->{statusflags} unless(defined($sf));
91 $self->{statusflags} = $sf;
95 # A single 32-bit number.
99 return undef unless(ref($self));
101 return $self->{userdata} unless(defined($ud));
103 $self->{userdata} = $ud;
107 # Display the content of the feature flag in english.
111 return undef unless(ref($self));
113 $fd = *STDOUT unless(defined($fd));
114 printf $fd "UID 0x%08x\n", $self->UID();
115 printf $fd "Status Flags 0x%08x\n", $self->StatusFlags();
119 print "Not " unless($self->Supported);
124 print "Not " unless($self->Upgradable);
125 print "Upgradable\n";
129 print "Not " unless($self->Modifiable);
130 print "Modifiable\n";
134 print "Not " unless($self->BlackListed);
135 print "BlackListed\n";
139 print "Not " unless($self->Uninitialised); # Double negative.
140 print "Uninitialised\n";
144 print "Not " unless($self->Persisted);
147 printf $fd "User Data 0x%08x\n\n", $self->UserData();
152 # ###########################################################################
154 # The following methods operate on the 'StatusFlags' member, just setting
155 # or clearing bits as required.
157 # Bits 6 through 31 are currently reserved, 23/7/07.
163 return undef unless(ref($self));
165 my $sp = $self->StatusFlags;
168 $arg = 0 if( $arg =~ m/EXCLUDE/i );
169 $arg = 1 if( $arg =~ m/FEATURE/i );
170 if($arg) { $sp |= 1; } else { $sp &= ~1; };
171 $self->StatusFlags($sp);
183 return undef unless(ref($self));
185 my $sp = $self->StatusFlags;
188 if($arg) { $sp |= 2; } else { $sp &= ~2; };
189 $self->StatusFlags($sp);
201 return undef unless(ref($self));
203 my $sp = $self->StatusFlags;
206 if($arg) { $sp |= 4; } else { $sp &= ~4; };
207 $self->StatusFlags($sp);
219 return undef unless(ref($self));
221 my $sp = $self->StatusFlags;
224 if($arg) { $sp |= 8; } else { $sp &= ~8; };
225 $self->StatusFlags($sp);
237 return undef unless(ref($self));
239 my $sp = $self->StatusFlags;
242 if($arg) { $sp |= 16; } else { $sp &= ~16; };
243 $self->StatusFlags($sp);
254 return Uninitialised(@_);
260 return undef unless(ref($self));
262 my $sp = $self->StatusFlags;
265 if($arg) { $sp |= 32; } else { $sp &= ~32; };
266 $self->StatusFlags($sp);
276 # ###########################################################################