Source Code Cross Referenced for SortableFloatField.java in  » Search-Engine » apache-solr-1.2.0 » org » apache » solr » schema » 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 » apache solr 1.2.0 » org.apache.solr.schema 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * Licensed to the Apache Software Foundation (ASF) under one or more
003:         * contributor license agreements.  See the NOTICE file distributed with
004:         * this work for additional information regarding copyright ownership.
005:         * The ASF licenses this file to You under the Apache License, Version 2.0
006:         * (the "License"); you may not use this file except in compliance with
007:         * the License.  You may obtain a copy of the License at
008:         *
009:         *     http://www.apache.org/licenses/LICENSE-2.0
010:         *
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */package org.apache.solr.schema;
017:
018:        import org.apache.lucene.search.SortField;
019:        import org.apache.lucene.search.FieldCache;
020:        import org.apache.solr.search.function.ValueSource;
021:        import org.apache.solr.search.function.FieldCacheSource;
022:        import org.apache.solr.search.function.DocValues;
023:        import org.apache.lucene.document.Fieldable;
024:        import org.apache.lucene.index.IndexReader;
025:        import org.apache.solr.util.NumberUtils;
026:        import org.apache.solr.request.XMLWriter;
027:        import org.apache.solr.request.TextResponseWriter;
028:
029:        import java.util.Map;
030:        import java.io.IOException;
031:
032:        /**
033:         * @author yonik
034:         * @version $Id: SortableFloatField.java 479793 2006-11-27 22:40:21Z klaas $
035:         */
036:        public class SortableFloatField extends FieldType {
037:            protected void init(IndexSchema schema, Map<String, String> args) {
038:            }
039:
040:            public SortField getSortField(SchemaField field, boolean reverse) {
041:                return getStringSort(field, reverse);
042:            }
043:
044:            public ValueSource getValueSource(SchemaField field) {
045:                return new SortableFloatFieldSource(field.name);
046:            }
047:
048:            public String toInternal(String val) {
049:                return NumberUtils.float2sortableStr(val);
050:            }
051:
052:            public String toExternal(Fieldable f) {
053:                return indexedToReadable(f.stringValue());
054:            }
055:
056:            public String indexedToReadable(String indexedForm) {
057:                return NumberUtils.SortableStr2floatStr(indexedForm);
058:            }
059:
060:            public void write(XMLWriter xmlWriter, String name, Fieldable f)
061:                    throws IOException {
062:                String sval = f.stringValue();
063:                xmlWriter.writeFloat(name, NumberUtils.SortableStr2float(sval));
064:            }
065:
066:            public void write(TextResponseWriter writer, String name,
067:                    Fieldable f) throws IOException {
068:                String sval = f.stringValue();
069:                writer.writeFloat(name, NumberUtils.SortableStr2float(sval));
070:            }
071:        }
072:
073:        class SortableFloatFieldSource extends FieldCacheSource {
074:            protected float defVal;
075:
076:            public SortableFloatFieldSource(String field) {
077:                this (field, 0.0f);
078:            }
079:
080:            public SortableFloatFieldSource(String field, float defVal) {
081:                super (field);
082:                this .defVal = defVal;
083:            }
084:
085:            public String description() {
086:                return "sfloat(" + field + ')';
087:            }
088:
089:            public DocValues getValues(IndexReader reader) throws IOException {
090:                final FieldCache.StringIndex index = cache.getStringIndex(
091:                        reader, field);
092:                final int[] order = index.order;
093:                final String[] lookup = index.lookup;
094:                final float def = defVal;
095:
096:                return new DocValues() {
097:                    public float floatVal(int doc) {
098:                        int ord = order[doc];
099:                        return ord == 0 ? def : NumberUtils
100:                                .SortableStr2float(lookup[ord]);
101:                    }
102:
103:                    public int intVal(int doc) {
104:                        return (int) floatVal(doc);
105:                    }
106:
107:                    public long longVal(int doc) {
108:                        return (long) floatVal(doc);
109:                    }
110:
111:                    public double doubleVal(int doc) {
112:                        return (double) floatVal(doc);
113:                    }
114:
115:                    public String strVal(int doc) {
116:                        return Float.toString(floatVal(doc));
117:                    }
118:
119:                    public String toString(int doc) {
120:                        return description() + '=' + floatVal(doc);
121:                    }
122:                };
123:            }
124:
125:            public boolean equals(Object o) {
126:                return o instanceof  SortableFloatFieldSource && super .equals(o)
127:                        && defVal == ((SortableFloatFieldSource) o).defVal;
128:            }
129:
130:            private static int hcode = SortableFloatFieldSource.class
131:                    .hashCode();
132:
133:            public int hashCode() {
134:                return hcode + super.hashCode() + Float.floatToIntBits(defVal);
135:            };
136:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.