The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

CGI::Application::Plugin::RunmodeDeclare - Declare runmodes with keywords

VERSION

Version 0.03

SYNOPSIS

    package My::CgiApp;

    use base 'CGI::Application';
    use CGI::Application::Plugin::RunmodeDeclare;

    startmode hello { "Hello!" }

    runmode world($name) {
        return $self->hello
        . ', '
        . $name || "World!";
    }

    errormode oops($c: $exception) {
        return "Something went wrong at "
        . $c->get_current_runmode
        . ". Exception: $exception";
    }

DESCRIPTION

This module allows you to declare run modes with a simple keyword. It's heavily inspired by Method::Signatures, and copies all of its features (from version 0.10 at least).

It respects inheritance: run modes defined in the superclass are also available in the subclass.

Beyond automatically registering the run mode, and providing $self, it also optionally pulls named parameters from $self->query->param or $self->param.

  • Basic example

        runmode foo { $self->bar }

    This declares the run mode "foo". Notice how $self is ready for use.

  • Rename invocant

        runmode bar ($c:) { $c->baz }

    Same as above, only use $c instead of $self.

        use CGI::Application::Plugin::RunmodeDeclare invocant => '$c';
        runmode baz { $c->quux }

    Same as above, but every runmode gets $c by default. You can still say runmode ($self:) to rename the invocant.

  • With a parameter list

        runmode baz ( $id, $name ) {
            return $self->wibble("I received $id and $name from a form submission
                                  or a method invocation.");
        }

    Here, we specify that the method expects two parameters, $id and $name. Values can be supplied through a method call (e.g. $self->baz(1, "me")), or from the query object (e.g. from /script?id=42;name=me), or from this cgiapp object (e.g. $self->param( id => 42 )).

EXPORT

  • errormode

    Define the run mode that serves as $self->error_mode. You can only declare one errormode per package.

  • startmode

    Define the run mode that serves as $self->start_mode. You can only declare one startmode per package.

  • runmode

    Define run mode.

AUTHOR

Rhesa Rozendaal, <rhesa at cpan.org>

DIAGNOSTICS

  • error mode redefined (from %s) at %s line %s

    You tried to install another errormode. Placeholders are filled with

     * fully qualified name of existing errormode
     * file name
     * line number
  • start mode redefined (from %s) at %s line %s

    You tried to install another startmode. Placeholders are filled with

     * fully qualified name of existing startmode
     * file name
     * line number

BUGS

Please report any bugs or feature requests to bug-cgi-application-plugin-runmodedeclare at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CGI-Application-Plugin-RunmodeDeclare. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc CGI::Application::Plugin::RunmodeDeclare

You can also look for information at:

ACKNOWLEDGEMENTS

Matt S. Trout for Devel::Declare, and Michael G. Schwern for providing the inspiration with Method::Signatures.

COPYRIGHT & LICENSE

Copyright 2008 Rhesa Rozendaal, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.