This file is indexed.

/usr/lib/perl5/Class/MethodMaker/V1Compat.pm is in libclass-methodmaker-perl 2.19-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
# (X)Emacs mode: -*- cperl -*-

package Class::MethodMaker::V1Compat;

=head1 NAME

Class::MethodMaker::V1Compat - V1 compatibility code for C::MM

=head1 SYNOPSIS

This class is for internal implementation only.  It is not a public API.

=head1 DESCRIPTION

Class::MethodMaker version 2 strives for backward-compatibility with version 1
as far as possible.  That is to say, classes built with version 1 should work
with few if any changes.  However, the calling conventions for building new
classes are significantly different: this is necessary to achieve a greater
consistency of arguments.

Version 2 takes all arguments within a single arrayref:

  use Class::MethodMaker
    [ scalar => 'a' ];

If arguments are presented as a list, then Class::MethodMaker assumes that
this is a version 1 call, and acts accordingly.  Version 1 arguments are
passed and internally rephrased to version 2 arguments, and passed off to the
version 2 engine.  Thus, the majority of version 1 calls can be upgraded to
version 2 merely by rephrasing.  However, there are a number of behaviours
that in version 1 that are internally inconsistent.  These behaviours are
mimicked in version 1 mode as far as possible, but are not reproducible in
version 2 (to allow version 2 clients to rely on a more internally consistent
interface).

=head2 Version 2 Implementations

The nearest equivalent to each 1 component (slot) available in version 2 is
shown below using the indicated data-structures & options to create a
component called C<a> that mimics the V1 component behaviour as closely as
possible:

=over 4

=item abstract

  use Class::MethodMaker
    [ abstract => 'a' ];

=item boolean

Boolean is available as a backwards compatibility hack, but there is currently
no V2 equivalent.  It is likely that some replacement mechanism will be
introduced in the future, but that it will be incompatible with the version 1
boolean.

=item code

  use Class::MethodMaker
    [ scalar => 'a' ];

Let's face it, the v1 store-if-it's-a-coderef-else-retrieve semantics are
rather broken.  How do you pass a coderef as argument to one of these?  It is
on the TODO list to recognize code as fundamental restricted type (analogous
to INTEGER), which would add in a C<*_invoke> method.

=item copy

  use Class::MethodMaker
    [ copy => 'a' ];

The v2 method is the same as v1.

=item counter

  use Class::MethodMaker
    [ scalar => [{-type => Class::MethodMaker::Constants::INTEGER}, 'a'] ];

=item copy

=item deep_copy

  use Class::MethodMaker
    [ copy => [ -deep => 'a' ] ];

=item get_concat

  use Class::MethodMaker
    [ scalar => [{ -store_cb => sub {
                                  defined $_[1] ? ( defined $_[3] ?
                                                    "$_[3] $_[1]" : $_[1] )
                                                : undef;
                                }
                 },
                 'a' ]
    ];

=item get_set

  use Class::MethodMaker
    [ scalar => 'a' ];

=item hash

  use Class::MethodMaker
    [ hash => 'a' ];

=item key_attrib

Although v1 calls will continue to work, this is not supported in v2.

=item key_with_create

Although v1 calls will continue to work, this is not supported in v2.

=item list

  use Class::MethodMaker
    [ list => 'a' ];

Note that the C<*> method now I<sets> the whole array if given arguments.

=item method

See C<code>.

=item new

  use Class::MethodMaker
    [ new => 'a' ];

=item new_hash_init

  use Class::MethodMaker
    [ new => [ -hash => 'a' ] ];

=item new_hash_with_init

  use Class::MethodMaker
    [ new => [ -hash => -init => 'a' ] ];

=item new_with_args

Although v1 calls will continue to work, this is not supported in v2, for it
is a trivial application of C<new_with_init>.

=item new_with_init

  use Class::MethodMaker
    [ new => [ -init => 'a' ] ];

=item object

  use Class::MethodMaker
    [ scalar => [{ -type    => 'MyClass',
                   -forward => [qw/ method1 method2 /] }, 'a' ]
    ];

