GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
MongoDB::GridFSBucket::DownloadStream(3) User Contributed Perl Documentation MongoDB::GridFSBucket::DownloadStream(3)

MongoDB::GridFSBucket::DownloadStream - File handle abstraction for downloading

version v2.2.2

    # OO API
    $stream = $bucket->open_download_stream($file_id)
    while ( my $line = $stream->readline ) {
        ...
    }

    # Tied-handle API
    $fh = $stream->fh;
    while ( my $line = <$fh> ) {
        ...
    }

This class provides a file abstraction for downloading. You can stream data from an object of this class using method calls or a tied-handle interface.

The file document for the file to be downloaded.

Valid file documents typically include the following fields:

  • _id – a unique ID for this document, typically a BSON::OID object. Legacy GridFS files may store this value as a different type.
  • length – the length of this stored file, in bytes
  • chunkSize – the size, in bytes, of each full data chunk of this file.
  • uploadDate – the date and time this file was added to GridFS, stored as a BSON datetime value and inflated per the bucket's bson_codec attribute.
  • filename – the name of this stored file; this does not need to be unique
  • metadata – any additional application-specific data
  • md5 – DEPRECATED
  • contentType – DEPRECATED
  • aliases – DEPRECATED

    my $fh = $downloadstream->fh;
    while ( <$fh> ) {
        say($_);
    }

Returns a new Perl file handle tied to this instance of DownloadStream that can be operated on with the built-in functions "read", "readline", "getc", "eof", "fileno" and "close".

Important notes:

Allowing one of these tied filehandles to fall out of scope will NOT cause close to be called. This is due to the way tied file handles are implemented in Perl. For close to be called implicitly, all tied filehandles and the original object must go out of scope.

Each file handle retrieved this way is tied back to the same object, so calling close on multiple tied file handles and/or the original object will have the same effect as calling close on the original object multiple times.

    $stream->close

Works like the builtin "close".

Important notes:

  • Calling close will also cause any tied file handles created for the stream to also close.
  • "close" will be automatically called when a stream object is destroyed.
  • Calling "close" repeatedly will warn.

    if ( $stream->eof() ) { ... }

Works like the builtin "eof".

    if ( $stream->fileno() ) { ... }

Works like the builtin "fileno", but it returns -1 if the stream is open and undef if closed.

    $char = $stream->getc();

Works like the builtin "getc".

    $data = $stream->read($buf, $length, $offset)

Works like the builtin "read".

    $line  = $stream->readline();
    @lines = $stream->readline();

Works like the builtin "readline".

  • David Golden <david@mongodb.com>
  • Rassi <rassi@mongodb.com>
  • Mike Friedman <friedo@friedo.com>
  • Kristina Chodorow <k.chodorow@gmail.com>
  • Florian Ragwitz <rafl@debian.org>

This software is Copyright (c) 2020 by MongoDB, Inc.

This is free software, licensed under:

  The Apache License, Version 2.0, January 2004
2020-08-13 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.