|
NAMEFFI::Build::File::Base - Base class for File::Build filesVERSIONversion 1.56SYNOPSISCreate your own file classpackage FFI::Build::File::Foo; use parent qw( FFI::Build::File::Base ); use constant default_suffix => '.foo'; use constant default_encoding => ':utf8'; Use it: # use an existing file in the filesystem my $file = FFI::Build::File::Foo->new('src/myfile.foo'); # generate a temp file with provided content # file will be deletd when $file falls out of scope. my $file = FFI::Build::File::Foo->new(\'content for a temp foo'); DESCRIPTIONThis class is the base class for other FFI::Build::File classes.CONSTRUCTORnewmy $file = FFI::Build::File::Base->new(\$content, %options); my $file = FFI::Build::File::Base->new($filename, %options); Create a new instance of the file class. You may provide either the content of the file as a scalar reference, or the path to an existing filename. Options:
METHODSdefault_suffixmy $suffix = $file->default_suffix; MUST be overridden in the subclass. This is the standard extension for the file type. ".c" for a C file, ".o" or ".obj" for an object file depending on platform. etc. default_encodingmy $encoding = $file->default_encoding; MUST be overridden in the subclass. This is the passed to "binmode" when the file is opened for reading or writing. accept_suffixmy @suffix_list = $file->accept_suffix; Returns a list of regexes that recognize the file type. pathmy $path = $file->path; The full or relative path to the file. basenamemy $basename = $file->basename; The base filename part of the path. dirnamemy $dir = $file->dirname; The directory part of the path. is_tempmy $bool = $file->is_temp; Returns true if the file is temporary, that is, it will be deleted when the file object falls out of scope. You can call "keep", to keep the file. platformmy $platform = $file->platform; The FFI::Build::Platform instance used for this file object. buildmy $build = $file->build; The FFI::Build instance used for this file object, if any. nativemy $path = $file->native; Returns the operating system native version of the filename path. On Windows, this means that forward slash "\" is used instead of backslash "/". slurpmy $content = $file->slurp; Returns the content of the file. keep$file->keep; Turns off the temporary flag on the file object, meaning it will not automatically be deleted when the file object is deallocated or falls out of scope. build_item$file->build_item; Builds the file into its natural output type, usually an object file. It returns a new file instance, or if the file is an object file then it returns empty list. build_all$file->build_all; If implemented the file in question can directly create a shared or dynamic library without needing a link step. This is useful for languages that have their own build systems. needs_rebuildmy $bool = $file->needs_rebuild ldAUTHORAuthor: Graham Ollis <plicease@cpan.org>Contributors: Bakkiaraj Murugesan (bakkiaraj) Dylan Cali (calid) pipcet Zaki Mughal (zmughal) Fitz Elliott (felliott) Vickenty Fesunov (vyf) Gregor Herrmann (gregoa) Shlomi Fish (shlomif) Damyan Ivanov Ilya Pavlov (Ilya33) Petr Písař (ppisar) Mohammad S Anwar (MANWAR) Håkon Hægland (hakonhagland, HAKONH) Meredith (merrilymeredith, MHOWARD) Diab Jerius (DJERIUS) Eric Brine (IKEGAMI) szTheory José Joaquín Atria (JJATRIA) Pete Houston (openstrike, HOUSTON) COPYRIGHT AND LICENSEThis software is copyright (c) 2015,2016,2017,2018,2019,2020 by Graham Ollis.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |