-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathREADME
More file actions
453 lines (303 loc) · 13.8 KB
/
README
File metadata and controls
453 lines (303 loc) · 13.8 KB
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
NAME
Object::HashBase - Build hash based classes.
SYNOPSIS
A class:
package My::Class;
use strict;
use warnings;
# Generate 3 accessors
use Object::HashBase qw/foo -bar ^baz <bat >ban +boo/;
# Chance to initialize defaults
sub init {
my $self = shift; # No other args
$self->{+FOO} ||= "foo";
$self->{+BAR} ||= "bar";
$self->{+BAZ} ||= "baz";
$self->{+BAT} ||= "bat";
$self->{+BAN} ||= "ban";
$self->{+BOO} ||= "boo";
}
sub print {
my $self = shift;
print join ", " => map { $self->{$_} } FOO, BAR, BAZ, BAT, BAN, BOO;
}
Subclass it
package My::Subclass;
use strict;
use warnings;
# Note, you should subclass before loading HashBase.
use base 'My::Class';
use Object::HashBase qw/bub/;
sub init {
my $self = shift;
# We get the constants from the base class for free.
$self->{+FOO} ||= 'SubFoo';
$self->{+BUB} ||= 'bub';
$self->SUPER::init();
}
use it:
package main;
use strict;
use warnings;
use My::Class;
# These are all functionally identical
my $one = My::Class->new(foo => 'MyFoo', bar => 'MyBar');
my $two = My::Class->new({foo => 'MyFoo', bar => 'MyBar'});
my $three = My::Class->new(['MyFoo', 'MyBar']);
# Readers!
my $foo = $one->foo; # 'MyFoo'
my $bar = $one->bar; # 'MyBar'
my $baz = $one->baz; # Defaulted to: 'baz'
my $bat = $one->bat; # Defaulted to: 'bat'
# '>ban' means setter only, no reader
# '+boo' means no setter or reader, just the BOO constant
# Setters!
$one->set_foo('A Foo');
#'-bar' means read-only, so the setter will throw an exception (but is defined).
$one->set_bar('A bar');
# '^baz' means deprecated setter, this will warn about the setter being
# deprecated.
$one->set_baz('A Baz');
# '<bat' means no setter defined at all
# '+boo' means no setter or reader, just the BOO constant
$one->{+FOO} = 'xxx';
Add pre_init and post-init:
Note: These are not provided if you define your own new() method (via a
stub at the top).
Note: Single inheritence should work with child classes doing the
pre/post init subs during construction, so long as all classes in the
chain use a generated new(). This will probably explode badly in
multiple-inheritence.
package My::Class;
use strict;
use warnings;
# Generate 3 accessors
use Object::HashBase qw/foo -bar ^baz <bat >ban +boo/;
# Do more stuff before init, add as many as you like by calling this
# multiple times with a different code block each time
add_pre_init {
...
};
# Chance to initialize defaults
sub init { ... }
# Do stuff after init, add as many as you want, they run in reverse order
add_post_init {
my $self = shift;
...
};
sub print {
my $self = shift;
print join ", " => map { $self->{$_} } FOO, BAR, BAZ, BAT, BAN, BOO;
}
You can also call add_pre_init and add_post_init as class methods from
anywhere to add init and post-init to the class.
Please note: This will apply to all future instances of the object
created, but not past ones. This is a form of meta-programming and it
is easy to abuse. It is also helpful for extending Object::HashBase.
My::Class->add_pre_init(sub { ... });
My::Class->add_post_init(sub { ... });
DESCRIPTION
This package is used to generate classes based on hashrefs. Using this
class will give you a new() method, as well as generating accessors you
request. Generated accessors will be getters, set_ACCESSOR setters will
also be generated for you. You also get constants for each accessor
(all caps) which return the key into the hash for that accessor. Single
inheritance is also supported.
XS ACCESSORS
If Class::XSAccessor is installed, it will be used to generate XS
getters and setters.
CAVEATS
The only caveat noticed so far is that if you take a reference to an
objects attribute element: my $ref = \($obj->{foo}) then use
$obj->set_foo(1), setting $$ref = 2 will not longer work, and getting
the value via $val = $$ref will also not work. This is not a problem
when Class::XSAccessor is not used.
In practice it will nbe VERY rare for this to be a problem, but it was
noticed because it broke a performance optimization in Test2::API.
You can request an accessor NOT be xs with the '~' prefix:
use Object::HashBase '~foo';
The sample above generates foo() and set_foo() and they are NOT
implemented in XS.
INCLUDING IN YOUR DIST
If you want to use HashBase, but do not want to depend on it, you can
include it in your distribution.
$ hashbase_inc.pl Prefix::For::Module
This will create 2 files:
lib/Prefix/For/Module/HashBase.pm
t/HashBase.t
You can then use the includes Prefix::For::Module::HashBase instead of
Object::HashBase.
You can re-run this script to regenerate the files, or upgrade them to
newer versions.
If the script was not installed, it can be found in the scripts/
directory.
METHODS
PROVIDED BY HASH BASE
$it = $class->new(%PAIRS)
$it = $class->new(\%PAIRS)
$it = $class->new(\@ORDERED_VALUES)
Create a new instance.
HashBase will not export new() if there is already a new() method in
your packages inheritance chain.
If you do not want this method you can define your own you just have
to declare it before loading Object::HashBase.
package My::Package;
# predeclare new() so that HashBase does not give us one.
sub new;
use Object::HashBase qw/foo bar baz/;
# Now we define our own new method.
sub new { ... }
This makes it so that HashBase sees that you have your own new()
method. Alternatively you can define the method before loading
HashBase instead of just declaring it, but that scatters your use
statements.
The most common way to create an object is to pass in key/value pairs
where each key is an attribute and each value is what you want
assigned to that attribute. No checking is done to verify the
attributes or values are valid, you may do that in init() if desired.
If you would like, you can pass in a hashref instead of pairs. When
you do so the hashref will be copied, and the copy will be returned
blessed as an object. There is no way to ask HashBase to bless a
specific hashref.
In some cases an object may only have 1 or 2 attributes, in which
case a hashref may be too verbose for your liking. In these cases you
can pass in an arrayref with only values. The values will be assigned
to attributes in the order the attributes were listed. When there is
inheritance involved the attributes from parent classes will come
before subclasses.
HOOKS
$self->init()
This gives you the chance to set some default values to your fields.
The only argument is $self with its indexes already set from the
constructor.
Note: Object::HashBase checks for an init using $class->can('init')
during construction. It DOES NOT call can() on the created object.
Also note that the result of the check is cached, it is only ever
checked once, the first time an instance of your class is created.
This means that adding an init() method AFTER the first construction
will result in it being ignored.
ACCESSORS
READ/WRITE
To generate accessors you list them when using the module:
use Object::HashBase qw/foo/;
This will generate the following subs in your namespace:
foo()
Getter, used to get the value of the foo field.
set_foo()
Setter, used to set the value of the foo field.
FOO()
Constant, returns the field foo's key into the class hashref.
Subclasses will also get this function as a constant, not simply a
method, that means it is copied into the subclass namespace.
The main reason for using these constants is to help avoid spelling
mistakes and similar typos. It will not help you if you forget to
prefix the '+' though.
READ ONLY
use Object::HashBase qw/-foo/;
set_foo()
Throws an exception telling you the attribute is read-only. This is
exported to override any active setters for the attribute in a parent
class.
DEPRECATED SETTER
use Object::HashBase qw/^foo/;
set_foo()
This will set the value, but it will also warn you that the method is
deprecated.
NO SETTER
use Object::HashBase qw/<foo/;
Only gives you a reader, no set_foo method is defined at all.
NO READER
use Object::HashBase qw/>foo/;
Only gives you a write (set_foo), no foo method is defined at all.
CONSTANT ONLY
use Object::HashBase qw/+foo/;
This does not create any methods for you, it just adds the FOO
constant.
NO XS
use Object::HashBase qw/~foo/;
This enforces that the getter and setter generated for foo will NOT use
Class::XSAccessor even if it is installed.
ISA AND ROLE PREFIXES
Two import prefixes provide shortcuts for declaring parent classes and
consuming roles.
PARENT PREFIX: @
use Object::HashBase qw/@Some::Parent::Class foo bar/;
This loads Some::Parent::Class and pushes it onto @ISA. Equivalent to:
use parent 'Some::Parent::Class';
use Object::HashBase qw/foo bar/;
Multiple parents can be declared:
use Object::HashBase qw/@Parent::A @Parent::B foo/;
The prefix may be combined freely with attribute declarations in any
order; parents are processed first regardless of position.
ROLE PREFIX: &
use Object::HashBase qw/&Some::Role::Name foo/;
This consumes a Role::Tiny role that itself uses Object::HashBase. The
role's constants are copied into the consumer immediately so the
$self->{+FOO} pattern resolves at compile time. The actual role
composition via Role::Tiny->apply_roles_to_package is deferred until
the end of the consumer's compile scope, so the consumer's own methods
are present when role methods are composed (correct method-modifier and
required-method semantics).
Requirements:
* Role::Tiny 1.003000 or newer must be installed. It is not a hard
dependency of Object::HashBase; it is loaded on demand when the &
prefix is used.
* Perl 5.10 or newer. The compile-scope deferral relies on the
lexically-scoped %^H hints hash, which was made reliable in 5.10.
* The target package must be a Role::Tiny role that itself uses
Object::HashBase.
If a sub of the same name as a role constant already exists in the
consumer package, the existing sub is kept and the role constant is not
copied. No warning is issued.
SUBCLASSING
You can subclass an existing HashBase class.
use base 'Another::HashBase::Class';
use Object::HashBase qw/foo bar baz/;
The base class is added to @ISA for you, and all constants from base
classes are added to subclasses automatically.
USING IN A ROLE
Object::HashBase can be used inside a Role::Tiny role:
package My::Role;
use Role::Tiny;
use Object::HashBase qw/foo -bar/;
sub greet { "hello " . $_[0]->{+FOO} }
When the package being imported into is a Role::Tiny role,
Object::HashBase skips injection of new(), add_pre_init, add_post_init,
_pre_init, and _post_init. Only accessor methods and constants are
installed.
Important: use Role::Tiny; must appear before use Object::HashBase in
the role package. Object::HashBase detects the role status of the
target package at import time; if Role::Tiny has not yet been loaded,
the target will be treated as a plain class and new() and the init
hooks will be injected.
Consumers compose the role with the & prefix (recommended) or with a
direct with() call. The & prefix copies the role's constants into the
consumer at compile time, which is required for the $self->{+FOO}
pattern in consumer methods to resolve.
GETTING A LIST OF ATTRIBUTES FOR A CLASS
Object::HashBase provides a function for retrieving a list of
attributes for an Object::HashBase class.
@list = Object::HashBase::attr_list($class)
@list = $class->Object::HashBase::attr_list()
Either form above will work. This will return a list of attributes
defined on the object. This list is returned in the attribute
definition order, parent class attributes are listed before subclass
attributes. Duplicate attributes will be removed before the list is
returned.
Attributes from roles composed via the & prefix are included in the
returned list, ordered before the consumer's own attributes at the
same ISA level.
Note: This list is used in the $class->new(\@ARRAY) constructor to
determine the attribute to which each value will be paired.
SOURCE
The source code repository for HashBase can be found at
http://github.com/Test-More/HashBase/.
MAINTAINERS
Chad Granum <exodist@cpan.org>
AUTHORS
Chad Granum <exodist@cpan.org>
COPYRIGHT
Copyright 2017 Chad Granum <exodist@cpan.org>.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See http://dev.perl.org/licenses/