b49ca0b618e3d2dcf2a1c0439e3519e6756f6128
[tclrobot.git] / robot.tcl
1 #!/usr/bin/tclsh 
2 # $Id: robot.tcl,v 1.24 2001/11/07 11:30:52 adam Exp $
3 #
4 proc RobotFileNext1 {area lead} {
5     # puts "RobotFileNext1 area=$area lead=$lead"
6     if {[catch {set ns [glob ${area}/*]}]} {
7         return {}
8     }
9     foreach n $ns {
10         if {[file isfile $n]} {
11             set off [string last / $n]
12             incr off 2
13             return $lead/[string range $n $off end]
14         }
15     }
16     foreach n $ns {
17         if {[file isdirectory $n]} {
18             set off [string last / $n]
19             incr off 2
20             set sb [RobotFileNext1 $n $lead/[string range $n $off end]]
21             if {[string length $sb]} {
22                 return $sb
23             }
24         }
25     }
26     return {}
27 }
28
29 proc RobotWriteRecord {outf fromurl distance} {
30     puts $outf "<zmbot>"
31     puts $outf "<distance>"
32     puts $outf $distance
33     puts $outf "</distance>"
34     puts $outf "<fromurl>"
35     puts $outf $fromurl
36     puts $outf "</fromurl>"
37     puts $outf "</zmbot>"
38 }
39
40 proc RobotReadRecord {inf fromurlx distancex} {
41     upvar $fromurlx fromurl
42     upvar $distancex distance
43     gets $inf
44     gets $inf
45     set distance [string trim [gets $inf]]
46     # puts "got distance = $distance"
47     gets $inf
48     gets $inf
49     set fromurl [string trim [gets $inf]]
50 }
51
52 proc RobotFileNext {area} {
53     global robotSeq global idletime ns
54
55     # puts "RobotFileNext robotSeq=$robotSeq"
56     if {$robotSeq < 0} {
57         return {}
58     }
59     if {$robotSeq == 0} {
60         if {[catch {set ns [glob ${area}/*]}]} {
61             return {}
62         }
63     }
64     set off [string length $area]
65     incr off
66     set n [lindex $ns $robotSeq]
67     if {![string length $n]} {
68         set robotSeq -1
69         flush stdout
70         puts "Round robin"
71         return wait
72     }
73     incr robotSeq
74     if {[file isfile $n/frobots.txt]} {
75         puts "ok returning http://[string range $n $off end]/robots.txt"
76         return http://[string range $n $off end]/robots.txt
77     } elseif {[file isdirectory $n]} {
78         set sb [RobotFileNext1 $n http://[string range $n $off end]]
79         if {[string length $sb]} {
80             return $sb
81         }
82     }
83     puts "no more work at end of RobotFileNext n=$n"
84     puts "ns=$ns"
85     return {}
86 }
87
88
89 proc RobotFileExist {area host path} {
90     # puts "RobotFileExist begin area=$area host=$host path=$path"
91     set lpath [split $path /]
92     set l [llength $lpath]
93     incr l -1
94     set t [lindex $lpath $l]
95     incr l -1
96     set npath $area/$host[join [lrange $lpath 0 $l] /d]/f$t
97     # puts "RobotFileExist end npath=$npath"
98     return [file exists $npath]
99 }
100
101 proc RobotFileUnlink {area host path} {
102     # puts "RobotFileUnlink begin"
103     # puts "area=$area host=$host path=$path"
104     set lpath [split $path /]
105     set l [llength $lpath]
106     incr l -1
107     set t [lindex $lpath $l]
108     incr l -1
109     set npath $area/$host[join [lrange $lpath 0 $l] /d]/f$t
110     # puts "npath=$npath"
111     set comp [split $npath /]
112     set l [llength $comp]
113     incr l -1
114     if {[catch {exec rm [join $comp /]}]} return
115     incr l -1
116     for {set i $l} {$i > 0} {incr i -1} {
117         set path [join [lrange $comp 0 $i] /]
118         if {![catch {glob $path/*}]} return
119         exec rmdir ./$path
120     }
121     # puts "RobotFileUnlink end"
122 }
123
124 proc RobotFileClose {out} {
125     if [string compare $out stdout] {
126         close $out
127     }
128 }
129
130 proc RobotFileOpen {area host path {mode w}} {
131     set orgPwd [pwd]
132     global workdir
133
134     if {![info exists workdir]} {
135         return stdout
136     }
137     #puts "RobotFileOpen orgPwd=$orgPwd area=$area host=$host path=$path mode=$mode"
138     if {[string compare $orgPwd $workdir]} {
139         puts "ooops. RobotFileOpen failed"
140         puts "workdir = $workdir"
141         puts "pwd = $orgPwd"
142         exit 1
143     }
144     set comp [split $area/$host$path /]
145     set len [llength $comp]
146     incr len -1
147     for {set i 0} {$i < $len} {incr i} {
148         if {$i > 1} {
149             set d "d[lindex $comp $i]" 
150         } else {
151             set d [lindex $comp $i]
152         }
153         if {[catch {cd ./$d}]} {
154             exec mkdir $d
155             cd ./$d
156             if {![string compare $area unvisited] && $i == 1 && $mode == "w"} {
157                 set out [open frobots.txt w]
158                 puts "creating robots.txt in $d"
159                 close $out
160             }
161         }
162     }
163     set d [lindex $comp $len]
164     if {[string length $d]} {
165         if {[file isdirectory $d]} {
166             set out [open $d/f $mode]
167         } else {
168             set out [open f$d $mode]
169         }
170     } else {
171         set out [open f $mode]
172     }
173     cd $orgPwd
174     return $out
175 }
176
177 proc RobotRR {} {
178     global robotSeq robotsRunning
179
180     incr robotsRunning -1
181     while {$robotsRunning} {
182         vwait robotsRunning
183     }
184     set robotSeq 0
185     RobotStart
186 }
187
188 proc RobotRestart {url sock} {
189     global URL robotsRunning
190
191     close $sock
192     after cancel $URL($sock,cancel) 
193
194     foreach v [array names URL $url,*] {
195         unset URL($v)
196     }
197
198     incr robotsRunning -1
199     RobotStart
200 }
201
202 proc RobotStart {} {
203     global URL
204     global robotsRunning robotsMax idletime
205   
206     # puts "RobotStart"
207     while {1} {
208         set url [RobotFileNext unvisited]
209         if {![string length $url]} {
210             return
211         }
212         incr robotsRunning
213         if {[string compare $url wait] == 0} {
214             after $idletime RobotRR
215             return
216         }
217         set r [RobotGetUrl $url {}]
218         if {!$r} {
219             if {$robotsRunning >= $robotsMax} return
220         } else {
221             incr robotsRunning -1
222             if {![RobotFileExist bad $URL($url,hostport) $URL($url,path)]} {
223                 set outf [RobotFileOpen bad $URL($url,hostport) $URL($url,path)]
224                 RobotFileClose $outf
225             }
226             RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)
227         }
228     }
229 }
230
231 proc headSave {url out} {
232     global URL
233     
234     if {[info exists URL($url,head,last-modified)]} {
235         puts $out "<lastmodified>$URL($url,head,last-modified)</lastmodified>"
236     }
237     puts $out {<si>}
238     if {[info exists URL($url,head,date)]} {
239         puts $out " <date>$URL($url,head,date)</date>"
240     }
241     if {[info exists URL($url,head,content-length)]} {
242         puts $out " <by>$URL($url,head,content-length)</by>"
243     }
244     if {[info exists URL($url,head,server)]} {
245         puts $out " <format>$URL($url,head,server)</format>"
246     }
247     puts $out {</si>}
248     puts $out {<publisher>}
249     puts $out " <identifier>$url</identifier>"
250     if {[info exists URL($url,head,content-type)]} {
251         puts $out " <type>$URL($url,head,content-type)</type>"
252     }
253     puts $out {</publisher>}
254 }
255
256 proc RobotHref {url hrefx hostx pathx} {
257     global URL domains debuglevel
258     upvar $hrefx href
259     upvar $hostx host
260     upvar $pathx path
261
262     if {$debuglevel > 1} {
263         puts "Ref input url = $url href=$href"
264     }
265
266     if {[string first { } $href] >= 0} {
267         return 0
268     }
269     if {[string length $href] > 256} {
270         return 0
271     }
272     if {[string first {?} $href] >= 0} {
273         return 0
274     }
275     if {[string first {?} $url] >= 0 && [string first {?} $href] >= 0} {
276         return 0
277     }
278     # get method (if any)
279     if {![regexp {^([^/:]+):(.*)} $href x method hpath]} {
280         set hpath $href
281         set method http
282     } else {
283         if {[string compare $method http]} {
284             return 0
285         }
286     }
287     # get host (if any)
288     if {[regexp {^//([^/]+)([^\#]*)} $hpath x host surl]} {
289         if {![string length $surl]} {
290             set surl /
291         }
292         if {[info exist domains]} {
293             set ok 0
294             foreach domain $domains {
295                 if {[string match $domain $host]} {
296                     set ok 1
297                     break
298                  }
299             }
300             if {!$ok} {
301                 return 0
302             }
303         }
304     } else {
305         regexp {^([^\#]*)} $hpath x surl
306         set host $URL($url,hostport)
307     }
308     if {![string length $surl]} {
309         return 0
310     }
311     if {[string first / $surl]} {
312         # relative path
313         regexp {^([^\#?]*)} $URL($url,path) x dpart
314         set l [string last / $dpart]
315         if {[expr $l >= 0]} {
316             set surl [string range $dpart 0 $l]$surl
317         } else {
318             set surl $dpart/$surl
319         }
320     }
321     set surllist [split $surl /]
322     catch {unset path}
323     set pathl 0
324     foreach c $surllist {
325         switch -- $c {
326             .. {
327                 if {$pathl > 0} {
328                     incr pathl -2
329                     set path [lrange $path 0 $pathl]
330                     incr pathl
331                 }
332             }
333             . {
334
335             }
336             default {
337                 incr pathl
338                 lappend path $c
339             }
340         }
341     }
342     if {$pathl} {
343         set path [join $path /]
344     } else {
345         set path ""
346     }
347     regsub -all {~} $path {%7E} path
348     set href "$method://$host$path"
349
350     if {$debuglevel > 1} {
351         puts "Ref result = $href"
352     }
353     return [checkrule url $href]
354 }
355
356 proc RobotError {url code} {
357     global URL
358
359     puts "Bad URL $url (code $code)"
360     set fromurl {}
361     set distance -1
362     if {[RobotFileExist unvisited $URL($url,hostport) $URL($url,path)]} {
363         set inf [RobotFileOpen unvisited $URL($url,hostport) $URL($url,path) r]
364         RobotReadRecord $inf fromurl distance
365         RobotFileClose $inf
366     }
367     RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)
368     if {![RobotFileExist bad $URL($url,hostport) $URL($url,path)]} {
369         set outf [RobotFileOpen bad $URL($url,hostport) $URL($url,path)]
370         RobotWriteRecord $outf $fromurl $distance
371         RobotFileClose $outf
372     }
373 }
374
375 proc RobotRedirect {url tourl code} {
376     global URL
377
378     puts "Redirecting from $url to $tourl"
379
380     set distance {}
381     set fromurl {}
382     if {[RobotFileExist unvisited $URL($url,hostport) $URL($url,path)]} {
383         set inf [RobotFileOpen unvisited $URL($url,hostport) $URL($url,path) r]
384         RobotReadRecord $inf fromurl distance
385         RobotFileClose $inf
386     }
387     if {![RobotFileExist bad $URL($url,hostport) $URL($url,path)]} {
388         set outf [RobotFileOpen bad $URL($url,hostport) $URL($url,path)]
389         RobotWriteRecord $outf $fromurl $distance
390         RobotFileClose $outf
391     }
392     if {[RobotHref $url tourl host path]} {
393         if {![RobotFileExist visited $host $path]} {
394             if {![RobotFileExist unvisited $host $path]} {
395                 set outf [RobotFileOpen unvisited $host $path]
396                 RobotWriteRecord $outf $fromurl $distance
397                 RobotFileClose $outf
398             }
399         } else {
400             set olddistance {}
401             set inf [RobotFileOpen visited $host $path r]
402             RobotReadRecord $inf oldurl olddistance
403             RobotFileClose $inf
404             if {[string length $olddistance] == 0} {
405                 set olddistance 1000
406             }
407             if {[string length $distance] == 0} {
408                 set distance 1000
409             }
410             puts "distance=$distance olddistance=$olddistance"
411             if {[expr $distance < $olddistance]} {
412                 set outf [RobotFileOpen unvisited $host $path]
413                 RobotWriteRecord $outf $tourl $distance
414                 RobotFileClose $outf
415             }
416         }
417     }
418     if {[catch {RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)}]} {
419         puts "unlink failed"
420         exit 1
421     }
422 }
423
424 proc RobotTextHtml {url out} {
425     global URL maxdistance
426
427     set distance 0
428     if {$maxdistance < 1000 && [info exists URL($url,dist)]} {
429         set distance [expr $URL($url,dist) + 1]
430     }
431     htmlSwitch $URL($url,buf) \
432         title {
433             puts $out "<title>$body</title>"
434         } -nonest meta {
435             puts -nonewline $out "<meta"
436             foreach a [array names parm] {
437                 puts -nonewline $out " $a"
438                 puts -nonewline $out {="}
439                 puts -nonewline $out $parm($a)
440                 puts -nonewline $out {"}
441             }
442             puts $out {></meta>}
443         } body {
444             regsub -all -nocase {<script([^<]|(<!.*>))*</script>} $body {} abody
445             regsub -all {<[^\>]+>} $abody {} nbody
446             puts $out "<documentcontent>"
447             puts $out $nbody
448             puts $out "</documentcontent>"
449         } -nonest a {
450             if {![info exists parm(href)]} {
451                 puts "no href"
452                 continue
453             }
454             if {[expr $distance <= $maxdistance]} {
455                 set href [string trim $parm(href)]
456                 if {![RobotHref $url href host path]} continue
457                 
458                 puts $out "<cr>"
459                 puts $out "<identifier>$href</identifier>"
460                 puts $out "<description>$body</description>"
461                 puts $out "</cr>"
462
463                 if {![RobotFileExist visited $host $path]} {
464                     set olddistance 1000
465                     if {![RobotFileExist bad $host $path]} {
466                         if {[RobotFileExist unvisited $host $path]} {
467                             set inf [RobotFileOpen unvisited $host $path r]
468                             RobotReadRecord $inf oldurl olddistance
469                             RobotFileClose $inf
470                         }
471                     } else {
472                         set olddistance 0
473                     }
474                     if {[string length $olddistance] == 0} {
475                         set olddistance 1000
476                     }
477                     if {[expr $distance < $olddistance]} {
478                         set outf [RobotFileOpen unvisited $host $path]
479                         RobotWriteRecord $outf $url $distance
480                         RobotFileClose $outf
481                     }
482                 } elseif {[string compare $href $url]} {
483                     set inf [RobotFileOpen visited $host $path r]
484                     RobotReadRecord $inf xurl olddistance
485                     close $inf
486                     if {[string length $olddistance] == 0} {
487                         set olddistance 1000
488                     }
489                     if {[expr $distance < $olddistance]} {
490                         puts "OK remarking url=$url href=$href"
491                         puts "olddistance = $olddistance"
492                         puts "newdistance = $distance"
493                         set outf [RobotFileOpen unvisited $host $path]
494                         RobotWriteRecord $outf $url $distance
495                         RobotFileClose $outf
496                     }
497                 }
498             }
499         } -nonest area {
500             if {![info exists parm(href)]} {
501                 puts "no href"
502                 continue
503             }
504             if {[expr $distance <= $maxdistance]} {
505                 set href [string trim $parm(href)]
506                 if {![RobotHref $url href host path]} continue
507                 
508                 puts $out "<cr>"
509                 puts $out "<identifier>$href</identifier>"
510                 puts $out "<description></description>"
511                 puts $out "</cr>"
512
513                 if {![RobotFileExist visited $host $path]} {
514                     set olddistance 1000
515                     if {![RobotFileExist bad $host $path]} {
516                         if {[RobotFileExist unvisited $host $path]} {
517                             set inf [RobotFileOpen unvisited $host $path r]
518                             RobotReadRecord $inf oldurl olddistance
519                             RobotFileClose $inf
520                         }
521                     } else {
522                         set olddistance 0
523                     }
524                     if {[string length $olddistance] == 0} {
525                         set olddistance 1000
526                     }
527                     if {[expr $distance < $olddistance]} {
528                         set outf [RobotFileOpen unvisited $host $path]
529                         RobotWriteRecord $outf $url $distance
530                         RobotFileClose $outf
531                     }
532                 } elseif {[string compare $href $url]} {
533                     set inf [RobotFileOpen visited $host $path r]
534                     RobotReadRecord $inf xurl olddistance
535                     close $inf
536                     if {[string length $olddistance] == 0} {
537                         set olddistance 1000
538                     }
539                     if {[expr $distance < $olddistance]} {
540                         puts "OK remarking url=$url href=$href"
541                         puts "olddistance = $olddistance"
542                         puts "newdistance = $distance"
543                         set outf [RobotFileOpen unvisited $host $path]
544                         RobotWriteRecord $outf $url $distance
545                         RobotFileClose $outf
546                     }
547                 }
548             }
549         }
550 }
551
552 proc RobotsTxt {url} {
553     global agent URL
554
555     RobotsTxt0 URL(URL($url,hostport),robots) $URL($url,buf)
556 }
557
558 proc RobotsTxt0 {v buf} {
559     global URL agent
560     set section 0
561     foreach l [split $buf \n] {
562         if {[regexp {([-A-Za-z]+):[ ]*([^\# ]+)} $l match cmd arg]} {
563             puts "cmd=$cmd arg=$arg"
564             switch -- [string tolower $cmd] {
565                 user-agent {
566                     if {$section} break
567                     set pat [string tolower $arg]*
568                     set section [string match $pat $agent]
569                 }
570                 disallow {
571                     if {$section} {
572                         puts "rule [list 0 $arg]"
573                         lappend $v [list 0 $arg]
574                     }
575                 }
576                 allow {
577                     if {$section} {
578                         puts "rule [list 1 $arg]"
579                         lappend $v [list 1 $arg]
580                     }
581                 }
582             }
583         }
584     }
585 }
586
587 proc RobotTextPlain {url out} {
588     global URL
589
590     puts $out "<documentcontent>"
591     regsub -all {<} $URL($url,buf) {\&lt;} content
592     puts $out $content
593     puts $out "</documentcontent>"
594
595     if {![string compare $URL($url,path) /robots.txt]} {
596         RobotsTxt $url
597     }
598 }
599
600 proc RobotWriteMetadata {url out} {
601     global URL domains
602
603     puts $out "<zmbot>"
604
605     set distance 1000
606     if {[RobotFileExist unvisited $URL($url,hostport) $URL($url,path)]} {
607         set inf [RobotFileOpen unvisited $URL($url,hostport) $URL($url,path) r]
608         RobotReadRecord $inf fromurl distance
609         RobotFileClose $inf
610     }
611     set URL($url,dist) $distance
612     puts $out "<distance>"
613     puts $out "  $distance"
614     puts $out "</distance>"
615     headSave $url $out
616     puts "Parsing $url distance=$distance"
617     switch $URL($url,head,content-type) {
618         text/html {
619             if {[string length $distance]} {
620                 RobotTextHtml $url $out
621             }
622         }
623         text/plain {
624             RobotTextPlain $url $out
625         }
626         application/pdf {
627             set pdff [open test.pdf w]
628             puts -nonewline $pdff $URL($url,buf)
629             close $pdff
630         }
631     }
632     puts $out "</zmbot>"
633 }
634
635 proc Robot200 {url} {
636     global URL domains
637     
638     set out [RobotFileOpen raw $URL($url,hostport) $URL($url,path)]
639     puts -nonewline $out $URL($url,buf)
640     RobotFileClose $out
641
642     if {![checkrule mime $URL($url,head,content-type)]} {
643         RobotError $url mimedeny
644         return
645     }
646     set out [RobotFileOpen visited $URL($url,hostport) $URL($url,path)]
647     RobotWriteMetadata $url $out
648     RobotFileClose $out
649
650     RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)
651 }
652
653 proc RobotReadContent {url sock binary} {
654     global URL
655
656     set buffer [read $sock 16384]
657     set readCount [string length $buffer]
658
659     if {$readCount <= 0} {
660         Robot200 $url
661         RobotRestart $url $sock
662     } elseif {!$binary && [string first \0 $buffer] >= 0} {
663         Robot200 $url
664         RobotRestart $url $sock
665     } else {
666         # puts "Got $readCount bytes"
667         set URL($url,buf) $URL($url,buf)$buffer
668     }
669 }
670
671 proc RobotReadHeader {url sock} {
672     global URL debuglevel
673
674     if {$debuglevel > 1} {
675         puts "HTTP head $url"
676     }
677     if {[catch {set buffer [read $sock 2148]}]} {
678         RobotError $url 404
679         RobotRestart $url $sock
680     }
681     set readCount [string length $buffer]
682     
683     if {$readCount <= 0} {
684         RobotError $url 404
685         RobotRestart $url $sock
686     } else {
687         # puts "Got $readCount bytes"
688         set URL($url,buf) $URL($url,buf)$buffer
689         
690         set n [string first \r\n\r\n $URL($url,buf)]
691         if {$n > 1} {
692             set code 0
693             set version {}
694             set headbuf [string range $URL($url,buf) 0 $n]
695             incr n 4
696             set URL($url,buf) [string range $URL($url,buf) $n end]
697             
698             regexp {^HTTP/([0-9.]+)[ ]+([0-9]+)} $headbuf x version code
699             set lines [split $headbuf \n]
700             foreach line $lines {
701                 if {[regexp {^([^:]+):[ ]+([^;]*)} $line x name value]} {
702                     set URL($url,head,[string tolower $name]) [string trim $value]
703                 }
704             }
705             puts "HTTP CODE $code"
706             set URL($url,state) skip
707             switch $code {
708                 301 {
709                     RobotRedirect $url $URL($url,head,location) 301
710                     RobotRestart $url $sock
711                 }
712                 302 {
713                     RobotRedirect $url $URL($url,head,location) 302
714                     RobotRestart $url $sock
715                 }
716                 200 {
717                     if {![info exists URL($url,head,content-type)]} {
718                         set URL($url,head,content-type) {}
719                     }
720                     set binary 0
721                     switch $URL($url,head,content-type) {
722                         application/pdf {
723                             set binary 1
724                         }
725                     }
726                     fileevent $sock readable [list RobotReadContent $url $sock $binary]
727                 }
728                 default {
729                     RobotError $url $code
730                     RobotRestart $url $sock
731                 }
732             }
733         }
734     }
735 }
736
737 proc RobotSockCancel {url sock} {
738
739     puts "RobotSockCancel sock=$sock url=$url"
740     RobotError $url 401
741     RobotRestart $url $sock
742 }
743
744 proc RobotConnect {url sock} {
745     global URL agent acceptLanguage
746
747     fconfigure $sock -translation {lf crlf} -blocking 0
748     fileevent $sock readable [list RobotReadHeader $url $sock]
749     puts $sock "GET $URL($url,path) HTTP/1.0"
750     puts $sock "Host: $URL($url,host)"
751     puts $sock "User-Agent: $agent"
752     if {[string length $acceptLanguage]} {
753         puts $sock "Accept-Language: $acceptLanguage"
754     }
755     puts $sock ""
756     flush $sock
757     set URL($sock,cancel) [after 30000 [list RobotSockCancel $url $sock]]
758 }
759
760 proc RobotNop {} {
761
762 }
763
764 proc RobotGetUrl {url phost} {
765     global URL robotsRunning
766     flush stdout
767     puts "Retrieve $robotsRunning url=$url"
768     if {![regexp {([^:]+)://([^/]+)(.*)} $url x method hostport path]} {
769         return -1
770     }
771     if {![regexp {([^:]+):([0-9]+)} $hostport x host port]} {
772         set port 80
773         set host $hostport
774     }
775     set URL($url,method) $method
776     set URL($url,host) $host
777     set URL($url,hostport) $hostport
778     set URL($url,path) $path
779     set URL($url,state) head
780     set URL($url,buf) {}
781
782     if {[string compare $path /robots.txt]} {
783         set ok 1
784         if {![info exists URL($hostport,robots)]} {
785             puts "READING robots.txt for host $hostport"
786             if {[RobotFileExist visited $hostport /robots.txt]} {
787                 set inf [RobotFileOpen visited $hostport /robots.txt r]
788                 set buf [read $inf 32768]
789                 close $inf
790             } else {
791                 set buf "User-agent: *\nAllow: /\n"
792             }
793             RobotsTxt0 URL($hostport,robots) $buf
794         }
795         if {[info exists URL($hostport,robots)]} {
796             foreach l $URL($hostport,robots) {
797                 if {[string first [lindex $l 1] $path] == 0} {
798                     set ok [lindex $l 0]
799                     break
800                 }
801             }
802         }
803         if {!$ok} {
804             puts "skipped due to robots.txt"
805             return -1
806         }
807     }
808     if [catch {set sock [socket -async $host $port]}] {
809         return -1
810     }
811     RobotConnect $url $sock
812
813     return 0
814 }
815
816 if {![llength [info commands htmlSwitch]]} {
817     set e [info sharedlibextension]
818     if {[catch {load ./tclrobot$e}]} {
819         load tclrobot$e
820     }
821 }
822
823 set agent "zmbot/0.1"
824 if {![catch {set os [exec uname -s -r]}]} {
825     set agent "$agent ($os)"
826 }
827
828 puts "agent: $agent"
829
830 proc bgerror {m} {
831     global errorInfo
832     puts "BGERROR $m"
833     puts $errorInfo
834 }
835
836 set robotsRunning 0
837 set robotSeq 0
838 set workdir [pwd]
839 set idletime 60000
840 set acceptLanguage {}
841
842 set i 0
843 set l [llength $argv]
844
845 if {$l < 2} {
846     puts {tclrobot: usage:}
847     puts {tclrobot [-j jobs] [-i idle] [-c count] [-d domain] [-r rules] [url ..]}
848     puts " Example: -c 3 -d '*.dk' http://www.indexdata.dk/"
849     exit 1
850 }
851
852 # Rules: allow, deny, url
853 set debuglevel 0
854
855 proc checkrule {type this} {
856     global alrules
857     global debuglevel
858
859     if {$debuglevel > 3} {
860         puts "CHECKRULE $type $this"
861     }
862     if {[info exist alrules]} {
863         foreach l $alrules {
864             if {$debuglevel > 3} {
865                 puts "consider $l"
866             }
867             # consider type
868             if {[lindex $l 1] != $type} continue
869             # consider mask (! negates)
870             set masks [lindex $l 2]
871             set ok 0
872             foreach mask $masks {       
873                 if {$debuglevel > 4} {
874                     puts "consider single mask $mask"
875                 }
876                 if {[string index $mask 0] == "!"} {
877                     set mask [string range $mask 1 end]
878                     if {[string match $mask $this]}  continue
879                 } else {
880                     if {![string match $mask $this]} continue
881                 }
882                 set ok 1
883             }
884             if {$debuglevel > 4} {
885                 puts "ok = $ok"
886             }
887             if {!$ok} continue
888             # OK, we have a match
889             if {[lindex $l 0] == "allow"} {
890                 if {$debuglevel > 3} {
891                     puts "CHECKRULE MATCH OK"
892                 }
893                 return 1
894             } else {
895                 if {$debuglevel > 3} {
896                     puts "CHECKFULE MATCH FAIL"
897                 }
898                 return 0
899             }
900         }
901     }
902     if {$debuglevel > 3} {
903         puts "CHECKRULE MATCH OK"
904     }
905     return 1
906 }
907
908
909 proc url {href} {
910     global debuglevel
911
912     if {[RobotHref http://www.indexdata.dk/ href host path]} {
913         if {![RobotFileExist visited $host $path]} {
914             set outf [RobotFileOpen unvisited $host $path]
915             RobotWriteRecord $outf href 0
916             RobotFileClose $outf
917         }
918     }
919 }
920
921 proc deny {type stuff} {
922     global alrules
923
924     lappend alrules [list deny $type $stuff]
925 }
926
927 proc allow {type stuff} {
928     global alrules
929
930     lappend alrules [list allow $type $stuff]
931 }
932
933 proc debug {level} {
934     global debuglevel
935
936     set debuglevel $level
937 }
938
939 # Parse options
940
941 while  {$i < $l} {
942     set arg [lindex $argv $i]
943     switch -glob -- $arg {
944         -j* {
945             set robotsMax [string range $arg 2 end]
946             if {![string length $robotsMax]} {
947                 set robotsMax [lindex $argv [incr i]]
948             }
949         }
950         -c* {
951             set maxdistance [string range $arg 2 end]
952             if {![string length $maxdistance]} {
953                 set maxdistance [lindex $argv [incr i]]
954             }
955         }
956         -d* {
957             set dom [string range $arg 2 end]
958             if {![string length $dom]} {
959                 set dom [lindex $argv [incr i]]
960             }
961             lappend domains $dom
962         }
963         -i* {
964             set idletime [string range $arg 2 end]
965             if {![string length $idletime]} {
966                 set idletime [lindex $argv [incr i]]
967             }
968         }
969         -l* {
970             set acceptLanguage [string range $arg 2 end]
971             if {![string length $acceptLanguage]} {
972                 set acceptLanguage [lindex $argv [incr i]]
973             }
974         }
975         -r* {
976             set rfile [string range $arg 2 end]
977             if {![string length $rfile]} {
978                 set rfile [lindex $argv [incr i]]
979             }
980             source $rfile
981         }
982         default {
983             set href $arg
984             if {[RobotHref http://www.indexdata.dk/ href host path]} {
985                 if {![RobotFileExist visited $host $path]} {
986                     set outf [RobotFileOpen unvisited $host $path]
987                     RobotWriteRecord $outf href 0
988                     RobotFileClose $outf
989                 }
990             }
991         }
992     }
993     incr i
994 }
995
996 if {![info exist domains]} {
997     set domains {*}
998 }
999 if {![info exist maxdistance]} {
1000     set maxdistance 50
1001 }
1002 if {![info exist robotsMax]} {
1003     set robotsMax 5
1004 }
1005
1006 puts "domains=$domains"
1007 puts "max distance=$maxdistance"
1008 puts "max jobs=$robotsMax"
1009
1010 RobotStart
1011
1012 while {$robotsRunning} {
1013     vwait robotsRunning
1014 }