File size: 11,775 Bytes
b29a238 |
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 |
package Graph;
use utf8;
use namespace::autoclean;
use Carp;
use Moose;
use MooseX::SemiAffordanceAccessor; # attribute x is written using set_x($value) and read using x()
use List::MoreUtils qw(any);
use Node;
has 'comments' => (is => 'ro', isa => 'ArrayRef', default => sub {[]}, documentation => 'Sentence-level CoNLL-U comments.');
has 'nodes' => (is => 'ro', isa => 'HashRef', default => sub {my $self = shift; {0 => new Node('id' => 0, 'graph' => $self)}});
#------------------------------------------------------------------------------
# Creates a graph from a list of CoNLL-U lines (the list may or may not contain
# the final empty line, it does not matter). This is a static function, it does
# not take a reference to a Graph object but it returns one.
#------------------------------------------------------------------------------
sub from_conllu_lines
{
my @sentence = @_;
my $graph = new Graph;
# Get rid of everything except the node lines. But include empty nodes!
foreach my $line (@sentence)
{
if($line =~ m/^\#/)
{
push(@{$graph->comments()}, $line);
}
elsif($line =~ m/^\d/)
{
my @fields = split(/\t/, $line);
my $node = new Node('id' => $fields[0], 'form' => $fields[1], 'lemma' => $fields[2], 'upos' => $fields[3], 'xpos' => $fields[4],
'_head' => $fields[6], '_deprel' => $fields[7], '_deps' => $fields[8]);
$node->set_feats_from_conllu($fields[5]);
$node->set_misc_from_conllu($fields[9]);
$graph->add_node($node);
}
}
# Once all nodes have been added to the graph, we can draw edges between them.
foreach my $node ($graph->get_nodes())
{
$node->set_basic_dep_from_conllu();
$node->set_deps_from_conllu();
}
return $graph;
}
#------------------------------------------------------------------------------
# Generates a list of CoNLL-U lines from the current graph; the list does not
# contain the final empty line.
#------------------------------------------------------------------------------
sub to_conllu_lines
{
confess('Incorrect number of arguments') if(scalar(@_) != 1);
my $self = shift;
my @sentence = @{$self->comments()};
foreach my $node ($self->get_nodes())
{
my @fields = ($node->id(), $node->form(), $node->lemma(), $node->upos(), $node->xpos(), $node->get_feats_string(),
$node->bparent(), $node->bdeprel(), $node->get_deps_string(), $node->get_misc_string());
push(@sentence, join("\t", @fields));
}
return @sentence;
}
#------------------------------------------------------------------------------
# Checks whether there is a node with the given id.
#------------------------------------------------------------------------------
sub has_node
{
confess('Incorrect number of arguments') if(scalar(@_) != 2);
my $self = shift;
my $id = shift;
confess('Undefined id') if(!defined($id));
return exists($self->nodes()->{$id});
}
#------------------------------------------------------------------------------
# Returns node with the given id. If there is no such node, returns undef.
#------------------------------------------------------------------------------
sub get_node
{
confess('Incorrect number of arguments') if(scalar(@_) != 2);
my $self = shift;
my $id = shift;
confess('Undefined id') if(!defined($id));
return $self->has_node($id) ? $self->nodes()->{$id} : undef;
}
#------------------------------------------------------------------------------
# Returns node with the given id. If there is no such node, returns undef.
# This method is just an alias for get_node().
#------------------------------------------------------------------------------
sub node
{
my $self = shift;
my $id = shift;
return $self->get_node($id);
}
#------------------------------------------------------------------------------
# Returns the list of all nodes except the artificial root node with id 0. The
# list is ordered by node ids.
#------------------------------------------------------------------------------
sub get_nodes
{
confess('Incorrect number of arguments') if(scalar(@_) != 1);
my $self = shift;
my @list = map {$self->get_node($_)} (sort
{
Node::cmpids($a, $b)
}
(grep {$_ ne '0'} (keys(%{$self->nodes()}))));
return @list;
}
#------------------------------------------------------------------------------
# Adds a node to the graph. The node must have a non-empty id that has not been
# used by any other node previously added to the graph.
#------------------------------------------------------------------------------
sub add_node
{
confess('Incorrect number of arguments') if(scalar(@_) != 2);
my $self = shift;
my $node = shift;
my $id = $node->id();
if(!defined($id))
{
confess('Cannot add node with undefined ID');
}
if($self->has_node($id))
{
confess("There is already a node with ID $id in the graph");
}
$self->nodes()->{$id} = $node;
$node->set_graph($self);
}
#------------------------------------------------------------------------------
# Removes a node from the graph. Does not change the ids of the remaining
# nodes. Returns the Node object that has been disconnected from the graph.
# Returns undef if there is no node with the given id.
#------------------------------------------------------------------------------
sub remove_node
{
confess('Incorrect number of arguments') if(scalar(@_) != 2);
my $self = shift;
my $id = shift;
confess('Undefined id') if(!defined($id));
my $node = undef;
if($self->has_node($id))
{
$node = $self->nodes()->{$id};
delete($self->nodes()->{$id});
$node->set_graph(undef);
}
return $node;
}
#------------------------------------------------------------------------------
# Adds an edge between two nodes that are already in the graph.
#------------------------------------------------------------------------------
sub add_edge
{
confess('Incorrect number of arguments') if(scalar(@_) != 4);
my $self = shift;
my $srcid = shift;
my $tgtid = shift;
my $deprel = shift;
my $srcnode = $self->get_node($srcid);
my $tgtnode = $self->get_node($tgtid);
confess("Unknown node '$srcid'") if(!defined($srcnode));
confess("Unknown node '$tgtid'") if(!defined($tgtnode));
# Outgoing edge from the source (parent).
my %oe =
(
'id' => $tgtid,
'deprel' => $deprel
);
# Incoming edge to the target (child).
my %ie =
(
'id' => $srcid,
'deprel' => $deprel
);
# Check that the same edge does not exist already.
push(@{$srcnode->oedges()}, \%oe) unless(any {$_->{id} eq $tgtid && $_->{deprel} eq $deprel} (@{$srcnode->oedges()}));
push(@{$tgtnode->iedges()}, \%ie) unless(any {$_->{id} eq $srcid && $_->{deprel} eq $deprel} (@{$tgtnode->iedges()}));
}
#------------------------------------------------------------------------------
# Removes an existing edge between two nodes of the graph.
#------------------------------------------------------------------------------
sub remove_edge
{
confess('Incorrect number of arguments') if(scalar(@_) != 4);
my $self = shift;
my $srcid = shift;
my $tgtid = shift;
my $deprel = shift;
my $srcnode = $self->get_node($srcid);
my $tgtnode = $self->get_node($tgtid);
confess("Unknown node '$srcid'") if(!defined($srcnode));
confess("Unknown node '$tgtid'") if(!defined($tgtnode));
# Outgoing edge from the source (parent).
@{$srcnode->oedges()} = grep {!($_->{id} eq $tgtid && $_->{deprel} eq $deprel)} (@{$srcnode->oedges()});
# Incoming edge to the target (child).
@{$tgtnode->iedges()} = grep {!($_->{id} eq $srcid && $_->{deprel} eq $deprel)} (@{$tgtnode->iedges()});
}
#------------------------------------------------------------------------------
# Graphs refer to nodes and nodes refer back to graphs. We must break this
# cycle manually when we are done with the graph, otherwise the Perl garbage
# collector will keep the graph and the nodes in the memory forever. Note that
# renaming this method to DEMOLISH will not cause Perl to clean up automati-
# cally. As long as the references are there, the graph will not be destroyed
# and DEMOLISH will not be called.
#
# Debug memory usage like this (watch the VSZ number):
# print STDERR ("Sentence no. $i\n", `ps -p $$ -o vsz,rsz,sz,size`);
#------------------------------------------------------------------------------
sub remove_all_nodes
{
my $self = shift;
my @nodes = $self->get_nodes();
foreach my $node (@nodes)
{
$self->remove_node($node->id());
# We don't have to remove edges manually. They contain node ids but not Perl references.
}
}
__PACKAGE__->meta->make_immutable();
1;
=for Pod::Coverage BUILD
=encoding utf-8
=head1 NAME
Graph
=head1 DESCRIPTION
A C<Graph> holds a list of nodes and can return the C<Node> based on its
C<ID> (the first column in a CoNLL-U file, can be integer or a decimal number).
Edges are stored in nodes.
It is currently necessary to call the method C<remove_all_nodes()> when the
graph is no longer needed. Otherwise cyclic references will prevent Perl from
freeing the memory occupied by the graph and its nodes.
=head1 ATTRIBUTES
=over
=item comments
A read-only attribute (filled during construction) that holds the sentence-level
comments from the CoNLL-U file.
=item nodes
A hash (reference) that holds the individual L<Node> objects, indexed by their
ids from the first column of the CoNLL-U file.
=back
=head1 METHODS
=over
=item $graph = Graph::from_conllu_lines (@sentence);
Creates a graph from a list of CoNLL-U lines (the list may or may not contain
the final empty line, it does not matter). This is a static function, it does
not take a reference to a Graph object but it returns one.
=item @sentence = $graph->to_conllu_lines ();
Generates a list of CoNLL-U lines from the current graph; the list does not
contain the final empty line.
=item $graph->has_node ($id);
Returns a nonzero value if there is a node with the given id in the graph.
=item $graph->get_node ($id);
=item $graph->node ($id);
Returns the object with the node with the given id.
=item @nodes = $graph->get_nodes ();
Returns the list of all nodes except the artificial root node with id 0. The
list is ordered by node ids.
=item $graph->add_node ($node);
Adds a node (a L<Node> object) to the graph. The node must have a non-empty id
that has not been used by any other node previously added to the graph.
=item $graph->remove_node ($id);
Removes a node from the graph. Does not change the ids of the remaining
nodes. Returns the L<Node> object that has been disconnected from the graph.
Returns undef if there is no node with the given id.
=item $graph->add_edge ($source_id, $target_id, $relation_label);
Adds an edge between two nodes that are already in the graph.
=item $graph->remove_edge ($source_id, $target_id, $relation_label);
Removes an existing edge between two nodes of the graph.
=item $graph->remove_all_nodes ();
Currently the only way of breaking cyclic references when the graph is no
longer needed. Make sure to call this method in order to prevent memory leaks!
=back
=head1 AUTHORS
Daniel Zeman <zeman@ufal.mff.cuni.cz>
=head1 COPYRIGHT AND LICENSE
Copyright © 2019, 2020 by Institute of Formal and Applied Linguistics, Charles University in Prague
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|