10 |
|
# |
11 |
|
#-------------------------------------------------------------------- |
12 |
|
package Architecture; |
13 |
+ |
|
14 |
+ |
=head1 NAME |
15 |
+ |
|
16 |
+ |
Architecture - Utilities to determine the architecture name. |
17 |
+ |
|
18 |
+ |
=head1 SYNOPSIS |
19 |
+ |
|
20 |
+ |
if (! defined $self->{SCRAM_ARCH}) |
21 |
+ |
{ |
22 |
+ |
my $arch = Architecture->new(); |
23 |
+ |
$self->architecture($a->arch()); |
24 |
+ |
$self->system_architecture($a->system_arch_stem()); |
25 |
+ |
$ENV{SCRAM_ARCH} = $self->architecture(); |
26 |
+ |
} |
27 |
+ |
|
28 |
+ |
=head1 DESCRIPTION |
29 |
+ |
|
30 |
+ |
A mechanism to extract the current system architecture. The full arch |
31 |
+ |
and system (short) arch strings can be returned in the application using |
32 |
+ |
the methods in this package. |
33 |
+ |
|
34 |
+ |
=head1 METHODS |
35 |
+ |
|
36 |
+ |
=over |
37 |
+ |
|
38 |
+ |
=cut |
39 |
+ |
|
40 |
|
require 5.004; |
41 |
|
use Exporter; |
42 |
|
|
43 |
|
@ISA=qw(Exporter); |
44 |
|
@EXPORT_OK=qw( ); |
45 |
|
|
46 |
+ |
=item C<new()> |
47 |
+ |
|
48 |
+ |
Constructor for Architecture objects. |
49 |
+ |
|
50 |
+ |
=cut |
51 |
+ |
|
52 |
|
sub new() |
53 |
|
{ |
54 |
|
############################################################### |
71 |
|
return $self; |
72 |
|
} |
73 |
|
|
74 |
+ |
=item C<arch()> |
75 |
+ |
|
76 |
+ |
Method to set or return the architecture name. |
77 |
+ |
|
78 |
+ |
=cut |
79 |
+ |
|
80 |
|
sub arch() |
81 |
|
{ |
82 |
|
my $self=shift; |
85 |
|
: $self->{arch}; |
86 |
|
} |
87 |
|
|
88 |
+ |
=item C<system_arch_stem()> |
89 |
+ |
|
90 |
+ |
Method to set or return the system architecture name stem. The |
91 |
+ |
architecture stem is the full architecture without any compiler dependence. |
92 |
+ |
For example, the architecture B<slc3_ia32_gcc323> has a system architecture |
93 |
+ |
name stem of B<slc3_ia32>. |
94 |
+ |
|
95 |
+ |
=cut |
96 |
+ |
|
97 |
|
sub system_arch_stem() |
98 |
|
{ |
99 |
|
my $self=shift; |
102 |
|
: $self->{archstem}; |
103 |
|
} |
104 |
|
|
105 |
< |
# A subroutine to determine the architecture. This |
106 |
< |
# is done by parsing the architecture map contained as |
107 |
< |
# data inside SCRAM_SITE.pm and looking for an appropriate |
108 |
< |
# match for our platform: |
105 |
> |
=item C<_initarch()> |
106 |
> |
|
107 |
> |
A subroutine to determine the architecture. This |
108 |
> |
is done by parsing the architecture map contained as |
109 |
> |
data inside B<SCRAM_SITE.pm> and looking for an appropriate |
110 |
> |
match for our platform. |
111 |
> |
|
112 |
> |
=cut |
113 |
> |
|
114 |
|
sub _initarch() |
115 |
|
{ |
116 |
|
my $self=shift; |
118 |
|
return $self; |
119 |
|
} |
120 |
|
|
121 |
< |
# Parse the map data: |
121 |
> |
=item C<parse_architecture_map()> |
122 |
> |
|
123 |
> |
Read the architecture map file defined in the site package B<SCRAM_SITE.pm>. |
124 |
> |
|
125 |
> |
=cut |
126 |
> |
|
127 |
|
sub parse_architecture_map() |
128 |
|
{ |
129 |
|
my $self=shift; |
176 |
|
} |
177 |
|
|
178 |
|
1; |
179 |
+ |
|
180 |
+ |
__END__ |
181 |
+ |
|
182 |
+ |
=back |
183 |
+ |
|
184 |
+ |
=head1 AUTHOR/MAINTAINER |
185 |
+ |
|
186 |
+ |
Shaun Ashby |
187 |
+ |
|
188 |
+ |
=cut |