summaryrefslogtreecommitdiff
path: root/lib/Data/QRCode/Input.pm
blob: 69fd283705a1f00c51cf0946da305d2bf1c3f961 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package Data::QRCode::Input; 
use strict;
use warnings;
# ABSTRACT: qrcodes in C 
# VERSION 
use Data::QRCode::Input::Inline with => 'Alien::QREncode';
use Data::QRCode::Input::Inline => (
    'DATA',
    autowrap => 1,
    typemaps => 'typemap',
);
 
sub new {
    my ($class) = @_;
 
    my $self = QRinput_new();
    bless $self,$class;
    return $self;
}
 
sub version {
    my $self = shift;
    if (@_) {
        return QRinput_setVersion($self,shift);
    }
    else {
        return QRinput_getVersion($self);
    }
}
 
sub error_correction_level {
    my $self = shift;
    if (@_) {
        return QRinput_setErrorCorrectionLevel($self,shift);
    }
    else {
        return QRinput_getErrorCorrectionLevel($self);
    }
}
 
1;
 
__DATA__
__C__
 
QRecLevel ECLEVEL_L() { return QR_ECLEVEL_L; }
QRecLevel ECLEVEL_M() { return QR_ECLEVEL_M; }
QRecLevel ECLEVEL_Q() { return QR_ECLEVEL_Q; }
QRecLevel ECLEVEL_H() { return QR_ECLEVEL_H; }
 
QRencodeMode MODE_NUM() { return QR_MODE_NUM; }
QRencodeMode MODE_AN() { return QR_MODE_AN; }
QRencodeMode MODE_8() { return QR_MODE_8; }
QRencodeMode MODE_KANJI() { return QR_MODE_KANJI; }
QRencodeMode MODE_STRUCTURE() { return QR_MODE_STRUCTURE; }
QRencodeMode MODE_ECI() { return QR_MODE_ECI; }
QRencodeMode MODE_FNC1FIRST() { return QR_MODE_FNC1FIRST; }
QRencodeMode MODE_FNC1SECOND() { return QR_MODE_FNC1SECOND; }
 
extern QRinput *QRinput_new(void);
void DESTROY(QRinput *input) { QRinput_free(input); }
 
int append(QRinput *input, QRencodeMode mode, SV *data) {
    unsigned char * str;
    STRLEN len;
 
    str = SvPVutf8(data,len);
    return QRinput_append(input,mode,len,str);
}
 
extern int QRinput_getVersion(QRinput *input);
extern int QRinput_setVersion(QRinput *input, int version);
 
extern QRecLevel QRinput_getErrorCorrectionLevel(QRinput *input);
extern int QRinput_setErrorCorrectionLevel(QRinput *input, QRecLevel level);