Exemplo n.º 1
0
        /// <summary>
        /// Builds a tree with all the terms
        /// </summary>
        /// <returns>The tree representing the xml</returns>
        public Tree <Term> getXMLAsTree()
        {
            // we get the terms and make them nodes
            var terms = Terms.Select(t => new Tree <Term> .NodeClass
            {
                id    = t.Term_Id.ToString(),
                title = t.Term_Title,
                data  = t
            }).ToArray();

            // This diccionary is necesary to have better performance and low wait time. We need to get randomly nodes, so a Sorted Dictionary is the best option
            var FastAccessTerms = new SortedDictionary <int, Tree <Term> .NodeClass>();

            // Dictionary containing all the added terms
            var TermsAlreadyThere = new Misc.CheckList <int>();

            // Inserting the terms in the Dictionary
            foreach (var term in terms)
            {
                FastAccessTerms[term.data.Term_Id] = term;
            }

            // We create the tree with the info form the node
            var tree = new Tree <Term>("", XmlFile_Name);

            // We take the parentless nodes and asume they are in the root
            foreach (var term in terms.Where(t => t.data.ParentId == 0))
            {
                if (!TermsAlreadyThere[term.data.Term_Id])
                {
                    tree.Root.addChild(term);
                    TermsAlreadyThere[term.data.Term_Id] = true;
                }
            }

            // The other nodes are apended to their parents
            foreach (var term in terms.Where(t => t.data.ParentId != 0))
            {
                if (!TermsAlreadyThere[term.data.Term_Id])
                {
                    // Using the Dictionary for the random access
                    FastAccessTerms[term.data.ParentId].addChild(term);
                    TermsAlreadyThere[term.data.Term_Id] = true;
                }
            }

            return(tree);
        }
Exemplo n.º 2
0
        /// <summary>
        /// Builds a tree with all the terms
        /// </summary>
        /// <returns>The tree representing the xml</returns>
        public Tree<Term> getXMLAsTree()
        {
            // we get the terms and make them nodes
            var terms = Terms.Select(t => new Tree<Term>.NodeClass
            {
                id = t.Term_Id.ToString(),
                title = t.Term_Title,
                data = t
            }).ToArray();

            // This diccionary is necesary to have better performance and low wait time. We need to get randomly nodes, so a Sorted Dictionary is the best option
            var FastAccessTerms = new SortedDictionary<int, Tree<Term>.NodeClass>();

            // Dictionary containing all the added terms
            var TermsAlreadyThere = new Misc.CheckList<int>();

            // Inserting the terms in the Dictionary
            foreach (var term in terms)
            {
                FastAccessTerms[term.data.Term_Id] = term;

            }

            // We create the tree with the info form the node
            var tree = new Tree<Term>("", XmlFile_Name);

            // We take the parentless nodes and asume they are in the root
            foreach (var term in terms.Where(t => t.data.ParentId == 0))
            {
                if (!TermsAlreadyThere[term.data.Term_Id])
                {
                    tree.Root.addChild(term);
                    TermsAlreadyThere[term.data.Term_Id] = true;
                }
            }

            // The other nodes are apended to their parents
            foreach (var term in terms.Where(t => t.data.ParentId != 0))
            {
                if (!TermsAlreadyThere[term.data.Term_Id])
                {
                    // Using the Dictionary for the random access
                    FastAccessTerms[term.data.ParentId].addChild(term);
                    TermsAlreadyThere[term.data.Term_Id] = true;
                }
            }

            return tree;
        }