This file is indexed.

/usr/share/perl5/Graph/Reader/Dot.pm is in libgraph-readwrite-perl 2.09-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
####################################################################
#
#    This file was generated using Parse::Yapp version 1.02.
#
#        Don't edit this file, use source file instead.
#
#             ANY CHANGE MADE HERE WILL BE LOST !
#
####################################################################
package Graph::Reader::Dot;
$Graph::Reader::Dot::VERSION = '2.09';
use strict;
use warnings;

use parent 'Parse::Yapp::Driver';



sub new {
        my($class)=shift;
        ref($class)
    and $class=ref($class);

    my($self)=$class->SUPER::new( yyversion => '1.02',
                                  yystates =>
[
	{#State 0
		ACTIONS => {
			'STRICT' => 1,
			'GRAPH' => 2,
			'DIGRAPH' => 5
		},
		GOTOS => {
			'Graph' => 3,
			'GraphType' => 4
		}
	},
	{#State 1
		ACTIONS => {
			'STRICT' => 1,
			'GRAPH' => 2,
			'DIGRAPH' => 5
		},
		GOTOS => {
			'GraphType' => 6
		}
	},
	{#State 2
		DEFAULT => -6
	},
	{#State 3
		ACTIONS => {
			'' => 7
		}
	},
	{#State 4
		ACTIONS => {
			'QUOT' => 9,
			'NUMBER' => 8,
			'ID' => 10
		},
		GOTOS => {
			'IdNumQuot' => 11
		}
	},
	{#State 5
		DEFAULT => -5
	},
	{#State 6
		DEFAULT => -4
	},
	{#State 7
		DEFAULT => -0
	},
	{#State 8
		DEFAULT => -31
	},
	{#State 9
		DEFAULT => -30
	},
	{#State 10
		DEFAULT => -32
	},
	{#State 11
		ACTIONS => {
			"{" => 12
		}
	},
	{#State 12
		ACTIONS => {
			'GRAPH' => 13,
			'EDGE' => 17,
			'NODE' => 19,
			'NUMBER' => 8,
			'QUOT' => 9,
			"{" => 22,
			'SUBGRAPH' => 24,
			'ID' => 10
		},
		DEFAULT => -2,
		GOTOS => {
			'AttrStmt' => 15,
			'NodeId' => 14,
			'StmtList' => 16,
			'IdNumQuot' => 18,
			'OptStmtList' => 20,
			'Stmt' => 21,
			'Attr' => 23,
			'Subgraph' => 25,
			'EdgeStmt' => 26,
			'NodeStmt' => 27,
			'NodeIdSubgraph' => 28
		}
	},
	{#State 13
		ACTIONS => {
			"[" => 29
		},
		DEFAULT => -33,
		GOTOS => {
			'OptAttrList' => 30
		}
	},
	{#State 14
		ACTIONS => {
			"[" => 29
		},
		DEFAULT => -26,
		GOTOS => {
			'OptAttrList' => 31
		}
	},
	{#State 15
		ACTIONS => {
			";" => 32
		},
		DEFAULT => -39,
		GOTOS => {
			'OptSemicolon' => 33
		}
	},
	{#State 16
		ACTIONS => {
			'GRAPH' => 13,
			'EDGE' => 17,
			'NODE' => 19,
			'NUMBER' => 8,
			'QUOT' => 9,
			"{" => 22,
			'SUBGRAPH' => 24,
			'ID' => 10
		},
		DEFAULT => -3,
		GOTOS => {
			'AttrStmt' => 15,
			'NodeId' => 14,
			'IdNumQuot' => 18,
			'Stmt' => 34,
			'Attr' => 23,
			'Subgraph' => 25,
			'EdgeStmt' => 26,
			'NodeStmt' => 27,
			'NodeIdSubgraph' => 28
		}
	},
	{#State 17
		ACTIONS => {
			"[" => 29
		},
		DEFAULT => -33,
		GOTOS => {
			'OptAttrList' => 35
		}
	},
	{#State 18
		ACTIONS => {
			":" => 36,
			"=" => 37
		},
		DEFAULT => -21
	},
	{#State 19
		ACTIONS => {
			"[" => 29
		},
		DEFAULT => -33,
		GOTOS => {
			'OptAttrList' => 38
		}
	},
	{#State 20
		ACTIONS => {
			"}" => 39
		}
	},
	{#State 21
		DEFAULT => -10
	},
	{#State 22
		DEFAULT => -7,
		GOTOS => {
			'BeginScope' => 41,
			'WrappedStmtList' => 40
		}
	},
	{#State 23
		ACTIONS => {
			";" => 32
		},
		DEFAULT => -39,
		GOTOS => {
			'OptSemicolon' => 42
		}
	},
	{#State 24
		ACTIONS => {
			'QUOT' => 9,
			'NUMBER' => 8,
			'ID' => 10
		},
		GOTOS => {
			'IdNumQuot' => 43
		}
	},
	{#State 25
		ACTIONS => {
			";" => 32
		},
		DEFAULT => -25,
		GOTOS => {
			'OptSemicolon' => 44
		}
	},
	{#State 26
		ACTIONS => {
			";" => 32
		},
		DEFAULT => -39,
		GOTOS => {
			'OptSemicolon' => 45
		}
	},
	{#State 27
		ACTIONS => {
			";" => 32
		},
		DEFAULT => -39,
		GOTOS => {
			'OptSemicolon' => 46
		}
	},
	{#State 28
		ACTIONS => {
			'EDGEOP' => 47,
			"[" => 29
		},
		DEFAULT => -33,
		GOTOS => {
			'OptAttrList' => 48
		}
	},
	{#State 29
		ACTIONS => {
			'QUOT' => 9,
			'NUMBER' => 8,
			"]" => 52,
			'ID' => 10
		},
		GOTOS => {
			'Attr' => 51,
			'IdNumQuot' => 49,
			'AttrList' => 50
		}
	},
	{#State 30
		DEFAULT => -17
	},
	{#State 31
		DEFAULT => -20
	},
	{#State 32
		DEFAULT => -40
	},
	{#State 33
		DEFAULT => -12
	},
	{#State 34
		DEFAULT => -11
	},
	{#State 35
		DEFAULT => -19
	},
	{#State 36
		ACTIONS => {
			'QUOT' => 9,
			'NUMBER' => 8,
			'ID' => 10
		},
		GOTOS => {
			'IdNumQuot' => 53
		}
	},
	{#State 37
		ACTIONS => {
			'QUOT' => 9,
			'NUMBER' => 8,
			'ID' => 10
		},
		GOTOS => {
			'IdNumQuot' => 54
		}
	},
	{#State 38
		DEFAULT => -18
	},
	{#State 39
		ACTIONS => {
			";" => 32
		},
		DEFAULT => -39,
		GOTOS => {
			'OptSemicolon' => 55
		}
	},
	{#State 40
		ACTIONS => {
			"}" => 56
		}
	},
	{#State 41
		ACTIONS => {
			"{" => 22,
			'QUOT' => 9,
			'NUMBER' => 8,
			'GRAPH' => 13,
			'SUBGRAPH' => 24,
			'ID' => 10,
			'EDGE' => 17,
			'NODE' => 19
		},
		GOTOS => {
			'AttrStmt' => 15,
			'NodeId' => 14,
			'StmtList' => 57,
			'IdNumQuot' => 18,
			'Stmt' => 21,
			'Attr' => 23,
			'Subgraph' => 25,
			'EdgeStmt' => 26,
			'NodeStmt' => 27,
			'NodeIdSubgraph' => 28
		}
	},
	{#State 42
		DEFAULT => -16
	},
	{#State 43
		ACTIONS => {
			"{" => 58
		},
		DEFAULT => -29
	},
	{#State 44
		DEFAULT => -15
	},
	{#State 45
		DEFAULT => -14
	},
	{#State 46
		DEFAULT => -13
	},
	{#State 47
		ACTIONS => {
			"{" => 22,
			'QUOT' => 9,
			'NUMBER' => 8,
			'SUBGRAPH' => 24,
			'ID' => 10
		},
		GOTOS => {
			'NodeId' => 59,
			'Subgraph' => 61,
			'EdgeStmt' => 62,
			'IdNumQuot' => 60,
			'NodeIdSubgraph' => 28
		}
	},
	{#State 48
		DEFAULT => -24
	},
	{#State 49
		ACTIONS => {
			"=" => 37
		}
	},
	{#State 50
		ACTIONS => {
			"," => 64,
			"]" => 65
		},
		DEFAULT => -41,
		GOTOS => {
			'OptComma' => 63
		}
	},
	{#State 51
		DEFAULT => -37
	},
	{#State 52
		DEFAULT => -34
	},
	{#State 53
		DEFAULT => -22
	},
	{#State 54
		DEFAULT => -38
	},
	{#State 55
		DEFAULT => -1
	},
	{#State 56
		DEFAULT => -27
	},
	{#State 57
		ACTIONS => {
			'GRAPH' => 13,
			'EDGE' => 17,
			'NODE' => 19,
			'NUMBER' => 8,
			'QUOT' => 9,
			"{" => 22,
			'SUBGRAPH' => 24,
			'ID' => 10
		},
		DEFAULT => -8,
		GOTOS => {
			'EndScope' => 66,
			'AttrStmt' => 15,
			'NodeId' => 14,
			'IdNumQuot' => 18,
			'Stmt' => 34,
			'Attr' => 23,
			'Subgraph' => 25,
			'EdgeStmt' => 26,
			'NodeStmt' => 27,
			'NodeIdSubgraph' => 28
		}
	},
	{#State 58
		DEFAULT => -7,
		GOTOS => {
			'BeginScope' => 41,
			'WrappedStmtList' => 67
		}
	},
	{#State 59
		DEFAULT => -26
	},
	{#State 60
		ACTIONS => {
			":" => 36
		},
		DEFAULT => -21
	},
	{#State 61
		DEFAULT => -25
	},
	{#State 62
		DEFAULT => -23
	},
	{#State 63
		ACTIONS => {
			'QUOT' => 9,
			'NUMBER' => 8,
			'ID' => 10
		},
		GOTOS => {
			'Attr' => 68,
			'IdNumQuot' => 49
		}
	},
	{#State 64
		DEFAULT => -42
	},
	{#State 65
		DEFAULT => -35
	},
	{#State 66
		DEFAULT => -9
	},
	{#State 67
		ACTIONS => {
			"}" => 69
		}
	},
	{#State 68
		DEFAULT => -36
	},
	{#State 69
		DEFAULT => -28
	}
],
                                  yyrules  =>
[
	[#Rule 0
		 '$start', 2, undef
	],
	[#Rule 1
		 'Graph', 6,
sub
#line 16 "Graph_Reader_Dot.yp"
{
		# add the graph attributes...
		my $r = $_[0]->YYData->{DefAttr}->[-1]->{Graph};
		my $g = $_[0]->{GRAPH};
		for my $attr (keys %{$r}) {
			my $value = $r->{$attr};
			$g->set_graph_attribute($attr,$value);
		}
		$g->set_graph_attribute('name', $_[2] ); 	# set name, will be reused by Graph::Writer::Dot
	}
	],
	[#Rule 2
		 'OptStmtList', 0,
sub
#line 28 "Graph_Reader_Dot.yp"
{ #empty
		return undef;
	}
	],
	[#Rule 3
		 'OptStmtList', 1, undef
	],
	[#Rule 4
		 'GraphType', 2,
sub
#line 35 "Graph_Reader_Dot.yp"
{
		return $_[2];	# dunno what to do with the strict anyway...
	}
	],
	[#Rule 5
		 'GraphType', 1, undef
	],
	[#Rule 6
		 'GraphType', 1,
sub
#line 41 "Graph_Reader_Dot.yp"
{
		&{$_[0]->YYData->{Options}->{Carp}}( "!graph will be treated as digraph" );	# see below for expl.
		return $_[1];
	}
	],
	[#Rule 7
		 'BeginScope', 0,
sub
#line 48 "Graph_Reader_Dot.yp"
{	# empty
		# mah: use some clone() function?
		# mah: for optimization should do lazy copying... (i.e. COW, copy-on-write)
		my $n = {};
		$n->{Graph} = { %{$_[0]->YYData->{DefAttr}->[-1]->{Graph}} };
		$n->{Node} = { %{$_[0]->YYData->{DefAttr}->[-1]->{Node}} };
		$n->{Edge} = { %{$_[0]->YYData->{DefAttr}->[-1]->{Edge}} };
		push @{$_[0]->YYData->{DefAttr}}, $n;
	}
	],
	[#Rule 8
		 'EndScope', 0,
sub
#line 59 "Graph_Reader_Dot.yp"
{	# empty
		pop @{$_[0]->YYData->{DefAttr}};
	}
	],
	[#Rule 9
		 'WrappedStmtList', 3,
sub
#line 64 "Graph_Reader_Dot.yp"
{
		return $_[2];
	}
	],
	[#Rule 10
		 'StmtList', 1,
sub
#line 69 "Graph_Reader_Dot.yp"
{
		return $_[1];
	}
	],
	[#Rule 11
		 'StmtList', 2,
sub
#line 73 "Graph_Reader_Dot.yp"
{
		for my $k ( keys %{$_[2]} ) {	# merge the hashes
			$_[1]->{$k}++;
		}
		return $_[1];
	}
	],
	[#Rule 12
		 'Stmt', 2,
sub
#line 81 "Graph_Reader_Dot.yp"
{
		return {};
	}
	],
	[#Rule 13
		 'Stmt', 2, undef
	],
	[#Rule 14
		 'Stmt', 2,
sub
#line 87 "Graph_Reader_Dot.yp"
{
		return $_[1]->[2];	# only pass on the cumulative node set
	}
	],
	[#Rule 15
		 'Stmt', 2, undef
	],
	[#Rule 16
		 'Stmt', 2,
sub
#line 93 "Graph_Reader_Dot.yp"
{	# graph / subgraph attribute (i.e. same as graph [bla=3];)
		my $r = $_[0]->YYData->{DefAttr}->[-1]->{Graph};
		$r->{$_[1]->[0]} = $_[1]->[1];

		return {};	# no node returned...
	}
	],
	[#Rule 17
		 'AttrStmt', 2,
sub
#line 101 "Graph_Reader_Dot.yp"
{
		_merge_hash( $_[0]->YYData->{DefAttr}->[-1]->{Graph}, $_[2] );
	}
	],
	[#Rule 18
		 'AttrStmt', 2,
sub
#line 105 "Graph_Reader_Dot.yp"
{	# note: those will only apply to newly created nodes...
		_merge_hash( $_[0]->YYData->{DefAttr}->[-1]->{Node}, $_[2] );
	}
	],
	[#Rule 19
		 'AttrStmt', 2,
sub
#line 109 "Graph_Reader_Dot.yp"
{	# note: those will only apply to newly created edges...
		_merge_hash( $_[0]->YYData->{DefAttr}->[-1]->{Edge}, $_[2] );
	}
	],
	[#Rule 20
		 'NodeStmt', 2,
sub
#line 114 "Graph_Reader_Dot.yp"
{
		my $g = $_[0]->{GRAPH};
		unless( $g->has_vertex($_[1]) ) {
			$g->add_vertex($_[1]);
			# default node attribute only apply to *new* nodes (as in dot)
			# btw, that implies also, that the order is important in dot files for the attribute values...
			if( $_[0]->YYData->{Options}->{UseNodeAttr} ) {
				_set_attribute_hash( $g, $_[0]->YYData->{DefAttr}->[-1]->{Node}, $_[1] );
			}
		};
		_set_attribute_hash( $g, $_[2], $_[1] );
		return { $_[1] => 1 };
	}
	],
	[#Rule 21
		 'NodeId', 1, undef
	],
	[#Rule 22
		 'NodeId', 3,
sub
#line 131 "Graph_Reader_Dot.yp"
{
		&{$_[0]->YYData->{Options}->{Carp}}( "!cannot correctly process subnodes" );
		return $_[1];
	}
	],
	[#Rule 23
		 'EdgeStmt', 3,
sub
#line 142 "Graph_Reader_Dot.yp"
{
		my $g = $_[0]->{GRAPH};
		for my $u (keys %{$_[1]}) {
			for my $v (keys %{ @{$_[3]}[0] } ) {
				# add non-existent nodes...	(should make a separate loop for efficiency)
				if( $_[0]->YYData->{Options}->{UseNodeAttr} ) {
					unless ( $g->has_vertex($u) ) {
						$g->add_vertex($u); # important
						_set_attribute_hash( $g, $_[0]->YYData->{DefAttr}->[-1]->{Node}, $u );
					}
					unless(  $g->has_vertex($v) ) {
						$g->add_vertex($v);	# important
						_set_attribute_hash( $g, $_[0]->YYData->{DefAttr}->[-1]->{Node}, $v );
					}
				}
				$g->add_edge($u,$v);
				_set_attribute_hash($g, $_[3]->[1], $u, $v );
				if( $_[0]->YYData->{Options}->{UseEdgeAttr} ) {
					_set_attribute_hash($g, $_[0]->YYData->{DefAttr}->[-1]->{Edge}, $u, $v );
				}
			}
		}
		for my $u (keys %{$_[1]}) {	# update cumulative node hash
			$_[3]->[2]->{$u}++;
		}
		return [$_[1],$_[3]->[1], $_[3]->[2]];
	}
	],
	[#Rule 24
		 'EdgeStmt', 2,
sub
#line 170 "Graph_Reader_Dot.yp"
{
		return [$_[1],$_[2],$_[1]];	# mah: not copying $_[1] is dangerous but works at the moment
			# (it requires the other routines to keep the order of (a) make edges and (b) update cumulative nodes)
	}
	],
	[#Rule 25
		 'NodeIdSubgraph', 1, undef
	],
	[#Rule 26
		 'NodeIdSubgraph', 1,
sub
#line 178 "Graph_Reader_Dot.yp"
{
		return { $_[1] => 1 }
	}
	],
	[#Rule 27
		 'Subgraph', 3,
sub
#line 185 "Graph_Reader_Dot.yp"
{	# anonymous subgraph
		return $_[2];
	}
	],
	[#Rule 28
		 'Subgraph', 5,
sub
#line 189 "Graph_Reader_Dot.yp"
{	# named subgraph
		# have to store the nodeset somewhere...
		if( defined $_[0]->YYData->{Subgraphs}->{$_[2]} ) {
			# check for name clash for subgraph
			die "?subgraph '$_[2]' has been doubly defined\n";
		} else {
			# *copy* the subgraphs nodes for later use
			# mah: note: assumptions is, that the outside may (and in fact will) modify hash contents
			$_[0]->YYData->{Subgraphs}->{$_[2]} = { %{$_[4]} };
		}
		return $_[4];
	}
	],
	[#Rule 29
		 'Subgraph', 2,
sub
#line 202 "Graph_Reader_Dot.yp"
{	# subgraph reference (mah: what does it do?)
		if( !defined $_[0]->YYData->{Subgraphs}->{$_[2]} ) {
			# check for missing name
			die "?subgraph '$_[2]' has not been defined\n";
		} else {
			# hand out copy...
			return +{ %{$_[0]->YYData->{Subgraphs}->{$_[2]}} };
		}
	}
	],
	[#Rule 30
		 'IdNumQuot', 1,
sub
#line 213 "Graph_Reader_Dot.yp"
{
		return substr $_[1],1,-1;
	}
	],
	[#Rule 31
		 'IdNumQuot', 1, undef
	],
	[#Rule 32
		 'IdNumQuot', 1, undef
	],
	[#Rule 33
		 'OptAttrList', 0,
sub
#line 223 "Graph_Reader_Dot.yp"
{ # may be empty
		return {};
	}
	],
	[#Rule 34
		 'OptAttrList', 2,
sub
#line 227 "Graph_Reader_Dot.yp"
{
		return {};
	}
	],
	[#Rule 35
		 'OptAttrList', 3,
sub
#line 231 "Graph_Reader_Dot.yp"
{
		return $_[2];
	}
	],
	[#Rule 36
		 'AttrList', 3,
sub
#line 236 "Graph_Reader_Dot.yp"
{
		my ($k,$v) = @{$_[3]};
		$_[1]->{$k} = $v;
		return $_[1];
	}
	],
	[#Rule 37
		 'AttrList', 1,
sub
#line 242 "Graph_Reader_Dot.yp"
{
		return { @{$_[1]} };	# pull it into a hash reference
	}
	],
	[#Rule 38
		 'Attr', 3,
sub
#line 247 "Graph_Reader_Dot.yp"
{
		return [$_[1],$_[3]];
	}
	],
	[#Rule 39
		 'OptSemicolon', 0,
sub
#line 252 "Graph_Reader_Dot.yp"
{ #empty
		return ';' # just for the sake of completeness...
	}
	],
	[#Rule 40
		 'OptSemicolon', 1,
sub
#line 256 "Graph_Reader_Dot.yp"
{
	}
	],
	[#Rule 41
		 'OptComma', 0,
sub
#line 260 "Graph_Reader_Dot.yp"
{ # empty
		return ',';	# for the sake of completeness...
	}
	],
	[#Rule 42
		 'OptComma', 1,
sub
#line 264 "Graph_Reader_Dot.yp"
{
	}
	]
],
                                  @_);
    bless($self,$class);
}

