summaryrefslogtreecommitdiff
path: root/lib/Enigmatic/Types.pm
blob: 12cb414d06ce1b2cf9336cb68d2d8d6ff920c3c4 (plain)
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
package Enigmatic::Types; 
use DAKKAR::p;
use MooseX::Types -declare => [qw(Letter WiringMap RotorPos)];
use MooseX::Types::Moose qw(Str Int);
use MooseX::Types::Structured qw(Map);
 
subtype Letter,
    as Str,
    where { /[A-Z]/ };
 
subtype WiringMap,
    as Map[Letter,Letter],
    where {
        my $in = $_->keys->sort->join;
        my $out = $_->values->sort->join;
        $in eq $out and $in eq ['A'..'Z']->join;
    };
 
coerce WiringMap,
    from Str,
    via {
        my @out = $_->uc->split(qr//)->flatten;
        croak "invalid wiring string <$_>"
            unless @out == 26;
        my %ret;
        @ret{'A'..'Z'}=@out;
        \%ret;
    };
 
subtype RotorPos,
    as Int,
    where { $_ >=0 and $_ <= 26 };