line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package QxExample::JsonRpcService; |
2
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
29
|
|
3
|
1
|
|
|
1
|
|
4
|
use Mojo::Base -base; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
=head1 NAME |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
JsonRpcService - RPC services for Qooxdoo |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 SYNOPSIS |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
This module gets instanciated by L and provides backend functionality for your qooxdoo app |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 DESCRIPTION |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
All methods on this class can get called remotely as long as their name does not start with an underscore. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=head2 new() |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
Create a service object. |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=cut |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub new { |
24
|
1
|
|
|
1
|
1
|
34
|
my $self = shift->SUPER::new(@_); |
25
|
|
|
|
|
|
|
# do some other interesting initialization work |
26
|
1
|
|
|
|
|
14
|
return $self; |
27
|
|
|
|
|
|
|
} |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 allow_rpc_access |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
check it this method may be called |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=cut |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
our %allow_access = ( |
36
|
|
|
|
|
|
|
echo => 1 |
37
|
|
|
|
|
|
|
); |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
sub allow_rpc_access { |
40
|
4
|
|
|
4
|
1
|
4
|
my $self = shift; |
41
|
4
|
|
|
|
|
8
|
my $method = shift; |
42
|
4
|
|
|
|
|
29
|
return $allow_access{$method}; |
43
|
|
|
|
|
|
|
} |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 echo(var) |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
return the string we input |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=cut |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
sub echo { |
52
|
3
|
|
|
3
|
1
|
6
|
my $self = shift; |
53
|
3
|
100
|
|
|
|
24
|
my $arg = shift or die QxExample::Exception->new(code=>123,message=>"Argument Required!"); |
54
|
2
|
|
|
|
|
9
|
return $arg; |
55
|
|
|
|
|
|
|
} |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
package QxExample::Exception; |
58
|
1
|
|
|
1
|
|
270
|
use Mojo::Base -base; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
59
|
|
|
|
|
|
|
has 'code'; |
60
|
|
|
|
|
|
|
has 'message'; |
61
|
1
|
|
|
1
|
|
101
|
use overload ('""' => 'stringify'); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
9
|
|
62
|
|
|
|
|
|
|
sub stringify { |
63
|
2
|
|
|
2
|
|
30
|
my $self = shift; |
64
|
2
|
|
|
|
|
41
|
return "ERROR ".$self->code.": ".$self->message; |
65
|
|
|
|
|
|
|
} |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
1; |
68
|
|
|
|
|
|
|
__END__ |