Badger::Codec::JSON

NAME

Top Close Open

Badger::Codec::JSON - encode/decode data using JSON

SYNOPSIS

Top Close Open
use Badger::Codec::JSON;
my $codec   = Badger::Codec::JSON->new();
my $encoded = $codec->encode({ msg => "Hello World" });
my $decoded = $codec->decode($encoded);

DESCRIPTION

Top Close Open

This module implements a subclass of Badger::Codec which uses the JSON::XS or JSON module (whichever you have installed) to encode and decode data to and from JSON. It is little more than an adapter module to fit JSON into the Badger::Codec mould.

METHODS

Top Close Open

encode($data)

Top Close Open

Encodes the Perl data in $data to a JSON string. This method is a wrapper around the internal the encode_json() subroutine.

$encoded = Badger::Codec::JSON->encode($data);

decode($json)

Top Close Open

Decodes the encoded JSON string in $json back into a Perl data structure. This method is a wrapper around the internal the decode_json() subroutine.

$decoded = Badger::Codec::JSON->decode($encoded);

encoder()

Top Close Open

This method returns a reference to the real subroutine that's doing all the encoding work, i.e. the internal encode_json() subroutine.

decoder()

Top Close Open

This method returns a reference to the real subroutine that's doing all the decoding work, i.e. the decode_json() subroutine in JSON.

INTERNAL SUBROUTINES

Top Close Open

encode_json($data)

Top Close Open

This is the internal subroutine that encodes the JSON data. It delegates to the JSON::XS or JSON module, depending on which you have installed.

decode_json($json)

Top Close Open

This is the internal subroutine that decodes the JSON data. As per encode_json(), it delegates the task to the JSON::XS or JSON module.

AUTHOR

Top Close Open

Andy Wardley http://wardley.org/

COPYRIGHT

Top Close Open

Copyright (C) 2005-2009 Andy Wardley. All rights reserved.

Fork Me on Github