ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-FCP/FCP.pm
(Generate patch)

Comparing Net-FCP/FCP.pm (file contents):
Revision 1.2 by root, Sun Sep 7 23:20:20 2003 UTC vs.
Revision 1.34 by root, Wed Jan 12 20:37:33 2005 UTC

17of what the messages do. I am too lazy to document all this here. 17of what the messages do. I am too lazy to document all this here.
18 18
19=head1 WARNING 19=head1 WARNING
20 20
21This module is alpha. While it probably won't destroy (much :) of your 21This module is alpha. While it probably won't destroy (much :) of your
22data, it currently works only with the Event module (alkthough the event 22data, it currently falls short of what it should provide (intelligent uri
23mechanism is fully pluggable). 23following, splitfile downloads, healing...)
24
25=head2 IMPORT TAGS
26
27Nothing much can be "imported" from this module right now. There are,
28however, certain "import tags" that can be used to select the event model
29to be used.
30
31Event models are implemented as modules under the C<Net::FCP::Event::xyz>
32class, where C<xyz> is the event model to use. The default is C<Event> (or
33later C<Auto>).
34
35The import tag to use is named C<event=xyz>, e.g. C<event=Event>,
36C<event=Glib> etc.
37
38You should specify the event module to use only in the main program.
39
40If no event model has been specified, FCP tries to autodetect it on first
41use (e.g. first transaction), in this order: Coro, Event, Glib, Tk.
42
43=head2 FREENET BASICS
44
45Ok, this section will not explain any freenet basics to you, just some
46problems I found that you might want to avoid:
47
48=over 4
49
50=item freenet URIs are _NOT_ URIs
51
52Whenever a "uri" is required by the protocol, freenet expects a kind of
53URI prefixed with the "freenet:" scheme, e.g. "freenet:CHK...". However,
54these are not URIs, as freeent fails to parse them correctly, that is, you
55must unescape an escaped characters ("%2c" => ",") yourself. Maybe in the
56future this library will do it for you, so watch out for this incompatible
57change.
58
59=item Numbers are in HEX
60
61Virtually every number in the FCP protocol is in hex. Be sure to use
62C<hex()> on all such numbers, as the module (currently) does nothing to
63convert these for you.
64
65=back
24 66
25=head2 THE Net::FCP CLASS 67=head2 THE Net::FCP CLASS
26 68
27=over 4 69=over 4
28 70
29=cut 71=cut
30 72
31package Net::FCP; 73package Net::FCP;
32 74
33use Carp; 75use Carp;
34use IO::Socket::INET;
35 76
36$VERSION = 0.01; 77$VERSION = 0.7;
37 78
38sub event_reg_cb { 79no warnings;
39 my ($obj) = @_;
40 require Event;
41 80
42 $obj->{eventdata} = Event->io ( 81use Net::FCP::Metadata;
43 fd => $obj->{fh}, 82use Net::FCP::Util qw(tolc touc xeh);
44 poll => 'r', 83
45 cb => sub { 84our $EVENT = Net::FCP::Event::Auto::;
46 $obj->fh_ready; 85
86sub import {
87 shift;
88
89 for (@_) {
90 if (/^event=(\w+)$/) {
91 $EVENT = "Net::FCP::Event::$1";
92 eval "require $EVENT";
47 }, 93 }
48 ); 94 }
95 die $@ if $@;
49} 96}
50 97
51sub event_unreg_cb {
52 $_[0]{eventdata}
53 and (delete $_[0]{eventdata})->cancel;
54}
55
56sub event_wait_cb {
57 Event::one_event();
58}
59
60$regcb = \&event_reg_cb;
61$unregcb = \&event_unreg_cb;
62$waitcb = \&event_wait_cb;
63
64sub touc($) {
65 local $_ = shift;
66 1 while s/((?:^|_)(?:svk|chk|uri)(?:_|$))/\U$1/;
67 s/(?:^|_)(.)/\U$1/g;
68 $_;
69}
70
71sub tolc($) {
72 local $_ = shift;
73 s/(?<=[a-z])(?=[A-Z])/_/g;
74 lc $_;
75}
76
77=item $fcp = new Net::FCP [host => $host][, port => $port] 98=item $fcp = new Net::FCP [host => $host][, port => $port][, progress => \&cb]
78 99
79Create a new virtual FCP connection to the given host and port (default 100Create a new virtual FCP connection to the given host and port (default
80127.0.0.1:8481). 101127.0.0.1:8481, or the environment variables C<FREDHOST> and C<FREDPORT>).
81 102
82Connections are virtual because no persistent physical connection is 103Connections are virtual because no persistent physical connection is
83established. However, the existance of the node is checked by executing a 104established.
84C<ClientHello> transaction. 105
106You can install a progress callback that is being called with the Net::FCP
107object, a txn object, the type of the transaction and the attributes. Use
108it like this:
109
110 sub progress_cb {
111 my ($self, $txn, $type, $attr) = @_;
112
113 warn "progress<$txn,$type," . (join ":", %$attr) . ">\n";
114 }
85 115
86=cut 116=cut
87 117
88sub new { 118sub new {
89 my $class = shift; 119 my $class = shift;
90 my $self = bless { @_ }, $class; 120 my $self = bless { @_ }, $class;
91 121
92 $self->{host} ||= "127.0.0.1"; 122 $self->{host} ||= $ENV{FREDHOST} || "127.0.0.1";
93 $self->{port} ||= 8481; 123 $self->{port} ||= $ENV{FREDPORT} || 8481;
94
95 $self->{nodehello} = $self->txn("ClientHello")->result
96 or croak "unable to get nodehello from node\n";
97 124
98 $self; 125 $self;
99} 126}
100 127
128sub progress {
129 my ($self, $txn, $type, $attr) = @_;
130
131 $self->{progress}->($self, $txn, $type, $attr)
132 if $self->{progress};
133}
134
101=item $txn = $fcp->txn(type => attr => val,...) 135=item $txn = $fcp->txn (type => attr => val,...)
102 136
103The low-level interface to transactions. Don't use it. 137The low-level interface to transactions. Don't use it unless you have
138"special needs". Instead, use predefiend transactions like this:
139
140The blocking case, no (visible) transactions involved:
141
142 my $nodehello = $fcp->client_hello;
143
144A transaction used in a blocking fashion:
145
146 my $txn = $fcp->txn_client_hello;
147 ...
148 my $nodehello = $txn->result;
149
150Or shorter:
151
152 my $nodehello = $fcp->txn_client_hello->result;
153
154Setting callbacks:
155
156 $fcp->txn_client_hello->cb(
157 sub { my $nodehello => $_[0]->result }
158 );
104 159
105=cut 160=cut
106 161
107sub txn { 162sub txn {
108 my ($self, $type, %attr) = @_; 163 my ($self, $type, %attr) = @_;
109 164
110 $type = touc $type; 165 $type = touc $type;
111 166
112 my $txn = "Net::FCP::Txn::$type"->new(fcp => $self, type => tolc $type, attr => \%attr); 167 my $txn = "Net::FCP::Txn::$type"->new (fcp => $self, type => tolc $type, attr => \%attr);
113 168
114 $txn; 169 $txn;
115} 170}
116 171
117sub _txn($&) { 172{ # transactions
173
174my $txn = sub {
118 my ($name, $sub) = @_; 175 my ($name, $sub) = @_;
119 *{"$name\_txn"} = $sub; 176 *{"txn_$name"} = $sub;
120 *{$name} = sub { $sub->(@_)->result }; 177 *{$name} = sub { $sub->(@_)->result };
121} 178};
122 179
123=item $txn = $fcp->txn_client_hello 180=item $txn = $fcp->txn_client_hello
124 181
125=item $nodehello = $fcp->client_hello 182=item $nodehello = $fcp->client_hello
126 183
127Executes a ClientHello request and returns it's results. 184Executes a ClientHello request and returns it's results.
128 185
129 { 186 {
130 max_file_size => "5f5e100", 187 max_file_size => "5f5e100",
188 node => "Fred,0.6,1.46,7050"
131 protocol => "1.2", 189 protocol => "1.2",
132 node => "Fred,0.6,1.46,7050"
133 } 190 }
134 191
135=cut 192=cut
136 193
137_txn client_hello => sub { 194$txn->(client_hello => sub {
138 my ($self) = @_; 195 my ($self) = @_;
139 196
140 $self->txn ("client_hello"); 197 $self->txn ("client_hello");
141}; 198});
142 199
143=item $txn = $fcp->txn_client_info 200=item $txn = $fcp->txn_client_info
144 201
145=item $nodeinfo = $fcp->client_info 202=item $nodeinfo = $fcp->client_info
146 203
147Executes a ClientInfo request and returns it's results. 204Executes a ClientInfo request and returns it's results.
148 205
149 { 206 {
150 max_file_size => "5f5e100",
151 datastore_max => "2540be400",
152 node_port => 369,
153 java_name => "Java HotSpot(_T_M) Server VM",
154 operating_system_version => "2.4.20",
155 estimated_load => 52,
156 free_memory => "5cc0148",
157 datastore_free => "5ce03400",
158 node_address => "1.2.3.4",
159 active_jobs => "1f", 207 active_jobs => "1f",
160 allocated_memory => "bde0000", 208 allocated_memory => "bde0000",
161 architecture => "i386", 209 architecture => "i386",
210 available_threads => 17,
211 datastore_free => "5ce03400",
212 datastore_max => "2540be400",
213 datastore_used => "1f72bb000",
214 estimated_load => 52,
215 free_memory => "5cc0148",
216 is_transient => "false",
217 java_name => "Java HotSpot(_T_M) Server VM",
218 java_vendor => "http://www.blackdown.org/",
219 java_version => "Blackdown-1.4.1-01",
220 least_recent_timestamp => "f41538b878",
221 max_file_size => "5f5e100",
222 most_recent_timestamp => "f77e2cc520"
223 node_address => "1.2.3.4",
224 node_port => 369,
225 operating_system => "Linux",
226 operating_system_version => "2.4.20",
162 routing_time => "a5", 227 routing_time => "a5",
163 least_recent_timestamp => "f41538b878",
164 available_threads => 17,
165 datastore_used => "1f72bb000",
166 java_version => "Blackdown-1.4.1-01",
167 is_transient => "false",
168 operating_system => "Linux",
169 java_vendor => "http://www.blackdown.org/",
170 most_recent_timestamp => "f77e2cc520"
171 } 228 }
172 229
173=cut 230=cut
174 231
175_txn client_info => sub { 232$txn->(client_info => sub {
176 my ($self) = @_; 233 my ($self) = @_;
177 234
178 $self->txn ("client_info"); 235 $self->txn ("client_info");
179}; 236});
180 237
181=item $txn = $fcp->txn_generate_chk ($metadata, $data) 238=item $txn = $fcp->txn_generate_chk ($metadata, $data[, $cipher])
182 239
183=item $uri = $fcp->generate_chk ($metadata, $data) 240=item $uri = $fcp->generate_chk ($metadata, $data[, $cipher])
184 241
185Creates a new CHK, given the metadata and data. UNTESTED. 242Calculates a CHK, given the metadata and data. C<$cipher> is either
243C<Rijndael> or C<Twofish>, with the latter being the default.
186 244
187=cut 245=cut
188 246
189_txn generate_chk => sub { 247$txn->(generate_chk => sub {
190 my ($self, $metadata, $data) = @_; 248 my ($self, $metadata, $data, $cipher) = @_;
191 249
192 $self->txn (generate_chk => data => "$data$metadata", meta_data_length => length $metadata); 250 $metadata = Net::FCP::Metadata::build_metadata $metadata;
251
252 $self->txn (generate_chk =>
253 data => "$metadata$data",
254 metadata_length => xeh length $metadata,
255 cipher => $cipher || "Twofish");
193}; 256});
194 257
195=item $txn = $fcp->txn_generate_svk_pair 258=item $txn = $fcp->txn_generate_svk_pair
196 259
197=item ($public, $private) = @{ $fcp->generate_svk_pair } 260=item ($public, $private, $crypto) = @{ $fcp->generate_svk_pair }
198 261
199Creates a new SVK pair. Returns an arrayref. 262Creates a new SVK pair. Returns an arrayref with the public key, the
263private key and a crypto key, which is just additional entropy.
200 264
201 [ 265 [
202 "hKs0-WDQA4pVZyMPKNFsK1zapWY", 266 "acLx4dux9fvvABH15Gk6~d3I-yw",
203 "ZnmvMITaTXBMFGl4~jrjuyWxOWg" 267 "cPoDkDMXDGSMM32plaPZDhJDxSs",
268 "BH7LXCov0w51-y9i~BoB3g",
204 ] 269 ]
205 270
206=cut 271A private key (for inserting) can be constructed like this:
207 272
273 SSK@<private_key>,<crypto_key>/<name>
274
275It can be used to insert data. The corresponding public key looks like this:
276
277 SSK@<public_key>PAgM,<crypto_key>/<name>
278
279Watch out for the C<PAgM>-part!
280
281=cut
282
208_txn generate_svk_pair => sub { 283$txn->(generate_svk_pair => sub {
209 my ($self) = @_; 284 my ($self) = @_;
210 285
211 $self->txn ("generate_svk_pair"); 286 $self->txn ("generate_svk_pair");
212}; 287});
213 288
214=item $txn = $fcp->txn_insert_private_key ($private) 289=item $txn = $fcp->txn_invert_private_key ($private)
215 290
216=item $uri = $fcp->insert_private_key ($private) 291=item $public = $fcp->invert_private_key ($private)
217 292
218Inserts a private key. $private can be either an insert URI (must start 293Inverts a private key (returns the public key). C<$private> can be either
219with freenet:SSK@) or a raw private key (i.e. the private value you get back 294an insert URI (must start with C<freenet:SSK@>) or a raw private key (i.e.
220from C<generate_svk_pair>). 295the private value you get back from C<generate_svk_pair>).
221 296
222Returns the public key. 297Returns the public key.
223 298
224UNTESTED.
225
226=cut 299=cut
227 300
228_txn insert_private_key => sub { 301$txn->(invert_private_key => sub {
229 my ($self, $privkey) = @_; 302 my ($self, $privkey) = @_;
230 303
231 $self->txn (invert_private_key => private => $privkey); 304 $self->txn (invert_private_key => private => $privkey);
232}; 305});
233 306
234=item $txn = $fcp->txn_get_size ($uri) 307=item $txn = $fcp->txn_get_size ($uri)
235 308
236=item $length = $fcp->get_size ($uri) 309=item $length = $fcp->get_size ($uri)
237 310
238Finds and returns the size (rounded up to the nearest power of two) of the 311Finds and returns the size (rounded up to the nearest power of two) of the
239given document. 312given document.
240 313
241UNTESTED.
242
243=cut 314=cut
244 315
245_txn get_size => sub { 316$txn->(get_size => sub {
246 my ($self, $uri) = @_; 317 my ($self, $uri) = @_;
247 318
248 $self->txn (get_size => URI => $uri); 319 $self->txn (get_size => URI => $uri);
249}; 320});
250 321
251=item MISSING: ClientGet, ClientPut 322=item $txn = $fcp->txn_client_get ($uri [, $htl = 15 [, $removelocal = 0]])
323
324=item ($metadata, $data) = @{ $fcp->client_get ($uri, $htl, $removelocal)
325
326Fetches a (small, as it should fit into memory) key content block from
327freenet. C<$meta> is a C<Net::FCP::Metadata> object or C<undef>).
328
329The C<$uri> should begin with C<freenet:>, but the scheme is currently
330added, if missing.
331
332 my ($meta, $data) = @{
333 $fcp->client_get (
334 "freenet:CHK@hdXaxkwZ9rA8-SidT0AN-bniQlgPAwI,XdCDmBuGsd-ulqbLnZ8v~w"
335 )
336 };
337
338=cut
339
340$txn->(client_get => sub {
341 my ($self, $uri, $htl, $removelocal) = @_;
342
343 $uri =~ s/^freenet://; $uri = "freenet:$uri";
344
345 $self->txn (client_get => URI => $uri, hops_to_live => xeh (defined $htl ? $htl : 15),
346 remove_local_key => $removelocal ? "true" : "false");
347});
348
349=item $txn = $fcp->txn_client_put ($uri, $metadata, $data, $htl, $removelocal)
350
351=item my $uri = $fcp->client_put ($uri, $metadata, $data, $htl, $removelocal);
352
353Insert a new key. If the client is inserting a CHK, the URI may be
354abbreviated as just CHK@. In this case, the node will calculate the
355CHK. If the key is a private SSK key, the node will calculcate the public
356key and the resulting public URI.
357
358C<$meta> can be a hash reference (same format as returned by
359C<Net::FCP::parse_metadata>) or a string.
360
361The result is an arrayref with the keys C<uri>, C<public_key> and C<private_key>.
362
363=cut
364
365$txn->(client_put => sub {
366 my ($self, $uri, $metadata, $data, $htl, $removelocal) = @_;
367
368 $metadata = Net::FCP::Metadata::build_metadata $metadata;
369 $uri =~ s/^freenet://; $uri = "freenet:$uri";
370
371 $self->txn (client_put => URI => $uri,
372 hops_to_live => xeh (defined $htl ? $htl : 15),
373 remove_local_key => $removelocal ? "true" : "false",
374 data => "$metadata$data", metadata_length => xeh length $metadata);
375});
376
377} # transactions
252 378
253=back 379=back
254 380
255=head2 THE Net::FCP::Txn CLASS 381=head2 THE Net::FCP::Txn CLASS
256 382
257All requests (or transactions) are executed in a asynchroneous way (LIE: 383All requests (or transactions) are executed in a asynchronous way. For
258uploads are blocking). For each request, a C<Net::FCP::Txn> object is 384each request, a C<Net::FCP::Txn> object is created (worse: a tcp
259created (worse: a tcp connection is created, too). 385connection is created, too).
260 386
261For each request there is actually a different subclass (and it's possible 387For each request there is actually a different subclass (and it's possible
262to subclass these, although of course not documented). 388to subclass these, although of course not documented).
263 389
264The most interesting method is C<result>. 390The most interesting method is C<result>.
266=over 4 392=over 4
267 393
268=cut 394=cut
269 395
270package Net::FCP::Txn; 396package Net::FCP::Txn;
397
398use Fcntl;
399use Socket;
271 400
272=item new arg => val,... 401=item new arg => val,...
273 402
274Creates a new C<Net::FCP::Txn> object. Not normally used. 403Creates a new C<Net::FCP::Txn> object. Not normally used.
275 404
277 406
278sub new { 407sub new {
279 my $class = shift; 408 my $class = shift;
280 my $self = bless { @_ }, $class; 409 my $self = bless { @_ }, $class;
281 410
411 $self->{signal} = $EVENT->new_signal;
412
413 $self->{fcp}{txn}{$self} = $self;
414
282 my $attr = ""; 415 my $attr = "";
283 my $data = delete $self->{attr}{data}; 416 my $data = delete $self->{attr}{data};
284 417
285 while (my ($k, $v) = each %{$self->{attr}}) { 418 while (my ($k, $v) = each %{$self->{attr}}) {
286 $attr .= (Net::FCP::touc $k) . "=$v\012" 419 $attr .= (Net::FCP::touc $k) . "=$v\012"
287 } 420 }
288 421
289 if (defined $data) { 422 if (defined $data) {
290 $attr .= "DataLength=" . (length $data) . "\012"; 423 $attr .= sprintf "DataLength=%x\012", length $data;
291 $data = "Data\012$data"; 424 $data = "Data\012$data";
292 } else { 425 } else {
293 $data = "EndMessage\012"; 426 $data = "EndMessage\012";
294 } 427 }
295 428
296 my $fh = new IO::Socket::INET 429 socket my $fh, PF_INET, SOCK_STREAM, 0
297 PeerHost => $self->{fcp}{host}, 430 or Carp::croak "unable to create new tcp socket: $!";
298 PeerPort => $self->{fcp}{port}
299 or Carp::croak "FCP::txn: unable to connect to $self->{fcp}{host}:$self->{fcp}{port}: $!\n";
300
301 binmode $fh, ":raw"; 431 binmode $fh, ":raw";
432 fcntl $fh, F_SETFL, O_NONBLOCK;
433 connect $fh, (sockaddr_in $self->{fcp}{port}, inet_aton $self->{fcp}{host})
434 and !$!{EWOULDBLOCK}
435 and !$!{EINPROGRESS}
436 and Carp::croak "FCP::txn: unable to connect to $self->{fcp}{host}:$self->{fcp}{port}: $!\n";
302 437
303 if (0) { 438 $self->{sbuf} =
304 print 439 "\x00\x00\x00\x02"
305 Net::FCP::touc $self->{type}, "\012",
306 $attr,
307 $data, "\012";
308 }
309
310 print $fh
311 "\x00\x00", "\x00\x02", # SESSID, PRESID
312 Net::FCP::touc $self->{type}, "\012", 440 . (Net::FCP::touc $self->{type})
313 $attr, 441 . "\012$attr$data";
314 $data;
315 442
316 #$fh->shutdown (1); # freenet buggy?, well, it's java... 443 #shutdown $fh, 1; # freenet buggy?, well, it's java...
317 444
318 $self->{fh} = $fh; 445 $self->{fh} = $fh;
319 446
320 $Net::FCP::regcb->($self); 447 $self->{w} = $EVENT->new_from_fh ($fh)
448 ->cb (sub { $self->fh_ready_w })
449 ->poll (0, 1, 1);
321 450
322 $self; 451 $self;
323} 452}
324 453
454=item $txn = $txn->cb ($coderef)
455
456Sets a callback to be called when the request is finished. The coderef
457will be called with the txn as it's sole argument, so it has to call
458C<result> itself.
459
460Returns the txn object, useful for chaining.
461
462Example:
463
464 $fcp->txn_client_get ("freenet:CHK....")
465 ->userdata ("ehrm")
466 ->cb(sub {
467 my $data = shift->result;
468 });
469
470=cut
471
472sub cb($$) {
473 my ($self, $cb) = @_;
474 $self->{cb} = $cb;
475 $self;
476}
477
478=item $txn = $txn->userdata ([$userdata])
479
480Set user-specific data. This is useful in progress callbacks. The data can be accessed
481using C<< $txn->{userdata} >>.
482
483Returns the txn object, useful for chaining.
484
485=cut
486
487sub userdata($$) {
488 my ($self, $data) = @_;
489 $self->{userdata} = $data;
490 $self;
491}
492
493=item $txn->cancel (%attr)
494
495Cancels the operation with a C<cancel> exception and the given attributes
496(consider at least giving the attribute C<reason>).
497
498UNTESTED.
499
500=cut
501
502sub cancel {
503 my ($self, %attr) = @_;
504 $self->throw (Net::FCP::Exception->new (cancel => { %attr }));
505 $self->set_result;
506 $self->eof;
507}
508
325sub fh_ready { 509sub fh_ready_w {
510 my ($self) = @_;
511
512 my $len = syswrite $self->{fh}, $self->{sbuf};
513
514 if ($len > 0) {
515 substr $self->{sbuf}, 0, $len, "";
516 unless (length $self->{sbuf}) {
517 fcntl $self->{fh}, F_SETFL, 0;
518 $self->{w}->cb(sub { $self->fh_ready_r })->poll (1, 0, 1);
519 }
520 } elsif (defined $len) {
521 $self->throw (Net::FCP::Exception->new (network_error => { reason => "unexpected end of file while writing" }));
522 } else {
523 $self->throw (Net::FCP::Exception->new (network_error => { reason => "$!" }));
524 }
525}
526
527sub fh_ready_r {
326 my ($self) = @_; 528 my ($self) = @_;
327 529
328 if (sysread $self->{fh}, $self->{buf}, 65536, length $self->{buf}) { 530 if (sysread $self->{fh}, $self->{buf}, 65536, length $self->{buf}) {
329 for (;;) { 531 for (;;) {
330 if ($self->{datalen}) { 532 if ($self->{datalen}) {
533 #warn "expecting new datachunk $self->{datalen}, got ".(length $self->{buf})."\n";#d#
331 if (length $self->{buf} >= $self->{datalen}) { 534 if (length $self->{buf} >= $self->{datalen}) {
332 $self->recv_data (substr $self->{buf}, 0, $self->{datalen}, ""); 535 $self->rcv_data (substr $self->{buf}, 0, delete $self->{datalen}, "");
333 } else { 536 } else {
334 last; 537 last;
335 } 538 }
336 } elsif ($self->{buf} =~ s/^DataChunk\015?\012Length=(\d+)\015?\012Data\015?\012//) { 539 } elsif ($self->{buf} =~ s/^DataChunk\015?\012Length=([0-9a-fA-F]+)\015?\012Data\015?\012//) {
337 $self->{datalen} = $1; 540 $self->{datalen} = hex $1;
541 #warn "expecting new datachunk $self->{datalen}\n";#d#
338 } elsif ($self->{buf} =~ s/^([a-zA-Z]+)\015?\012(.*?)\015?\012EndMessage\015?\012//s) { 542 } elsif ($self->{buf} =~ s/^([a-zA-Z]+)\015?\012(?:(.+?)\015?\012)?EndMessage\015?\012//s) {
339 $self->rcv ($1, { 543 $self->rcv ($1, {
340 map { my ($a, $b) = split /=/, $_, 2; ((Net::FCP::tolc $a), $b) } 544 map { my ($a, $b) = split /=/, $_, 2; ((Net::FCP::tolc $a), $b) }
341 split /\015?\012/, $2 545 split /\015?\012/, $2
342 }); 546 });
343 } else { 547 } else {
344 last; 548 last;
345 } 549 }
346 } 550 }
347 } else { 551 } else {
348 $Net::FCP::unregcb->($self);
349 delete $self->{fh};
350 $self->eof; 552 $self->eof;
351 } 553 }
352}
353
354sub rcv_data {
355 my ($self, $chunk) = @_;
356} 554}
357 555
358sub rcv { 556sub rcv {
359 my ($self, $type, $attr) = @_; 557 my ($self, $type, $attr) = @_;
360 558
361 $type = Net::FCP::tolc $type; 559 $type = Net::FCP::tolc $type;
560
561 #use PApp::Util; warn PApp::Util::dumpval [$type, $attr];
362 562
363 if (my $method = $self->can("rcv_$type")) { 563 if (my $method = $self->can("rcv_$type")) {
364 $method->($self, $attr, $type); 564 $method->($self, $attr, $type);
365 } else { 565 } else {
366 warn "received unexpected reply type '$type' for '$self->{type}', ignoring\n"; 566 warn "received unexpected reply type '$type' for '$self->{type}', ignoring\n";
367 $self->eof; 567 }
568}
569
570# used as a default exception thrower
571sub rcv_throw_exception {
572 my ($self, $attr, $type) = @_;
573 $self->throw (Net::FCP::Exception->new ($type, $attr));
574}
575
576*rcv_failed = \&Net::FCP::Txn::rcv_throw_exception;
577*rcv_format_error = \&Net::FCP::Txn::rcv_throw_exception;
578
579sub throw {
580 my ($self, $exc) = @_;
581
582 $self->{exception} = $exc;
583 $self->set_result;
584 $self->eof; # must be last to avoid loops
585}
586
587sub set_result {
588 my ($self, $result) = @_;
589
590 unless (exists $self->{result}) {
591 $self->{result} = $result;
592 $self->{cb}->($self) if exists $self->{cb};
593 $self->{signal}->send;
368 } 594 }
369} 595}
370 596
371sub eof { 597sub eof {
372 my ($self, $result) = @_; 598 my ($self) = @_;
373 599
374 $self->{result} = $result unless exists $self->{result}; 600 delete $self->{w};
601 delete $self->{fh};
602
603 delete $self->{fcp}{txn}{$self};
604
605 unless (exists $self->{result}) {
606 $self->throw (Net::FCP::Exception->new (short_data => {
607 reason => "unexpected eof or internal node error",
608 }));
609 }
610}
611
612sub progress {
613 my ($self, $type, $attr) = @_;
614
615 $self->{fcp}->progress ($self, $type, $attr);
375} 616}
376 617
377=item $result = $txn->result 618=item $result = $txn->result
378 619
379Waits until a result is available and then returns it. 620Waits until a result is available and then returns it.
380 621
381This waiting is (depending on your event modul) not very efficient, as it 622This waiting is (depending on your event model) not very efficient, as it
382is done outside the "mainloop". 623is done outside the "mainloop". The biggest problem, however, is that it's
624blocking one thread of execution. Try to use the callback mechanism, if
625possible, and call result from within the callback (or after is has been
626run), as then no waiting is necessary.
383 627
384=cut 628=cut
385 629
386sub result { 630sub result {
387 my ($self) = @_; 631 my ($self) = @_;
388 632
389 $Net::FCP::waitcb->() while !exists $self->{result}; 633 $self->{signal}->wait while !exists $self->{result};
634
635 die $self->{exception} if $self->{exception};
390 636
391 return $self->{result}; 637 return $self->{result};
392}
393
394sub DESTROY {
395 $Net::FCP::unregcb->($_[0]);
396} 638}
397 639
398package Net::FCP::Txn::ClientHello; 640package Net::FCP::Txn::ClientHello;
399 641
400use base Net::FCP::Txn; 642use base Net::FCP::Txn;
401 643
402sub rcv_node_hello { 644sub rcv_node_hello {
403 my ($self, $attr) = @_; 645 my ($self, $attr) = @_;
404 646
405 $self->eof ($attr); 647 $self->set_result ($attr);
406} 648}
407 649
408package Net::FCP::Txn::ClientInfo; 650package Net::FCP::Txn::ClientInfo;
409 651
410use base Net::FCP::Txn; 652use base Net::FCP::Txn;
411 653
412sub rcv_node_info { 654sub rcv_node_info {
413 my ($self, $attr) = @_; 655 my ($self, $attr) = @_;
414 656
415 $self->eof ($attr); 657 $self->set_result ($attr);
416} 658}
417 659
418package Net::FCP::Txn::GenerateCHK; 660package Net::FCP::Txn::GenerateCHK;
419 661
420use base Net::FCP::Txn; 662use base Net::FCP::Txn;
421 663
422sub rcv_success { 664sub rcv_success {
423 my ($self, $attr) = @_; 665 my ($self, $attr) = @_;
424 666
425 $self->eof ($attr); 667 $self->set_result ($attr->{uri});
426} 668}
427 669
428package Net::FCP::Txn::GenerateSVKPair; 670package Net::FCP::Txn::GenerateSVKPair;
429 671
430use base Net::FCP::Txn; 672use base Net::FCP::Txn;
431 673
432sub rcv_success { 674sub rcv_success {
433 my ($self, $attr) = @_; 675 my ($self, $attr) = @_;
434 676 $self->set_result ([$attr->{public_key}, $attr->{private_key}, $attr->{crypto_key}]);
435 $self->eof ([$attr->{PublicKey}, $attr->{PrivateKey}]);
436} 677}
437 678
438package Net::FCP::Txn::InvertPrivateKey; 679package Net::FCP::Txn::InvertPrivateKey;
439 680
440use base Net::FCP::Txn; 681use base Net::FCP::Txn;
441 682
442sub rcv_success { 683sub rcv_success {
443 my ($self, $attr) = @_; 684 my ($self, $attr) = @_;
444
445 $self->eof ($attr->{PublicKey}); 685 $self->set_result ($attr->{public_key});
446} 686}
447 687
448package Net::FCP::Txn::GetSize; 688package Net::FCP::Txn::GetSize;
449 689
450use base Net::FCP::Txn; 690use base Net::FCP::Txn;
451 691
452sub rcv_success { 692sub rcv_success {
453 my ($self, $attr) = @_; 693 my ($self, $attr) = @_;
454
455 $self->eof ($attr->{Length}); 694 $self->set_result (hex $attr->{length});
695}
696
697package Net::FCP::Txn::GetPut;
698
699# base class for get and put
700
701use base Net::FCP::Txn;
702
703*rcv_uri_error = \&Net::FCP::Txn::rcv_throw_exception;
704*rcv_route_not_found = \&Net::FCP::Txn::rcv_throw_exception;
705
706sub rcv_restarted {
707 my ($self, $attr, $type) = @_;
708
709 delete $self->{datalength};
710 delete $self->{metalength};
711 delete $self->{data};
712
713 $self->progress ($type, $attr);
714}
715
716package Net::FCP::Txn::ClientGet;
717
718use base Net::FCP::Txn::GetPut;
719
720*rcv_data_not_found = \&Net::FCP::Txn::rcv_throw_exception;
721
722sub rcv_data {
723 my ($self, $chunk) = @_;
724
725 $self->{data} .= $chunk;
726
727 $self->progress ("data", { chunk => length $chunk, received => length $self->{data}, total => $self->{datalength} });
728
729 if ($self->{datalength} == length $self->{data}) {
730 my $data = delete $self->{data};
731 my $meta = new Net::FCP::Metadata (substr $data, 0, $self->{metalength}, "");
732
733 $self->set_result ([$meta, $data]);
734 $self->eof;
735 }
736}
737
738sub rcv_data_found {
739 my ($self, $attr, $type) = @_;
740
741 $self->progress ($type, $attr);
742
743 $self->{datalength} = hex $attr->{data_length};
744 $self->{metalength} = hex $attr->{metadata_length};
745}
746
747package Net::FCP::Txn::ClientPut;
748
749use base Net::FCP::Txn::GetPut;
750
751*rcv_size_error = \&Net::FCP::Txn::rcv_throw_exception;
752
753sub rcv_pending {
754 my ($self, $attr, $type) = @_;
755 $self->progress ($type, $attr);
756}
757
758sub rcv_success {
759 my ($self, $attr, $type) = @_;
760 $self->set_result ($attr);
761}
762
763sub rcv_key_collision {
764 my ($self, $attr, $type) = @_;
765 $self->set_result ({ key_collision => 1, %$attr });
456} 766}
457 767
458=back 768=back
459 769
770=head2 The Net::FCP::Exception CLASS
771
772Any unexpected (non-standard) responses that make it impossible to return
773the advertised result will result in an exception being thrown when the
774C<result> method is called.
775
776These exceptions are represented by objects of this class.
777
778=over 4
779
780=cut
781
782package Net::FCP::Exception;
783
784use overload
785 '""' => sub {
786 "Net::FCP::Exception<<$_[0][0]," . (join ":", %{$_[0][1]}) . ">>";
787 };
788
789=item $exc = new Net::FCP::Exception $type, \%attr
790
791Create a new exception object of the given type (a string like
792C<route_not_found>), and a hashref containing additional attributes
793(usually the attributes of the message causing the exception).
794
795=cut
796
797sub new {
798 my ($class, $type, $attr) = @_;
799
800 bless [Net::FCP::tolc $type, { %$attr }], $class;
801}
802
803=item $exc->type([$type])
804
805With no arguments, returns the exception type. Otherwise a boolean
806indicating wether the exception is of the given type is returned.
807
808=cut
809
810sub type {
811 my ($self, $type) = @_;
812
813 @_ >= 2
814 ? $self->[0] eq $type
815 : $self->[0];
816}
817
818=item $exc->attr([$attr])
819
820With no arguments, returns the attributes. Otherwise the named attribute
821value is returned.
822
823=cut
824
825sub attr {
826 my ($self, $attr) = @_;
827
828 @_ >= 2
829 ? $self->[1]{$attr}
830 : $self->[1];
831}
832
833=back
834
460=head1 SEE ALSO 835=head1 SEE ALSO
461 836
462L<http://freenet.sf.net>. 837L<http://freenet.sf.net>.
463 838
464=head1 BUGS 839=head1 BUGS
465 840
466=head1 AUTHOR 841=head1 AUTHOR
467 842
468 Marc Lehmann <pcg@goof.com> 843 Marc Lehmann <pcg@goof.com>
469 http://www.goof.com/pcg/marc/ 844 http://home.schmorp.de/
470 845
471=cut 846=cut
847
848package Net::FCP::Event::Auto;
849
850my @models = (
851 [Coro => Coro::Event::],
852 [Event => Event::],
853 [Glib => Glib::],
854 [Tk => Tk::],
855);
856
857sub AUTOLOAD {
858 $AUTOLOAD =~ s/.*://;
859
860 for (@models) {
861 my ($model, $package) = @$_;
862 if (defined ${"$package\::VERSION"}) {
863 $EVENT = "Net::FCP::Event::$model";
864 eval "require $EVENT"; die if $@;
865 goto &{"$EVENT\::$AUTOLOAD"};
866 }
867 }
868
869 for (@models) {
870 my ($model, $package) = @$_;
871 $EVENT = "Net::FCP::Event::$model";
872 if (eval "require $EVENT") {
873 goto &{"$EVENT\::$AUTOLOAD"};
874 }
875 }
876
877 die "No event module selected for Net::FCP and autodetect failed. Install any of these: Coro, Event, Glib or Tk.";
878}
472 879
4731; 8801;
474 881

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines