// @(#)root/xml:$Name:  $:$Id: TKeyXML.cxx,v 1.4 2005/11/22 20:42:37 pcanal Exp $
// Author: Sergey Linev, Rene Brun  10.05.2004

/*************************************************************************
 * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

//________________________________________________________________________
//
// TKeyXML is represents one block of data in TXMLFile
// Normally this block corresponds to data of single object like histogram,
// TObjArray and so on.
//________________________________________________________________________


#include "TKeyXML.h"

#include "TBufferXML.h"
#include "TXMLFile.h"
#include "TClass.h"
#include "TBrowser.h"

ClassImp(TKeyXML);

//______________________________________________________________________________
 TKeyXML::TKeyXML() :
   TKey(),
   fFile(0),
   fXML(0),
   fKeyNode(0)
{
   // default constructor
}

//______________________________________________________________________________
 TKeyXML::TKeyXML(TXMLFile* file, const TObject* obj, const char* name) :
    TKey(),
    fFile(file),
    fXML(file->XML()),
    fKeyNode(0)
{
   // Creates TKeyXML and convert obj data to xml structures

   if (name)
      SetName(name);
   else
      if (obj!=0) {
         SetName(obj->GetName());
         fClassName=obj->ClassName();
      } else
         SetName("Noname");

   StoreObject((void*)obj, obj ? obj->IsA() : 0);
}

//______________________________________________________________________________
 TKeyXML::TKeyXML(TXMLFile* file, const void* obj, const TClass* cl, const char* name) :
   TKey(),
   fFile(file),
   fXML(file->XML()),
   fKeyNode(0)
{
   // Creates TKeyXML and convert obj data to xml structures

   if (name && *name) SetName(name);
   else SetName(cl ? cl->GetName() : "Noname");

   StoreObject(obj, cl);
}

//______________________________________________________________________________
 TKeyXML::TKeyXML(TXMLFile* file, XMLNodePointer_t keynode) :
   TKey(),
   fFile(file),
   fXML(file->XML()),
   fKeyNode(keynode)
{
   // Creates TKeyXML and takes ownership over xml node, from which object can be restored

   SetName(fXML->GetAttr(keynode, xmlio::Name));
   fCycle = fXML->GetIntAttr(keynode, xmlio::Cycle);

   XMLNodePointer_t objnode = fXML->GetChild(keynode);
   fXML->SkipEmpty(objnode);

   fClassName = fXML->GetAttr(objnode, xmlio::ObjClass);
}

//______________________________________________________________________________
 TKeyXML::~TKeyXML()
{
   // TKeyXML destructor
   if (fKeyNode)
      fXML->FreeNode(fKeyNode);
}

//______________________________________________________________________________
 void TKeyXML::Browse(TBrowser *b)
{
   // Browse object corresponding to this key

   TObject *obj = gDirectory->GetList()->FindObject(GetName());
   if (obj && !obj->IsFolder()) {
      if (obj->InheritsFrom(TCollection::Class()))
         obj->Delete();   // delete also collection elements
      delete obj;
      obj = 0;
   }

   if (!obj)
      obj = ReadObj();

   if (b && obj) {
      obj->Browse(b);
      b->SetRefreshFlag(kTRUE);
   }
}

//______________________________________________________________________________
 void TKeyXML::Delete(Option_t * /*option*/)
{
   // Delete key from current directory
   // Note: TKeyXML object is not deleted. You still have to call "delete key"

   gDirectory->GetListOfKeys()->Remove(this);
}

//______________________________________________________________________________
 void TKeyXML::StoreObject(const void* obj, const TClass* cl)
{
   //  convert object to xml structure and keep this structure in key

   fCycle  = fFile->AppendKey(this);

   fKeyNode = fXML->NewChild(0, 0, xmlio::Xmlkey, 0);
   fXML->NewAttr(fKeyNode, 0, xmlio::Name, GetName());

   fXML->NewIntAttr(fKeyNode, xmlio::Cycle, fCycle);

   TBufferXML buffer(TBuffer::kWrite, fFile);
   XMLNodePointer_t node = buffer.XmlWrite(obj, cl);

   if (node!=0)
      fXML->AddChild(fKeyNode, node);

   buffer.XmlWriteBlock(fKeyNode);

   if (cl) fClassName = cl->GetName();
}

//______________________________________________________________________________
 XMLNodePointer_t TKeyXML::ObjNode()
{
   // return starting node, where object was stored

   if (fKeyNode==0) return 0;
   XMLNodePointer_t node = fXML->GetChild(fKeyNode);
   fXML->SkipEmpty(node);
   return node;
}

//______________________________________________________________________________
 XMLNodePointer_t TKeyXML::BlockNode()
{
   // return node, where key binary data is stored
   if (fKeyNode==0) return 0;
   XMLNodePointer_t node = fXML->GetChild(fKeyNode);
   fXML->SkipEmpty(node);
   while (node!=0) {
      if (strcmp(fXML->GetNodeName(node), xmlio::XmlBlock)==0) return node;
      fXML->ShiftToNext(node);
   }
   return 0;
}

//______________________________________________________________________________
 TObject* TKeyXML::ReadObj()
{
   // read object derived from TObject class, from key
   // if it is not TObject or in case of error, return 0

   if (fKeyNode==0) return 0;
   TBufferXML buffer(TBuffer::kRead, fFile);
   buffer.XmlReadBlock(BlockNode());
   TObject* obj = buffer.XmlRead(ObjNode());
   return obj;
}

//______________________________________________________________________________
 void* TKeyXML::ReadObjectAny(const TClass* /*cl*/)
{
   // read object of any type

   if (fKeyNode==0) return 0;
   TBufferXML buffer(TBuffer::kRead, fFile);
   buffer.XmlReadBlock(BlockNode());
   void* obj = buffer.XmlReadAny(ObjNode(), 0);
   return obj;
}


ROOT page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.