Same name and namespace in other branches
  1. 7.x-1.x advagg_bundler/advagg_bundler.module \advagg_bundler_merge() 1 commentaire

Merge bundles together if too many where created.

This preserves the order.

Paramètres

array $groupings: Array of requested groups.

int $max: Max number of grouping.

1 call to advagg_bundler_merge()
advagg_bundler_advagg_build_aggregate_plans_alter dans advagg_bundler/advagg_bundler.advagg.inc
Implements hook_advagg_build_aggregate_plans_alter().

Fichier

advagg_bundler/advagg_bundler.advagg.inc, line 116

Code

function advagg_bundler_merge(array &$groupings, $max) {
    $group_count = count($groupings);
    if (!empty($max)) {
        // Keep going till array has been merged to the desired size.
        while ($group_count > $max) {
            // Get array sizes.
            // Counts the number of files that are placed into each bundle.
            $counts = array();
            $group_hash_counts = array();
            foreach ($groupings as $key => $values) {
                // Get the group hash counts.
                $file_size = 0;
                $group_hash_counts[$key] = 0;
                foreach ($values as $data) {
                    // Skip if bundler data is missing.
                    if (empty($data['bundler'])) {
                        continue;
                    }
                    $file_size += empty($data['bundler']['filesize_processed']) ? $data['bundler']['filesize'] : $data['bundler']['filesize_processed'];
                    $group_hash_counts[$key] += intval(substr($data['bundler']['group_hash'], 0, 8));
                }
                if (variable_get('advagg_bundler_grouping_logic', ADVAGG_BUNDLER_GROUPING_LOGIC) == 0) {
                    $counts[$key] = count($values);
                }
                elseif (variable_get('advagg_bundler_grouping_logic', ADVAGG_BUNDLER_GROUPING_LOGIC) == 1) {
                    $counts[$key] = $file_size;
                }
            }
            // Create mapping.
            // Calculates the file count of potential merges. It only merges with
            // neighbors in order to preserve execution order.
            $map = array();
            $prev_key = NULL;
            foreach ($counts as $key => $val) {
                // First run of the foreach loop; populate prev key/values and continue.
                // We can't merge with the previous group in this case.
                if (is_null($prev_key)) {
                    $prev_key = $key;
                    $prev_val = $val;
                    continue;
                }
                // Array key ($prev_val + $val) is the file count of this new group if
                // these 2 groups ($prev_key, $key) where to be merged together.
                $map[] = array(
                    $prev_val + $val => array(
                        $prev_key,
                        $key,
                    ),
                );
                // Prep for next run.
                $prev_key = $key;
                $prev_val = $val;
            }
            $group_hash_map = array();
            $prev_key = NULL;
            foreach ($group_hash_counts as $key => $val) {
                // First run of the foreach loop; populate prev key/values and continue.
                // We can't merge with the previous group in this case.
                if (is_null($prev_key)) {
                    $prev_key = $key;
                    $prev_val = $val;
                    continue;
                }
                // Array value ($prev_val + $val) is the hash count of this new group if
                // these 2 groups where to be merged together.
                $group_hash_map[$prev_key . ' ' . $key] = $prev_val + $val;
                // Prep for next run.
                $prev_key = $key;
                $prev_val = $val;
            }
            // Get best merge candidate.
            // We are looking for the smallest file count. $min is populated with a
            // large number (15 bits) so it won't be selected in this process.
            $min = PHP_INT_MAX;
            $first = NULL;
            $last = NULL;
            $last_min = NULL;
            foreach ($map as $v) {
                foreach ($v as $key => $values) {
                    $min = min($min, $key);
                    // If the min value (number of files in the proposed merged bundle) is
                    // the same as the key, then get the 2 bundle keys that generated this
                    // new min value.
                    if ($min == $key) {
                        if ($last_min == $min && !is_null($first) && !is_null($last)) {
                            list($new_first, $new_last) = $values;
                            // All things being equal pick the smaller count on the hash.
                            if ($group_hash_map[$first . ' ' . $last] > $group_hash_map[$new_first . ' ' . $new_last]) {
                                $first = $new_first;
                                $last = $new_last;
                            }
                        }
                        else {
                            list($first, $last) = $values;
                        }
                        $last_min = $min;
                    }
                }
            }
            // Create the new merged set.
            $a = $groupings[$first];
            $b = $groupings[$last];
            $new_set = array_merge($a, $b);
            // Rebuild the array with the new set in the correct place.
            $new_groupings = array();
            foreach ($groupings as $key => $files) {
                if ($key == $first) {
                    $new_groupings[$first . ' ' . $last] = $new_set;
                }
                elseif ($key != $last) {
                    $new_groupings[$key] = $files;
                }
            }
            $groupings = $new_groupings;
            --$group_count;
        }
    }
    // Error prevention below.
    // Make sure there isn't a group that has all files that don't exist or empty.
    $bad_groups = array();
    foreach ($groupings as $key => $group) {
        $missing_counter = 0;
        foreach ($group as $data) {
            if (empty($data['bundler']['filesize'])) {
                ++$missing_counter;
            }
        }
        // If all files are missing/empty in this group then it is a bad set.
        if ($missing_counter == count($group)) {
            $bad_groups[$key] = TRUE;
        }
    }
    // Add the bad groups to the smallest grouping in this set.
    if (!empty($bad_groups)) {
        $merge_candidate_key = '';
        $merge_candidate_count = PHP_INT_MAX;
        $bad_group = array();
        foreach ($groupings as $key => $group) {
            if (isset($bad_groups[$key])) {
                // Merge all bad groups into one.
                $bad_group = array_merge($bad_group, $group);
                // Delete the bad group from the master set.
                unset($groupings[$key]);
                continue;
            }
            // Find the smallest good grouping.
            $min = min($merge_candidate_count, count($group));
            if ($min < $merge_candidate_count) {
                $merge_candidate_key = $key;
                $merge_candidate_count = $min;
            }
        }
        // Move the bad files into the smallest good group.
        $new_set = isset($groupings[$merge_candidate_key]) ? $groupings[$merge_candidate_key] : array();
        $new_set = array_merge($new_set, $bad_group);
        $groupings[$merge_candidate_key] = $new_set;
    }
}