-
Notifications
You must be signed in to change notification settings - Fork 0
/
PLUGIN
148 lines (115 loc) · 2.24 KB
/
PLUGIN
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
All plugins should recide inside Lim::Plugin
Autoload all available plugins
/usr/share/perl/Lim/Plugin
Example.pm
Example/
Server.pm
Client.pm
CLI.pm
package Lim::Plugin::Example;
use base qw(Lim::Component);
sub Name {
'Example';
}
sub Calls {
{
ReadIndex => {
out => {
example => {
hello => 'string'
}
}
},
UpdateHello => {
in => {
hello => 'string required'
}
}
};
}
sub Commands {
{
hi => 1,
hello => 1
};
}
package Lim::Plugin::Example::Server;
use base qw(Lim::Component::Server);
sub Init {
my ($self) = @_;
$self->{hello} = 'world';
}
sub ReadIndex {
my ($self, $cb) = @_;
$self->Successful($cb, {
example => {
hello => $self->{hello}
}
});
}
sub UpdateHello {
my ($self, $cb, $in) = @_;
$self->{hello} = $in->{hello};
$self->Successful($cb);
}
package Lim::Plugin::Example::Client;
use base qw(Lim::Component::Client);
package Lim::Plugin::Example::CLI;
use base qw(Lim::Component::CLI);
sub hi {
my ($self) = @_;
my $client = Lim::Plugin::Example->Client;
weaken($self);
$client->ReadIndex(sub {
my ($call, $response) = @_;
if ($call->Successful) {
$self->println('hello ', $response->{example}->{hello});
$self->Successful;
}
else {
$self->Error('Error talking to remote Example: ', $call->Error);
}
undef($client);
});
}
sub hello {
my ($self, $hello) = @_;
my $client = Lim::Plugin::Example->Client;
weaken($self);
unless ($client->UpdateHello({
hello => $hello
}, sub {
my ($call, $response) = @_;
if ($call->Successful) {
$self->println('Updated successfully');
$self->Successful;
}
else {
$self->Error('Error talking to remote Example: ', $call->Error);
}
undef($client);
}));
}
1;
# cli
lim> example
lim/example> hi
lim/example> hello me
lim/example> hi
# Example program
use Lim;
use Lim::Plugin::Example;
Lim::Config->{host} = 'remote.host.net';
my $client = Lim::Plugin::Example->Client;
$client->ReadIndex(sub {
my ($call, $response) = @_;
if ($call->Successful) {
print 'hello ', $response->{example}->{hello}, "\n";
}
else {
print STDERR 'Error talking to remote Example: ', $call->Error->toString, "\n";
}
undef($client);
}) or
print STDERR 'Error talking to remote Example', "\n";
Lim::Run;