Java Doc for LexicalCrawlMapper.java in  » Web-Crawler » heritrix » org » archive » crawler » processor » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Crawler » heritrix » org.archive.crawler.processor 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.archive.crawler.processor.CrawlMapper
   org.archive.crawler.processor.LexicalCrawlMapper

LexicalCrawlMapper
public class LexicalCrawlMapper extends CrawlMapper (Code)
A simple crawl splitter/mapper, dividing up CandidateURIs/CrawlURIs between crawlers by diverting some range of URIs to local log files (which can then be imported to other crawlers). May operate on a CrawlURI (typically early in the processing chain) or its CandidateURI outlinks (late in the processing chain, after LinksScoper), or both (if inserted and configured in both places).

Uses lexical comparisons of classKeys to map URIs to crawlers. The 'map' is specified via either a local or HTTP-fetchable file. Each line of this file should contain two space-separated tokens, the first a key and the second a crawler node name (which should be legal as part of a filename). All URIs will be mapped to the crawler node name associated with the nearest mapping key equal or subsequent to the URI's own classKey. If there are no mapping keys equal or after the classKey, the mapping 'wraps around' to the first mapping key.

One crawler name is distinguished as the 'local name'; URIs mapped to this name are not diverted, but continue to be processed normally.

For example, assume a SurtAuthorityQueueAssignmentPolicy and a simple mapping file:

 d crawlerA
 ~ crawlerB
 

All URIs with "com," classKeys will find the 'd' key as the nearest subsequent mapping key, and thus be mapped to 'crawlerA'. If that's the 'local name', the URIs will be processed normally; otherwise, the URI will be written to a diversion log aimed for 'crawlerA'.

If using the JMX importUris operation importing URLs dropped by a LexicalCrawlMapper instance, use recoveryLog style.
author:
   gojomo
version:
   $Date: 2006-09-26 20:38:48 +0000 (Tue, 26 Sep 2006) $, $Revision: 4667 $



Field Summary
final public static  StringATTR_MAP_SOURCE
    
final public static  StringDEFAULT_MAP_SOURCE
    
 TreeMap<String, String>map
    

Constructor Summary
public  LexicalCrawlMapper(String name)
     Constructor.

Method Summary
protected  voidinitialTasks()
    
protected  voidloadMap()
     Retrieve and parse the mapping specification from a local path or HTTP URL.
protected  Stringmap(CandidateURI cauri)
     Look up the crawler node name to which the given CandidateURI should be mapped.

Field Detail
ATTR_MAP_SOURCE
final public static String ATTR_MAP_SOURCE(Code)
where to load map from



DEFAULT_MAP_SOURCE
final public static String DEFAULT_MAP_SOURCE(Code)



map
TreeMap<String, String> map(Code)
Mapping of classKey ranges (as represented by their start) to crawlers (by abstract name/filename)




Constructor Detail
LexicalCrawlMapper
public LexicalCrawlMapper(String name)(Code)
Constructor.
Parameters:
  name - Name of this processor.




Method Detail
initialTasks
protected void initialTasks()(Code)



loadMap
protected void loadMap() throws IOException(Code)
Retrieve and parse the mapping specification from a local path or HTTP URL.
throws:
  IOException -



map
protected String map(CandidateURI cauri)(Code)
Look up the crawler node name to which the given CandidateURI should be mapped.
Parameters:
  cauri - CandidateURI to consider String node name which should handle URI



Fields inherited from org.archive.crawler.processor.CrawlMapper
final public static String ATTR_CHECK_OUTLINKS(Code)(Java Doc)
final public static String ATTR_CHECK_URI(Code)(Java Doc)
final public static String ATTR_DIVERSION_DIR(Code)(Java Doc)
final public static String ATTR_LOCAL_NAME(Code)(Java Doc)
final public static String ATTR_MAP_OUTLINK_DECIDE_RULES(Code)(Java Doc)
final public static String ATTR_ROTATION_DIGITS(Code)(Java Doc)
final public static Boolean DEFAULT_CHECK_OUTLINKS(Code)(Java Doc)
final public static Boolean DEFAULT_CHECK_URI(Code)(Java Doc)
final public static String DEFAULT_DIVERSION_DIR(Code)(Java Doc)
final public static String DEFAULT_LOCAL_NAME(Code)(Java Doc)
final public static Integer DEFAULT_ROTATION_DIGITS(Code)(Java Doc)
protected ArrayLongFPCache cache(Code)(Java Doc)
HashMap<String, PrintWriter> diversionLogs(Code)(Java Doc)
protected String localName(Code)(Java Doc)
String logGeneration(Code)(Java Doc)

Methods inherited from org.archive.crawler.processor.CrawlMapper
protected boolean decideToMapOutlink(CandidateURI cauri)(Code)(Java Doc)
protected synchronized void divertLog(CandidateURI cauri, String target)(Code)(Java Doc)
protected PrintWriter getDiversionLog(String target)(Code)(Java Doc)
protected DecideRule getMapOutlinkDecideRule(Object o)(Code)(Java Doc)
protected void initialTasks()(Code)(Java Doc)
protected void innerProcess(CrawlURI curi)(Code)(Java Doc)
abstract protected String map(CandidateURI cauri)(Code)(Java Doc)
protected synchronized void updateGeneration(String nowGeneration)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.