Test Failed
Push — master ( 09012b...794d70 )
by Doug
04:43
created

OrientatedItemFactory::getBestOrientation()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 39
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 16
CRAP Score 2

Importance

Changes 14
Bugs 3 Features 0
Metric Value
cc 2
eloc 16
c 14
b 3
f 0
nc 2
nop 11
dl 0
loc 39
ccs 16
cts 16
cp 1
crap 2
rs 9.7333

How to fix   Many Parameters   

Many Parameters

Methods with many parameters are not only hard to understand, but their parameters also often become inconsistent when you need more, or different data.

There are several approaches to avoid long parameter lists:

1
<?php
2
/**
3
 * Box packing (3D bin packing, knapsack problem).
4
 *
5
 * @author Doug Wright
6
 */
7
declare(strict_types=1);
8
9
namespace DVDoug\BoxPacker;
10
11
use function array_filter;
12
use function count;
13
use Psr\Log\LoggerAwareInterface;
14
use Psr\Log\LoggerAwareTrait;
15
use Psr\Log\NullLogger;
16
use function usort;
17
18
/**
19
 * Figure out orientations for an item and a given set of dimensions.
20
 *
21
 * @author Doug Wright
22
 * @internal
23
 */
24
class OrientatedItemFactory implements LoggerAwareInterface
25
{
26
    use LoggerAwareTrait;
27
28
    /** @var Box */
29
    protected $box;
30
31
    /**
32
     * Whether the packer is in single-pass mode.
33
     *
34
     * @var bool
35
     */
36
    protected $singlePassMode = false;
37
38
    /**
39
     * @var OrientatedItem[]
40
     */
41
    protected static $emptyBoxCache = [];
42
43 42
    public function __construct(Box $box)
44
    {
45 42
        $this->box = $box;
46 42
        $this->logger = new NullLogger();
47 42
    }
48
49 23
    public function setSinglePassMode(bool $singlePassMode): void
50
    {
51 23
        $this->singlePassMode = $singlePassMode;
52 23
    }
53
54
    /**
55
     * Get the best orientation for an item.
56
     */
57 41
    public function getBestOrientation(
58
        Item $item,
59
        ?OrientatedItem $prevItem,
60
        ItemList $nextItems,
61
        int $widthLeft,
62
        int $lengthLeft,
63
        int $depthLeft,
64
        int $rowLength,
65
        int $x,
66
        int $y,
67
        int $z,
68
        PackedItemList $prevPackedItemList
69
    ): ?OrientatedItem {
70 41
        $this->logger->debug(
71 41
            "evaluating item {$item->getDescription()} for fit",
72
            [
73 41
                'item' => $item,
74
                'space' => [
75 41
                    'widthLeft' => $widthLeft,
76 41
                    'lengthLeft' => $lengthLeft,
77 41
                    'depthLeft' => $depthLeft,
78
                ],
79
            ]
80
        );
81
82 41
        $possibleOrientations = $this->getPossibleOrientations($item, $prevItem, $widthLeft, $lengthLeft, $depthLeft, $x, $y, $z, $prevPackedItemList);
83 41
        $usableOrientations = $this->getUsableOrientations($item, $possibleOrientations);
84
85 41
        if (empty($usableOrientations)) {
86 38
            return null;
87
        }
88
89 41
        $sorter = new OrientatedItemSorter($this, $this->singlePassMode, $widthLeft, $lengthLeft, $depthLeft, $nextItems, $rowLength, $x, $y, $z, $prevPackedItemList);
90 41
        $sorter->setLogger($this->logger);
91 41
        usort($usableOrientations, $sorter);
92
93 41
        $this->logger->debug('Selected best fit orientation', ['orientation' => $usableOrientations[0]]);
94
95 41
        return $usableOrientations[0];
96
    }
97
98
    /**
99
     * Find all possible orientations for an item.
100
     *
101
     * @return OrientatedItem[]
102
     */
103 41
    public function getPossibleOrientations(
104
        Item $item,
105
        ?OrientatedItem $prevItem,
106
        int $widthLeft,
107
        int $lengthLeft,
108
        int $depthLeft,
109
        int $x,
110
        int $y,
111
        int $z,
112
        PackedItemList $prevPackedItemList
113
    ): array {
114 41
        $permutations = $this->generatePermutations($item, $prevItem);
115
116
        //remove any that simply don't fit
117 41
        $orientations = [];
118 41
        foreach ($permutations as $dimensions) {
119 41
            if ($dimensions[0] <= $widthLeft && $dimensions[1] <= $lengthLeft && $dimensions[2] <= $depthLeft) {
120 41
                $orientations[] = new OrientatedItem($item, $dimensions[0], $dimensions[1], $dimensions[2]);
121
            }
122
        }
123
124 41
        if ($item instanceof ConstrainedPlacementItem && !$this->box instanceof WorkingVolume) {
125
            $orientations = array_filter($orientations, function (OrientatedItem $i) use ($x, $y, $z, $prevPackedItemList) {
126
                return $i->getItem()->canBePacked($this->box, $prevPackedItemList, $x, $y, $z, $i->getWidth(), $i->getLength(), $i->getDepth());
0 ignored issues
show
Bug introduced by
The method canBePacked() does not exist on DVDoug\BoxPacker\Item. It seems like you code against a sub-type of said class. However, the method does not exist in DVDoug\BoxPacker\Test\TestItem. Are you sure you never get one of those? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

126
                return $i->getItem()->/** @scrutinizer ignore-call */ canBePacked($this->box, $prevPackedItemList, $x, $y, $z, $i->getWidth(), $i->getLength(), $i->getDepth());
Loading history...
127
            });
128
        }
129
130 41
        return $orientations;
131
    }
132
133
    /**
134
     * @return OrientatedItem[]
135
     */
136 12
    public function getPossibleOrientationsInEmptyBox(Item $item): array
137
    {
138 12
        $cacheKey = $item->getWidth() .
139 12
            '|' .
140 12
            $item->getLength() .
141 12
            '|' .
142 12
            $item->getDepth() .
143 12
            '|' .
144 12
            $item->getAllowedRotations() .
145 12
            '|' .
146 12
            $this->box->getInnerWidth() .
147 12
            '|' .
148 12
            $this->box->getInnerLength() .
149 12
            '|' .
150 12
            $this->box->getInnerDepth();
151
152 12
        if (isset(static::$emptyBoxCache[$cacheKey])) {
153 11
            $orientations = static::$emptyBoxCache[$cacheKey];
154
        } else {
155 6
            $orientations = $this->getPossibleOrientations(
156 6
                $item,
157 6
                null,
158 6
                $this->box->getInnerWidth(),
159 6
                $this->box->getInnerLength(),
160 6
                $this->box->getInnerDepth(),
161 6
                0,
162 6
                0,
163 6
                0,
164 6
                new PackedItemList()
165
            );
166 6
            static::$emptyBoxCache[$cacheKey] = $orientations;
167
        }
168
169 12
        return $orientations;
170
    }
171
172
    /**
173
     * @param  OrientatedItem[] $possibleOrientations
174
     * @return OrientatedItem[]
175
     */
176 41
    protected function getUsableOrientations(
177
        Item $item,
178
        array $possibleOrientations
179
    ): array {
180 41
        $orientationsToUse = $stableOrientations = $unstableOrientations = [];
181
182
        // Divide possible orientations into stable (low centre of gravity) and unstable (high centre of gravity)
183 41
        foreach ($possibleOrientations as $orientation) {
184 41
            if ($orientation->isStable() || $this->box->getInnerDepth() === $orientation->getDepth()) {
185 41
                $stableOrientations[] = $orientation;
186
            } else {
187
                $unstableOrientations[] = $orientation;
188
            }
189
        }
190
191
        /*
192
         * We prefer to use stable orientations only, but allow unstable ones if
193
         * the item doesn't fit in the box any other way
194
         */
195 41
        if (count($stableOrientations) > 0) {
196 41
            $orientationsToUse = $stableOrientations;
197 38
        } elseif (count($unstableOrientations) > 0) {
198
            $stableOrientationsInEmptyBox = $this->getStableOrientationsInEmptyBox($item);
199
200
            if (count($stableOrientationsInEmptyBox) === 0) {
201
                $orientationsToUse = $unstableOrientations;
202
            }
203
        }
204
205 41
        return $orientationsToUse;
206
    }
207
208
    /**
209
     * Return the orientations for this item if it were to be placed into the box with nothing else.
210
     */
211
    protected function getStableOrientationsInEmptyBox(Item $item): array
212
    {
213
        $orientationsInEmptyBox = $this->getPossibleOrientationsInEmptyBox($item);
214
215
        return array_filter(
216
            $orientationsInEmptyBox,
217
            function (OrientatedItem $orientation) {
218
                return $orientation->isStable();
219
            }
220
        );
221
    }
222
223 41
    private function generatePermutations(Item $item, ?OrientatedItem $prevItem): array
224
    {
225 41
        $permutations = [];
226
227
        //Special case items that are the same as what we just packed - keep orientation
228 41
        if ($prevItem && $prevItem->isSameDimensions($item)) {
229 33
            $permutations[] = [$prevItem->getWidth(), $prevItem->getLength(), $prevItem->getDepth()];
230
        } else {
231 41
            $permutations[] = [$item->getWidth(), $item->getLength(), $item->getDepth()];
232
233 41
            if ($item->getAllowedRotations() > 1) { //simple 2D rotation
234 41
                $permutations[] = [$item->getLength(), $item->getWidth(), $item->getDepth()];
235
            }
236
237 41
            if ($item->getAllowedRotations() === Item::ROTATION_BEST_FIT) { //add 3D rotation if we're allowed
238 25
                $permutations[] = [$item->getWidth(), $item->getDepth(), $item->getLength()];
239 25
                $permutations[] = [$item->getLength(), $item->getDepth(), $item->getWidth()];
240 25
                $permutations[] = [$item->getDepth(), $item->getWidth(), $item->getLength()];
241 25
                $permutations[] = [$item->getDepth(), $item->getLength(), $item->getWidth()];
242
            }
243
        }
244
245 41
        return $permutations;
246
    }
247
}
248