]> git.proxmox.com Git - librados2-perl.git/blame - PVE/RADOS.pm
initial import
[librados2-perl.git] / PVE / RADOS.pm
CommitLineData
27bfc7c6
DM
1package PVE::RADOS;
2
3use 5.014002;
4use strict;
5use warnings;
6use Carp;
7use JSON;
8
9require Exporter;
10
11our @ISA = qw(Exporter);
12
13# Items to export into callers namespace by default. Note: do not export
14# names by default without a very good reason. Use EXPORT_OK instead.
15# Do not simply export all your public functions/methods/constants.
16
17# This allows declaration use PVE::RADOS ':all';
18# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
19# will save memory.
20our %EXPORT_TAGS = ( 'all' => [ qw(
21
22) ] );
23
24our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
25
26our @EXPORT = qw(
27
28);
29
30our $VERSION = '1.0';
31
32require XSLoader;
33XSLoader::load('PVE::RADOS', $VERSION);
34
35sub new {
36 my $conn = pve_rados_create() ||
37 die "unable to create RADOS object\n";
38
39 pve_rados_connect($conn);
40
41 my $self = bless { conn => $conn };
42
43 return $self;
44}
45
46sub DESTROY {
47 my ($self) = @_;
48
49 pve_rados_shutdown($self->{conn});
50}
51
52sub cluster_stat {
53 my ($self) = @_;
54
55 return pve_rados_cluster_stat($self->{conn});
56}
57
58# example: { prefix => 'mon dump', format => 'json' }
59sub mon_command {
60 my ($self, $cmd) = @_;
61
62 my $json = encode_json($cmd);
63 my $raw = pve_rados_mon_command($self->{conn}, [ $json ]);
64 if ($cmd->{format} && $cmd->{format} eq 'json') {
65 return decode_json($raw);
66 }
67 return $raw;
68}
69
70
711;
72__END__
73
74=head1 NAME
75
76PVE::RADOS - Perl bindings for librados
77
78=head1 SYNOPSIS
79
80 use PVE::RADOS;
81
82 my $rados = PVE::RADOS::new();
83 my $stat = $rados->cluster_stat();
84 my $res = $rados->mon_command({ prefix => 'mon dump', format => 'json' });
85
86=head1 DESCRIPTION
87
88Perl bindings for librados.
89
90=head2 EXPORT
91
92None by default.
93
94=head1 AUTHOR
95
96Dietmar Maurer, E<lt>dietmar@proxmox.com<gt>
97
98=cut