File: Exporter.pm

package info (click to toggle)
libmoosex-app-perl 1.43-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 712 kB
  • sloc: perl: 4,011; makefile: 2
file content (238 lines) | stat: -rw-r--r-- 7,137 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# ============================================================================
package MooseX::App::Exporter;
# ============================================================================

use 5.010;
use utf8;
use strict;
use warnings;

use Moose::Exporter;
use MooseX::App::Utils;
use MooseX::App::ParsedArgv;
use List::Util qw(first);

my %PLUGIN_SPEC;

sub import {
    my ( $class, @imports ) = @_;

    my $caller_class = caller();

    my $caller_stash = Package::Stash->new($caller_class);
    my $exporter_stash = Package::Stash->new(__PACKAGE__);

    foreach my $import (@imports) {
        my $symbol = $exporter_stash->get_symbol('&'.$import);
        Carp::confess(sprintf('Symbol %s not defined in %s',$import,__PACKAGE__))
            unless defined $symbol;
        $caller_stash->add_symbol('&'.$import, $symbol);
    }

    return;
}

sub parameter {
    my ($meta,$name,@rest) = @_;
    return _handle_attribute($meta,$name,'parameter',@rest);
}

sub option {
    my ($meta,$name,@rest) = @_;
    return _handle_attribute($meta,$name,'option',@rest);
}

sub _handle_attribute {
    my ($meta,$name,$type,@rest) = @_;

    Moose->throw_error('Usage: option \'name\' => ( key => value, ... )')
        if @rest % 2 == 1;

    my %info;
    @info{qw(package file line)} = caller(2);

    my %attributes = ( definition_context => \%info, @rest );
    my $attrs = ( ref($name) eq 'ARRAY' ) ? $name : [ ($name) ];

    # We are in a command class
    if (! $meta->isa('Moose::Meta::Role')
        && $meta->meta->does_role('MooseX::App::Meta::Role::Class::Command')) {

        # Get required extra traits for this class on first attrubute
        unless ($meta->has_app_attribute_metaroles) {
            # Find MooseX::App::Meta::Role::Class::Base in ISA
            foreach my $parent ($meta->linearized_isa) {
                if ($parent->meta->does_role('MooseX::App::Meta::Role::Class::Base')) {
                    $meta->app_attribute_metaroles([]);
                    last;
                }
            }
            # Apply missing meta roles if required to do so
            unless ($meta->has_app_attribute_metaroles) {
                my @extra_classes;
                my $name = $meta->name;
                foreach my $class (keys %PLUGIN_SPEC) {
                    my @commands = $class->meta->command_classes;
                    if (first { $name eq $_ } @commands) {
                        my $attribute_metaclass = $class->meta->attribute_metaclass;
                        push @extra_classes,
                            map { $_->name }
                            grep { $_->name ne 'MooseX::App::Meta::Role::Attribute::Option' }
                            grep { ! $_->isa('Moose::Meta::Role::Composite')  }
                            map {
                                $_->isa('Moose::Meta::Role::Composite') ?
                                $_->calculate_all_roles : $_
                            }
                            $attribute_metaclass->meta->calculate_all_roles_with_inheritance;
                    }
                }

                $meta->app_attribute_metaroles_add(@extra_classes);
            }
        }

        $attributes{traits} ||= [];
        push(@{$attributes{traits}},$meta->app_attribute_metaroles_uniq);
    }

    $attributes{'cmd_type'} = $type;
    # Loop all attributes and check attribute traits
    foreach my $attr (@$attrs) {
        my %local_attributes = %attributes;
        if ($attr =~ m/^\+(.+)/) {
            my $meta_attribute = $meta->find_attribute_by_name($1);
            unless ($meta_attribute->does('MooseX::App::Meta::Role::Attribute::Option')) {
                $local_attributes{traits} ||= [];
                push @{$local_attributes{traits}},'MooseX::App::Meta::Role::Attribute::Option'
                    unless (first { $_ eq 'AppOption' || $_ eq 'MooseX::App::Meta::Role::Attribute::Option' }
                        @{$local_attributes{traits}});
            }
        }

        $meta->add_attribute($attr, %local_attributes);
    }

    return;
}

sub app_prefer_commandline($) {
    my ( $meta, $value ) = @_;
    return $meta->app_prefer_commandline($value);
}

sub app_strict($) {
    my ( $meta, $value ) = @_;
    return $meta->app_strict($value);
}

sub app_fuzzy($) {
    my ( $meta, $value ) = @_;
    return $meta->app_fuzzy($value);
}

sub app_permute($) {
    my ( $meta, $value ) = @_;
    return $meta->app_permute($value);
}

sub app_base($) {
    my ( $meta, $name ) = @_;
    return $meta->app_base($name);
}

sub process_plugins {
    my ($self,$caller_class,@plugins) = @_;

    # Loop all requested plugins
    my @plugin_classes;
    foreach my $plugin (@plugins) {
        my $plugin_class = 'MooseX::App::Plugin::'.$plugin;

        # TODO eval plugin class
        Class::Load::load_class($plugin_class);

        push (@plugin_classes,$plugin_class);
    }

    # Store plugin spec
    $PLUGIN_SPEC{$caller_class} = \@plugin_classes;
    return;
}

sub process_init_meta {
    my ($self,%args) = @_;

    Moose->init_meta( %args );

    my $plugins         = $PLUGIN_SPEC{$args{for_class}} || [];
    my $apply_metaroles = delete $args{metaroles} || {};
    my $apply_roles     = delete $args{roles} || [];

    # Add plugin roles
    foreach my $plugin (@$plugins) {
        push(@{$apply_roles},$plugin,{ -excludes => [ 'plugin_metaroles' ] } )
    }

    # Add common role
    push(@{$apply_roles},'MooseX::App::Role::Common')
        unless first { $_ eq 'MooseX::App::Role::Common' } @{$apply_roles};

    # Process all plugins in the given order
    foreach my $plugin_class (@{$plugins}) {
        if ($plugin_class->can('plugin_metaroles')) {
            my ($metaroles) = $plugin_class->plugin_metaroles($args{for_class});
            if (ref $metaroles eq 'HASH') {
                foreach my $type (keys %$metaroles) {
                    $apply_metaroles->{$type} ||= [];
                    push (@{$apply_metaroles->{$type}},@{$metaroles->{$type}});
                }
            }
        }
    }

    # Add meta roles
    Moose::Util::MetaRole::apply_metaroles(
        for             => $args{for_class},
        class_metaroles => $apply_metaroles
    );

    # Add class roles
    Moose::Util::apply_all_roles($args{for_class},@{$apply_roles});

    # Init plugins
    foreach my $plugin_class (@{$plugins}) {
        if ($plugin_class->can('init_plugin')) {
            $plugin_class->init_plugin($args{for_class});
        }
    }

    # Return meta
    my $meta = $args{for_class}->meta;

    return $meta;
}

sub command_short_description($) {
    my ( $meta, $description ) = @_;
    return $meta->command_short_description($description);
}

sub command_long_description($) {
    my ( $meta, $description ) = @_;
    return $meta->command_long_description($description);
}

sub command_usage($) {
    my ( $meta, $usage ) = @_;
    return $meta->command_usage($usage);
}

*app_description    = \&command_long_description;
*app_usage          = \&command_usage;

sub command_strict($) {
    my ( $meta, $value ) = @_;
    return $meta->command_strict($value);
}

1;