comment out types from dependency group code
[scpubgit/DX.git] / lib / DX / Types.pm
CommitLineData
3e465d5d 1package DX::Types;
2
3use strictures 2;
4use Type::Library
5 -base,
6 -declare => (
7 (our @CLASSES = qw(
8 Hypothesis Scope ResolvedPropositionSet Proposition DependencyMap
8c16d3c9 9 PropositionSequence QueryState ShellState ShellSession SearchState
3e465d5d 10 )),
11 (our @ROLES = qw(
12 Step Action ActionPolicy Predicate Value
13 )),
14 qw(
15 DependencyType _DependencyTree DependecySpec
16 One DependencyGroupEntry DependencyGroup
17 ),
18 )
19;
20use Type::Utils -all;
21use Types::Standard qw(
22 ArrayRef Tuple HashRef Dict Maybe Optional slurpy Str
23);
24use DX::Utils qw(:event_types :dep_types);
25
26foreach my $class (our @CLASSES) {
27 class_type $class => { class => 'DX::'.$class };
28}
29
30foreach my $role (our @ROLES) {
31 role_type $role => { role => 'DX::Role::'.$role };
32}
33
34class_type DictValue => { class => 'DX::Value::Dict' };
35
36declare AlternativeList => as ArrayRef[Tuple[Hypothesis, Step]];
37
38declare DependencyType => where {
d5511afa 39 foreach my $cand (EXISTENCE_OF, TYPE_OF, INDICES_OF, CONTENTS_OF) {
3e465d5d 40 return 1 if $_ eq $cand;
41 }
42 return 0;
43};
44
45declare EventType => where {
46 foreach my $cand (VALUE_SET, VALUE_EXISTS) {
47 return 1 if $_ eq $cand;
48 }
49 return 0;
50};
51
52declare _DependencyTree => where { is_DependencyTree($_) };
53
54declare DependencySpec => as Tuple[DependencyType, slurpy ArrayRef[Str]];
55
56declare One => where { !ref($_) and $_ eq 1 };
57
58declare DependencyTree => # [ \%subtree, \%existence_of, ... ]
59 as HashRef[Tuple[
60 Maybe[_DependencyTree],
61 (Optional[Maybe[HashRef[One]]]) x 4
62 ]];
63
9acbb80f 64## These were from the dependency group thing which makes no sense until
65## we have scoping, so revisit it then
66#
67#declare DependencyGroupEntry =>
68# as Tuple[DependencyType, slurpy ArrayRef[Value|Str]];
69#
70#declare DependencyGroup =>
71# as Tuple[Maybe[Value], slurpy ArrayRef[DependencyGroupEntry]];
72#
73#declare DependencyGroupList => as ArrayRef[DependencyGroup];
3e465d5d 74
751;