Click here to Skip to main content
15,878,945 members
Articles / Programming Languages / XML
Article

How to load a tree view with a large XML file

Rate me:
Please Sign up or sign in to vote.
4.50/5 (14 votes)
7 Jun 2000 288.6K   3.6K   86   34
This article show you how to display very large XML in a tree view, and also shows you how to incorporate the MS XML parser in your app.
  • Download demo project - 50 Kb
  • Sample Image

    Introduction

    Recently I was required to display a very large XML file in a tree view, I tried to implement like "virtual list view" which displays whatever is visible in a view (when the user scrolls). After brainstorm and some web surfing I remembered windows explorer. I'm not sure how they implement it exactly but I guess they do same method as mine which expand any tree node on the fly i.e. don't populate the whole tree at start-up. If you don't do this, populate the whole tree for a 10 MB XML file size takes up to 45 minutes on a fast machine! doing my way will takes only approximately 3-5 seconds! The trick really is how to find out the relationship and info of any tree node and associated DOM node any where any time. To incorporate this into your app, either derive your class from CXmlTreeView or add appropriate message handlers and all helper methods to your own class.

    Note:

    • It'd be easier if you know how to incorporate XML parser into your app (this article uses Microsoft XML parser because of its available!), however, it's not a requirement.
    • You can apply the same method to any application-specific value instead of DOM node to populate a tree control
    • You can easily change this class to use as a tree control instead.

    The first you need to add a notify message handler for TVN_ITEMEXPANDING which notifies a tree view control's parent window that a parent item's list of child items is about to expand or collapse.

    void CXmlTreeView::OnItemexpanding(NMHDR*  pNMHDR, LRESULT* pResult) 
    {
        NM_TREEVIEW* pNMTreeView = (NM_TREEVIEW*)pNMHDR;
        HTREEITEM hItem = pNMTreeView->itemNew.hItem;
        MSXML::IXMLDOMElement* node = (MSXML::IXMLDOMElement*)GetTreeCtrl().GetItemData(hItem);
        HRESULT hr;
      
        *pResult = 0;
     
        // If m_bOptimizeMemory is false then we optimize by not adding and deleting 
        // already added items. The trade-off is memory exhausted!
      
        CWaitCursor waitCursor;     // This could take a while!
        GetTreeCtrl().LockWindowUpdate();
        if (pNMTreeView->action == TVE_EXPAND) 
        {
            if (m_bOptimizeMemory == FALSE) 
            {
                HTREEITEM hChildItem;
                if ((hChildItem = GetTreeCtrl().GetChildItem(hItem)) != NULL) 
                {
                   MSXML::IXMLDOMElement* childNode = 
                              (MSXML::IXMLDOMElement*) GetTreeCtrl().GetItemData(hChildItem);
                     
                   if (childNode == NULL)
                   {
                      GetTreeCtrl().DeleteItem(hChildItem);
                      MSXML::IXMLDOMNode* firstChild = NULL;
                      hr = node->get_firstChild(&firstChild);
                      if (SUCCEEDED(hr) && firstChild != NULL)
                      {
                          if (populateNode((MSXML::IXMLDOMElement*)firstChild, hItem) == FALSE) 
                          {
                              *pResult = 1; 
                          }                
                      }
                   }
                }
             } 
             else
             {
                 deleteFirstChild(hItem);
                 MSXML::IXMLDOMNode* firstChild = NULL;
                 hr = node->get_firstChild(&firstChild);
                 if (SUCCEEDED(hr) && firstChild != NULL) 
                 {
                     if (populateNode((MSXML::IXMLDOMElement*)firstChild, hItem) == FALSE) 
                     {
                         *pResult = 1; 
                     }
                 }
              }
          }
          else
          {
              // pNMTreeView->action == TVE_COLLAPSE
              if (m_bOptimizeMemory == TRUE) 
              {
                  deleteAllChildren(hItem);
                  // Set button state.
                  if (node->hasChildNodes()) 
                  {
                       int nImage, nSelectedImage;
                       nImage = nSelectedImage = getIconIndex(node);
                       HTREEITEM hChildItem = GetTreeCtrl().InsertItem(_T(""), nImage, 
                           nSelectedImage, hItem);
                       GetTreeCtrl().SetItemData(hChildItem, (DWORD)NULL);
                  }
              }
          }
          GetTreeCtrl().UnlockWindowUpdate();
      }

    The key in this function is the calls to GetItemData(..) and populateNode(..).

    • GetItemData(..) will retrieve the DOM node value associated with the specified item so we can use this DOM node to figure out the relationship with the rest.
    • populateNode(..) will only populate all siblings of the [in] node which is the child node of the current node.
    • m_bOptimizeMemory is used to optimize memory by delete all children when collapse or not. This value is set to false by default when you can loadXML(..).
    // This function populates all siblings of the
      [in] node.
      //
      BOOL CXmlTreeView::populateNode(MSXML::IXMLDOMElement *node, const HTREEITEM &hParent)
      {
          HRESULT hr = S_OK;
          BSTR nodeType, nodeName;
          HTREEITEM hItem;
      
          node->get_nodeTypeString(&nodeType);
          if (!wcscmp(nodeType, L"element")) {
              node->get_nodeName(&nodeName);
              hItem = insertItem(node, CString(nodeName), ILI_ELEMENT, ILI_ELEMENT, hParent);
              populateAttributes(node, hItem);
          } else if(!wcscmp(nodeType, L"text")) {
              node->get_text(&nodeName);
              hItem = insertItem(node, CString(nodeName), ILI_TEXT, ILI_TEXT, hParent); 
          } else if(!wcscmp(nodeType, L"comment")) {
              node->get_nodeName(&nodeName);
              hItem = insertItem(node, CString(nodeName), ILI_COMMENT, ILI_COMMENT, hParent); 
          } else {    // Handle more data types here if needed.
              node->get_nodeName(&nodeName);
              hItem = insertItem(node, CString(nodeName), ILI_OTHER, ILI_OTHER, hParent); 
          }
      
          MSXML::IXMLDOMNode* nextSibling = NULL;
          hr = node->get_nextSibling(&nextSibling);
          if (SUCCEEDED(hr) && nextSibling != NULL) {
              populateNode((MSXML::IXMLDOMElement*)nextSibling, hParent);
          }
      
          return TRUE;
      }

    The key in this function is the call to helper function insertItem(..) which set DOM node value associated with the specified tree item.

    HTREEITEM CXmlTreeView::insertItem(MSXML::IXMLDOMElement *node, 
          const CString &nodeName, int nImage, int nSelectedImage, 
          HTREEITEM hParent /*= TVI_ROOT*/, HTREEITEM hInsertAfter /*= TVI_LAST*/)
      {
          HTREEITEM hItem = GetTreeCtrl().InsertItem(nodeName, nImage, 
              nSelectedImage, hParent, hInsertAfter); 
          GetTreeCtrl().SetItemData(hItem, (DWORD)node);
      
          // Set button state.
          if (node->hasChildNodes()) {
              HTREEITEM hChildItem = GetTreeCtrl().InsertItem(_T(""), nImage, 
                   nSelectedImage, hItem);
              GetTreeCtrl().SetItemData(hChildItem, (DWORD)NULL);
          }
      
          return hItem;
      }

    Please don't send emails but post here if you have any questions regarding this article.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here


    Written By
    United States United States
    This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

    Comments and Discussions

     
    GeneralA better way Pin
    Member 40403951-Jul-09 15:03
    Member 40403951-Jul-09 15:03 
    A better way is to create your own tree control from scratch that holds any number of elements, even just one, and add only as many as can be viewed(visiblecount). This has been done by xponentsoftware, but alas it is not available as a control, rather an xml editor. but you can download their beta, at least as of a couple weeks ago.

    Bill
    Generallicense Pin
    avirabinovich19-May-09 5:36
    avirabinovich19-May-09 5:36 
    QuestionIn C# Pin
    Pr@teek B@h!2-Jul-08 10:06
    Pr@teek B@h!2-Jul-08 10:06 
    AnswerRe: In C# Pin
    Pr@teek B@h!18-Sep-08 5:03
    Pr@teek B@h!18-Sep-08 5:03 
    QuestionIntegration with other classes Pin
    Nilson Bastos Jr1-Apr-08 10:59
    Nilson Bastos Jr1-Apr-08 10:59 
    GeneralIn VB.net 2005 Pin
    ShailShin11-Jun-06 22:37
    ShailShin11-Jun-06 22:37 
    GeneralNice, but memory leak... Pin
    Arcrest16-Aug-05 17:44
    Arcrest16-Aug-05 17:44 
    GeneralAnother Memory Leak Pin
    Stellar Developer30-Jun-05 8:01
    Stellar Developer30-Jun-05 8:01 
    GeneralRe: Another Memory Leak Pin
    pocjoc12-Jul-05 22:40
    pocjoc12-Jul-05 22:40 
    Generalsuggestion Pin
    ChauJohnthan7-Apr-05 11:17
    ChauJohnthan7-Apr-05 11:17 
    GeneralSDI to MDI Pin
    help_cplus17-Nov-04 1:58
    help_cplus17-Nov-04 1:58 
    GeneralMemory Leak Pin
    mistretzu27-Sep-04 3:07
    mistretzu27-Sep-04 3:07 
    GeneralMemory Leak Pin
    Anonymous27-Sep-04 3:03
    Anonymous27-Sep-04 3:03 
    GeneralDynamic updating of tree with new data Pin
    JRubinstein19-Aug-04 8:27
    JRubinstein19-Aug-04 8:27 
    GeneralRe: Dynamic updating of tree with new data Pin
    Anonymous19-Aug-04 12:30
    Anonymous19-Aug-04 12:30 
    GeneralRe: Dynamic updating of tree with new data Pin
    JRubinstein19-Aug-04 15:24
    JRubinstein19-Aug-04 15:24 
    GeneralDTD Schema Pin
    Member 10965420-Oct-03 3:29
    Member 10965420-Oct-03 3:29 
    GeneralThe demo project is corrupted Pin
    TW16-Feb-03 23:47
    TW16-Feb-03 23:47 
    GeneralLoading an XML file initially Pin
    17-Oct-02 1:16
    suss17-Oct-02 1:16 
    Generalxml diff Pin
    Murari28-Jun-02 9:30
    Murari28-Jun-02 9:30 
    GeneralRe: xml diff Pin
    Anonymous19-Aug-04 12:33
    Anonymous19-Aug-04 12:33 
    GeneralModified it to work with the Pocket PC Pin
    mark edwards24-Jan-02 9:25
    mark edwards24-Jan-02 9:25 
    GeneralRe: Modified it to work with the Pocket PC Pin
    11-Mar-02 10:07
    suss11-Mar-02 10:07 
    GeneralRe: Modified it to work with the Pocket PC Pin
    nishu5-Aug-02 10:10
    nishu5-Aug-02 10:10 
    GeneralA way of study Pin
    4-Sep-01 23:12
    suss4-Sep-01 23:12 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.