Source Code Cross Referenced for HostnameQueueAssignmentPolicy.java in  » Web-Crawler » heritrix » org » archive » crawler » frontier » 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.frontier 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /* HostnameQueueAssignmentPolicy
02:         *
03:         * $Id: HostnameQueueAssignmentPolicy.java 3838 2005-09-21 23:00:47Z gojomo $
04:         *
05:         * Created on Oct 5, 2004
06:         *
07:         * Copyright (C) 2004 Internet Archive.
08:         *
09:         * This file is part of the Heritrix web crawler (crawler.archive.org).
10:         *
11:         * Heritrix is free software; you can redistribute it and/or modify
12:         * it under the terms of the GNU Lesser Public License as published by
13:         * the Free Software Foundation; either version 2.1 of the License, or
14:         * any later version.
15:         *
16:         * Heritrix is distributed in the hope that it will be useful,
17:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
18:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19:         * GNU Lesser Public License for more details.
20:         *
21:         * You should have received a copy of the GNU Lesser Public License
22:         * along with Heritrix; if not, write to the Free Software
23:         * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24:         */
25:        package org.archive.crawler.frontier;
26:
27:        import java.util.logging.Level;
28:        import java.util.logging.Logger;
29:
30:        import org.apache.commons.httpclient.URIException;
31:        import org.archive.crawler.datamodel.CandidateURI;
32:        import org.archive.crawler.framework.CrawlController;
33:        import org.archive.net.UURI;
34:        import org.archive.net.UURIFactory;
35:
36:        /**
37:         * QueueAssignmentPolicy based on the hostname:port evident in the given
38:         * CrawlURI.
39:         * 
40:         * @author gojomo
41:         */
42:        public class HostnameQueueAssignmentPolicy extends
43:                QueueAssignmentPolicy {
44:            private static final Logger logger = Logger
45:                    .getLogger(HostnameQueueAssignmentPolicy.class.getName());
46:            /**
47:             * When neat host-based class-key fails us
48:             */
49:            private static String DEFAULT_CLASS_KEY = "default...";
50:
51:            private static final String DNS = "dns";
52:
53:            public String getClassKey(CrawlController controller,
54:                    CandidateURI cauri) {
55:                String scheme = cauri.getUURI().getScheme();
56:                String candidate = null;
57:                try {
58:                    if (scheme.equals(DNS)) {
59:                        if (cauri.getVia() != null) {
60:                            // Special handling for DNS: treat as being
61:                            // of the same class as the triggering URI.
62:                            // When a URI includes a port, this ensures 
63:                            // the DNS lookup goes atop the host:port
64:                            // queue that triggered it, rather than 
65:                            // some other host queue
66:                            UURI viaUuri = UURIFactory.getInstance(cauri
67:                                    .flattenVia());
68:                            candidate = viaUuri.getAuthorityMinusUserinfo();
69:                            // adopt scheme of triggering URI
70:                            scheme = viaUuri.getScheme();
71:                        } else {
72:                            candidate = cauri.getUURI().getReferencedHost();
73:                        }
74:                    } else {
75:                        candidate = cauri.getUURI().getAuthorityMinusUserinfo();
76:                    }
77:
78:                    if (candidate == null || candidate.length() == 0) {
79:                        candidate = DEFAULT_CLASS_KEY;
80:                    }
81:                } catch (URIException e) {
82:                    logger.log(Level.INFO,
83:                            "unable to extract class key; using default", e);
84:                    candidate = DEFAULT_CLASS_KEY;
85:                }
86:                if (scheme != null && scheme.equals(UURIFactory.HTTPS)) {
87:                    // If https and no port specified, add default https port to
88:                    // distinguish https from http server without a port.
89:                    if (!candidate.matches(".+:[0-9]+")) {
90:                        candidate += UURIFactory.HTTPS_PORT;
91:                    }
92:                }
93:                // Ensure classKeys are safe as filenames on NTFS
94:                return candidate.replace(':', '#');
95:            }
96:
97:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.