package Parrot::Interpreter; # $Id: Interpreter.pm 21238 2007-09-12 19:47:26Z paultcochrane $ use strict; use warnings; our $VERSION = '0.02'; use Parrot::Embed; 1; __END__ =head1 NAME Parrot::Interpreter - access a Parrot interpreter from Perl 5 =head1 VERSION Version 0.02 =head1 SYNOPSIS # the first interpreter created in the program my $interp = Parrot::Interpreter->new(); # all subsequent interpreters need a parent my $child_interp = $interp->new( $interp ); # load a file that Parrot can recognize as code $interp->load_file( 'some_parrot_file.pbc' ); $interp->load_file( 'some_parrot_file.pir' ); $interp->load_file( 'some_parrot_file.pasm' ); # compile a string of Parrot code $interp->compile( $some_parrot_code ); # find a subroutine to invoke my $sub_pmc = $interp->find_global( 'some_parrot_sub' ); my $other_sub_pmc = $interp->find_global( 'another_sub', 'NameSpace' ); # invoke the subroutine my $result_pmc = $sub_pmc->invoke( $signature, @args ); # get the values out of it print "Invoking the Sub gave ", $result_pmc->get_string( $interp ), "!\n"; All Parrot access goes through an I, mediated through a C object. There is always one or more interpreters active in a system. An interpreter allows you to load code, to compile code, and to find and store global symbols in Parrot. =head3 Memory and Resource Implications If you have multiple active interpreters, the second and subsequent interpreters must each have an active interpreter as a parent. In general, this may not be an issue, but if you forget, you will receive strange error messages. Note that the parent interpreter must outlive its children, in Perl 5 terms. In general, you do not need to worry about this. However, if you cache these objects, be aware that they do keep references to each other appropriately internally. As well, all C objects keep references to their parent interpreters for similar reasons. =head1 METHODS This class provides several methods: =over 4 =item * C This class method creates and returns a new C object. If there is an existing and active C object, pass it as C<$parent>. Otherwise, pass no argument. =item * C Given the path to a file on disk, loads and compiles the code into the interpreter. This will throw an exception if Parrot could not load or compile the code successfully. =item * C Given a string containing Parrot PIR code, compiles the code into the interpreter. This will return a C object representing the code. A future version of this method may allow compiling other types of code. =item * C Given the name of a global and, optionally, the namespace of the global, attempts to find a global PMC associated with that name in the invoking interpreter. This will return a C object if successful and C if there is no PMC found. This method right now supports only single-level string namespaces; this will change in the future. =back =head1 AUTHOR chromatic, C<< >> =head1 BUGS This code might be able to detect the presence or absence of a parent interpreter and act appropriately. This code needs to support more operations on interpreters. Patches welcome. Please report any bugs or feature requests to the Parrot Porters mailing list. Someday there may be a CPAN version of this code. Who knows? =head1 COPYRIGHT & LICENSE Copyright (C) 2006-2007 The Perl Foundation / chromatic. This program is free software; you can redistribute it and/or modify it under the same terms as Parrot itself. =cut # Local Variables: # mode: cperl # cperl-indent-level: 4 # fill-column: 100 # End: # vim: expandtab shiftwidth=4: