line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one |
2
|
|
|
|
|
|
|
# or more contributor license agreements. See the NOTICE file |
3
|
|
|
|
|
|
|
# distributed with this work for additional information |
4
|
|
|
|
|
|
|
# regarding copyright ownership. The ASF licenses this file |
5
|
|
|
|
|
|
|
# to you under the Apache License, Version 2.0 (the |
6
|
|
|
|
|
|
|
# "License"); you may not use this file except in compliance |
7
|
|
|
|
|
|
|
# with the License. You may obtain a copy of the License at |
8
|
|
|
|
|
|
|
# |
9
|
|
|
|
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0 |
10
|
|
|
|
|
|
|
# |
11
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, |
12
|
|
|
|
|
|
|
# software distributed under the License is distributed on an |
13
|
|
|
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14
|
|
|
|
|
|
|
# KIND, either express or implied. See the License for the |
15
|
|
|
|
|
|
|
# specific language governing permissions and limitations |
16
|
|
|
|
|
|
|
# under the License. |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
package Avro; |
19
|
|
|
|
|
|
|
|
20
|
1
|
|
|
1
|
|
70957
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
29
|
|
21
|
1
|
|
|
1
|
|
23
|
use 5.010_001; |
|
1
|
|
|
|
|
4
|
|
22
|
|
|
|
|
|
|
our $VERSION = '1.11.3'; |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
1; |
25
|
|
|
|
|
|
|
__END__ |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=encoding utf-8 |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 NAME |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Avro - the official Perl API for the Apache Avro project's serialization and |
32
|
|
|
|
|
|
|
RPC framework |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 SYNOPSIS |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
use Avro; |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 DESCRIPTION |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
L<Apache Avro|https://avro.apache.org/> is a data serialization system providing rich data |
41
|
|
|
|
|
|
|
structures and a compact, fast, binary data form. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 AUTHOR |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
Apache Avro <dev@avro.apache.org> |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=head1 HISTORY |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Before contribution to the Apache Avro project, this module was |
50
|
|
|
|
|
|
|
developed by Yann KerhervE<eacute> <yannk@cpank.org> with contributions |
51
|
|
|
|
|
|
|
from Andy Grundman <andy@hybridized.org>, David Bushong |
52
|
|
|
|
|
|
|
<dbushong@mashlogic.com>, and Ilya Martynov <ilya@iponweb.net>. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 COPYRIGHT |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
Copyright 2014 Apache Software Foundation. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
Apache and Apache Avro are trademarks of the Apache Software Foundation. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head1 LICENSE |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
The Apache License, Version 2.0 |
63
|
|
|
|
|
|
|
L<https://www.apache.org/licenses/LICENSE-2.0> |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=head1 SEE ALSO |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=cut |