Matt Spinler | 8df7be8 | 2017-01-09 15:42:05 -0600 | [diff] [blame] | 1 | package Util; |
| 2 | |
| 3 | #Holds common utility functions for MRW processing. |
| 4 | |
| 5 | use strict; |
| 6 | use warnings; |
| 7 | |
| 8 | use mrw::Targets; |
| 9 | |
| 10 | #Returns the BMC target for a system. |
| 11 | # param[in] $targetObj = The Targets object |
| 12 | sub getBMCTarget |
| 13 | { |
| 14 | my ($targetObj) = @_; |
| 15 | |
| 16 | for my $target (keys %{$targetObj->getAllTargets()}) { |
| 17 | if ($targetObj->getType($target) eq "BMC") { |
| 18 | return $target; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | die "Could not find BMC target in the MRW XML\n"; |
| 23 | } |
| 24 | |
| 25 | |
| 26 | #Returns an array of child units based on their Target Type. |
| 27 | # param[in] $targetObj = The Targets object |
| 28 | # param[in] $unitTargetType = The target type of the units to find |
| 29 | # param[in] $chip = The chip target to find the units on |
| 30 | sub getChildUnitsWithTargetType |
| 31 | { |
| 32 | my ($targetObj, $unitTargetType, $chip) = @_; |
| 33 | my @units; |
| 34 | |
| 35 | my @children = $targetObj->getAllTargetChildren($chip); |
| 36 | |
| 37 | for my $child (@children) { |
| 38 | if ($targetObj->getTargetType($child) eq $unitTargetType) { |
| 39 | push @units, $child; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | return @units; |
| 44 | } |
| 45 | |
Deepak Kodihalli | 6225e93 | 2017-02-07 12:14:55 -0600 | [diff] [blame] | 46 | # Returns OBMC name corresponding to a Target name |
| 47 | # param[in] \@inventory = reference to array of inventory items |
| 48 | # param[in] $targetName = A Target name |
| 49 | sub getObmcName |
| 50 | { |
| 51 | my ($inventory_ref, $targetName) = @_; |
| 52 | my @inventory = @{ $inventory_ref }; |
| 53 | |
| 54 | for my $item (@inventory) |
| 55 | { |
| 56 | if($item->{TARGET} eq $targetName) |
| 57 | { |
| 58 | return $item->{OBMC_NAME}; |
| 59 | } |
| 60 | } |
| 61 | return undef; |
| 62 | } |
| 63 | |
Matt Spinler | 8df7be8 | 2017-01-09 15:42:05 -0600 | [diff] [blame] | 64 | 1; |
| 65 | |
| 66 | =head1 NAME |
| 67 | |
| 68 | Util |
| 69 | |
| 70 | =head1 DESCRIPTION |
| 71 | |
| 72 | Contains utility functions for the MRW parsers. |
| 73 | |
| 74 | =head1 METHODS |
| 75 | |
| 76 | =over 4 |
| 77 | |
| 78 | =item getBMCTarget(C<TargetsObj>) |
| 79 | |
| 80 | Returns the target string for the BMC chip. If it can't find one, |
| 81 | it will die. Currently supports single BMC systems. |
| 82 | |
| 83 | =item getChildUnitsWithTargetType(C<TargetsObj>, C<TargetType>, C<ChipTarget>) |
| 84 | |
| 85 | Returns an array of targets that have target-type C<TargetType> |
| 86 | and are children (any level) of target C<ChipTarget>. |
| 87 | |
Deepak Kodihalli | 6225e93 | 2017-02-07 12:14:55 -0600 | [diff] [blame] | 88 | =item getObmcName(C<InventoryItems>, C<TargetName>) |
| 89 | |
| 90 | Returns an OBMC name corresponding to a Target name. Returns |
| 91 | undef if the Target name is not found. |
| 92 | |
Matt Spinler | 8df7be8 | 2017-01-09 15:42:05 -0600 | [diff] [blame] | 93 | =back |
| 94 | |
| 95 | =cut |