-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmartWebSearch.java
More file actions
139 lines (118 loc) · 2.91 KB
/
SmartWebSearch.java
File metadata and controls
139 lines (118 loc) · 2.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
Smarter Search for the WebSpider, for SPLaT.
Written by Shafik Amin, 10-06-2003
*/
/** Imports **/
import java.util.*;
import java.net.*;
import java.io.*;
import java.util.regex.*;
public class SmartWebSearch extends DomainWebSearch
{
private static String[] stopWords = getStopWordArray();
/** Constructors **/
public SmartWebSearch()
{
super();
}
/* override the "WebSearch" behavior */
public boolean shouldWriteToDisk(String url)
{
if (!super.shouldWriteToDisk(url)) return false;
return isGoodURL(url);
}
/* override the "WebSearch" behavior */
public boolean shouldExplore(String url)
{
if (!super.shouldExplore(url)) return false;
return isGoodURL(url);
}
/* determines if the url passes all the "stop words" */
private boolean isGoodURL(String url)
{
for (int i = 0; i < stopWords.length; i++)
{
String pat = ".*" + stopWords[i] +".*";
if (Pattern.matches(pat, url))
return false;
}
return true;
}
/* description tag */
public static String description()
{
return "Performs additional \"smart\" filtering on links";
}
public static String[] getStopWordArray()
{
return new String[]
{
"lecture", "final", "resume", "exam", "midterm",
"homework", "techrap","tr-?[0-9][0-9]+",
"thesis", "handout", "slides", "talk",
"course", "classes", "presentation", "syllabus"
};
}
/** Test Driver **/
public static void main(String[] args)
{
String toTest = "http://www.u.arizona.edu/~gergelyk/splat/spider.html";
int number = 2;
int seconds = 1200;
File dl = new File("Test");
dl.mkdirs();
try
{
WebSearch w = new SmartWebSearch();
w.setWebsite(toTest);
w.setDownloads(number);
w.setDepth(4);
w.setTime(seconds); // # of seconds
w.setDownloadLocation(dl);
w.startSearch();
System.out.println("Search ended!!");
}
catch (Exception e)
{
System.out.println(e);
}
}
}
/*
Here are the stop-words I use.
function stopWords(S) {
S = tolower(S)
if (S ~ /lecture/) return 1
if (S ~ /final/) return 1
if (S ~ /resume/) return 1
if (S ~ /exam/) return 1
if (S ~ /midterm/) return 1
if (S ~ /homework/) return 1
if (S ~ /techrep/) return 1
if (S ~ /tr-?[0-9][0-9]+/) return 1
if (S ~ /thesis/) return 1
if (S ~ /handout/) return 1
if (S ~ /slides/) return 1
if (S ~ /talk/) return 1
if (S ~ /course/) return 1
if (S ~ /classes/) return 1
if (S ~ /presentation/) return 1
if (S ~ /syllabus/) return 1
return 0
}
/Papers from/{
page = page $0
page = page "<a href=\"file://" FILENAME "\">" FILENAME "</a>"
next
}
/<body>/{FoundOne=0; page=""; next; }
/<html>/{next}
/<\/body>/{if (FoundOne) print page}
/<\/html>/{next}
/against/ {
percent = $1
sub("%:","",percent)
percent += 0
if ((percent < 20) || (percent > 95)) next
/CC
*/