=item object_tie_hash

  use Class::MethodMaker
    [ hash => [{ -type      => 'MyClass',
                 -forward   => [qw/ method1 method2 /],
                 -tie_class => 'Tie::MyTie',
                 -tie_args  => [qw/ foo bar baz /],
               }, 'a' ]
    ];

=item object_tie_list

  use Class::MethodMaker
    [ array => [{ -type      => 'MyClass',
                  -forward   => [qw/ method1 method2 /],
                  -tie_class => 'Tie::MyTie',
                  -tie_args  => [qw/ foo bar baz /],
                }, 'a' ]
    ];

=item set_once

  use Class::MethodMaker
    [ scalar => [{ -store_cb => sub {
                                  die "Already stored $_[3]"
                                    if @_ > 3;
                                }
                 },
                 'a' ]
    ];


=item set_once_static

  use Class::MethodMaker
    [ scalar => [{ -store_cb => sub {
                                  die "Already stored $_[3]"
                                    if @_ > 3;
                                },
                   -static   => 1,
                 },
                 'a' ]
    ];


=item singleton

  use Class::MethodMaker
    [ new => [ -singleton => -hash => -init => 'a' ] ];

=item static_get_set

  use Class::MethodMaker
    [ scalar => [ -static => 'a' ], ];

=item static_hash

  use Class::MethodMaker
    [ hash => [ -static => 'a' ], ];

=item static_list

  use Class::MethodMaker
    [ list => [ -static => 'a' ], ];

=item tie_hash

  use Class::MethodMaker
    [ hash => [ { -tie_class => 'MyTie',
                  -tie_args  => [qw/ foo bar baz /],
                } => 'a' ], ];

=item tie_list

  use Class::MethodMaker
    [ array => [ { -tie_class => 'MyTie',
                   -tie_args  => [qw/ foo bar baz /],
                 } => 'a' ], ];

=item tie_scalar

  use Class::MethodMaker
    [ scalar => [ { -tie_class => 'MyTie',
                    -tie_args  => [qw/ foo bar baz /],
                  } => 'a' ], ];

=back

=head2 Caveats & Expected Breakages

The following version 1 component (slot) types are not currently supported in
version 2:

=over 4

=item grouped_fields

=item hash_of_lists

=item listed_attrib

=item struct

=back

=cut

# ----------------------------------------------------------------------------

# Pragmas -----------------------------

require 5.006;
use strict;
use warnings;

# Inheritance -------------------------

use base qw( Exporter );
our @EXPORT_OK = qw( V1COMPAT );

# Utility -----------------------------

use Carp qw( );
use Class::MethodMaker::Constants qw( );

# ----------------------------------------------------------------------------

# CLASS METHODS --------------------------------------------------------------

# -------------------------------------
# CLASS CONSTANTS
# -------------------------------------

use constant INTEGER => Class::MethodMaker::Constants::INTEGER;

use constant SCALAR_RENAME => +{ '*_clear' => 'clear_*',
                                 '*_get'   => 'get_*',
                                 '*_set'   => 'set_*',   };

use constant SCALAR_ONLY_X_RENAME => +{ '*_clear' => undef,
                                        '*_reset' => undef,
                                        '*_isset' => undef, };
use constant GET_SET_PATTERN_MAP =>
  +{ -java          => [ undef, undef,     'get*', 'set*'  ],
     -eiffel        => [ undef, undef,     '*',    'set_*' ],
     -compatibility => [ '*',   'clear_*', undef,  undef   ],
     -noclear       => [ '*',   undef,     undef,  undef   ],
   };

use constant LIST_RENAME => +{ '*_ref'     => '*_ref',
                               '*_reset'   => ['*_clear',   'clear_*'  ],
                               '*_isset'   => undef,
                               '*_get'     => undef,
                               '*_set'     => undef,

                               '*_count'   => ['*_count',   'count_*'  ],
                               '*_index'   => ['*_index',   'index_*'  ],
                               '*_pop'     => ['*_pop',     'pop_*'    ],
                               '*_push'    => ['*_push',    'push_*'   ],
                               '*_set'     => ['*_set',     'set_*'    ],
                               '*_shift'   => ['*_shift',   'shift_*'  ],
                               '*_splice'  => ['*_splice',  'splice_*' ],
                               '*_unshift' => ['*_unshift', 'unshift_*'], };

