line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Cobweb; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
23872
|
use 5.10.0; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
47
|
|
4
|
1
|
|
|
1
|
|
6
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
32
|
|
5
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
12
|
|
|
1
|
|
|
|
|
63
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
Cobweb - A complex network-based distributed job system. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 VERSION |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Version 0.01 |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=cut |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
our $VERSION = '0.02'; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 SYNOPSIS |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
This project will aim to be a distributed system for job farming using a different architecture than the |
23
|
|
|
|
|
|
|
usual server - worker. My objective is to create a self-maintained system that will manage the job list by itself. |
24
|
|
|
|
|
|
|
Once a job list is submitted to the network, it will 'live' in the network until the jobs are finished. |
25
|
|
|
|
|
|
|
The system is being develop in Linux and Windows support will be implemented as well. |
26
|
|
|
|
|
|
|
Please note that the project is under initial development. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 AUTHOR |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Felipe Leprevost, C<< <leprevost at cpan.org> >> |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 BUGS |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Please report any bugs or feature requests to C<bug-cobweb at rt.cpan.org>, or through |
35
|
|
|
|
|
|
|
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Cobweb>. I will be notified, and then you'll |
36
|
|
|
|
|
|
|
automatically be notified of progress on your bug as I make changes. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 SUPPORT |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
perldoc Cobweb |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
You can also look for information at: |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=over 4 |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker (report bugs here) |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Cobweb> |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=item * AnnoCPAN: Annotated CPAN documentation |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
L<http://annocpan.org/dist/Cobweb> |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=item * CPAN Ratings |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
L<http://cpanratings.perl.org/d/Cobweb> |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=item * Search CPAN |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
L<http://search.cpan.org/dist/Cobweb/> |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=back |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
Copyright 2012 Felipe Leprevost. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
77
|
|
|
|
|
|
|
under the terms of either: the GNU General Public License as published |
78
|
|
|
|
|
|
|
by the Free Software Foundation; or the Artistic License. |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
See http://dev.perl.org/licenses/ for more information. |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=cut |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
1; # End of Cobweb |