softlayer-object-storage-php icon indicating copy to clipboard operation
softlayer-object-storage-php copied to clipboard

Traversing prefixed container to get all objects, but getObjectCount() returns number of all objects in the container without prefix

Open leledumbo opened this issue 10 years ago • 0 comments

The following code is expected to return all objects under the given prefix as $container->objects

$client = new ObjectStorage($host, $username, $password);
$objectToRequest = 10000;
$container = $client->with('container')->setParam('prefix','a prefix')->get($objectToRequest);
while (count($container->objects) < $container->getObjectCount()) {
    $obj = end($container->objects);
    reset($container->objects);
    $marker = $obj->getPath();
    $container->get($objectToRequest, $marker);
}

However, the code runs indefinitely. And when I add:

echo count($container->objects).' = '.$container->getObjectCount();

in the loop, I see that the values are static where $container->getObjectCount() shows the number of all objects in the unprefixed container, while count($container->objects) shows the number of all objects in the prefixed container.

The reason for the loop is because get() maximum returns 10000 objects per call, so for prefixes which have more than 10000 objects the call must be repeated with marker as last retrieved object.

My question is:

  1. Is my understanding about the methods correct?
  2. Is the above code correct? i.e. doing what I intend to do as explained above? If not, what's the correct one?

Regards,

Mario

leledumbo avatar Oct 16 '15 08:10 leledumbo