use constant HASH_RENAME => +{ '*_v1compat' => '*',
                               '*_tally'    => '*_tally',
                               '*'          => undef,     };

use constant HASH_OPT_HANDLER => sub { $_[3]->{substr($_[1], 1)} = 1; };

# -------------------------------------

sub rephrase_prefix_option {
  my @opts = @_;
  return sub {
    return [@opts, ref $_[0] eq 'ARRAY'  ? @{$_[0]} : $_[0] ];
  }
}

sub rephrase_tie {
  # This is deliberately low on error-handling.
  # We're not supporting V1 programming; if it works
  # with V1, all is well; if it doesn't, use the V2
  # approach.  We don't want people coding up new stuff
  # in V1 mode.
  #
  # I.e., anything that currently works with V1 is supported, but
  # only to avoid breakage of existing classes.  All future development
  # should be done in V2 mode.
  my ($names) = @_;
  my @names; # Result
  for (my $i = 0; $i < @$names; $i+=2) {

    my ($comps, $args) = @{$names}[$i,$i+1];
    my @comps = ref $comps eq 'ARRAY' ? @$comps : $comps;
    my @args  = ref $args  eq 'ARRAY' ? @$args  : $args;
    my ($tie_class, @tie_args) = @args;
    push @names, { -tie_class => $tie_class,
                   -tie_args  => \@tie_args,
                 };
    push @names, @comps;
  }
  return \@names;
}

sub rephrase_object_tie {
  # This is deliberately low on error-handling.
  # We're not supporting V1 programming; if it works
  # with V1, all is well; if it doesn't, use the V2
  # approach.  We don't want people coding up new stuff
  # in V1 mode.
  #
  # I.e., anything that currently works with V1 is supported, but
  # only to avoid breakage of existing classes.  All future development
  # should be done in V2 mode.
  my ($comps) = @_;

  my @args;
  for my $comp (@$comps) {
    my ($tie_class, @tie_args) = @{$comp->{tie_hash}};
    my ($class, @c_args)       = @{$comp->{class}};
    my $dctor = @c_args ? 'new' : sub { $class->new(@c_args) };
    my %opts = (-type         => $class,
                -tie_class    => $tie_class,
                -default_ctor => $dctor,
               );
    $opts{-tie_args} = \@tie_args
      if @tie_args;
    push @args, \%opts, ref($comp->{slot}) ? @{$comp->{slot}} : $comp->{slot};
  }
  return \@args;
}

# -------------------------------------

