GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
App::Cmd::Command(3) User Contributed Perl Documentation App::Cmd::Command(3)

App::Cmd::Command - a base class for App::Cmd commands

version 0.334

This module has a long-term perl support period. That means it will not require a version of perl released fewer than five years ago.

Although it may work on older versions of perl, no guarantee is made that the minimum required version will not be increased. The version may be increased for any reason, and there is no promise that patches will be accepted to lower the minimum required perl.

  my ($cmd, $opt, $args) = $class->prepare($app, @args);

This method is the primary way in which App::Cmd::Command objects are built. Given the remaining command line arguments meant for the command, it returns the Command object, parsed options (as a hashref), and remaining arguments (as an arrayref).

In the usage above, $app is the App::Cmd object that is invoking the command.

This returns a new instance of the command plugin. Probably only "prepare" should use this.

  $command_plugin->execute(\%opt, \@args);

This method does whatever it is the command should do! It is passed a hash reference of the parsed command-line options and an array reference of left over arguments.

If no "execute" method is defined, it will try to call "run" -- but it will warn about this behavior during testing, to remind you to fix the method name!

This method returns the App::Cmd object into which this command is plugged.

This method returns the usage object for this command. (See Getopt::Long::Descriptive).

This method returns a list of command names handled by this plugin. The first item returned is the 'canonical' name of the command.

If this method is not overridden by an App::Cmd::Command subclass, it will return the last part of the plugin's package name, converted to lowercase. For example, YourApp::Cmd::Command::Init will, by default, handle the command "init".

Subclasses should generally get the superclass value of "command_names" and then append aliases.

This method should be overridden to provide a usage string. (This is the first argument passed to "describe_options" from Getopt::Long::Descriptive.)

If not overridden, it returns "%c COMMAND %o"; COMMAND is the first item in the result of the "command_names" method.

This method should be overridden to provide option specifications. (This is list of arguments passed to "describe_options" from Getopt::Long::Descriptive, after the first.)

If not overridden, it returns an empty list.

  $command_plugin->validate_args(\%opt, \@args);

This method is passed a hashref of command line options (as processed by Getopt::Long::Descriptive) and an arrayref of leftover arguments. It may throw an exception (preferably by calling "usage_error", below) if they are invalid, or it may do nothing to allow processing to continue.

  $self->usage_error("This command must not be run by root!");

This method should be called to die with human-friendly usage output, during "validate_args".

This method returns a short description of the command's purpose. If this method is not overridden, it will return the abstract from the module's Pod. If it can't find the abstract, it will look for a comment starting with "ABSTRACT:" like the ones used by Pod::Weaver::Section::Name.

This method can be overridden to provide full option description. It is used by the built-in help command.

If not overridden, it uses Pod::Usage to extract the description from the module's Pod DESCRIPTION section or the empty string.

Ricardo Signes <rjbs@semiotic.systems>

This software is copyright (c) 2021 by Ricardo Signes.

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

2021-06-19 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.