use 5.010;
use strict;
use utf8;
# ABSTRACT: Result of running a Cypher statement (a stream of records)
$Neo4j::Driver::Result::VERSION = '0.23';
use Carp qw(croak);
our $fake_attached = 0; # 1: simulate an attached stream (only used in testing)
sub new {
my ($class) = @_;
return bless { buffer => [] }, $class;
}
sub _column_keys {
my ($self) = @_;
$self->{columns} = Neo4j::Driver::ResultColumns->new($self->{result}) unless $self->{columns};
return $self->{columns};
}
sub keys {
my ($self) = @_;
# Don't break encapsulation by just returning the original reference
# because ResultColumns depends on the {columns} field being intact.
my @keys = ();
@keys = @{ $self->{result}->{columns} } if $self->{result}->{columns};
return wantarray ? @keys : [@keys];
}
sub list {
my ($self) = @_;
$self->_fill_buffer;
$self->{exhausted} = 1;
return wantarray ? @{$self->{buffer}} : $self->{buffer};
}
sub size {
my ($self) = @_;
return scalar @{$self->list};
}
sub single {
my ($self) = @_;
croak 'There is not exactly one result record' if $self->size != 1;
my ($record) = $self->list;
$record->{_summary} = $self->summary if $self->{result}->{stats};
return $record;
}
sub _as_fully_buffered {
my ($self) = @_;
$self->{attached} = $fake_attached;
return $self if $fake_attached; # (only used in testing)
# JSON results are completely available immediately and can be fully
# buffered right away, avoiding the need to loop through _fetch_next().
# (also used in Bolt/Jolt testing, $gather_results 1)
$self->{buffer} = $self->{result}->{data};
$self->{columns} = Neo4j::Driver::ResultColumns->new($self->{result});
$self->_init_record( $_ ) for @{ $self->{buffer} };
return $self;
}
sub _fill_buffer {
my ($self, $minimum) = @_;
return 0 unless $self->{attached};
$self->_column_keys if $self->{result};
# try to get at least $minimum records on the buffer
my $buffer = $self->{buffer};
my $count = 0;
my $next = 1;
while ( (! $minimum || @$buffer < $minimum)
&& ($next = $self->_fetch_next) ) {
push @$buffer, $next;
$count++;
}
# _fetch_next was called, but didn't return records => end of stream; detach
if (! $next) {
$self->{result}->{stats} = $self->{stream}->update_counts if $self->{stream};
$self->{cxn} = undef; # decrease reference count, allow garbage collection
$self->{stream} = undef;
$self->{attached} = 0;
}
return $count;
}
sub _fetch_next {
my ($self) = @_;
# simulate a JSON-backed result stream (only used in testing, $fake_attached 1)
$self->{json_cursor} //= 0;
my $record = $self->{result}->{data}->[ $self->{json_cursor}++ ];
return undef unless $record; ##no critic (ProhibitExplicitReturnUndef)
return $self->_init_record( $record );
}
sub fetch {
my ($self) = @_;
return if $self->{exhausted}; # fetch() mustn't destroy a list() buffer
$self->_fill_buffer(1);
my $next = shift @{$self->{buffer}};
$self->{exhausted} = ! $next;
return $next;
}
sub peek {
my ($self) = @_;
croak "iterator is exhausted" if $self->{exhausted};
$self->_fill_buffer(1);
return $self->{buffer}->[0];
}
sub has_next {
my ($self) = @_;
return 0 if $self->{exhausted};
$self->_fill_buffer(1);
return scalar @{$self->{buffer}};
}
sub attached {
my ($self) = @_;
return $self->{attached};
}
sub detach {
my ($self) = @_;
return $self->_fill_buffer;
}
sub consume {
my ($self) = @_;
# Neo4j::Bolt doesn't offer direct access to neo4j_close_results()
$self->{exhausted} = 1;
return $self->summary;
}
sub summary {
my ($self) = @_;
$self->_fill_buffer;
$self->{summary} //= Neo4j::Driver::ResultSummary->new( $self->{result}, $self->{notifications}, $self->{statement}, $self->{server_info} );
return $self->{summary}->init;
}
sub stats {
my ($self) = @_;
warnings::warnif deprecated => __PACKAGE__ . "->stats is deprecated; use summary instead";
$self->_fill_buffer;
return $self->{result}->{stats} ? $self->summary->counters : {};
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Neo4j::Driver::Result - Result of running a Cypher statement (a stream of records)
=head1 VERSION
version 0.23
=head1 SYNOPSIS
use Neo4j::Driver;
$session = Neo4j::Driver->new->basic_auth(...)->session;
# stream result records
$result = $session->run('MATCH (a:Actor) RETURN a.name, a.born');
while ( $record = $result->fetch ) {
...
}
# list result records
$result = $session->run('MATCH (m:Movie) RETURN m.name, m.year');
$record_count = $result->size;
@records = $result->list;
# shortcut for results with a single record only
$query = 'MATCH (m:Movie) WHERE id(m) = {id} RETURN m.name';
$name = $session->run($query, id => 12)->single->get('m.name');
=head1 DESCRIPTION
The result of running a Cypher statement, conceptually a stream of
records. The result stream can be navigated through using C<fetch()>
to consume records one at a time, or be consumed in its entirety
using C<list()> to get an array of all records.
Result streams typically are initially attached to the active
session. As records are retrieved from the stream, they may be
buffered locally in the driver. Once I<all> data on the result stream
has been retrieved from the server and buffered locally, the stream
becomes B<detached.>
Results received over HTTP always contain the complete list of
records, which is kept buffered in the driver. HTTP result streams
are thus immediately detached and valid indefinitely.
Result streams received on Bolt are valid until the next statement
is run on the same session or (if the result was retrieved within
an explicit transaction) until the transaction is closed, whichever
comes first. When a result stream has become invalid I<before> it
was detached, calling any methods in this class may fail.
Until version 0.18, this module was named C<StatementResult>.
=head1 METHODS
L<Neo4j::Driver::Result> implements the following methods.
=head2 fetch
while ($record = $result->fetch) {
...
}
Navigate to and retrieve the next L<Record|Neo4j::Driver::Record> in
this result.
When a record is fetched, that record is removed from the result
stream. Once all records have been fetched, the result stream is
exhausted and C<fetch()> returns C<undef>.
=head2 has_next
while ($record = $result->fetch) {
print $record->get('field');
print ', ' if $result->has_next;
}
Whether the next call to C<fetch()> will return a record.
Calling this method may change the internal stream buffer and
detach the result, but will never exhaust it.
=head2 keys
@keys = $result->keys;
Retrieve the column names of the records this result contains.
=head2 list
@records = $result->list;
$records = $result->list; # arrayref
Return the entire list of all L<Record|Neo4j::Driver::Record>s that
remain in the result stream. Calling this method exhausts the result
stream.
The list is internally buffered by this class. Calling this method
multiple times returns the buffered list.
This method returns an array reference if called in scalar context.
=head2 single
$name = $session->run('... LIMIT 1')->single->get('name');
Return the single L<Record|Neo4j::Driver::Record> left in the result
stream, failing if there is not exactly one record left. Calling this
method exhausts the result stream.
The returned record is internally buffered by this class. Calling this
method multiple times returns the buffered record.
=head2 size
$record_count = $result->size;
Return the count of records that calling C<list()> would yield.
Calling this method exhausts the result stream and buffers all records
for use by C<list()>.
=head2 summary
$result_summary = $result->summary;
Return a L<Neo4j::Driver::ResultSummary> object. Calling this method
detaches the result stream, but does I<not> exhaust it.
As a special case, L<Record|Neo4j::Driver::Record>s returned by the
C<single> method also have a C<summary> method that works the same
way.
$record = $transaction->run('...')->single;
$result_summary = $record->summary;
=head1 EXPERIMENTAL FEATURES
L<Neo4j::Driver::Result> implements the following
experimental features. These are subject to unannounced modification
or removal in future versions. Expect your code to break if you
depend upon these features.
=head2 Calling in scalar context
$keys = $result->keys; # arrayref
The C<keys()> method returns an array reference if called in scalar
context.
=head2 Control result stream attachment
$buffered = $result->attached; # boolean
$count = $result->detach; # number of records fetched
If necessary, C<detach()> can force the entire result stream to
be buffered locally, so that it will be available to C<fetch()>
indefinitely, irrespective of other statements run on the same
session. Essentially, the outcome is the same as calling C<list()>,
except that C<fetch()> can continue to be used because the result
is not exhausted.
Most of the official drivers do not offer these methods. Their
usefulness is doubtful. They may be removed in future versions.
=head2 Discarding the result stream
$result->consume;
Discarding the entire result may be useful as a cheap way to signal
to the Bolt networking layer that any resources held by the result
may be released. The actual result records are silently discarded
without any effort to buffer the results. Calling this method
exhausts the result stream.
As a side effect, discarding the result yields a summary of it.
$result_summary = $result->consume;
All of the official drivers offer this method, but it doesn't appear
to be necessary here, since L<Neo4j::Bolt::ResultStream> reliably
calls C<neo4j_close_results()> in its C<DESTROY()> method. It may
be removed in future versions.
=head2 Look ahead in the result stream
say "Next record: ", $result->peek->get(...) if $result->has_next;
Using C<peek()>, it is possible to retrieve the
same record the next call to C<fetch()> would retrieve without
actually navigating to it. This may change the internal stream
buffer and detach the result, but will never exhaust it.
=head1 SEE ALSO
=over
=item * L<Neo4j::Driver>
=item * L<Neo4j::Driver::B<Record>>,
L<Neo4j::Driver::B<ResultSummary>>
=item * Equivalent documentation for the official Neo4j drivers:
=back
=head1 AUTHOR
Arne Johannessen <ajnn@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2016-2021 by Arne Johannessen.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)
=cut