line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Dist::Zilla::Plugin::MapMetro::MakeGraphViz; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
16471
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
34
|
|
4
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
24
|
|
5
|
1
|
|
|
1
|
|
10
|
use 5.14.0; |
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
49
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.1101'; # VERSION |
8
|
|
|
|
|
|
|
# ABSTRACT: Automatically creates a GraphViz2 visualisation of a Metro::Map map |
9
|
|
|
|
|
|
|
|
10
|
1
|
|
|
1
|
|
1341
|
use Moose; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
use namespace::sweep; |
12
|
|
|
|
|
|
|
use Path::Tiny; |
13
|
|
|
|
|
|
|
use MooseX::AttributeShortcuts; |
14
|
|
|
|
|
|
|
use Types::Standard qw/HashRef ArrayRef Str Maybe/; |
15
|
|
|
|
|
|
|
use Map::Metro::Shim; |
16
|
|
|
|
|
|
|
use GraphViz2; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
with 'Dist::Zilla::Role::AfterBuild'; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
has cityname => ( |
21
|
|
|
|
|
|
|
is => 'rw', |
22
|
|
|
|
|
|
|
isa => Maybe[Str], |
23
|
|
|
|
|
|
|
predicate => 1, |
24
|
|
|
|
|
|
|
); |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
has settings => ( |
27
|
|
|
|
|
|
|
is => 'rw', |
28
|
|
|
|
|
|
|
isa => HashRef, |
29
|
|
|
|
|
|
|
traits => ['Hash'], |
30
|
|
|
|
|
|
|
init_arg => undef, |
31
|
|
|
|
|
|
|
default => sub { { } }, |
32
|
|
|
|
|
|
|
handles => { |
33
|
|
|
|
|
|
|
set_setting => 'set', |
34
|
|
|
|
|
|
|
get_setting => 'get', |
35
|
|
|
|
|
|
|
}, |
36
|
|
|
|
|
|
|
); |
37
|
|
|
|
|
|
|
has hidden_positions => ( |
38
|
|
|
|
|
|
|
is => 'rw', |
39
|
|
|
|
|
|
|
isa => ArrayRef, |
40
|
|
|
|
|
|
|
traits => ['Array'], |
41
|
|
|
|
|
|
|
init_arg => undef, |
42
|
|
|
|
|
|
|
default => sub { [] }, |
43
|
|
|
|
|
|
|
handles => { |
44
|
|
|
|
|
|
|
add_hidden => 'push', |
45
|
|
|
|
|
|
|
all_hiddens => 'elements', |
46
|
|
|
|
|
|
|
}, |
47
|
|
|
|
|
|
|
); |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
sub after_build { |
51
|
|
|
|
|
|
|
my $self = shift; |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
if(!$ENV{'MMVIZ'} && !$ENV{'MMVIZDEBUG'}) { |
54
|
|
|
|
|
|
|
$self->log('Set either MMVIZ or MMVIZDEBUG to a true value to run this.'); |
55
|
|
|
|
|
|
|
return; |
56
|
|
|
|
|
|
|
} |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
my @mapfiles = path('share')->children(qr{map-.*\.metro}); |
59
|
|
|
|
|
|
|
return if !scalar @mapfiles; |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
$self->log('Graphvizing...'); |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
my $mapfile = shift @mapfiles; |
64
|
|
|
|
|
|
|
$mapfile =~ m{map-(.*)\.metro}; |
65
|
|
|
|
|
|
|
my $map = $1; |
66
|
|
|
|
|
|
|
my $graph = Map::Metro::Shim->new(filepath => $mapfile)->parse; |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
my $customconnections = {}; |
69
|
|
|
|
|
|
|
if(path('share/graphviz.conf')->exists) { |
70
|
|
|
|
|
|
|
my $settings = path('share/graphviz.conf')->slurp; |
71
|
|
|
|
|
|
|
$settings =~ s{^#.*$}{}g; |
72
|
|
|
|
|
|
|
$settings =~ s{\n}{ }g; |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
foreach my $custom (split m/ +/ => $settings) { |
75
|
|
|
|
|
|
|
if($custom =~ m{^(\d+)-(\d+):([\d\.]+)$}) { |
76
|
|
|
|
|
|
|
my $origin_station_id = $1; |
77
|
|
|
|
|
|
|
my $destination_station_id = $2; |
78
|
|
|
|
|
|
|
my $len = $3; |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
$self->set_setting(sprintf ('len-%s-%s', $origin_station_id, $destination_station_id), $len); |
81
|
|
|
|
|
|
|
$self->set_setting(sprintf ('len-%s-%s', $destination_station_id, $origin_station_id), $len); |
82
|
|
|
|
|
|
|
} |
83
|
|
|
|
|
|
|
elsif($custom =~ m{^\*(\d+):(-?[\d\.]+,-?[\d\.]+)}) { |
84
|
|
|
|
|
|
|
my $station_id = $1; |
85
|
|
|
|
|
|
|
my $hidden_station_pos = $2; |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
$self->add_hidden({ station_id => $station_id, pos => $hidden_station_pos }); |
88
|
|
|
|
|
|
|
} |
89
|
|
|
|
|
|
|
elsif($custom =~ m{^(\d+):(-?\d+,-?\d+!?)$}) { |
90
|
|
|
|
|
|
|
my $station_id = $1; |
91
|
|
|
|
|
|
|
my $pos = $2; |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
$self->set_setting(sprintf ('pos-%s', $station_id) => $pos); |
94
|
|
|
|
|
|
|
} |
95
|
|
|
|
|
|
|
elsif($custom =~ m{^!(\d+)-(\d+):(\d+)\^([\d\.]+)$}) { |
96
|
|
|
|
|
|
|
my $origin_station_id = $1; |
97
|
|
|
|
|
|
|
my $destination_station_id = $2; |
98
|
|
|
|
|
|
|
my $connections = $3; |
99
|
|
|
|
|
|
|
my $len = $4; |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
$customconnections->{ $origin_station_id }{ $destination_station_id } = { connections => $connections, len => $len }; |
102
|
|
|
|
|
|
|
} |
103
|
|
|
|
|
|
|
} |
104
|
|
|
|
|
|
|
} |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
my $viz = GraphViz2->new( |
107
|
|
|
|
|
|
|
global => { directed => 0 }, |
108
|
|
|
|
|
|
|
graph => { epsilon => 0.00001, fontname => 'sans-serif', fontsize => 100, label => $self->has_cityname ? $self->cityname : ucfirst $map, labelloc => 'top' }, |
109
|
|
|
|
|
|
|
node => { shape => 'circle', fixedsize => 'true', width => 0.8, height => 0.8, penwidth => 3, fontname => 'sans-serif', fontsize => 20 }, |
110
|
|
|
|
|
|
|
edge => { penwidth => 5, len => 1.2 }, |
111
|
|
|
|
|
|
|
); |
112
|
|
|
|
|
|
|
foreach my $station ($graph->all_stations) { |
113
|
|
|
|
|
|
|
my %pos = $self->get_pos_for($station->id); |
114
|
|
|
|
|
|
|
my %node = (name => $station->id, label => $station->id, %pos); |
115
|
|
|
|
|
|
|
$viz->add_node(%node); |
116
|
|
|
|
|
|
|
} |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
foreach my $transfer ($graph->all_transfers) { |
119
|
|
|
|
|
|
|
my %len = $self->get_len_for($transfer->origin_station->id, $transfer->destination_station->id); |
120
|
|
|
|
|
|
|
$viz->add_edge(from => $transfer->origin_station->id, to => $transfer->destination_station->id, color => '#888888', style => 'dashed', %len); |
121
|
|
|
|
|
|
|
} |
122
|
|
|
|
|
|
|
foreach my $segment ($graph->all_segments) { |
123
|
|
|
|
|
|
|
foreach my $line_id ($segment->all_line_ids) { |
124
|
|
|
|
|
|
|
my $color = $graph->get_line_by_id($line_id)->color; |
125
|
|
|
|
|
|
|
my $width = $graph->get_line_by_id($line_id)->width; |
126
|
|
|
|
|
|
|
my %len = $self->get_len_for($segment->origin_station->id, $segment->destination_station->id); |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
$viz->add_edge(from => $segment->origin_station->id, |
129
|
|
|
|
|
|
|
to => $segment->destination_station->id, |
130
|
|
|
|
|
|
|
color => $color, |
131
|
|
|
|
|
|
|
penwidth => $width, |
132
|
|
|
|
|
|
|
%len, |
133
|
|
|
|
|
|
|
); |
134
|
|
|
|
|
|
|
} |
135
|
|
|
|
|
|
|
} |
136
|
|
|
|
|
|
|
#* Custom connections (for better visuals) |
137
|
|
|
|
|
|
|
my $invisible_station_id = 99000000; |
138
|
|
|
|
|
|
|
foreach my $hidden ($self->all_hiddens) { |
139
|
|
|
|
|
|
|
$viz->add_node(name => ++$invisible_station_id, |
140
|
|
|
|
|
|
|
label => '', |
141
|
|
|
|
|
|
|
($ENV{'MMVIZDEBUG'} ? () : (style => 'invis')), |
142
|
|
|
|
|
|
|
width => 0.1, |
143
|
|
|
|
|
|
|
height => 0.1, |
144
|
|
|
|
|
|
|
penwidth => 5, |
145
|
|
|
|
|
|
|
color => '#ff0000', |
146
|
|
|
|
|
|
|
pos => "$hidden->{'pos'}!", |
147
|
|
|
|
|
|
|
); |
148
|
|
|
|
|
|
|
$viz->add_edge(from => $invisible_station_id, |
149
|
|
|
|
|
|
|
to => $hidden->{'station_id'}, |
150
|
|
|
|
|
|
|
color => $ENV{'MMVIZDEBUG'} ? '#ff0000' : '#ffffff', |
151
|
|
|
|
|
|
|
penwidth => 5, |
152
|
|
|
|
|
|
|
len => 1, |
153
|
|
|
|
|
|
|
weight => 100, |
154
|
|
|
|
|
|
|
); |
155
|
|
|
|
|
|
|
} |
156
|
|
|
|
|
|
|
|
157
|
|
|
|
|
|
|
|
158
|
|
|
|
|
|
|
foreach my $origin_station_id (keys %{ $customconnections }) { |
159
|
|
|
|
|
|
|
foreach my $destination_station_id (keys %{ $customconnections->{ $origin_station_id }}) { |
160
|
|
|
|
|
|
|
my $len = $customconnections->{ $origin_station_id }{ $destination_station_id }{'len'}; |
161
|
|
|
|
|
|
|
my $connection_count = $customconnections->{ $origin_station_id }{ $destination_station_id }{'connections'}; |
162
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
my $previous_station_id = $origin_station_id; |
164
|
|
|
|
|
|
|
|
165
|
|
|
|
|
|
|
foreach my $extra_connection (1 .. $connection_count - 1) { |
166
|
|
|
|
|
|
|
$viz->add_node(name => ++$invisible_station_id, label => '', style => 'invis', width => 0.1, height => 0.1, penwidth => 5, color => '#ff0000'); |
167
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
$viz->add_edge(from => $previous_station_id, |
169
|
|
|
|
|
|
|
to => $invisible_station_id, |
170
|
|
|
|
|
|
|
color => '#ff0000', |
171
|
|
|
|
|
|
|
penwidth => $ENV{'MMVIZDEBUG'} ? 1 : 0, |
172
|
|
|
|
|
|
|
len => $len, |
173
|
|
|
|
|
|
|
); |
174
|
|
|
|
|
|
|
|
175
|
|
|
|
|
|
|
$previous_station_id = $invisible_station_id; |
176
|
|
|
|
|
|
|
} |
177
|
|
|
|
|
|
|
|
178
|
|
|
|
|
|
|
$viz->add_edge(from => $previous_station_id, |
179
|
|
|
|
|
|
|
to => $destination_station_id, |
180
|
|
|
|
|
|
|
color => '#ff0000', |
181
|
|
|
|
|
|
|
penwidth => $ENV{'MMVIZDEBUG'} ? 1 : 0, |
182
|
|
|
|
|
|
|
len => $len, |
183
|
|
|
|
|
|
|
); |
184
|
|
|
|
|
|
|
} |
185
|
|
|
|
|
|
|
} |
186
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
path('static/images')->mkpath; |
188
|
|
|
|
|
|
|
my $file = sprintf('static/images/%s.png', lc $map); |
189
|
|
|
|
|
|
|
$viz->run(format => 'png', output_file => $file, driver => 'neato'); |
190
|
|
|
|
|
|
|
|
191
|
|
|
|
|
|
|
$self->log(sprintf 'Saved in %s.', $file); |
192
|
|
|
|
|
|
|
} |
193
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
sub get_len_for { |
195
|
|
|
|
|
|
|
my $self = shift; |
196
|
|
|
|
|
|
|
my ($origin_station_id, $destination_station_id) = @_; |
197
|
|
|
|
|
|
|
return (len => $self->get_setting("len-$origin_station_id-$destination_station_id")) if $self->get_setting("len-$origin_station_id-$destination_station_id"); |
198
|
|
|
|
|
|
|
return (len => $self->get_setting("len-$origin_station_id-0")) if $self->get_setting("len-$origin_station_id-0"); |
199
|
|
|
|
|
|
|
return (len => $self->get_setting("len-0-$destination_station_id")) if $self->get_setting("len-0-$destination_station_id"); |
200
|
|
|
|
|
|
|
return (); |
201
|
|
|
|
|
|
|
} |
202
|
|
|
|
|
|
|
|
203
|
|
|
|
|
|
|
sub get_pos_for { |
204
|
|
|
|
|
|
|
my $self = shift; |
205
|
|
|
|
|
|
|
my $station_id = shift; |
206
|
|
|
|
|
|
|
return (pos => $self->get_setting("pos-$station_id")) if $self->get_setting("pos-$station_id"); |
207
|
|
|
|
|
|
|
return (); |
208
|
|
|
|
|
|
|
} |
209
|
|
|
|
|
|
|
|
210
|
|
|
|
|
|
|
1; |
211
|
|
|
|
|
|
|
|
212
|
|
|
|
|
|
|
__END__ |
213
|
|
|
|
|
|
|
|
214
|
|
|
|
|
|
|
=pod |
215
|
|
|
|
|
|
|
|
216
|
|
|
|
|
|
|
=encoding utf-8 |
217
|
|
|
|
|
|
|
|
218
|
|
|
|
|
|
|
=head1 NAME |
219
|
|
|
|
|
|
|
|
220
|
|
|
|
|
|
|
Dist::Zilla::Plugin::MapMetro::MakeGraphViz - Automatically creates a GraphViz2 visualisation of a Metro::Map map |
221
|
|
|
|
|
|
|
|
222
|
|
|
|
|
|
|
=head1 VERSION |
223
|
|
|
|
|
|
|
|
224
|
|
|
|
|
|
|
Version 0.1101, released 2015-01-16. |
225
|
|
|
|
|
|
|
|
226
|
|
|
|
|
|
|
=head1 SYNOPSIS |
227
|
|
|
|
|
|
|
|
228
|
|
|
|
|
|
|
;in dist.ini |
229
|
|
|
|
|
|
|
[MapMetro::MakeGraphViz] |
230
|
|
|
|
|
|
|
|
231
|
|
|
|
|
|
|
=head1 DESCRIPTION |
232
|
|
|
|
|
|
|
|
233
|
|
|
|
|
|
|
This L<Dist::Zilla> plugin creates a L<GraphViz2> visualisation of a L<Map::Metro> map, and is only useful in such a distribution. |
234
|
|
|
|
|
|
|
|
235
|
|
|
|
|
|
|
=head1 SEE ALSO |
236
|
|
|
|
|
|
|
|
237
|
|
|
|
|
|
|
=over 4 |
238
|
|
|
|
|
|
|
|
239
|
|
|
|
|
|
|
=item * |
240
|
|
|
|
|
|
|
|
241
|
|
|
|
|
|
|
L<Task::MapMetro::Dev> - Map::Metro development tools |
242
|
|
|
|
|
|
|
|
243
|
|
|
|
|
|
|
=item * |
244
|
|
|
|
|
|
|
|
245
|
|
|
|
|
|
|
L<Map::Metro> |
246
|
|
|
|
|
|
|
|
247
|
|
|
|
|
|
|
=item * |
248
|
|
|
|
|
|
|
|
249
|
|
|
|
|
|
|
L<Map::Metro::Plugin::Map> |
250
|
|
|
|
|
|
|
|
251
|
|
|
|
|
|
|
=item * |
252
|
|
|
|
|
|
|
|
253
|
|
|
|
|
|
|
L<Map::Metro::Plugin::Map::Stockholm> - An example |
254
|
|
|
|
|
|
|
|
255
|
|
|
|
|
|
|
=back |
256
|
|
|
|
|
|
|
|
257
|
|
|
|
|
|
|
cut |
258
|
|
|
|
|
|
|
|
259
|
|
|
|
|
|
|
=head1 SOURCE |
260
|
|
|
|
|
|
|
|
261
|
|
|
|
|
|
|
L<https://github.com/Csson/p5-Dist-Zilla-Plugin-mapMetro-MakeGraphViz> |
262
|
|
|
|
|
|
|
|
263
|
|
|
|
|
|
|
=head1 HOMEPAGE |
264
|
|
|
|
|
|
|
|
265
|
|
|
|
|
|
|
L<https://metacpan.org/release/Dist-Zilla-Plugin-MapMetro-MakeGraphViz> |
266
|
|
|
|
|
|
|
|
267
|
|
|
|
|
|
|
=head1 AUTHOR |
268
|
|
|
|
|
|
|
|
269
|
|
|
|
|
|
|
Erik Carlsson <info@code301.com> |
270
|
|
|
|
|
|
|
|
271
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
272
|
|
|
|
|
|
|
|
273
|
|
|
|
|
|
|
This software is copyright (c) 2015 by Erik Carlsson <info@code301.com>. |
274
|
|
|
|
|
|
|
|
275
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
276
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
277
|
|
|
|
|
|
|
|
278
|
|
|
|
|
|
|
=cut |