IndexedTrie.cs :  » Network-Clients » Jabber-Net » bedrock » collections » 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 » Network Clients » Jabber Net 
Jabber Net » bedrock » collections » IndexedTrie.cs
/* --------------------------------------------------------------------------
 *
 * License
 *
 * The contents of this file are subject to the Jabber Open Source License
 * Version 1.0 (the "License").  You may not copy or use this file, in either
 * source code or executable form, except in compliance with the License.  You
 * may obtain a copy of the License at http://www.jabber.com/license/ or at
 * http://www.opensource.org/.  
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied.  See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * Copyrights
 * 
 * Portions created by or assigned to Cursive Systems, Inc. are 
 * Copyright (c) 2002 Cursive Systems, Inc.  All Rights Reserved.  Contact
 * information for Cursive Systems, Inc. is available at http://www.cursive.net/.
 *
 * Portions Copyright (c) 2002 Joe Hildebrand.
 * 
 * Acknowledgements
 * 
 * Special thanks to the Jabber Open Source Contributors for their
 * suggestions and support of Jabber.
 * 
 * --------------------------------------------------------------------------*/
using System;
using System.Collections;
using bedrock.util;
namespace bedrock.collections{
    /// <summary>
    /// A Trie that is searchable for substrings.  Uses a separate set of indexes 
    /// to allow entry into the Trie at any point.  Yes, this 
    /// </summary>
    [RCS(@"$Header: /home/cvs/jabber-net/bedrock/collections/IndexedTrie.cs,v 1.1 2002/07/11 22:08:11 hildjj Exp $")]
    public class IndexedTrie : Trie
    {
        private Tree m_indexes    = new Tree();
        private int  m_maxResults = 100;
        /// <summary>
        /// 
        /// </summary>
        public IndexedTrie()  {}
        /// <summary>
        /// 
        /// </summary>
        /// <param name="MaxResults"></param>
        public IndexedTrie(int MaxResults)
        {
            m_maxResults = MaxResults;
        }
        /// <summary>
        /// The maximum number of results to return from any query.  This is an approximate number.
        /// </summary>
        public int MaxResults 
        {
            get 
            {
                return m_maxResults;
            }
            set
            {
                m_maxResults = value;
            }
        }
        /// <summary>
        /// Find the index for the given byte.
        /// </summary>
        protected ArrayList this[byte b]
        {
            get 
            {
                return (ArrayList) m_indexes[b];
            }
        }
        /// <summary>
        /// Traverse the trie, computing indexes.
        /// </summary>
        /// <param name="n"> </param>
        /// <param name="data"> </param>
        private bool IndexWalker(TrieNode n, object data)
        {
            if (n.Parent != null)
            {
                 this[n.Byte].Add(new WeakReference(n));
            }
            return true;
        }
        /// <summary>
        /// Compute the index.
        /// </summary>
        public void Index()
        {
            Traverse(new TrieWalker(IndexWalker), null);
            foreach (ArrayList al in m_indexes)
            {
                al.TrimToSize();
            }
        }
        /// <summary>
        /// Copy the keys from the sub-tree into an ArrayList.
        /// </summary>
        /// <param name="n"> </param>
        /// <param name="data"> </param>
        /// <param name="key"> </param>
        private bool CopyWalker(TrieNode n, object data, ByteStack key)
        {
            if (n.Value != null)
            {
                ArrayList al = (ArrayList) data;
                al.Add((byte[]) key);
                if (al.Count >= m_maxResults)
                {
                    return false;
                }
            }
            return true;
        }
        /// <summary>
        /// Return a list of keys that contain the given substring.
        /// </summary>
        /// <param name="lookFor">The substring to search for.</param>
        public ArrayList SubString(byte[] lookFor)
        {
            ArrayList starts = (ArrayList) m_indexes[lookFor[0]];
            ArrayList finds = new ArrayList();
            byte[] nBuf = new byte[lookFor.Length - 1];
            Buffer.BlockCopy(lookFor, 1, nBuf, 0, lookFor.Length - 1);
            TrieKeyWalker w = new TrieKeyWalker(CopyWalker);
            foreach (WeakReference wref in starts)
            {
                if (finds.Count >= m_maxResults)
                {
                    break;
                }
                TrieNode first = (TrieNode) wref.Target;
                if (first == null)
                {
                    // node got removed out from underneath.
                    starts.Remove(wref);
                }
                else
                {
                    TrieNode last = FindNode(nBuf, first, false);
                    if (last != null)
                    {
                        Traverse(w, finds, last, new ByteStack(last.Key));
                    }
                }
            }
            return finds;
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.