sub code_store_cb {
  # A call to read with args (that aren't code references) appears to V2 to
  # be a store call
  # :-(
  # therefore we sneak the args in to an array for read to use when called
  # ;-/
  if ( ref ( $_[1] ) eq 'CODE' ) {
    # A store is immediately followed by a read.  Use undef in position 1
    # (second element) as a marker of a recent store that should therefore
    # be returned without invocation.
      return [ $_[1], undef ];
  } else {
    return [ $_[3]->[0], [ @_[4..$#_] ] ];
  }
}

# -------------------------------------

sub passthrough_option {
  # Simple pass through
  my ($type, $opt, $rename, $local_opts) = @_;
  if ( ref $opt ) {
    while ( my ($optname, $optval) = each %$opt ) {
      $local_opts->{substr($optname, 1)} = $optval;
    }
  } else {
    $local_opts->{substr($opt, 1)} = 1;
  }
}

sub get_set_option {
  my ($type, $opt, $rename, $local_opts, $class) = @_;
  my @names;
  if ( ref $opt ) {
    if ( UNIVERSAL::isa($opt, 'ARRAY') ) {
      @names = @$opt;
    } elsif ( UNIVERSAL::isa($opt, 'HASH') ) {
      $local_opts->{substr($_, 1)} = $opt->{$_}
        for keys %$opt;
    } else {
      die("Option type " . ref($opt) . " not handled by get_set\n");
    }
  } else {
    if ( exists GET_SET_PATTERN_MAP()->{$opt} ) {
      @names = @{GET_SET_PATTERN_MAP()->{$opt}};
    } else {
      if ( $opt eq '-static' ) {
        $local_opts->{static} = 1;
      } elsif ( $opt =~ /^-(?:set_once(?:_or_(\w+))?)/ ) {
        my ($action_name) = $1 || 'die';

        my %is_set;
        if ($action_name eq 'ignore') {
          $local_opts->{store_cb} = sub {
            # Have to do this here, not prior to the sub, because the
            # options hash is not available until the methods have been
            # installed
            my $options =
              Class::MethodMaker::Engine->_class_comp_options($class,
                                                              $_[2]);
            if ( exists $options->{static} ) {
              $is_set{$_[2]}++ ? $_[3] : $_[1];
            } else {
              if ( exists $is_set{$_[2]} and
                   grep $_ == $_[0], @{$is_set{$_[2]}} ) {
                $_[3];
              } else {
                push @{$is_set{$_[2]}}, $_[0];
                $_[1];
              }
            }
          };
        } elsif ($action_name =~ /carp|cluck|croak|confess/) {
          $local_opts->{store_cb} = sub {
            # Have to do this here, not prior to the sub, because the
            # options hash is not available until the methods have been
            # installed
            my $options =
              Class::MethodMaker::Engine->_class_comp_options($class,
                                                              $_[2]);
            my $action = join '::', 'Carp', $action_name;
            no strict 'refs';
            if ( exists $options->{static} ) {
              $is_set{$_[2]}++ ? &$action("Attempt to set slot ",
                                          ref($_[0]), '::', $_[2],
                                          " more than once")
                               : $_[1];
            } else {
              if ( exists $is_set{$_[2]} and
                   grep $_ == $_[0], @{$is_set{$_[2]}} ) {
                &$action("Attempt to set slot ",
                         ref($_[0]), '::', $_[2],
                         " more than once")
              } else {
                push @{$is_set{$_[2]}}, $_[0];
                $_[1];
              }
            }
          };
        } elsif ($action_name =~ /die|warn/){
          my $action = join '::', 'CORE', $action_name;
          $action = eval("sub { $action(\@_) }");
          $local_opts->{store_cb} = sub {
            # Have to do this here, not prior to the sub, because the
            # options hash is not available until the methods have been
            # installed
            my $options =
              Class::MethodMaker::Engine->_class_comp_options($class,
                                                              $_[2]);
            if ( exists $options->{static} ) {
              $is_set{$_[2]}++ ? $action->("Attempt to set slot ",
                                           ref($_[0]), '::', $_[2],
                                           " more than once")
                               : $_[1];
            } else {
              if ( exists $is_set{$_[2]} and
                   grep $_ == $_[0], @{$is_set{$_[2]}} ) {
                $action->("Attempt to set slot ",
                          ref($_[0]), '::', $_[2],
                          " more than once")
              } else {
                push @{$is_set{$_[2]}}, $_[0];
                $_[1];
              }
            }
          };
        } else {
          $local_opts->{store_cb} = sub {
            # Have to do this here, not prior to the sub, because the
            # options hash is not available until the methods have been
            # installed
            my $options =
              Class::MethodMaker::Engine->_class_comp_options($class,
                                                              $_[2]);
            my $action = join '::', ref($_[0]), $action_name;
            no strict 'refs';
            if ( exists $options->{static} ) {
              $is_set{$_[2]}++ ? &{$action}(@_[4..$#_])
                               : $_[1];
            } else {
              if ( exists $is_set{$_[2]} and
                   grep $_ == $_[0], @{$is_set{$_[2]}} ) {
                &{$action}(@_[4..$#_]);
              } else {
                push @{$is_set{$_[2]}}, $_[0];
                $_[1];
              }
            }
          };
        }
      } else {
        die "Option $opt not recognized for get_set\n";
      }
    }
  }

  $local_opts->{static} = 1
    if $type eq 'static_get_set';

  for (0..3) {
    $rename->{qw( * *_clear *_get *_set )[$_]} = $names[$_]
      if $_ < @names;
  }
};

sub key_option {
  my ($v1type, $name, $rename, $local_opts, $target_class) = @_;
  my %list;

  if ( $name eq '-dummy' ) {
    $local_opts->{_value_list} = \%list;
    $local_opts->{key_create} = 1
      if substr($v1type, -6) eq 'create';
    $local_opts->{store_cb} = sub {
      if ( defined $_[3] ) {
        # the object must be in the hash under its old
        # value so that entry needs to be deleted
        delete $list{$_[3]};
      }
      if ( defined $_[1]        and
           exists $list{$_[1]}  and
           $list{$_[1]} ne $_[0] ) {
        # There's already an object stored under that
        # value so we need to unset it's value
        my $x = $_[2];
        $list{$_[1]}->$x(undef);
      }

      $list{$_[1]} = $_[0]
        if defined $_[1];
      $_[1];
    }
  } else {
    die "Option '$_' to get_concat unrecognized\n";
  }
}

sub object_tie_option  {
  my ($type, $opt, $rename, $local_opts) = @_;
  if ( ref $opt ) {
    while ( my ($optname, $optval) = each %$opt ) {
      $local_opts->{substr($optname, 1)} = $optval
        unless $optname eq '-ctor_args';
    }
  } else {
    $local_opts->{substr($opt, 1)} = 1;
  }

  my $el_type = $opt->{-type};
  my $ctor = $opt->{-default_ctor};
  my $ctor_args = $opt->{-ctor_args};
  $local_opts->{store_cb} = sub {
    my (undef, $value) = @_;

    [ map {
      if ( UNIVERSAL::isa($_, $el_type) ) {
        $_;
      } elsif ( ref($_) eq 'ARRAY' ) {
        # Nasty hack for nasty inconsistency in V1 implementations
        my @args = index($type, 'hash') >= 0 ? (@$ctor_args, @$_) : @$_;
        $el_type->$ctor(@args);
      } else {
        $el_type->$ctor(@$ctor_args);
      }
    } @$value ];
  };
}

# -------------------------------------

# Hackery for get_concat
my $gc_join = '';

# Recognized keys are:
#   v2name
#     Name of v2 component type that implements this v1 call under the hood
#   rename
#     Method renames to apply (see create_methods) to make this look like the
#     v1 call
#   option
#     Subr called to parse options.
#     Receieves args
#       type       ) The type of the component, as called by the user
#                    (e.g., static_get_set)
#       opt        ) The name of the option (including any leading '-').
#       rename     ) The rename hashref, as set up by rename above
#       local_opts ) An option hash.  This is initially empty, it is the job
#                    of the subr to add/subtract items to this as necessary.
#                    Items may/shall accumulate as options are invoked on a
#                    single typecall.
#   rephrase
#     Subr to rephrase arguments to a type call.  If defined, this subr is
#     handed the arguments to the component type, in raw incoming form, and
#     its return value is used in place.  This is to allow arbitrary argument
#     juggling.
use constant V1COMPAT =>
  {
   # New Methods --------------------

   new => +{},

   new_hash_with_init => +{ v2name   => 'new',
                            option => HASH_OPT_HANDLER,
                            rephrase =>
                              rephrase_prefix_option(qw( -hash -init )),
                          },

   new_with_init => +{ v2name   => 'new',
                       option => HASH_OPT_HANDLER,
                       rephrase => rephrase_prefix_option(qw( -init ))
                     },

   new_hash_init => +{ v2name   => 'new',
                       option => HASH_OPT_HANDLER,
                       rephrase => rephrase_prefix_option(qw( -hash )),
                     },

   singleton     => +{ v2name   => 'new',
                       option => HASH_OPT_HANDLER,
                       rephrase =>
                         rephrase_prefix_option(qw(-hash -singleton -init)),
                     },

   # This is provided only for v1 compatibility; no attempt is made to
   # support this in V2, for it is a trivial application of new_with_init.
   new_with_args => +{ v2name   => 'new',
                       option => HASH_OPT_HANDLER,
                       rephrase => rephrase_prefix_option(qw( -direct-init ))
                     },


   # Copy Methods -------------------

   copy => +{},
   deep_copy => +{ v2name => 'copy',
                   option => sub {
                     $_[3]->{deep} = 1;
                   },
                   rephrase => rephrase_prefix_option('-dummy'),
                 },

   # Scalar Methods -----------------

   get_set =>        { v2name => 'scalar',
                       rename => SCALAR_RENAME,
                       option => \&get_set_option,
                     },
   static_get_set => {
                      v2name   => 'scalar',
                      rename   => SCALAR_RENAME,
                      option   => \&get_set_option,
                      rephrase => rephrase_prefix_option('-static'),
                     },
   tie_scalar     => { v2name    => 'scalar',
                       rename   => SCALAR_RENAME,
                       rephrase => \&rephrase_tie,
                       option   => \&get_set_option,
                     },
   counter =>        { v2name => 'scalar',
                       rename => SCALAR_RENAME,
                       option => \&passthrough_option,
                       rephrase =>
                         rephrase_prefix_option(+{-type => INTEGER}),
                     },
   get_concat =>     { v2name => 'scalar',
                       rename => SCALAR_RENAME,
                       option => sub {
                         my ($type, $opt, $rename, $local_opts) = @_;

                         if ( ref $opt ) {
                           for ( keys %$opt ) {
                             if ( $_ eq '-join' ) {
                               $gc_join = $opt->{-join};
                             } else {
                               die "Option '$_' to get_concat unrecognized\n";
                             }
                           }
                         } elsif ( $opt eq '-dummy' ) {
                           my $join = $gc_join;
                           $local_opts->{store_cb} =
                             sub {
                               defined $_[1] ?
                                 (defined $_[3] ? "$_[3]$join$_[1]" : $_[1] ) :
                                   undef;
                             };
                           $gc_join = '';
                         } else {
                           $local_opts->{substr($opt, 1)} = 1;
                         }
                       },
                       rephrase => sub {
                         my @opts = @_;
                         if ( UNIVERSAL::isa($_[0], 'HASH') ) {
                           return [ +{ -join => $_[0]->{join}},
                                    '-dummy',
                                    $_[0]->{name}
                                  ];
                         } else {
                           return ['-dummy',
                                   ref $_[0] eq 'ARRAY' ? @{$_[0]} : $_[0] ];
                         }
                       },
                     },
   key_attrib =>     { v2name => 'scalar',
                       rename => +{ %{SCALAR_RENAME()},
                                    '*_find' => 'find_*', },
                       option => \&key_option,
                       rephrase => rephrase_prefix_option(qw( -dummy )),
                     },

   key_with_create =>{ v2name => 'scalar',
                       rename => +{ %{SCALAR_RENAME()},
                                     '*_find' => 'find_*', },
                       option => \&key_option,
                       rephrase => rephrase_prefix_option(qw( -dummy )),
                     },

   # Code-Based Types
   code           => { v2name    => 'scalar',
                       rename   => SCALAR_ONLY_X_RENAME,
                       rephrase => rephrase_prefix_option('-dummy'),
                       option   => sub {
                         my ($type, $opt, $rename, $local_opts) = @_;
                         # Let's face it, the V1 i/f, with it's
                         # store-if-it's-a-coderef-else-retrieve semantics
                         # is rather broken.  Which is why we engage in such
                         # hackery...
                         $local_opts->{read_cb} =
                           sub {
                             if  ( ref($_[1]) eq 'ARRAY' ) {
                               if ( @{$_[1]} == 1 ) { # No args
                                 return $_[1]->[0]->();
                               } elsif ( defined $_[1]->[1] ) {
                                 # Read with args that was handed to store
                                 return $_[1]->[0]->(@{$_[1]->[1]});
                               } else {
                                 # We're reading after a recent store
                                 pop @{$_[1]};
                                 return $_[1]->[0];
                               }
                             }
                           };
                         $local_opts->{store_cb} = \&code_store_cb;
                       },
                     },

   method         => { v2name    => 'scalar',
                       rename   => SCALAR_ONLY_X_RENAME,
                       rephrase => rephrase_prefix_option('-dummy'),
                       option   => sub {
                         my ($type, $opt, $rename, $local_opts) = @_;
                         # Let's face it, the V1 i/f, with it's
                         # store-if-it's-a-coderef-else-retrieve semantics
                         # is rather broken.  Which is why we engage in such
                         # hackery...
                         $local_opts->{read_cb} =
                           sub {
                             if  ( ref($_[1]) eq 'ARRAY' ) {
                               if ( @{$_[1]} == 1 ) { # No args
                                 return $_[1]->[0]->($_[0]);
                               } elsif ( defined $_[1]->[1] ) {
                                 # Read with args that was handed to store
                                 return $_[1]->[0]->($_[0], @{$_[1]->[1]});
                               } else {
                                 # We're reading after a recent store
                                 pop @{$_[1]};
                                 return $_[1]->[0];
                               }
                             }
                           };
                         $local_opts->{store_cb} = \&code_store_cb;
                       },
                     },

   # List Methods -------------------

   object => {
              v2name => 'scalar',
              rephrase => sub {
                my ($names) = @_;

                die("v1 meta-method object requires an arrayref as it's ",
                    "argument\n")
                  unless UNIVERSAL::isa($names, 'ARRAY');

                my @Results;

                while ( my($type, $args) = splice @$names, 0, 2 ) {
                  die("type specifier to v1 object must be a non-ref ",
                      "value\n")
                    if ref $type;

                  for (UNIVERSAL::isa($args, 'ARRAY') ? @$args : $args) {
                    my (@names, @fwds);
                    if ( ! ref $_ ) {
                      @names = $_;
                    } elsif ( UNIVERSAL::isa($_, 'HASH') ) {
                      @names = $_->{slot};
                      @fwds  = $_->{comp_mthds};
                      @fwds  = @{$fwds[0]}
                        if UNIVERSAL::isa($fwds[0], 'ARRAY');
                    } else {
                      die("Argument $_ to 'object' v1 meta-method not ",
                          "comprehended\n");
                    }

                    push (@Results,
                          { -type         => $type,
                            -forward      => \@fwds,
                            -default_ctor => 'new',
                            -v1_object    => 1,
                          },
                          @names);
                  }
                }
                \@Results;
              },
              option => \&passthrough_option,
             },

   list => { v2name => 'array',
             rename => LIST_RENAME,
           },
   static_list => { v2name => 'array',
                    rename => LIST_RENAME,
                    rephrase => rephrase_prefix_option('-static'),
                    option => sub {
                      my ($type, $opt, $rename, $local_opts) = @_;
                      $local_opts->{static} = 1;
                    },
                  },

   object_list => { v2name => 'array',
                    rename => LIST_RENAME,
                    rephrase => sub {
                      # This is deliberately low on error-handling.
                      # We're not supporting V1 programming; if it works
                      # with V1, all is well; if it doesn't, use the V2
                      # approach.  We don't want people coding up new stuff
                      # in V1 mode.
                      my ($names) = @_;
                      my @names; # Result
                      for (my $i = 0; $i < @$names; $i+=2) {
                        my ($class, $args) = @{$names}[$i,$i+1];
                        my @args = ref $args eq 'ARRAY' ? @$args : $args;

                        push @names, +{ -type => $class,
                                        -default_ctor => 'new' };

                        for my $arg (@args) {
                            if ( ref $arg eq 'HASH' ) {
                            my ($slot, $comp_mthds) =
                              @{$arg}{qw( slot comp_mthds )};
                            my @comp_mthds =
                              ref $comp_mthds ? @$comp_mthds : $comp_mthds;
                            push @names, +{ -forward => \@comp_mthds }
                              if @comp_mthds;
                            push @names, $slot;
                          } else {
                            push @names, $arg;
                          }
                        }
                      }
                      return \@names;
                    },
                    option => \&passthrough_option,
                  },
   tie_list => { v2name => 'array',
                 rename => LIST_RENAME,
                 rephrase => \&rephrase_tie,
                 option => \&passthrough_option,
               },
   object_tie_list => { v2name => 'array',
                        rename => LIST_RENAME,
                        rephrase => sub {
                          # This is deliberately low on error-handling.
                          # We're not supporting V1 programming; if it works
                          # with V1, all is well; if it doesn't, use the V2
                          # approach.  We don't want people coding up new
                          # stuff in V1 mode.
                          my ($names) = @_;
                          my @names; # Result
                          for my $hashr (@$names) {
                            my ($slots, $class, $tie_args) =
                              @{$hashr}{qw( slot class tie_array )};
                            my @slots = ref $slots eq 'ARRAY' ?
                                                      @$slots : $slots;
                            my @class_args;
                            ($class, @class_args) = @$class
                              if ref $class eq 'ARRAY';
                            my $ctor;
                            if ( @class_args ) {
                              $ctor = sub {
                                return $class->new(@class_args);
                              };
                            } else {
                              $ctor = 'new';
                            }
                            my ($tie_class, @tie_args) =
                              @$tie_args;
                            push @names, +{ -type => $class,
                                            -default_ctor => 'new',
                                            -ctor_args => \@class_args,
                                            -tie_class => $tie_class,
                                            -tie_args  => \@tie_args,};

                            push @names, @slots;
                          }
                          return \@names;
                        },
                        option => \&object_tie_option,
                      },
   object_tie_hash => { v2name => 'hash',
                        rename => HASH_RENAME,
                        rephrase => sub {
                          # This is deliberately low on error-handling.
                          # We're not supporting V1 programming; if it works
                          # with V1, all is well; if it doesn't, use the V2
                          # approach.  We don't want people coding up new
                          # stuff in V1 mode.
                          my ($names) = @_;
                          my @names; # Result
                          for my $hashr (@$names) {
                            my ($slots, $class, $tie_args) =
                              @{$hashr}{qw( slot class tie_hash )};
                            my @slots = ref $slots eq 'ARRAY' ?
                                                      @$slots : $slots;
                            my @class_args;
                            ($class, @class_args) = @$class
                              if ref $class eq 'ARRAY';
                            my $ctor;
                            if ( @class_args ) {
                              $ctor = sub {
                                return $class->new(@class_args);
                              };
                            } else {
                              $ctor = 'new';
                            }
                            my ($tie_class, @tie_args) =
                              @$tie_args;
                            push @names, +{ -type => $class,
                                            -default_ctor => 'new',
                                            -ctor_args => \@class_args,
                                            -tie_class => $tie_class,
                                            -tie_args  => \@tie_args,};

                            push @names, @slots;
                          }
                          return \@names;
                        },
                        option => \&object_tie_option,
                      },

   # Hash Methods -------------------

   hash           => +{
                       rename => HASH_RENAME,
                      },
   static_hash     => {
                       v2name   => 'hash',
                       rename   => HASH_RENAME,
                       option   => \&passthrough_option,
                       rephrase => rephrase_prefix_option('-static'),
                      },
   tie_hash        => { v2name => 'hash',
                        rename => HASH_RENAME,
                        rephrase => \&rephrase_tie,
                        option => \&passthrough_option,
                      },

   # Misc Methods -------------------

   abstract => +{},
   boolean         => { v2name => '_boolean',
                        rename => +{ '*_set' => 'set_*',
                                     '*_clear' => 'clear_*', }, },
 };

# ----------------------------------------------------------------------------

=head1 EXAMPLES

Z<>

=head1 BUGS

Z<>

=head1 REPORTING BUGS

Email the development mailing list C<class-mmaker-devel@lists.sourceforge.net>.

=head1 AUTHOR

Martyn J. Pearce

=head1 COPYRIGHT

Copyright (c) 2003, 2004 Martyn J. Pearce.  This program is free software; you
can redistribute it and/or modify it under the same terms as Perl itself.

=head1 SEE ALSO

Z<>

=cut

1; # keep require happy.

__END__