package App::Netdisco::DB::Result::Virtual::DeviceLinks; use strict; use warnings; use base 'DBIx::Class::Core'; __PACKAGE__->table_class('DBIx::Class::ResultSource::View'); # notes to future devs: # this query does not use the slave_of field in device_port table to group # ports because what we actually want is total b/w between devices on all # links, regardless of whether those links are in an aggregate. # PG 8.4 does not have sorting within an aggregate so we cannot ensure that # left and right ports and names correspond within arrays. this is why the # right ports are the left's remote_ports (and right_descr should be ignored) __PACKAGE__->table('device_links'); __PACKAGE__->result_source_instance->is_virtual(1); __PACKAGE__->result_source_instance->view_definition(< ARRAY[dp2.port]) WHERE dp.ip <= dp2.ip GROUP BY left_ip, left_port, left_descr, aggspeed, aggports, right_ip, right_port ORDER BY dp.ip ENDSQL ); __PACKAGE__->add_columns( 'left_ip' => { data_type => 'inet', }, 'left_port' => { data_type => '[text]', }, 'left_descr' => { data_type => '[text]', }, 'aggspeed' => { data_type => 'integer', }, 'aggports' => { data_type => 'integer', }, 'right_ip' => { data_type => 'inet', }, 'right_port' => { data_type => '[text]', }, 'right_descr' => { data_type => '[text]', }, ); __PACKAGE__->has_many('left_vlans', 'App::Netdisco::DB::Result::DevicePortVlan', sub { my $args = shift; return { "$args->{foreign_alias}.ip" => { -ident => "$args->{self_alias}.left_ip" }, "$args->{self_alias}.left_port" => { '@>' => \"ARRAY[$args->{foreign_alias}.port]" }, }; } ); __PACKAGE__->has_many('right_vlans', 'App::Netdisco::DB::Result::DevicePortVlan', sub { my $args = shift; return { "$args->{foreign_alias}.ip" => { -ident => "$args->{self_alias}.right_ip" }, "$args->{self_alias}.right_port" => { '@>' => \"ARRAY[$args->{foreign_alias}.port]" }, }; } ); 1;