/[corp]/esi/filter2.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Annotation of /esi/filter2.pl

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations)
Fri Feb 1 13:33:27 2002 UTC (22 years, 4 months ago) by dpavlin
Branch: MAIN
File MIME type: text/plain
FT filter

1 dpavlin 1.1 #!/usr/local/bin/perl -w
2    
3     use LWP::UserAgent;
4     use strict;
5     use DBI;
6    
7     my $debug=0;
8    
9     $debug++ if (lc($ARGV[0]) eq "-d");
10    
11     sub print_debug {
12     return if (! $debug);
13     open(DEBUG,">> debug") || warn "can't open debug file!";
14     print DEBUG "###",@_;
15     print @_;
16     close(DEBUG);
17     }
18    
19     print_debug("debug level $debug");
20    
21     my $dbh = DBI->connect("DBI:Pg:dbname=corp","","") || die $DBI::errstr;
22    
23     my $ua = new LWP::UserAgent;
24     $ua->agent("pliva_harvester 0.0");
25     $ua->timeout(60);
26     $ua->env_proxy();
27     $ua->proxy(['http', 'ftp'], 'http://proxy.pliva.hr:8080/');
28    
29     my $market=0;
30     my @markets = ('LSE','bug0','bug1','bug2','bug3','bug4');
31     my @val;
32    
33     my $close_time='21:21:21 CET';
34    
35     sub insert {
36     my $sql="insert into stocks values ('".shift(@val)."','".$markets[$market]."',".join(",",@val).")";
37     $sql=~s/,\+(\d)/,$1/g; # nuke + which pgsql doesn't like
38     $dbh->do("$sql") || die "$sql\n".$DBI::errstr;
39     print_debug("sql: $sql\n");
40     $market++;
41     }
42    
43     my $req = HTTP::Request->new(GET =>'http://custom.marketwatch.com/custom/alliance/ftmw/invrel.asp?siteid=!plivadd-0773-4F6D-DHID-QN1112NFTD0X&symb=PLVD');
44    
45     my $res = $ua->request($req);
46     if ($res->is_success) {
47     print_debug("html: ".$res->content."\n");
48     foreach (split(/[\n\r]+/, $res->content)) {
49     chomp;
50     print_debug("line: $_\n");
51     if (m,class="ft-quotedate">(\d+:\d+) (\d+)/(\d+)/(\d+),i) {
52     my ($time,$mm,$dd,$yy) = ($1,$2,$3,$4);
53     my $date=($yy+2000)."-$mm-$dd";
54     print_debug("time: $time date: $date");
55     insert() if (@val);
56     undef @val;
57     push @val,"$date $time";
58     $dbh->do("delete from stocks where date='$date $close_time'");
59     }
60     if (m,class="ft-quote[^"]+".*<nobr>(\d+\.\d+)</nobr>,i) {
61     push @val,$1;
62     print_debug("val: $1");
63     }
64    
65     }
66     insert();
67     } else {
68     warn "can't fetch stock data";
69     }
70    
71     $dbh->disconnect;

  ViewVC Help
Powered by ViewVC 1.1.26