зеркало из https://github.com/mozilla/pjs.git
135 строки
4.1 KiB
Perl
Executable File
135 строки
4.1 KiB
Perl
Executable File
# -*- mode: cperl; c-basic-offset: 8; indent-tabs-mode: nil; -*-
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
# Version: MPL 1.1
|
|
#
|
|
# The contents of this file are subject to the Mozilla Public License
|
|
# Version 1.1 (the "License"); you may not use this file except in
|
|
# compliance with the License. You may obtain a copy of the License
|
|
# at http://www.mozilla.org/MPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS IS"
|
|
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
|
|
# the License for the specific language governing rights and
|
|
# limitations under the License.
|
|
#
|
|
# The Original Code is Litmus.
|
|
#
|
|
# The Initial Developer of the Original Code is
|
|
# the Mozilla Corporation.
|
|
# Portions created by the Initial Developer are Copyright (C) 2006
|
|
# the Initial Developer. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
# Chris Cooper <ccooper@deadsquid.com>
|
|
# Zach Lipton <zach@zachlipton.com>
|
|
#
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
=cut
|
|
|
|
package Litmus::Cache;
|
|
|
|
use strict;
|
|
|
|
use Litmus;
|
|
use Data::JavaScript;
|
|
use Litmus::DB::Product;
|
|
|
|
our @ISA = qw(Exporter);
|
|
@Litmus::Cache::EXPORT = qw(
|
|
rebuildCache
|
|
);
|
|
|
|
# generate a new litmusconfig.js file because something has updated:
|
|
sub rebuildCache {
|
|
my $js_only = shift;
|
|
|
|
if (!$js_only) {
|
|
unless (-e "data") { system("mkdir", "data") }
|
|
open(CACHE, ">data/litmusconfig.js.new");
|
|
|
|
print CACHE "// Litmus configuration information\n";
|
|
print CACHE "// Do not edit this file directly. It is autogenerated from the database\n";
|
|
print CACHE "\n";
|
|
}
|
|
|
|
# we build up @litmusconfig, a big perl data structure, and spit the
|
|
# whole thing out as javascript with Data::JavaScript
|
|
# shield your eyes, we're in for a long trip
|
|
my @litmusconfig;
|
|
my @products = Litmus::DB::Product->search(enabled => 1);
|
|
my $prodcount = 0;
|
|
foreach my $curproduct (@products) {
|
|
my $prodrow = \%{$litmusconfig[$prodcount]};
|
|
$prodrow->{"name"} = $curproduct->name();
|
|
$prodrow->{"id"} = $curproduct->product_id();
|
|
|
|
my $brancharray = \@{$prodrow->{"branches"}};
|
|
my $branchcount = 0;
|
|
foreach my $curbranch ($curproduct->branches(enabled => 1)) {
|
|
my $branchrow = \%{$brancharray->[$branchcount]};
|
|
$branchrow->{"name"} = $curbranch->name();
|
|
$branchrow->{"id"} = $curbranch->branch_id();
|
|
$branchcount++;
|
|
}
|
|
|
|
my $platformarray = \@{$prodrow->{"platforms"}};
|
|
my $platformcount = 0;
|
|
foreach my $curplat (Litmus::DB::Platform->search_ByProduct($curproduct->product_id())) {
|
|
my $platrow = \%{$platformarray->[$platformcount]};
|
|
$platrow->{"name"} = $curplat->name();
|
|
$platrow->{"id"} = $curplat->platform_id();
|
|
|
|
my $opsysarray = \@{$platrow->{"opsyses"}};
|
|
my $opsyscount = 0;
|
|
foreach my $curopsys ($curplat->opsyses()) {
|
|
my $opsysrow = \%{$opsysarray->[$opsyscount]};
|
|
$opsysrow->{"name"} = $curopsys->name();
|
|
$opsysrow->{"id"} = $curopsys->opsys_id();
|
|
$opsyscount++;
|
|
}
|
|
$platformcount++;
|
|
}
|
|
|
|
my $grouparray = \@{$prodrow->{"testgroups"}};
|
|
my $groupcount = 0;
|
|
foreach my $curgroup ($curproduct->testgroups()) {
|
|
next if (!$curgroup->enabled);
|
|
my $grouprow = \%{$grouparray->[$groupcount]};
|
|
$grouprow->{"name"} = $curgroup->name();
|
|
$grouprow->{"id"} = $curgroup->testgroup_id();
|
|
$groupcount++;
|
|
|
|
my $subgrouparray = \@{$grouprow->{"subgroups"}};
|
|
my $subgroupcount = 0;
|
|
foreach my $cursubgroup (Litmus::DB::Subgroup->search_EnabledByTestgroup($curgroup->testgroup_id())) {
|
|
next if (!$cursubgroup->enabled);
|
|
my $subgrouprow = \%{$subgrouparray->[$subgroupcount]};
|
|
$subgrouprow->{"name"} = $cursubgroup->name();
|
|
$subgrouprow->{"id"} = $cursubgroup->subgroup_id();
|
|
$subgroupcount++;
|
|
}
|
|
}
|
|
|
|
$prodcount++;
|
|
}
|
|
|
|
|
|
my $data = jsdump('litmusconfig', \@litmusconfig);
|
|
$data =~ s/new Object;/new Array\(\);/g;
|
|
|
|
if ($js_only) {
|
|
return $data;
|
|
}
|
|
|
|
print CACHE $data;
|
|
close(CACHE);
|
|
system("mv", "data/litmusconfig.js.new", "data/litmusconfig.js");
|
|
return 0;
|
|
}
|
|
|
|
1;
|