#line 267 "Graph_Reader_Dot.yp"


sub _merge_hash {
	my ($dst,$src) = @_;
	# merge keys and values of %{$src} in %{$dst}
	for ( keys %$src ) {
		$dst->{$_} = $src->{$_};
	}
}

sub _set_attribute_hash {
	my $g = shift;
	my $h = shift;
	local $_;

	# @_ contains the destination... (graph, node, edge)
	for (keys %$h ) {
		if (@_ == 0) {
			$g->set_graph_attribute(@_,$_,$h->{$_});
		} elsif (@_ == 1) {
			$g->set_vertex_attribute(@_,$_,$h->{$_});
		} else {
			$g->set_edge_attribute(@_,$_,$h->{$_});
		}
	}
}

# lexer starts here:

# build regexp for reserved words:
my @reserved = qw(
	strict digraph graph edge node subgraph
);
my $reserved_re = qr{\b(@{[join '|', @reserved]})\b}oi;

sub _Error {
    exists $_[0]->YYData->{ERRMSG} and do {
        print $_[0]->YYData->{ERRMSG};
        delete $_[0]->YYData->{ERRMSG};
        return;
    };
	print "\$_[0]->YYCurtok " . $_[0]->YYCurtok."\n";
	print "\$_[0]->YYCurval " . $_[0]->YYCurval."\n";
	print "\@\$_[0]->YYExpect " . (join " ", $_[0]->YYExpect )."\n";
	print "\$_[0]->YYLexer " . $_[0]->YYLexer."\n";
	print "substr(\$_[0]->YYData->{INPUT},0,21) " .  substr($_[0]->YYData->{INPUT},0,21) . "...\n";
    print "Syntax error.\n";
}

