/usr/share/perl5/MongoDBx/Class/Document.pm is in libmongodbx-class-perl 1.02-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 | package MongoDBx::Class::Document;
# ABSTRACT: A MongoDBx::Class document role
our $VERSION = "1.02";
$VERSION = eval $VERSION;
use Moose::Role;
use namespace::autoclean;
use Carp;
=head1 NAME
MongoDBx::Class::Document - A MongoDBx::Class document role
=head1 VERSION
version 1.02
=head1 SYNOPSIS
# create a document class
package MyApp::Schema::Novel;
use MongoDBx::Class::Moose; # use this instead of Moose;
use namespace::autoclean;
with 'MongoDBx::Class::Document';
has 'title' => (is => 'ro', isa => 'Str', required => 1, writer => 'set_title');
holds_one 'author' => (is => 'ro', isa => 'MyApp::Schema::PersonName', required => 1, writer => 'set_author');
has 'year' => (is => 'ro', isa => 'Int', predicate => 'has_year', writer => 'set_year');
has 'added' => (is => 'ro', isa => 'DateTime', traits => ['Parsed'], required => 1);
has 'review_count' => (is => 'rw', isa => 'Int', traits => ['Transient'], builder => '_build_review_count');
holds_many 'tags' => (is => 'ro', isa => 'MyApp::Schema::Tag', predicate => 'has_tags');
joins_one 'synopsis' => (is => 'ro', isa => 'Synopsis', coll => 'synopsis', ref => 'novel');
has_many 'related_novels' => (is => 'ro', isa => 'Novel', predicate => 'has_related_novels', writer => 'set_related_novels', clearer => 'clear_related_novels');
joins_many 'reviews' => (is => 'ro', isa => 'Review', coll => 'reviews', ref => 'novel');
sub _build_review_count { shift->reviews->count }
sub print_related_novels {
my $self = shift;
foreach my $other_novel ($self->related_novels) {
print $other_novel->title, ', ',
$other_novel->year, ', ',
$other_novel->author->name, "\n";
}
}
around 'reviews' => sub {
my ($orig, $self) = (shift, shift);
my $cursor = $self->$orig;
return $cursor->sort([ year => -1, title => 1, 'author.last_name' => 1 ]);
};
__PACKAGE__->meta->make_immutable;
=head1 DESCRIPTION
MongoDBx::Class::Document is a L<Moose role|Moose::Role> meant to be consumed
by document classes. It provides expanded MongoDB documents with some
common attributes, and needed methods for easy updating and deleting of
documents.
=head1 ATTRIBUTES
The following attributes are provided:
=head2 _id
The document's internal ID, represented as a L<MongoDB::OID> object. This
is a required attribute.
=head2 _collection
The L<MongoDBx::Class::Collection> object representing the MongoDB collection
in which the document is stored. This is a required attribute.
=head2 _class
A string. The name of the document class of this document. This is a required
attribute.
=cut
has '_id' => (is => 'ro', isa => 'MongoDB::OID', required => 1);
has '_collection' => (is => 'ro', isa => 'MongoDBx::Class::Collection', required => 1);
has '_class' => (is => 'ro', isa => 'Str', required => 1);
=head1 OBJECT METHODS
The following object methods are provided:
=head2 id()
=head2 oid()
Both methods are equivalent. They are convenience methods that return
the documents internal MongoDB OID in string format.
=cut
sub id {
shift->_id->to_string;
}
sub oid {
shift->id;
}
=head2 update( [ \%object, [ \%options ] ] )
Saves a new version of the document to the database. The behavior of this
method is dependent on the existance or non-existance of an object hash-ref:
If an object hash-ref is provided, all of its key-value pairs are collapsed,
and a C<$set> update is performed on them. For example:
$doc->update({ author => 'Sir Arthur Conan Doyle', year => 1895 }, $options)
Will effectively result in something like this being performed:
$coll->update({ _id => $doc->_id }, { '$set' => { author => 'Sir Arthur Conan Doyle', year => 1895 } }, $options)
If an object hash-ref isn't provided, the entire document object is collapsed
and an aggresive update is performed (i.e. an entirely new version of the
document, representing the current state of the document's attributes, is
saved to the database. For example:
my $doc = find_one($id);
$doc->set_author('Sir Arthur Conan Doyle');
$doc->set_year(1895);
$doc->update;
Will effectively result in something like this being performed:
$coll->update({ _id => $doc->_id }, $collapsed_doc, $options)
You can pass an options hash-ref just like with the C<update()> method
of L<MongoDBx::Class::Collection>, but only if you pass an update object
also.
Returns the output of L<MongoDB::Collection>'s original C<update()> method.
=cut
sub update {
my $self = shift;
if (scalar @_ && ref $_[0] eq 'HASH') {
$_[0]->{_class} = $self->_class;
my $doc = $self->_connection->collapse($_[0]);
delete $doc->{_class};
# update the database entry
my $ret = $self->_collection->update({ _id => $self->_id }, { '$set' => $doc }, $_[1]);
# update the object itself
$self->_update_self;
return $ret;
} else {
my $doc = { _class => $self->_class };
foreach ($self->meta->get_all_attributes) {
my $name = $_->name;
next if $name eq '_collection' || $name eq '_class';
my $val = $self->$name;
next unless defined $val;
$name =~ s/^_// if ($_->{isa} eq 'MongoDBx::Class::CoercedReference' ||
$_->{isa} eq 'ArrayOfMongoDBx::Class::CoercedReference' ||
($_->documentation && $_->documentation eq 'MongoDBx::Class::EmbeddedDocument')
);
$doc->{$name} = $val;
}
return $self->_collection->update({ _id => $self->_id }, $self->_connection->collapse($doc), $_[1]);
}
}
=head2 delete()
=head2 remove()
Both methods are equivalent. They are shortcut methods for invoking the
collection's C<remove()> method on this document only. So, umm, they remove
the document. But note that this operation does not cascade, so documents
which are considered dependent on this document (such as those that reference
it with C<belongs_to>) will not be removed too.
=cut
sub delete {
my $self = shift;
$self->_collection->remove({ _id => $self->_id });
}
sub remove { shift->delete }
=head1 INTERNAL METHODS
The following methods are only to be used internally.
=head2 _database()
Convenience method, shortcut for C<< $doc->_collection->_database >>.
=cut
sub _database {
shift->_collection->_database;
}
=head2 _connection()
Convenience method, shortcut for C<< $doc->_database->_connection >>.
=cut
sub _connection {
shift->_database->_connection;
}
=head2 _attributes()
Returns a list of names of all attributes the document object has, minus
'_collection' and '_class', sorted alphabetically.
=cut
sub _attributes {
my @names;
foreach (shift->meta->get_all_attributes) {
next if $_->name =~ m/^_(class|collection)$/;
if ($_->{isa} =~ m/MongoDBx::Class::CoercedReference/ || ($_->documentation && $_->documentation eq 'MongoDBx::Class::EmbeddedDocument')) {
my $name = $_->name;
$name =~ s/^_//;
push(@names, $name);
} else {
push(@names, $_->name);
}
}
return sort @names;
}
=head2 _update_self()
Used by the C<update( \%changes )> method to update the object instance
with the new values.
=cut
sub _update_self {
my $self = shift;
my $new_version = $self->_collection->find_one({ _id => $self->_id });
unless ($new_version) {
# huh?! we didn't find the document?!@? lets warn but not die
carp "Can't find document after update, object instance will remain unchanged.";
return;
}
foreach ($self->meta->get_all_attributes) {
my $new_val = $_->get_value($new_version);
$_->set_value($self, $new_val) if defined $new_val;
}
}
=head1 AUTHOR
Ido Perlmuter, C<< <ido at ido50.net> >>
=head1 BUGS
Please report any bugs or feature requests to C<bug-mongodbx-class at rt.cpan.org>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=MongoDBx-Class>. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc MongoDBx::Class::Document
You can also look for information at:
=over 4
=item * RT: CPAN's request tracker
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=MongoDBx::Class>
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/MongoDBx::Class>
=item * CPAN Ratings
L<http://cpanratings.perl.org/d/MongoDBx::Class>
=item * Search CPAN
L<http://search.cpan.org/dist/MongoDBx::Class/>
=back
=head1 SEE ALSO
L<MongoDBx::Class::Moose>, L<MongoDBx::Class::EmbeddedDocument>.
=head1 LICENSE AND COPYRIGHT
Copyright 2010-2012 Ido Perlmuter.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
=cut
1;
|