NAME

Encode::Encoder -- Object Oriented Encoder

SYNOPSIS

use Encode::Encoder;
# Encode::encode("ISO-8859-1", $data); 
Encoder->new($data)->iso_8859_1; # OOP way
# shortcut
encoder($data)->iso_8859_1;
# you can stack them!
encoder($data)->iso_8859_1->base64; # provided base64() is defined
# stringified
print encoder($utf8)->latin1     # prints the string in latin1
# numified
encoder("\x{abcd}\x{ef}g") == 6; # true. bytes::length($data)

ABSTRACT

Encode::Encoder allows you to use Encode via OOP style. This is not only more intuitive than functional approach, but also handier when you want to stack encodings. Suppose you want your UTF-8 string converted to Latin1 then Base64, you can simply say

my $base64 = encoder($utf8)->latin1->base64;

instead of

my $latin1 = encode("latin1", $utf8);

or lazier and convolted

my $base64 = encode_base64(encode("latin1", $utf8));

Description

Here is how to use this module.

  • There are at least two instance variable stored in hash reference, {data} and {encoding}.

  • When there is no method, it takes the method name as the name of encoding and encode instance data with encoding. If successful, instance encoding is set accordingly.

  • This module is desined to work with Encode::Encoding. To make the Base64 transcorder example above really work, you should write a module like this.

    package Encode::Base64;
    use base 'Encode::Encoding';
    __PACKAGE->Define('base64');
    use MIME::Base64;
    sub encode{ 
      my ($obj, $data) = @_; 
      return encode_base64($data);
    }
    sub decode{
      my ($obj, $data) = @_; 
      return decode_base64($data);
    }
    1;
    __END__

    And your caller module should be like this;

    use Encode::Encoder;
    use Encode::Base64;
    # and be creative.

operator overloading

This module overloads two operators, stringify ("") and numify (0+).

Stringify dumps the data therein.

Numify returns the number of bytes therein.

They come in handy when you want to print or find the size of data.

Predefined Methods

This module predefines the methods below;

$e = Encode::Encoder->new([$data, $encoding]);

returns the encoder object. Its data is initialized with $data if there, and its encoding is set to $encoding if there.

encoder()

is an alias of Encode::Encoder->new(). This one is exported for convenience.

$e->data($data)

sets instance data to $data.

$e->encoding($encoding)

sets instance encoding to $encoding

SEE ALSO

Encode Encode::Encoding

2 POD Errors

The following errors were encountered while parsing the POD:

Around line 152:

You forgot a '=back' before '=head2'

Around line 162:

=back without =over