Fixed bug regarding relative URLs.
[tclrobot.git] / robot.tcl
1 #!/usr/bin/tclsh 
2 # $Id: robot.tcl,v 1.26 2001/11/08 13:49:06 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 > 1} {
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 {$debuglevel > 4} {
343         puts "pathl=$pathl output path=$path"
344     }
345     set path [join $path /]
346     if {![string length $path]} {
347         set path /
348     }
349     regsub -all {~} $path {%7E} path
350     set href "$method://$host$path"
351
352     if {$debuglevel > 1} {
353         puts "Ref result = $href"
354     }
355     return [checkrule url $href]
356 }
357
358 proc RobotError {url code} {
359     global URL
360
361     puts "Bad URL $url (code $code)"
362     set fromurl {}
363     set distance -1
364     if {[RobotFileExist unvisited $URL($url,hostport) $URL($url,path)]} {
365         set inf [RobotFileOpen unvisited $URL($url,hostport) $URL($url,path) r]
366         RobotReadRecord $inf fromurl distance
367         RobotFileClose $inf
368     }
369     RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)
370     if {![RobotFileExist bad $URL($url,hostport) $URL($url,path)]} {
371         set outf [RobotFileOpen bad $URL($url,hostport) $URL($url,path)]
372         RobotWriteRecord $outf $fromurl $distance
373         RobotFileClose $outf
374     }
375 }
376
377 proc RobotRedirect {url tourl code} {
378     global URL
379
380     puts "Redirecting from $url to $tourl"
381
382     set distance {}
383     set fromurl {}
384     if {[RobotFileExist unvisited $URL($url,hostport) $URL($url,path)]} {
385         set inf [RobotFileOpen unvisited $URL($url,hostport) $URL($url,path) r]
386         RobotReadRecord $inf fromurl distance
387         RobotFileClose $inf
388     }
389     if {![RobotFileExist bad $URL($url,hostport) $URL($url,path)]} {
390         set outf [RobotFileOpen bad $URL($url,hostport) $URL($url,path)]
391         RobotWriteRecord $outf $fromurl $distance
392         RobotFileClose $outf
393     }
394     if {[RobotHref $url tourl host path]} {
395         if {![RobotFileExist visited $host $path]} {
396             if {![RobotFileExist unvisited $host $path]} {
397                 set outf [RobotFileOpen unvisited $host $path]
398                 RobotWriteRecord $outf $fromurl $distance
399                 RobotFileClose $outf
400             }
401         } else {
402             set olddistance {}
403             set inf [RobotFileOpen visited $host $path r]
404             RobotReadRecord $inf oldurl olddistance
405             RobotFileClose $inf
406             if {[string length $olddistance] == 0} {
407                 set olddistance 1000
408             }
409             if {[string length $distance] == 0} {
410                 set distance 1000
411             }
412             puts "distance=$distance olddistance=$olddistance"
413             if {[expr $distance < $olddistance]} {
414                 set outf [RobotFileOpen unvisited $host $path]
415                 RobotWriteRecord $outf $tourl $distance
416                 RobotFileClose $outf
417             }
418         }
419     }
420     if {[catch {RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)}]} {
421         puts "unlink failed"
422         exit 1
423     }
424 }
425
426 proc RobotTextHtml {url out} {
427     global URL maxdistance
428
429     set distance 0
430     if {$maxdistance < 1000 && [info exists URL($url,dist)]} {
431         set distance [expr $URL($url,dist) + 1]
432     }
433     htmlSwitch $URL($url,buf) \
434         title {
435             puts $out "<title>$body</title>"
436         } -nonest meta {
437             puts -nonewline $out "<meta"
438             foreach a [array names parm] {
439                 puts -nonewline $out " $a"
440                 puts -nonewline $out {="}
441                 puts -nonewline $out $parm($a)
442                 puts -nonewline $out {"}
443             }
444             puts $out {></meta>}
445         } body {
446             regsub -all {<!--[^-]*->} $body { } abody
447             regsub -all -nocase {<script[^<]*</script>} $abody {} bbody
448             regsub -all {<[^\>]+>} $bbody {} nbody
449             puts $out "<documentcontent>"
450             puts $out $nbody
451             puts $out "</documentcontent>"
452         } -nonest a {
453             if {![info exists parm(href)]} {
454                 puts "no href"
455                 continue
456             }
457             if {[expr $distance <= $maxdistance]} {
458                 set href [string trim $parm(href)]
459                 if {![RobotHref $url href host path]} continue
460                 
461                 puts $out "<cr>"
462                 puts $out "<identifier>$href</identifier>"
463                 puts $out "<description>$body</description>"
464                 puts $out "</cr>"
465
466                 if {![RobotFileExist visited $host $path]} {
467                     set olddistance 1000
468                     if {![RobotFileExist bad $host $path]} {
469                         if {[RobotFileExist unvisited $host $path]} {
470                             set inf [RobotFileOpen unvisited $host $path r]
471                             RobotReadRecord $inf oldurl olddistance
472                             RobotFileClose $inf
473                         }
474                     } else {
475                         set olddistance 0
476                     }
477                     if {[string length $olddistance] == 0} {
478                         set olddistance 1000
479                     }
480                     if {[expr $distance < $olddistance]} {
481                         set outf [RobotFileOpen unvisited $host $path]
482                         RobotWriteRecord $outf $url $distance
483                         RobotFileClose $outf
484                     }
485                 } elseif {[string compare $href $url]} {
486                     set inf [RobotFileOpen visited $host $path r]
487                     RobotReadRecord $inf xurl olddistance
488                     close $inf
489                     if {[string length $olddistance] == 0} {
490                         set olddistance 1000
491                     }
492                     if {[expr $distance < $olddistance]} {
493                         puts "OK remarking url=$url href=$href"
494                         puts "olddistance = $olddistance"
495                         puts "newdistance = $distance"
496                         set outf [RobotFileOpen unvisited $host $path]
497                         RobotWriteRecord $outf $url $distance
498                         RobotFileClose $outf
499                     }
500                 }
501             }
502         } -nonest area {
503             if {![info exists parm(href)]} {
504                 puts "no href"
505                 continue
506             }
507             if {[expr $distance <= $maxdistance]} {
508                 set href [string trim $parm(href)]
509                 if {![RobotHref $url href host path]} continue
510                 
511                 puts $out "<cr>"
512                 puts $out "<identifier>$href</identifier>"
513                 puts $out "<description></description>"
514                 puts $out "</cr>"
515
516                 if {![RobotFileExist visited $host $path]} {
517                     set olddistance 1000
518                     if {![RobotFileExist bad $host $path]} {
519                         if {[RobotFileExist unvisited $host $path]} {
520                             set inf [RobotFileOpen unvisited $host $path r]
521                             RobotReadRecord $inf oldurl olddistance
522                             RobotFileClose $inf
523                         }
524                     } else {
525                         set olddistance 0
526                     }
527                     if {[string length $olddistance] == 0} {
528                         set olddistance 1000
529                     }
530                     if {[expr $distance < $olddistance]} {
531                         set outf [RobotFileOpen unvisited $host $path]
532                         RobotWriteRecord $outf $url $distance
533                         RobotFileClose $outf
534                     }
535                 } elseif {[string compare $href $url]} {
536                     set inf [RobotFileOpen visited $host $path r]
537                     RobotReadRecord $inf xurl olddistance
538                     close $inf
539                     if {[string length $olddistance] == 0} {
540                         set olddistance 1000
541                     }
542                     if {[expr $distance < $olddistance]} {
543                         puts "OK remarking url=$url href=$href"
544                         puts "olddistance = $olddistance"
545                         puts "newdistance = $distance"
546                         set outf [RobotFileOpen unvisited $host $path]
547                         RobotWriteRecord $outf $url $distance
548                         RobotFileClose $outf
549                     }
550                 }
551             }
552         }
553 }
554
555 proc RobotsTxt {url} {
556     global agent URL
557
558     RobotsTxt0 URL(URL($url,hostport),robots) $URL($url,buf)
559 }
560
561 proc RobotsTxt0 {v buf} {
562     global URL agent
563     set section 0
564     foreach l [split $buf \n] {
565         if {[regexp {([-A-Za-z]+):[ ]*([^\# ]+)} $l match cmd arg]} {
566             puts "cmd=$cmd arg=$arg"
567             switch -- [string tolower $cmd] {
568                 user-agent {
569                     if {$section} break
570                     set pat [string tolower $arg]*
571                     set section [string match $pat $agent]
572                 }
573                 disallow {
574                     if {$section} {
575                         puts "rule [list 0 $arg]"
576                         lappend $v [list 0 $arg]
577                     }
578                 }
579                 allow {
580                     if {$section} {
581                         puts "rule [list 1 $arg]"
582                         lappend $v [list 1 $arg]
583                     }
584                 }
585             }
586         }
587     }
588 }
589
590 proc RobotTextPlain {url out} {
591     global URL
592
593     puts $out "<documentcontent>"
594     regsub -all {<} $URL($url,buf) {\&lt;} content
595     puts $out $content
596     puts $out "</documentcontent>"
597
598     if {![string compare $URL($url,path) /robots.txt]} {
599         RobotsTxt $url
600     }
601 }
602
603 proc RobotWriteMetadata {url out} {
604     global URL domains
605
606     puts $out "<zmbot>"
607
608     set distance 1000
609     if {[RobotFileExist unvisited $URL($url,hostport) $URL($url,path)]} {
610         set inf [RobotFileOpen unvisited $URL($url,hostport) $URL($url,path) r]
611         RobotReadRecord $inf fromurl distance
612         RobotFileClose $inf
613     }
614     set URL($url,dist) $distance
615     puts $out "<distance>"
616     puts $out "  $distance"
617     puts $out "</distance>"
618     headSave $url $out
619     puts "Parsing $url distance=$distance"
620     switch $URL($url,head,content-type) {
621         text/html {
622             if {[string length $distance]} {
623                 RobotTextHtml $url $out
624             }
625         }
626         text/plain {
627             RobotTextPlain $url $out
628         }
629         application/pdf {
630             set pdff [open test.pdf w]
631             puts -nonewline $pdff $URL($url,buf)
632             close $pdff
633         }
634     }
635     puts $out "</zmbot>"
636 }
637
638 proc Robot200 {url} {
639     global URL domains
640     
641     set out [RobotFileOpen raw $URL($url,hostport) $URL($url,path)]
642     puts -nonewline $out $URL($url,buf)
643     RobotFileClose $out
644
645     if {![checkrule mime $URL($url,head,content-type)]} {
646         RobotError $url mimedeny
647         return
648     }
649     set out [RobotFileOpen visited $URL($url,hostport) $URL($url,path)]
650     RobotWriteMetadata $url $out
651     RobotFileClose $out
652
653     RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)
654 }
655
656 proc RobotReadContent {url sock binary} {
657     global URL
658
659     set buffer [read $sock 16384]
660     set readCount [string length $buffer]
661
662     if {$readCount <= 0} {
663         Robot200 $url
664         RobotRestart $url $sock
665     } elseif {!$binary && [string first \0 $buffer] >= 0} {
666         Robot200 $url
667         RobotRestart $url $sock
668     } else {
669         # puts "Got $readCount bytes"
670         set URL($url,buf) $URL($url,buf)$buffer
671     }
672 }
673
674 proc RobotReadHeader {url sock} {
675     global URL debuglevel
676
677     if {$debuglevel > 1} {
678         puts "HTTP head $url"
679     }
680     if {[catch {set buffer [read $sock 2148]}]} {
681         RobotError $url 404
682         RobotRestart $url $sock
683     }
684     set readCount [string length $buffer]
685     
686     if {$readCount <= 0} {
687         RobotError $url 404
688         RobotRestart $url $sock
689     } else {
690         # puts "Got $readCount bytes"
691         set URL($url,buf) $URL($url,buf)$buffer
692         
693         set n [string first \r\n\r\n $URL($url,buf)]
694         if {$n > 1} {
695             set code 0
696             set version {}
697             set headbuf [string range $URL($url,buf) 0 $n]
698             incr n 4
699             set URL($url,buf) [string range $URL($url,buf) $n end]
700             
701             regexp {^HTTP/([0-9.]+)[ ]+([0-9]+)} $headbuf x version code
702             set lines [split $headbuf \n]
703             foreach line $lines {
704                 if {[regexp {^([^:]+):[ ]+([^;]*)} $line x name value]} {
705                     set URL($url,head,[string tolower $name]) [string trim $value]
706                 }
707             }
708             puts "HTTP CODE $code"
709             set URL($url,state) skip
710             switch $code {
711                 301 {
712                     RobotRedirect $url $URL($url,head,location) 301
713                     RobotRestart $url $sock
714                 }
715                 302 {
716                     RobotRedirect $url $URL($url,head,location) 302
717                     RobotRestart $url $sock
718                 }
719                 200 {
720                     if {![info exists URL($url,head,content-type)]} {
721                         set URL($url,head,content-type) {}
722                     }
723                     set binary 0
724                     switch $URL($url,head,content-type) {
725                         application/pdf {
726                             set binary 1
727                         }
728                     }
729                     fileevent $sock readable [list RobotReadContent $url $sock $binary]
730                 }
731                 default {
732                     RobotError $url $code
733                     RobotRestart $url $sock
734                 }
735             }
736         }
737     }
738 }
739
740 proc RobotSockCancel {url sock} {
741
742     puts "RobotSockCancel sock=$sock url=$url"
743     RobotError $url 401
744     RobotRestart $url $sock
745 }
746
747 proc RobotConnect {url sock} {
748     global URL agent acceptLanguage
749
750     fconfigure $sock -translation {lf crlf} -blocking 0
751     fileevent $sock readable [list RobotReadHeader $url $sock]
752     puts $sock "GET $URL($url,path) HTTP/1.0"
753     puts $sock "Host: $URL($url,host)"
754     puts $sock "User-Agent: $agent"
755     if {[string length $acceptLanguage]} {
756         puts $sock "Accept-Language: $acceptLanguage"
757     }
758     puts $sock ""
759     flush $sock
760     set URL($sock,cancel) [after 30000 [list RobotSockCancel $url $sock]]
761 }
762
763 proc RobotNop {} {
764
765 }
766
767 proc RobotGetUrl {url phost} {
768     global URL robotsRunning
769     flush stdout
770     puts "Retrieve $robotsRunning url=$url"
771     if {![regexp {([^:]+)://([^/]+)(.*)} $url x method hostport path]} {
772         return -1
773     }
774     if {![regexp {([^:]+):([0-9]+)} $hostport x host port]} {
775         set port 80
776         set host $hostport
777     }
778     set URL($url,method) $method
779     set URL($url,host) $host
780     set URL($url,hostport) $hostport
781     set URL($url,path) $path
782     set URL($url,state) head
783     set URL($url,buf) {}
784
785     if {[string compare $path /robots.txt]} {
786         set ok 1
787         if {![info exists URL($hostport,robots)]} {
788             puts "READING robots.txt for host $hostport"
789             if {[RobotFileExist visited $hostport /robots.txt]} {
790                 set inf [RobotFileOpen visited $hostport /robots.txt r]
791                 set buf [read $inf 32768]
792                 close $inf
793             } else {
794                 set buf "User-agent: *\nAllow: /\n"
795             }
796             RobotsTxt0 URL($hostport,robots) $buf
797         }
798         if {[info exists URL($hostport,robots)]} {
799             foreach l $URL($hostport,robots) {
800                 if {[string first [lindex $l 1] $path] == 0} {
801                     set ok [lindex $l 0]
802                     break
803                 }
804             }
805         }
806         if {!$ok} {
807             puts "skipped due to robots.txt"
808             return -1
809         }
810     }
811     if [catch {set sock [socket -async $host $port]}] {
812         return -1
813     }
814     RobotConnect $url $sock
815
816     return 0
817 }
818
819 if {![llength [info commands htmlSwitch]]} {
820     set e [info sharedlibextension]
821     if {[catch {load ./tclrobot$e}]} {
822         load tclrobot$e
823     }
824 }
825
826 set agent "zmbot/0.1"
827 if {![catch {set os [exec uname -s -r]}]} {
828     set agent "$agent ($os)"
829 }
830
831 puts "agent: $agent"
832
833 proc bgerror {m} {
834     global errorInfo
835     puts "BGERROR $m"
836     puts $errorInfo
837 }
838
839 set robotsRunning 0
840 set robotSeq 0
841 set workdir [pwd]
842 set idletime 60000
843 set acceptLanguage {}
844 set debuglevel 0
845
846
847 # Rules: allow, deny, url
848
849 proc checkrule {type this} {
850     global alrules
851     global debuglevel
852
853     if {$debuglevel > 3} {
854         puts "CHECKRULE $type $this"
855     }
856     if {[info exist alrules]} {
857         foreach l $alrules {
858             if {$debuglevel > 3} {
859                 puts "consider $l"
860             }
861             # consider type
862             if {[lindex $l 1] != $type} continue
863             # consider mask (! negates)
864             set masks [lindex $l 2]
865             set ok 0
866             foreach mask $masks {       
867                 if {$debuglevel > 4} {
868                     puts "consider single mask $mask"
869                 }
870                 if {[string index $mask 0] == "!"} {
871                     set mask [string range $mask 1 end]
872                     if {[string match $mask $this]}  continue
873                 } else {
874                     if {![string match $mask $this]} continue
875                 }
876                 set ok 1
877             }
878             if {$debuglevel > 4} {
879                 puts "ok = $ok"
880             }
881             if {!$ok} continue
882             # OK, we have a match
883             if {[lindex $l 0] == "allow"} {
884                 if {$debuglevel > 3} {
885                     puts "CHECKRULE MATCH OK"
886                 }
887                 return 1
888             } else {
889                 if {$debuglevel > 3} {
890                     puts "CHECKFULE MATCH FAIL"
891                 }
892                 return 0
893             }
894         }
895     }
896     if {$debuglevel > 3} {
897         puts "CHECKRULE MATCH OK"
898     }
899     return 1
900 }
901
902
903 proc url {href} {
904     global debuglevel
905
906     if {[RobotHref http://www.indexdata.dk/ href host path]} {
907         if {![RobotFileExist visited $host $path]} {
908             set outf [RobotFileOpen unvisited $host $path]
909             RobotWriteRecord $outf href 0
910             RobotFileClose $outf
911         }
912     }
913 }
914
915 proc deny {type stuff} {
916     global alrules
917
918     lappend alrules [list deny $type $stuff]
919 }
920
921 proc allow {type stuff} {
922     global alrules
923
924     lappend alrules [list allow $type $stuff]
925 }
926
927 proc debug {level} {
928     global debuglevel
929
930     set debuglevel $level
931 }
932
933 # Parse options
934
935 set i 0
936 set l [llength $argv]
937
938 if {$l < 2} {
939     puts {tclrobot: usage:}
940     puts {tclrobot [-j jobs] [-i idle] [-c count] [-d domain] [-r rules] [url ..]}
941     puts " Example: -c 3 -d '*.dk' http://www.indexdata.dk/"
942
943     exit 1
944 }
945 while  {$i < $l} {
946     set arg [lindex $argv $i]
947     switch -glob -- $arg {
948         -j* {
949             set robotsMax [string range $arg 2 end]
950             if {![string length $robotsMax]} {
951                 set robotsMax [lindex $argv [incr i]]
952             }
953         }
954         -c* {
955             set maxdistance [string range $arg 2 end]
956             if {![string length $maxdistance]} {
957                 set maxdistance [lindex $argv [incr i]]
958             }
959         }
960         -d* {
961             set dom [string range $arg 2 end]
962             if {![string length $dom]} {
963                 set dom [lindex $argv [incr i]]
964             }
965             lappend domains $dom
966         }
967         -i* {
968             set idletime [string range $arg 2 end]
969             if {![string length $idletime]} {
970                 set idletime [lindex $argv [incr i]]
971             }
972         }
973         -l* {
974             set acceptLanguage [string range $arg 2 end]
975             if {![string length $acceptLanguage]} {
976                 set acceptLanguage [lindex $argv [incr i]]
977             }
978         }
979         -r* {
980             set rfile [string range $arg 2 end]
981             if {![string length $rfile]} {
982                 set rfile [lindex $argv [incr i]]
983             }
984             source $rfile
985         }
986         default {
987             set href $arg
988             if {[RobotHref http://www.indexdata.dk/ href host path]} {
989                 if {![RobotFileExist visited $host $path]} {
990                     set outf [RobotFileOpen unvisited $host $path]
991                     RobotWriteRecord $outf href 0
992                     RobotFileClose $outf
993                 }
994             }
995         }
996     }
997     incr i
998 }
999
1000 if {![info exist domains]} {
1001     set domains {*}
1002 }
1003 if {![info exist maxdistance]} {
1004     set maxdistance 50
1005 }
1006 if {![info exist robotsMax]} {
1007     set robotsMax 5
1008 }
1009
1010 puts "domains=$domains"
1011 puts "max distance=$maxdistance"
1012 puts "max jobs=$robotsMax"
1013
1014 RobotStart
1015
1016
1017 while {$robotsRunning} {
1018     vwait robotsRunning
1019 }