Source Code Cross Referenced for DocumentalConcatenatedClusterIndexIterator.java in  » Search-Engine » mg4j » it » unimi » dsi » mg4j » index » cluster » 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 » Search Engine » mg4j » it.unimi.dsi.mg4j.index.cluster 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package it.unimi.dsi.mg4j.index.cluster;
002:
003:        /*		 
004:         * MG4J: Managing Gigabytes for Java
005:         *
006:         * Copyright (C) 2006-2007 Sebastiano Vigna 
007:         *
008:         *  This library is free software; you can redistribute it and/or modify it
009:         *  under the terms of the GNU Lesser General Public License as published by the Free
010:         *  Software Foundation; either version 2.1 of the License, or (at your option)
011:         *  any later version.
012:         *
013:         *  This library is distributed in the hope that it will be useful, but
014:         *  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
015:         *  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
016:         *  for more details.
017:         *
018:         *  You should have received a copy of the GNU Lesser General Public License
019:         *  along with this program; if not, write to the Free Software
020:         *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
021:         *
022:         */
023:        import java.io.IOException;
024:
025:        import it.unimi.dsi.fastutil.ints.IntIterator;
026:        import it.unimi.dsi.mg4j.index.Index;
027:        import it.unimi.dsi.mg4j.index.IndexIterator;
028:        import it.unimi.dsi.mg4j.index.payload.Payload;
029:        import it.unimi.dsi.mg4j.search.visitor.DocumentIteratorVisitor;
030:
031:        /** An index iterator concatenating iterators from local indices.
032:         *  
033:         * @author Alessandro Arrabito
034:         * @author Sebastiano Vigna
035:         */
036:
037:        public class DocumentalConcatenatedClusterIndexIterator extends
038:                DocumentalConcatenatedClusterDocumentIterator implements 
039:                IndexIterator {
040:            /** A cached copy of the iterators, to avoid type casts. */
041:            protected final IndexIterator[] indexIterator;
042:            /** The precomputed frequency. */
043:            protected final int frequency;
044:            /** The reference index. */
045:            protected final DocumentalConcatenatedCluster index;
046:            /** The term associated to this index iterator. */
047:            protected String term;
048:            /** The id associated to this index iterator. */
049:            protected int id;
050:
051:            public DocumentalConcatenatedClusterIndexIterator(
052:                    final DocumentalClusterIndexReader indexReader,
053:                    final IndexIterator[] indexIterator, final int[] usedIndex)
054:                    throws IOException {
055:                super (indexReader, indexIterator, usedIndex);
056:                this .index = (DocumentalConcatenatedCluster) indexReader.index;
057:                this .indexIterator = indexIterator;
058:                int t = 0;
059:                for (int i = indexIterator.length; i-- != 0;)
060:                    t += indexIterator[i].frequency();
061:                frequency = t;
062:            }
063:
064:            public void term(final CharSequence term) {
065:                this .term = term == null ? null : term.toString();
066:            }
067:
068:            public String term() {
069:                return term;
070:            }
071:
072:            public void id(final int id) {
073:                this .id = id;
074:            }
075:
076:            public int id() {
077:                return id;
078:            }
079:
080:            public Index index() {
081:                return index;
082:            }
083:
084:            public int frequency() {
085:                return frequency;
086:            }
087:
088:            public Payload payload() throws IOException {
089:                if (lastIterator < 0)
090:                    throw new IllegalStateException(
091:                            "There is no current payload: nextDocument() has never been called");
092:                return indexIterator[lastIterator].payload();
093:            }
094:
095:            public int count() throws IOException {
096:                if (lastIterator < 0)
097:                    throw new IllegalStateException(
098:                            "There is no current count: nextDocument() has never been called");
099:                return indexIterator[lastIterator].count();
100:            }
101:
102:            public IntIterator positions() throws IOException {
103:                if (lastIterator < 0)
104:                    throw new IllegalStateException(
105:                            "There are no current positions: nextDocument() has never been called");
106:                return indexIterator[lastIterator].positions();
107:            }
108:
109:            public int positions(int[] positions) throws IOException {
110:                if (lastIterator < 0)
111:                    throw new IllegalStateException(
112:                            "There are no current positions: nextDocument() has never been called");
113:                return indexIterator[lastIterator].positions(positions);
114:            }
115:
116:            public int[] positionArray() throws IOException {
117:                if (lastIterator < 0)
118:                    throw new IllegalStateException(
119:                            "There are no current positions: nextDocument() has never been called");
120:                return indexIterator[lastIterator].positionArray();
121:            }
122:
123:            public boolean accept(final DocumentIteratorVisitor visitor)
124:                    throws IOException {
125:                return visitor.visit(this );
126:            }
127:
128:            public boolean acceptOnTruePaths(
129:                    final DocumentIteratorVisitor visitor) throws IOException {
130:                return visitor.visit(this );
131:            }
132:
133:            public int termNumber() {
134:                // ALERT: don't we need some remapping?
135:                return indexIterator[lastIterator].termNumber();
136:            }
137:
138:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.