| CatalystX::CRUD::Model::File - filesystem CRUD model |
CatalystX::CRUD::Model::File - filesystem CRUD model
package MyApp::Model::Foo; use base qw( CatalystX::CRUD::Model::File ); __PACKAGE__->config( object_class => 'MyApp::File', delegate_class => 'Path::Class::File', # optional inc_path => [ '/some/path', '/other/path' ], ); 1; =head1 DESCRIPTION
CatalystX::CRUD::Model::File is an example implementation of CatalystX::CRUD::Model.
Only new or overridden methods are documented here.
Implements the CXC::Model API.
Sets the inc_path() (if not already set)
to the root config value.
Return a new CatalystX::CRUD::Object::File object.
Read path/to/file from disk and return a CXCO::File object.
path/to/file is assumed to be in inc_path
If path/to/file is empty or cannot be found, the
CatalystX::CRUD::Object::File object is returned but its content()
will be undef. If its parent dir is '.', its dir()
will be set to the first item in inc_path().
Returns the include path from config(). The include path is searched
by search(), count() and iterator().
Returns a wanted subroutine suitable for File::Find.
# TODO regex vs exact match =cut
sub make_query { my ($self) = @_; return sub {1}; }
Uses File::Find to search through inc_path() for files.
filter_CODE should be a CODE ref matching format returned by make_query().
If not set, make_query() is called by default.
Returns an array ref of CXCO::File objects.
Returns number of files matching filter_CODE. See search for a description of filter_CODE.
Acts same as search() but returns a CatalystX::CRUD::Iterator::File
object instead of a simple array ref.
For rel_name of "dir" will create a symlink for other_file_name's basename to file in the same directory as file.
If a file already exists for other_file_name in the same dir as file will throw an error indicating the relationship already exists.
If the symlink fails, will throw_error().
If symlink() is not supported on your system, will print an error
to the Catalyst log.
For rel_name of "dir" will create a symlink for other_file_name's basename to file in the same directory as file.
If the symlink represented by other_file_name does not exist or is not a symlink, will throw an error.
If the unlink fails will also throw an error.
Peter Karman, <perl at peknet.com>
Please report any bugs or feature requests to
bug-catalystx-crud at rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc CatalystX::CRUD
You can also look for information at:
Copyright 2007 Peter Karman, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| CatalystX::CRUD::Model::File - filesystem CRUD model |