AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Thema durchsuchen
Ansicht
Themen-Optionen

xml read

Ein Thema von value is NULL · begonnen am 11. Jan 2011 · letzter Beitrag vom 11. Jan 2011
Antwort Antwort
value is NULL

Registriert seit: 10. Sep 2010
249 Beiträge
 
#1

xml read

  Alt 11. Jan 2011, 08:36
Hi Delphianer

habe ein, ich glaube, kleines problem, komme jedoch nicht auf die Lösung.

ich habe folgendes XML:

Code:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<world localsitename="TEST-ENVIROMENT" localdomainname="TEST">
   <domain domainname="TEST">
      <site sitename="TEST-ENVIROMENT">
         <sitedatastore>
            <filestore servername="TEST-ENVIROMENT">
               <localpath>D:\</localpath>
               <networkshare>\\TEST-ENVIROMENT\vdata$</networkshare>
               <url>http://TEST-ENVIROMENT/sitedata</url>
               <maxusedspace />
               <minfreespace>2500</minfreespace>
            </filestore>
            <database>
               <dbtype>MSSQL</dbtype>
               <servername>TEST-ENVIROMENT</servername>
               <dbuser />
               <dbpwd />
               <dbname>data</dbname>
               <odbcdsn>data</odbcdsn>
               <timeout login="20" />
               <param id="UID" />
               <param id="PWD" />
               <param id="DSN">data</param>
               <param id="DRIVER">SQL Server</param>
               <param id="Server">TEST-ENVIROMENT</param>
               <param id="Database">data</param>
            </database>
         </sitedatastore>
         <mediaserver servername="TEST-ENVIROMENT" serverindex="1">
            <serialnumber>TEST-ENVIROMENT</serialnumber>
            <datastore>
               <localpath>D:\</localpath>
               <networkshare>\\TEST-ENVIROMENT\data$</networkshare>
            </datastore>
            <module_list>
               <module servername="TEST-ENVIROMENT" type="msgmgr" moduleindex="0" />
               <module servername="TEST-ENVIROMENT" type="Mgr" moduleindex="101" />
               <module subtype="log" servername="TEST-ENVIROMENT" type="log" moduleindex="104" />
               <module subtype="main" servername="TEST-ENVIROMENT" type="WebServer" moduleindex="110" />
               <module subtype="timesync" servername="TEST-ENVIROMENT" type="system" moduleindex="200" />
               <module subtype="hilowstat" servername="TEST-ENVIROMENT" type="system" moduleindex="201" />
               <module subtype="archiv" servername="TEST-ENVIROMENT" type="system" moduleindex="600" />
            </module_list>
         </mediaserver>
         <module subtype="archiv" servername="TEST-ENVIROMENT" type="system" moduleindex="600">
            <config>
               <exepath>C:\hilowstat.exe</exepath>
               <statusinterface>file:hilowstat.xml</statusinterface>
               <xmlpath>C:\test.xml</xmlpath>
               <parmconfigpath>C:\config.xml</parmconfigpath>
            </config>
         </module>
         <module servername="TEST-ENVIROMENT" type="msgmgr" moduleindex="0">
            <config>
               <exepath>C:\msgmgr.exe</exepath>
               <xmlpath>C:\msgmgr.xml</xmlpath>
               <parmconfigpath>C:\msgmgr_config.xml</parmconfigpath>
            </config>
         </module>
         <module subtype="timesync" servername="TEST-ENVIROMENT" type="system" moduleindex="200">
            <config>
               <exepath>C:\timesync.exe</exepath>
               <xmlpath>C:\timesync.xml</xmlpath>
               <statusinterface>http</statusinterface>
            </config>
         </module>
         <module subtype="hilowstat" servername="TEST-ENVIROMENT" type="system" moduleindex="201">
            <config>
               <exepath>C:\hilowstat.exe</exepath>
               <statusinterface>file:hilowstat.xml</statusinterface>
            </config>
         </module>
         <module servername="TEST-ENVIROMENT" serverindex="1" type="Mgr" moduleindex="101">
            <config>
               <exepath>C:\accmgr.exe</exepath>
               <statusinterface>http</statusinterface>
               <rpsmgr>
                  <rpslist>
                     <rps moduleindex="102" />
                  </rpslist>
                  <intervalcheckrpsconnection>1000</intervalcheckrpsconnection>
                  <autostartrps>1</autostartrps>
               </rpsmgr>
               <accdevmgr>
                  <devlist>
                     <accdev accdevindex="1">
                        <call controllingresource="channel" />
                     </accdev>
                     <accdev accdevindex="2">
                        <call controllingresource="channel" />
                     </accdev>
                     <accdev accdevindex="3">
                        <call controllingresource="channel" />
                     </accdev>
                     <accdev accdevindex="4">
                        <call controllingresource="channel" />
                     </accdev>
                     <accdev accdevindex="5">
                        <call controllingresource="channel" />
                     </accdev>
                     <accdev accdevindex="6">
                        <call controllingresource="channel" />
                     </accdev>
                     <accdev accdevindex="7">
                        <call controllingresource="tonedetector" />
                     </accdev>
                     <accdev accdevindex="8">
                        <call controllingresource="tonedetector" />
                     </accdev>
                  </devlist>
               </accdevmgr>
            </config>
         </module>
      </tsite>
   </domain>
