FieldsWriter.cs :  » Search-Engines » dotLucene » Lucene » Net » Index » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Search Engines » dotLucene 
dotLucene » Lucene » Net » Index » FieldsWriter.cs
/*
 * Copyright 2004 The Apache Software Foundation
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

using System;
using DocumentLucene.Net.Documents.Document;
using FieldLucene.Net.Documents.Field;
using DirectoryLucene.Net.Store.Directory;
using IndexOutputLucene.Net.Store.IndexOutput;

namespace Lucene.Net.Index{
  
  sealed class FieldsWriter
  {
    internal const byte FIELD_IS_TOKENIZED = (byte) (0x1);
    internal const byte FIELD_IS_BINARY = (byte) (0x2);
    internal const byte FIELD_IS_COMPRESSED = (byte) (0x4);
    
    private FieldInfos fieldInfos;
    
    private IndexOutput fieldsStream;
    
    private IndexOutput indexStream;
    
    internal FieldsWriter(Directory d, System.String segment, FieldInfos fn)
    {
      fieldInfos = fn;
      fieldsStream = d.CreateOutput(segment + ".fdt");
      indexStream = d.CreateOutput(segment + ".fdx");
    }
    
    internal void  Close()
    {
      fieldsStream.Close();
      indexStream.Close();
    }
    
    internal void  AddDocument(Document doc)
    {
      indexStream.WriteLong(fieldsStream.GetFilePointer());
      
      int storedCount = 0;
      System.Collections.IEnumerator fields = doc.Fields();
      while (fields.MoveNext())
      {
        Field field = (Field) fields.Current;
        if (field.IsStored())
          storedCount++;
      }
      fieldsStream.WriteVInt(storedCount);
      
      fields = doc.Fields();
      while (fields.MoveNext())
      {
        Field field = (Field) fields.Current;
        if (field.IsStored())
        {
          fieldsStream.WriteVInt(fieldInfos.FieldNumber(field.Name()));
          
          byte bits = 0;
          if (field.IsTokenized())
            bits |= FieldsWriter.FIELD_IS_TOKENIZED;
          if (field.IsBinary())
            bits |= FieldsWriter.FIELD_IS_BINARY;
          if (field.IsCompressed())
            bits |= FieldsWriter.FIELD_IS_COMPRESSED;
          
          fieldsStream.WriteByte(bits);
          
          if (field.IsCompressed())
          {
            // compression is enabled for the current field
            byte[] data = null;
            // check if it is a binary field
            if (field.IsBinary())
            {
              data = Compress(field.BinaryValue());
            }
            else
            {
              data = Compress(System.Text.Encoding.GetEncoding("UTF-8").GetBytes(field.StringValue()));
            }
            int len = data.Length;
            fieldsStream.WriteVInt(len);
            fieldsStream.WriteBytes(data, len);
          }
          else
          {
            // compression is disabled for the current field
            if (field.IsBinary())
            {
              byte[] data = field.BinaryValue();
              int len = data.Length;
              fieldsStream.WriteVInt(len);
              fieldsStream.WriteBytes(data, len);
            }
            else
            {
              fieldsStream.WriteString(field.StringValue());
            }
          }
        }
      }
    }
    
    private byte[] Compress(byte[] input)
    {
            // {{Aroush-1.9}} for .NET 1.1, we can use reflection and ZLib?
            return input;

      /*
      // Create the compressor with highest level of compression
      //UPGRADE_ISSUE: Class 'java.util.zip.Deflater' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javautilzipDeflater'"
      //UPGRADE_ISSUE: Constructor 'java.util.zip.Deflater.Deflater' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javautilzipDeflater'"
      Deflater compressor = new Deflater();
      //UPGRADE_ISSUE: Method 'java.util.zip.Deflater.setLevel' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javautilzipDeflater'"
      //UPGRADE_ISSUE: Field 'java.util.zip.Deflater.BEST_COMPRESSION' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javautilzipDeflater'"
      compressor.setLevel(Deflater.BEST_COMPRESSION);
      
      // Give the compressor the data to compress
      //UPGRADE_ISSUE: Method 'java.util.zip.Deflater.setInput' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javautilzipDeflater'"
      compressor.setInput(input);
      //UPGRADE_ISSUE: Method 'java.util.zip.Deflater.finish' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javautilzipDeflater'"
      compressor.finish();
      
      / *
      * Create an expandable byte array to hold the compressed data.
      * You cannot use an array that's the same size as the orginal because
      * there is no guarantee that the compressed data will be smaller than
      * the uncompressed data.
      * /
      System.IO.MemoryStream bos = new System.IO.MemoryStream(input.Length);
      
      // Compress the data
      byte[] buf = new byte[1024];
      //UPGRADE_ISSUE: Method 'java.util.zip.Deflater.finished' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javautilzipDeflater'"
      while (!compressor.finished())
      {
        //UPGRADE_ISSUE: Method 'java.util.zip.Deflater.deflate' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javautilzipDeflater'"
        int count = compressor.deflate(buf);
        bos.Write(SupportClass.ToByteArray(buf), 0, count);
      }
      
      //UPGRADE_ISSUE: Method 'java.util.zip.Deflater.end' was not converted. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1000_javautilzipDeflater'"
      compressor.end();
      
      // Get the compressed data
      return SupportClass.ToSByteArray(bos.ToArray());
            */
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.