sub _Lexer {
    my($parser)=shift;
	my $fh = $parser->{FILE};

	$parser->YYData->{INPUT} =~ s:^//.*::;	# must be at beginning of string, this ensures it is unquoted (string are only single line)
	if( $parser->YYData->{INPUT} eq '' ) {
		do {
			return ('',undef) if( $fh->eof );
			$_ = <$fh>;
			chomp;
			s/^\s*//;
			if( m:/\*: ) {	# kill c-style comments
			# TODO scan for eof...
				while( ! s:/\*.*\*/::s ) {
					$_ .= <$fh>;
				}
				chomp;
			}
		} while( m:^//:  || $_ eq '' );	# skip comment & empty lines
		$parser->YYData->{INPUT} = $_;
	}

	$parser->YYData->{INPUT} =~ s/^($reserved_re)\s*// and return uc $1;	# reserved word
	$parser->YYData->{INPUT} =~ s/^(-[->])\s*// and return( 'EDGEOP', $1 );	# edge operator (directed or undirected)
	$parser->YYData->{INPUT} =~ s/^([_a-zA-Z][._a-zA-Z0-9]*)\s*// and return( 'ID',$1 );	# identifier
	$parser->YYData->{INPUT} =~ s/^(-?[0-9]*\.[0-9]*|-?[0-9]+)\s*// and return( 'NUMBER',$1 );	# number
	$parser->YYData->{INPUT} =~ s/^(\"(?:\\\"|[^\"])*\")\s*// and return( 'QUOT', $1 );	# quoted string
	$parser->YYData->{INPUT} =~ s/^(.)\s*//s and return($1,$1);	# any char
}

use Graph::Reader;
use vars qw(@ISA $UseNodeAttr $UseEdgeAttr);

@ISA = qw(Parse::Yapp::Driver Graph::Reader);	# this will override setting from yapp

sub _init {
    my $self = shift;
    $self->SUPER::_init();
}

sub _read_graph {
    my $self  = shift;
    my $graph = shift;
    my $FILE  = shift;

    $self->{CONTEXT} = [];
    $self->{GRAPH}   = $graph;
	$self->{FILE} = $FILE;
	# initialize parse data structures...
	undef $self->YYData->{Subgraphs};	# will contain node sets for every name subgraph
	# clear default attribs for current scope:
	$self->YYData->{DefAttr} = [{Graph=>{}, Node=>{}, Edge=>{}}];
	$self->YYData->{Options}->{UseNodeAttr} = $UseNodeAttr;
	$self->YYData->{Options}->{UseEdgeAttr} = $UseEdgeAttr;
	$self->YYData->{Options}->{Carp} = \&Carp::carp;
	$self->YYData->{Options}->{Croak} = \&Carp::croak;
	# ^ now that's a workaround for not being able to declare Carp early enough, coz of Yapp restrictions...

	# the following kills a warning from the test regression suite:
	$self->YYData->{INPUT} = '' unless defined $self->YYData->{INPUT};

	$self->YYParse( yylex => \&_Lexer, yyerror => \&_Error );

    return 1;
}

1;

=head1 NAME

Graph::Reader::Dot - class for reading a Graph instance from Dot format

=head1 SYNOPSIS

    use Graph::Reader::Dot;
    use Graph;

    $reader = Graph::Reader::Dot->new();
    $graph = $reader->read_graph('mygraph.dot');

=head1 DESCRIPTION

B<Graph::Reader::Dot> is a class for reading in a directed graph
in the file format used by the I<dot> tool (part of the AT+T graphviz
package).

B<Graph::Reader::Dot> is a subclass of B<Graph::Reader>,
which defines the generic interface for Graph reader classes.

=head1 METHODS AND CONFIGURATION

=head2 C<new()>

Constructor - generate a new reader instance.

    $reader = Graph::Reader::Dot->new();

This doesn't take any arguments.

=head2 C<read_graph()>

Read a graph from a file:

    $graph = $reader->read_graph( $file );

The C<$file> argument can be either a filename
or a filehandle of a previously opened file.

=head2 C<$Graph::Reader::Dot::UseNodeAttr>

Controls, if implicit node attributes given by the dot directive C<node[]> will be merged into (new) nodes.
Setting it to C<0> or C<undef> (default) will not disable this feature.
Setting it to any other value will enable this feature.

=head2 C<$Graph::Reader::Dot::UseEdgeAttr>

Controls, if implicit edge attributes given by the dot directive C<edge[]> will be merged into edges.
Setting it to C<0> or C<undef> (default) will not disable this feature.
Setting it to any other value will enable this feature.

=head1 RESTRICTIONS

=over 4

=item *

Default (graph) attributes in subgraphs (i.e. inside C<{}>) are not processed.

=item *

Sub nodes as used by dot's C<record> node shape are supported.

=item *

Undirected graphs will be treated as directed graphs.
This means that the C<--> edge operator works as the C<-E<gt>> edge operator.

=item *

Be aware that you are loosing scope information on writing back the graph.

=item *

Multiple C<node[]> or C<edge[]> statements in the same scope are not correctly supported.

=back

=head1 SEE ALSO

=over 4

=item http://www.graphviz.org/

The home page for the AT+T graphviz toolkit that
includes the dot tool.

=item Graph::Reader

The base class for B<Graph::Reader::Dot>.

=item Graph::Writer::Dot

Used to serialise a Graph instance in Dot format.

=item Graph

Jarkko Hietaniemi's classes for representing directed graphs.

=item Parse::Yapp

Another base class for B<Graph::Reader::Dot>.
The B<Parse::Yapp> module comes with the following copyright notice:

The Parse::Yapp module and its related modules and shell
scripts are copyright (c) 1998-1999 Francois Desarmenien,
France. All rights reserved.

You may use and distribute them under the terms of either
the GNU General Public License or the Artistic License, as
specified in the Perl README file.

If you use the "standalone parser" option so people don't
need to install Parse::Yapp on their systems in order to
run you software, this copyright noticed should be
included in your software copyright too, and the copyright
notice in the embedded driver should be left untouched.

=back

=head1 AUTHOR

Mark A. Hillebrand E<lt>mah@wjpserver.cs.uni-sb.deE<gt>

=head1 COPYRIGHT

Copyright (c) 2001 by Mark A. Hillebrand.  All rights reserved.

This module is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut


1;