</voxctworld>
ich lese mir mit folgendem Code ein Wieviele accdevindexes es gibt:

Delphi-Quellcode:
var
  ctcfg : IXMLDocument;
  ctcfgnode : IXMLNode;
  i : integer;

begin
  try
      i := 0;
      if not fileexists('C:\ctcfg.xml') then raise Exception.Create('ctcfg not found!');
      debug('Reading ctcfg...');
      CoInitialize(nil);
      ctcfg := LoadXMLDocument('C:\ctcfg.xml');
      ctcfgnode := ctcfg.DocumentElement.ChildNodes.First.ChildNodes.First.ChildNodes.FindNode('module').NextSibling.NextSibling.NextSibling.NextSibling.ChildNodes.FindNode('config').ChildNodes.FindNode('accdevmgr').ChildNodes.FindNode('devlist').ChildNodes.First;
      while not (ctcfgnode = nil) do begin
         i := i + 1;
         ctcfgnode := ctcfgnode.NextSibling;
      end;
      debug(inttostr(i) + ' Channels found!');
  except
    on E: Exception do
      Writeln(E.ClassName, ': ', E.Message);
  end;
end.
das funzt ja auch prima ABER: ich möchte mir noch zusätzlich 2 zähler setzen, und zwar möchte ich zählen wieviele davon <call controllingresource="tonedetector" />
und wieviel <call controllingresource="channel" /> beinhalten.

hat jemand eine Idee?!

Vielen Dank schon mal

LG
  Mit Zitat antworten Zitat
Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
43.147 Beiträge
 
Delphi 12 Athens
 
#2

AW: xml read

  Alt 11. Jan 2011, 08:44
Für dieses ChildNodes.First.ChildNodes.First.ChildNodes.FindNode('module').NextSibling.NextSibling.NextSibling.NextSibling.ChildNodes.FindNode('config').ChildNodes.FindNode('accdevmgr').ChildNodes.FindNode('devlist').ChildNodes empfehle ich dir mal einen Blick in Bei Google suchenXPath.

Zum blosen Zählen hätte ChildNodes auch ein .Count angeboten ... also die Schleife war hierfür erstmal sinnlos.

Ansonsten bietet ctcfgnode auch die Möglichkeit, um in der Schleife auf dessen Childs zuzugreifen und da nachzusehn, was sich darin befindet.

Oder man nutzt ebenfalls wieder die Möglichkeiten vom XPath, läßt sich alle Werte auflisten und dann nochmal jeweils alle Werte mit inkl. einer Bedingung für dieses controllingresource ... hier dann im Ergebnis ebenfalls das Count abfragen und schon ist man mit 3 Befehlen/Abfragen fertig.
Garbage Collector ... Delphianer erzeugen keinen Müll, also brauchen sie auch keinen Müllsucher.
my Delphi wish list : BugReports/FeatureRequests
  Mit Zitat antworten Zitat
value is NULL

Registriert seit: 10. Sep 2010
249 Beiträge
 
#3

AW: xml read

  Alt 11. Jan 2011, 09:01
vielen dank für die info

also das mit dem .count funktioniert schon mal gut... schleife fällt weg!
aber die childs noch mit abzufragen versteh ich nicht so ganz.
  Mit Zitat antworten Zitat
Antwort Antwort


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 20:43 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz