summaryrefslogblamecommitdiff
path: root/utils/spore2dot.pl
blob: 7c11555deff561f85a972609546868c0b1650f0d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                      

                                             




















                                                            
         






                                                           

                                                      




















                                             









                                                                       
                  
                                                                                
                    










                                                                                                         




                      










                                                 
#!/usr/bin/env perl

use strict;
use warnings;

use JSON;
use IO::All;
use Pod::Usage;

pod2usage(1) unless scalar(@ARGV) > 0;

my @specs;
foreach (@ARGV) {
    my $content < io $_;
    push @specs, JSON::decode_json($content);
}

print << 'DOT';
digraph {

    node [shape=record];
    edge [arrowhead = odot, arrowtail = none];
DOT

my $has_interface = scalar(@specs) > 1;
if ($has_interface) {
    my $top = $specs[0]->{name};
    print "    \"", $top, "\"\n";
    print "        [label=\"{\\N}\"];\n\n";
    foreach my $spec (@specs) {
        my $name = $spec->{meta}->{module} || $spec->{name};
        print "    \"", $top, "\" -> \"", $name, "\"\n\n";
    }

}

my %meth;
foreach my $spec (@specs) {
    my $name = $spec->{meta}->{module} || $spec->{name};
    print "    \"", $name, "\"\n";
    print "        [label=\"{";
    print "&laquo;interface&raquo;\\n" if ($has_interface);
    print "\\N|";
    for my $name (sort keys %{$spec->{methods}}) {
        die "duplicated $name" if exists $meth{$name};
        $meth{$name} = 1;
        my $desc = $spec->{methods}->{$name};
        print $name, "(";
        my $first = 1;
        if ($desc->{required_payload}) {
            print "payload";
            $first = 0;
        }
        for (@{$desc->{required_params}}) {
            print ", " unless $first;
            print $_;
            $first = 0;
        }
        if ($desc->{optional_params}) {
            print " " unless $first;
        }
        for (@{$desc->{optional_params}}) {
            print "\\[";
            print ", " unless $first;
            print $_, "\\]";
            $first = 0;
        }
        if ($desc->{optional_payload}) {
            print "\\[";
            print ", " unless $first;
            print "payload\\]";
            $first = 0;
        }
        if ($desc->{unattended_params} || $spec->{unattended_params}) {
            print ", " unless $first;
            print "...";
        }
        print ")";
        print " &otimes;" if $desc->{authentication} || $spec->{authentication};
        print "\\l";
        if ($ENV{SPORE_DETAILS}) {
            print "&nbsp;&nbsp;&nbsp;", $desc->{method}, " ", $desc->{path}, "\\l";
            for my $h (sort keys %{$desc->{headers}}) {
                print "&nbsp;&nbsp;&nbsp;", $h, ": ", $desc->{headers}->{$h}, "\\l";
            }
            for my $f (sort keys %{$desc->{'form-data'}}) {
                print "&nbsp;&nbsp;&nbsp;form-data \\\"", $f, "\\\" ", $desc->{'form-data'}->{$f}, "\\l";
            }
            my $status = $desc->{expected_status} || $spec->{expected_status};
            print "&nbsp;&nbsp;&nbsp;", join(', ', @{$status}), "\\l" if $status;
        }
    }
    print "}\"];\n\n";
}
print "}\n";

__END__

=head1 NAME

spore2dot

=head1 SYNOPSIS

spore2dot.pl api1.json [api2.json, ...] > api.dot

=cut