Skip to content

neilb/p5-Class-Accessor-TrackDirty

 
 

Repository files navigation

NAME
    Class::Accessor::TrackDirty - Define simple entities stored in some
    places.

SYNOPSIS
        package UserInfo;
        use Class::Accessor::TrackDirty;
        Class::Accessor::TrackDirty->mk_new_and_tracked_accessors("name", "password");
        Class::Accessor::TrackDirty->mk_accessors("modified");

        package main;
        my $user = UserInfo->new({name => 'honma', password => 'F!aS3l'});
        store_into_someplace($user->to_hash) if $user->is_dirty;
        # ...
        $user = UserInfo->from_hash(restore_from_someplace());
        $user->name('hiratara');
        $user->revert; # but decided not to
        $user->name('honma');
        $user->name('hiratara');
        $user->name('honma'); # I can't make up my mind...
        # ... blabla ...

        # Store it only if $user was really modified.
        store_into_someplace($user->to_hash) if $user->is_dirty;

DESCRIPTION
    Class::Accessor::TrackDirty defines simple entities stored in files,
    RDBMS, KVS, and so on. It tracks dirty columns and you can store it only
    when the instance was really modified.

INTERFACE
  Functions
   "Class::Accessor::TrackDirty->mk_new;"
    Create the "<new"> methods in your class. You can pass a hash-ref or
    hash-like list to "<new"> method.

    "my $object = YourClass->new({name1 => "value1", ...});"
        The instance created by "<new"> is regarded as `dirty' since it
        hasn't been stored yet.

   "Class::Accessor::TrackDirty->mk_tracked_accessors("name1", "name2", ...);"
    Create accessor methods and helper methods in your class. Following
    helper methods will be created automatically.

    "$your_object->is_dirty;"
        Check that the instance is modified. If it's true, you should store
        this instance into some place through using "<to_hash"> method.

    "my $hash_ref = $your_object->to_hash;"
        Eject data from this instance as plain hash-ref format.
        "<$your_object"> is regarded as `clean' after calling this method.

        You'd better store "<$hash_ref"> into some place ASAP. It's up to
        you how "<$hash_ref"> should be serialized.

    "my $object = YourClass->from_hash({name1 => "value1", ...});"
        Rebuild the instance from a hash-ref ejected by "<to_hash"> method.
        The instance constructed by "<from_hash"> is regarded as `clean'.

    "$your_object->revert;"
        Revert all `dirty' changes. Fields created by
        "<mk_tracked_accessors"> returns to the point where you call
        "<new">, "<to_hash">, or "<from_hash">.

        The volatile fields will be never reverted.

    You'd better *NOT* store references in tracked fields. Though following
    codes work well, to make "revert" work well, we'll have to copy
    references deeply when you call getter.

      my $your_object = YourClass->new(some_refs => {key => 'value'});
      # some_refs are copyied deeply :(
      $your_object->some_refs->{key} = '<censored>';

      $your_object->revert;
      print $your_object->some_refs, "\n"; # printed "value"

   "Class::Accessor::TrackDirty->mk_accessors("name1", "name2", ...);"
    Define the field which isn't tracked. You can freely change these
    fields, and it will never be marked as `dirty'.

   "Class::Accessor::TrackDirty->mk_new_and_tracked_accessors("name1", "name2", ...);"
    This method is a combination of "<mk_tracked_accessors"> and "<mk_new">.

SEE ALSO
    Class::Accessor, Class::Accessor::Lite, MooseX::TrackDirty::Attributes,
    Hash::Dirty

AUTHOR
    Masahiro Honma <hiratara@cpan.org>

LICENSE AND COPYRIGHT
    Copyright (c) 2013, Masahiro Honma. All rights reserved.

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

About

Defines a simple entity stored in some places.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Perl 100.0%