Added new arguments to configuration::find_parameter() to allow for a list of
[AXE.git] / src / configuration.cpp
index 9f2eda8..18046b4 100644 (file)
@@ -6,7 +6,7 @@
 ***********************
 **      FILE NAME      : configuration.cpp
 **      SYSTEM NAME    : AXE - Andromeda X-windows Encapsulation
-**      VERSION NUMBER : $Revision: 1.5 $
+**      VERSION NUMBER : $Revision: 1.6 $
 **
 **  DESCRIPTION      :  Implementation of configuration class
 **
 ********************************
 **      ORIGINAL AUTHOR : Arjen Baart - arjen@andromeda.nl
 **      CREATION DATE   : Jul 23, 2002
-**      LAST UPDATE     : Nov 22, 2002
+**      LAST UPDATE     : Apr 13, 2007
 **      MODIFICATIONS   : 
 **************************************************************************/
 
 /*****************************
    $Log: configuration.cpp,v $
-   Revision 1.5  2003-03-29 07:19:37  arjen
+   Revision 1.6  2007-05-04 14:01:22  arjen
+   Added new arguments to configuration::find_parameter() to allow for a list of
+   sections and a list of parameters in sections.
+   The new arguments are section index and parameter index (default = 0).
+
+   Revision 1.5  2003/03/29 07:19:37  arjen
    Bugfix: Do not read the config file in the home
    directory if the HOME environment variable doesn't exist
 
@@ -45,7 +50,7 @@
 
 *****************************/
 
-static const char *RCSID = "$Id: configuration.cpp,v 1.5 2003-03-29 07:19:37 arjen Exp $";
+static const char *RCSID = "$Id: configuration.cpp,v 1.6 2007-05-04 14:01:22 arjen Exp $";
 
 #include <fcntl.h>
 #include <unistd.h>
@@ -146,11 +151,11 @@ bool configuration::read(const String name)
 **  VARS CHANGED   :
 **  FUNCTIONS USED :
 **  SEE ALSO       :
-**  LAST MODIFIED  : Jul 24, 2002
+**  LAST MODIFIED  : Apr 13, 2007
 **=========================================================================
 */
 
-xmlNodePtr configuration::xmlFindTag(xmlNodePtr node, const String tag)
+xmlNodePtr configuration::xmlFindTag(xmlNodePtr node, const String tag, int n)
 {
    xmlNodePtr   element = NULL;
 
@@ -158,7 +163,11 @@ xmlNodePtr configuration::xmlFindTag(xmlNodePtr node, const String tag)
    {
       if (node->type == XML_ELEMENT_NODE && tag == (char *)node->name)
       {
-         element = node;
+         if (n == 0)
+         {
+            element = node;
+         }
+         n--;
       }
       node = node->next;
    }
@@ -178,11 +187,11 @@ xmlNodePtr configuration::xmlFindTag(xmlNodePtr node, const String tag)
 **  VARS CHANGED   :
 **  FUNCTIONS USED :
 **  SEE ALSO       :
-**  LAST MODIFIED  : Nov 02, 2002
+**  LAST MODIFIED  : Apr 13, 2007
 **=========================================================================
 */
 
-String configuration::find_parameter(const String section, const String parameter)
+String configuration::find_parameter(const String section, const String parameter, int sec_n, int param_n)
 {
    xmlNodePtr     root_node;
    xmlNodePtr     section_node;
@@ -195,10 +204,10 @@ String configuration::find_parameter(const String section, const String paramete
    if (system)
    {
       root_node    = xmlDocGetRootElement(system);
-      section_node = xmlFindTag(root_node->children, section);
+      section_node = xmlFindTag(root_node->children, section, sec_n);
       if (section_node != NULL)
       {
-         param_node = xmlFindTag(section_node->children, parameter);
+         param_node = xmlFindTag(section_node->children, parameter, param_n);
          if (param_node != NULL)
          {
             param_node = param_node->children;
@@ -216,10 +225,10 @@ String configuration::find_parameter(const String section, const String paramete
    if (user)
    {
       root_node    = xmlDocGetRootElement(user);
-      section_node = xmlFindTag(root_node->children, section);
+      section_node = xmlFindTag(root_node->children, section, sec_n);
       if (section_node != NULL)
       {
-         param_node = xmlFindTag(section_node->children, parameter);
+         param_node = xmlFindTag(section_node->children, parameter, param_n);
          if (param_node != NULL)
          {
             param_node = param_node->children;