osaf/tools/safimm/immcfg/imm_cfg.c         |   29 +++-
 osaf/tools/safimm/immcfg/imm_import.cc     |  218 ++++++++++++++++++++++++++--
 osaf/tools/safimm/immdump/imm_dumper.cc    |  172 +++++++++++++++++++++-
 osaf/tools/safimm/immdump/imm_dumper.hh    |    2 +
 osaf/tools/safimm/immdump/imm_xmlw_dump.cc |   11 +
 osaf/tools/safimm/immlist/Makefile.am      |    4 +
 osaf/tools/safimm/immlist/imm_list.c       |  192 +++++++++++++++++++++++++-
 7 files changed, 597 insertions(+), 31 deletions(-)


For forwards compatibility, OpenSAF schema, where unknown attribute flags are 
defined, must be provided to IMM tools (immcfg, immlist, immfind) using -X flag.
If immload finds unknown attribute flag, immload will try to find the attribute 
flag in the schema defined in the top element of the loading IMM XML file.

diff --git a/osaf/tools/safimm/immcfg/imm_cfg.c 
b/osaf/tools/safimm/immcfg/imm_cfg.c
--- a/osaf/tools/safimm/immcfg/imm_cfg.c
+++ b/osaf/tools/safimm/immcfg/imm_cfg.c
@@ -80,7 +80,8 @@ typedef enum {
 
 // Interface functions which implement -f and -L options (imm_import.cc)
 int importImmXML(char* xmlfileC, char* adminOwnerName, int verbose, int 
ccb_safe,
-               SaImmHandleT *immHandle, SaImmAdminOwnerHandleT *ownerHandle, 
SaImmCcbHandleT *ccbHandle, int mode);
+               SaImmHandleT *immHandle, SaImmAdminOwnerHandleT *ownerHandle,
+               SaImmCcbHandleT *ccbHandle, int mode, const char *xsdPath);
 int validateImmXML(const char *xmlfile, int verbose, int mode);
 static int imm_operation(int argc, char *argv[]);
 
@@ -129,6 +130,7 @@ static void usage(const char *progname)
        printf("\t--admin-owner-clear\n");
        printf("\t--ccb-apply (only in a transaction mode)\n");
        printf("\t--ccb-abort (only in a transaction mode)\n");
+       printf("\t-X, --xsd <path_to_schema.xsd>\n");
 
        printf("\nEXAMPLE\n");
        printf("\timmcfg -a saAmfNodeSuFailoverMax=7 
safAmfNode=Node01,safAmfCluster=1\n");
@@ -160,6 +162,10 @@ static void usage(const char *progname)
        printf("\timmcfg\n");
        printf("\t\tRunning immcfg in explicit commit mode where immcfg accepts 
immcfg commands from command line\n");
        printf("\t\tCtrl+D - commit changes and exit, Ctrl+C - abort CCB and 
exit\n");
+       printf("\timmcfg -X /etc/opensaf/schema.xsd -f imm.xml\n");
+       printf("\t\timmcfg will load unsupported attribute flags in the current 
OpenSAF version from /etc/opensaf/schema.xsd, and use them to successfully 
import imm.xml");
+       printf("\timmcfg -X /etc/opensaf -f imm.xml\n");
+       printf("\t\timmcfg will load unsupported attribute flags in the current 
OpenSAF version from the schema specified in imm.xml which is stored in 
/etc/opensaf, and use loaded flags to successfully import imm.xml");
 }
 
 /* signal handler for SIGALRM */
@@ -1093,6 +1099,7 @@ static int imm_operation(int argc, char 
                {"admin-owner-clear", no_argument, NULL, 0},
                {"ccb-apply", no_argument, NULL, 0},
                {"ccb-abort", no_argument, NULL, 0},
+               {"xsd", required_argument, NULL, 'X'},
                {0, 0, 0, 0}
        };
        SaAisErrorT error;
@@ -1115,9 +1122,11 @@ static int imm_operation(int argc, char 
        unsigned long timeoutVal = 60;
        attr_notify_t attrNotify = NOTIFY_UNDEFINED;
 
+       char *xsdPath = NULL;
+
        while (1) {
                int option_index = 0;
-               c = getopt_long(argc, argv, "a:c:f:t:dhmvuL:o:", long_options, 
&option_index);
+               c = getopt_long(argc, argv, "a:c:f:t:dhmvuL:o:X:", 
long_options, &option_index);
 
                if (c == -1)    /* have all command-line options have been 
parsed? */
                        break;
@@ -1225,6 +1234,16 @@ static int imm_operation(int argc, char 
                        adminOwnerName = 
(SaImmAdminOwnerNameT)malloc(strlen(optarg) + 1);
                        strcpy(adminOwnerName, optarg);
                        break;
+               case 'X':
+                       if(xsdPath) {
+                               fprintf(stderr, "XSD path is already set\n");
+                               if(transaction_mode)
+                                       return -1;
+                               else
+                                       exit(EXIT_FAILURE);
+                       }
+                       xsdPath = strdup(optarg);
+                       break;
                default:
                        fprintf(stderr, "Try '%s --help' for more 
information\n", argv[0]);
                        if(transaction_mode)
@@ -1270,7 +1289,7 @@ static int imm_operation(int argc, char 
        if (op == LOAD_IMMFILE) {
                VERBOSE_INFO("importImmXML(xmlFilename=%s, verbose=%d)\n", 
xmlFilename, verbose);
                rc = importImmXML(xmlFilename, adminOwnerName, verbose, 
ccb_safe,
-                               &immHandle, &ownerHandle, &ccbHandle, 
transaction_mode);
+                               &immHandle, &ownerHandle, &ccbHandle, 
transaction_mode, xsdPath);
                if(transaction_mode) {
                        if(rc) {
                                fprintf(stderr, "CCB is aborted\n");
@@ -1478,6 +1497,10 @@ static int imm_operation(int argc, char 
                        }
                }
        }
+       if(xsdPath) {
+               free(xsdPath);
+               xsdPath = NULL;
+       }
 
        return rc;
 }
diff --git a/osaf/tools/safimm/immcfg/imm_import.cc 
b/osaf/tools/safimm/immcfg/imm_import.cc
--- a/osaf/tools/safimm/immcfg/imm_import.cc
+++ b/osaf/tools/safimm/immcfg/imm_import.cc
@@ -21,6 +21,8 @@
 #include <set>
 #include <string>
 #include <libxml/parser.h>
+#include <libxml/tree.h>
+#include <libxml/xpath.h>
 #include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -28,6 +30,8 @@
 #include <assert.h>
 #include <syslog.h>
 #include <configmake.h>
+#include <sys/stat.h>
+#include <errno.h>
 
 #include <saAis.h>
 #include <saImmOm.h>
@@ -59,7 +63,8 @@ static char base64_dec_table[] = {
 extern "C"
 {
        int importImmXML(char* xmlfileC, char* adminOwnerName, int verbose, int 
ccb_safe,
-                       SaImmHandleT *immHandle, SaImmAdminOwnerHandleT 
*ownerHandle, SaImmCcbHandleT *ccbHandle, int mode);
+                       SaImmHandleT *immHandle, SaImmAdminOwnerHandleT 
*ownerHandle,
+                       SaImmCcbHandleT *ccbHandle, int mode, const char 
*xsdPath);
        int validateImmXML(const char *xmlfile, int verbose, int mode);
 }
 
@@ -143,6 +148,21 @@ typedef struct ParserStateStruct {
        int parsingStatus;              /* 0 = ok */
 } ParserState;
 
+bool isXsdLoaded = false;
+static const char *imm_xsd_file;
+typedef std::map<std::string, SaImmAttrFlagsT> AttrFlagMap;
+AttrFlagMap attrFlagMap;
+
+static SaImmAttrFlagsT attrFlagMask = (SA_IMM_ATTR_RUNTIME
+               | SA_IMM_ATTR_CONFIG
+               | SA_IMM_ATTR_MULTI_VALUE
+               | SA_IMM_ATTR_WRITABLE
+               | SA_IMM_ATTR_INITIALIZED
+               | SA_IMM_ATTR_PERSISTENT
+               | SA_IMM_ATTR_CACHED
+               | SA_IMM_ATTR_NOTIFY
+               | SA_IMM_ATTR_NO_DUPLICATES
+               | SA_IMM_ATTR_NO_DANGLING);
 
 /* Prototypes */
 
@@ -1225,6 +1245,160 @@ static inline bool isBase64Encoded(const
        return isB64;
 }
 
+static inline char *getAttrValue(xmlAttributePtr attr) {
+       if(!attr || !attr->children) {
+               return NULL;
+       }
+
+       return (char *)attr->children->content;
+}
+
+static bool loadXsd(const xmlChar** attrs) {
+       if(!imm_xsd_file) {
+               return true;
+       }
+
+       // Check if schema path exist
+       struct stat st;
+       if(stat(imm_xsd_file, &st)) {
+               if(errno == ENOENT) {
+                       LOG_ER("%s does not exist", imm_xsd_file);
+               } else {
+                       LOG_ER("stat of %s return error: %d", imm_xsd_file, 
errno);
+               }
+
+               return false;
+       }
+       // It should be a file or a directory
+       if(!S_ISREG(st.st_mode) && !S_ISDIR(st.st_mode)) {
+               LOG_ER("%s is not a file or directory", imm_xsd_file);
+               return false;
+       }
+
+       std::string xsdFile = imm_xsd_file;
+       if(S_ISDIR(st.st_mode)) {
+               // Schema path is a directory, so we shall add a schema file 
from XML file
+               if(xsdFile.at(xsdFile.size() - 1) != '/') {
+                       xsdFile.append("/");
+               }
+               char *xsd = (char *)getAttributeValue(attrs, (xmlChar 
*)"noNamespaceSchemaLocation");
+               if(!xsd) {
+                       // try with a namespace
+                       xsd = (char *)getAttributeValue(attrs, (xmlChar 
*)"xsi:noNamespaceSchemaLocation");
+                       if(!xsd) {
+                               LOG_ER("Schema is not defined in XML file");
+                               return false;
+                       }
+               }
+               xsdFile.append(xsd);
+
+               // Check if schema file exists and that it's a file
+               if(stat(xsdFile.c_str(), &st)) {
+                       if(errno == ENOENT) {
+                               LOG_ER("XSD file %s does not exist", 
imm_xsd_file);
+                       } else {
+                               LOG_ER("Stat of XSD file %s return error: %d", 
imm_xsd_file, errno);
+                       }
+
+                       return false;
+               }
+               if(!S_ISREG(st.st_mode)) {
+                       LOG_ER("Schema %s is not a file", xsdFile.c_str());
+                       return false;
+               }
+       }
+
+       xmlNodePtr xsdDocRoot;
+       xmlDocPtr xsdDoc = xmlParseFile(xsdFile.c_str());
+       if(!xsdDoc) {
+               return false;
+       }
+
+       bool rc = true;
+       xmlXPathContextPtr ctx = xmlXPathNewContext(xsdDoc);
+       if(!ctx) {
+               rc = false;
+               goto freedoc;
+       }
+
+       //      Add namespace of the first element
+       xsdDocRoot = xmlDocGetRootElement(xsdDoc);
+       if(xsdDocRoot->ns) {
+               ctx->namespaces = (xmlNsPtr *)malloc(sizeof(xmlNsPtr));
+               ctx->namespaces[0] = xsdDocRoot->ns;
+               ctx->nsNr = 1;
+       }
+
+       xmlXPathObjectPtr xpathObj;
+       xpathObj = xmlXPathEval((const 
xmlChar*)"/xs:schema/xs:simpleType[@name=\"attr-flags\"]/xs:restriction/xs:enumeration",
 ctx);
+       if(!xpathObj || !xpathObj->nodesetval) {
+               rc = false;
+               goto freectx;
+       }
+
+       xmlElementPtr element;
+       xmlAttributePtr attr;
+       char *id;
+       char *value;
+       int size;
+
+       size = xpathObj->nodesetval->nodeNr;
+       for(int i=0; i<size; i++) {
+               id = NULL;
+               value = NULL;
+               element = (xmlElementPtr)xpathObj->nodesetval->nodeTab[i];
+               attr = element->attributes;
+               while(attr) {
+                       if(!strcmp((char *)attr->name, "ID")) {
+                               id = getAttrValue(attr);
+                       } else if(!strcmp((char *)attr->name, "value")) {
+                               value = getAttrValue(attr);
+                       }
+
+                       if(id && value) {
+                               break;
+                       }
+
+                       attr = (xmlAttributePtr)attr->next;
+               }
+
+               if(value) {
+                       SaImmAttrFlagsT attrFlag = 0;
+
+                       if(id) {
+                               char *end;
+                               if(!strncmp(id, "0x", 2)) {
+                                       attrFlag = strtoull(id, &end, 16);
+                               } else {
+                                       attrFlag = strtoull(id, &end, 10);
+                               }
+
+                               if(*end) {
+                                       LOG_WA("INVALID ID(%s) FOR FLAG %s. 
Attribute flag is set to 0", id, value);
+                                       attrFlag = 0;
+                               }
+                       }
+
+                       if((attrFlag & ~attrFlagMask) || attrFlag == 0) {
+                               attrFlagMap[value] = attrFlag;
+                       }
+               }
+       }
+
+       isXsdLoaded = true;
+
+       xmlXPathFreeObject(xpathObj);
+freectx:
+       if(ctx->nsNr) {
+               free(ctx->namespaces);
+       }
+       xmlXPathFreeContext(ctx);
+freedoc:
+       xmlFreeDoc(xsdDoc);
+
+       return rc;
+}
+
 /**
  * This is the handler for start tags
  */
@@ -1357,6 +1531,13 @@ static void startElementHandler(void* us
                /* <imm:IMM-contents> */
        } else if (strcmp((const char*)name, "imm:IMM-contents") == 0) {
                state->state[state->depth] = IMM_CONTENTS;
+               if(imm_xsd_file) {
+                       if(!loadXsd(attrs)) {
+                               LOG_ER("Failed to load XML schema", name);
+                               stopParser(state);
+                               state->parsingStatus = 1;
+                       }
+               }
        } else {
                LOG_ER("UNKNOWN TAG! (%s)", name);
                stopParser(state);
@@ -1773,11 +1954,11 @@ static void charactersHandler(void* user
        case FLAG:
                {
                        SaImmAttrFlagsT flg = charsToFlagsHelper(chars, 
(size_t)len);
-                       if(flg)
-                               state->attrFlags |= flg;
-                       else {
+                       if(flg == 0xffffffffffffffff) {
                                stopParser(state);
                                state->parsingStatus = 1;
+                       } else {
+                               state->attrFlags |= flg;
                        }
                }
                break;
@@ -1836,18 +2017,17 @@ static SaImmAttrFlagsT charsToFlagsHelpe
                return SA_IMM_ATTR_NO_DANGLING;
        }
 
-       /* strlen("SA_NO_DUPLICATES") == 16 (the longest flag name)
-        * A bit longer string is taken to log, max 20 characters.
-        */
-       char unknown[21];
-       if(len > 20)
-               len = 20;
-       memcpy(unknown, str, len);
-       unknown[len] = 0;
-
-       LOG_ER("UNKNOWN FLAGS, %s", unknown);
-
-       return 0;
+       std::string flag((char *)str, len);
+       if(isXsdLoaded) {
+               AttrFlagMap::iterator it = attrFlagMap.find(flag);
+               if(it != attrFlagMap.end()) {
+                       return it->second;
+               }
+       }
+
+       LOG_ER("UNKNOWN FLAGS, %s", flag.c_str());
+
+       return 0xffffffffffffffff;
 }
 
 /**
@@ -2504,7 +2684,8 @@ int loadImmXML(const char *xmlfile)
 //  The objective is to keep the code copied from imm_load.cc as close to 
original as possible
 //  to ease a future refactoring towards common codebase
 int importImmXML(char* xmlfileC, char* adminOwnerName, int verbose, int 
ccb_safe,
-               SaImmHandleT *immHandle, SaImmAdminOwnerHandleT *ownerHandle, 
SaImmCcbHandleT *ccbHandle, int mode)
+               SaImmHandleT *immHandle, SaImmAdminOwnerHandleT *ownerHandle,
+               SaImmCcbHandleT *ccbHandle, int mode, const char *xsdPath)
 {
        imm_import_adminOwnerName = adminOwnerName;
        imm_import_verbose = verbose;
@@ -2515,6 +2696,9 @@ int importImmXML(char* xmlfileC, char* a
        imm_import_ccbHandle = ccbHandle;
 
        transaction_mode = mode;
+       imm_xsd_file = xsdPath;
+       isXsdLoaded = false;
+       attrFlagMap.clear();
 
        LOG_IN("file: %s adminOwner: %s", xmlfileC, adminOwnerName);
 
diff --git a/osaf/tools/safimm/immdump/imm_dumper.cc 
b/osaf/tools/safimm/immdump/imm_dumper.cc
--- a/osaf/tools/safimm/immdump/imm_dumper.cc
+++ b/osaf/tools/safimm/immdump/imm_dumper.cc
@@ -24,16 +24,34 @@
 #include <limits.h>
 #include <libxml/parser.h>
 #include <libxml/xmlmemory.h>
+#include <libxml/xpath.h>
 #include <getopt.h>
 #include <assert.h>
 #include <libgen.h>
 #include <unistd.h>
+#include <sys/stat.h>
+#include <errno.h>
+
 
 #define XML_VERSION "1.0"
 
 /* Prototypes */
 static std::map<std::string, std::string> cacheRDNs(SaImmHandleT);
 
+AttrFlagMap attrFlagMap;
+
+static SaImmAttrFlagsT attrFlagMask = (SA_IMM_ATTR_RUNTIME
+        | SA_IMM_ATTR_CONFIG
+        | SA_IMM_ATTR_MULTI_VALUE
+        | SA_IMM_ATTR_WRITABLE
+        | SA_IMM_ATTR_INITIALIZED
+        | SA_IMM_ATTR_PERSISTENT
+        | SA_IMM_ATTR_CACHED
+        | SA_IMM_ATTR_NOTIFY
+        | SA_IMM_ATTR_NO_DUPLICATES
+        | SA_IMM_ATTR_NO_DANGLING);
+
+
 static void usage(const char *progname)
 {
     printf("\nNAME\n");
@@ -55,6 +73,9 @@ static void usage(const char *progname)
     printf("\t-p, --pbe   {<file name>}\n");
     printf("\t\tCreate an IMM database file from the current IMM state\n\n");
 
+    printf("\t-X, --xsd   {<file name>}\n");
+    printf("\t\tLoad missing data from IMM schema\n\n");
+
     printf("\nEXAMPLE\n");
     printf("\t%s /tmp/imm.xml\n", progname);
 }
@@ -71,6 +92,122 @@ static const SaImmCallbacksT callbacks =
     saImmOmAdminOperationInvokeCallback
 };
 
+static inline char *getAttrValue(xmlAttributePtr attr) {
+    if(!attr || !attr->children) {
+        return NULL;
+    }
+
+    return (char *)attr->children->content;
+}
+
+static bool loadXsd(const char *xsdFile) {
+    struct stat st;
+    if(stat(xsdFile, &st)) {
+        if(errno == ENOENT) {
+            LOG_ER("%s does not exist", xsdFile);
+        } else {
+            LOG_ER("stat of %s return error: %d", xsdFile, errno);
+        }
+
+        return false;
+    }
+    // It should be a file or a directory
+    if(!S_ISREG(st.st_mode)) {
+        LOG_ER("%s is not a file", xsdFile);
+        return false;
+    }
+
+    xmlNodePtr xsdDocRoot;
+    xmlDocPtr xsdDoc = xmlParseFile(xsdFile);
+    if(!xsdDoc) {
+        return false;
+    }
+
+    bool rc = true;
+    xmlXPathContextPtr ctx = xmlXPathNewContext(xsdDoc);
+    if(!ctx) {
+        rc = false;
+        goto freedoc;
+    }
+
+    // Add namespace of the first element
+    xsdDocRoot = xmlDocGetRootElement(xsdDoc);
+    if(xsdDocRoot->ns) {
+        ctx->namespaces = (xmlNsPtr *)malloc(sizeof(xmlNsPtr));
+        ctx->namespaces[0] = xsdDocRoot->ns;
+        ctx->nsNr = 1;
+    }
+
+    xmlXPathObjectPtr xpathObj;
+    xpathObj = xmlXPathEval((const 
xmlChar*)"/xs:schema/xs:simpleType[@name=\"attr-flags\"]/xs:restriction/xs:enumeration",
 ctx);
+    if(!xpathObj || !xpathObj->nodesetval) {
+        rc = false;
+        goto freectx;
+    }
+
+    xmlElementPtr element;
+    xmlAttributePtr attr;
+    char *id;
+    char *value;
+    int size;
+
+    size = xpathObj->nodesetval->nodeNr;
+    for(int i=0; i<size; i++) {
+        id = NULL;
+        value = NULL;
+        element = (xmlElementPtr)xpathObj->nodesetval->nodeTab[i];
+        attr = element->attributes;
+        while(attr) {
+            if(!strcmp((char *)attr->name, "ID")) {
+                id = getAttrValue(attr);
+            } else if(!strcmp((char *)attr->name, "value")) {
+                value = getAttrValue(attr);
+            }
+
+            if(id && value) {
+                break;
+            }
+
+            attr = (xmlAttributePtr)attr->next;
+        }
+
+        if(id && value) {
+            SaImmAttrFlagsT attrFlag;
+            char *end;
+            if(!strncmp(id, "0x", 2)) {
+                attrFlag = strtoull(id, &end, 16);
+            } else {
+                attrFlag = strtoull(id, &end, 10);
+            }
+
+            if(*end) {
+                LOG_WA("INVALID ID(%s) FOR FLAG %s.", id, value);
+                attrFlagMap.clear();
+                rc = false;
+                goto freexpath;
+            } else if(((attrFlag & ~attrFlagMask) || (attrFlag == 0)) &&
+                    strcmp(value, "SA_RUNTIME") && strcmp(value, "SA_CONFIG") 
&&
+                    strcmp(value, "SA_MULTI_VALUE") && strcmp(value, 
"SA_WRITABLE") &&
+                    strcmp(value, "SA_INITIALIZED") && strcmp(value, 
"SA_PERSISTENT") &&
+                    strcmp(value, "SA_CACHED") && strcmp(value, "SA_NOTIFY") &&
+                    strcmp(value, "SA_NO_DUPLICATES") && strcmp(value, 
"SA_NO_DANGLING")) {
+                attrFlagMap[value] = attrFlag;
+            }
+        }
+    }
+
+freexpath:
+    xmlXPathFreeObject(xpathObj);
+freectx:
+    if(ctx->nsNr) {
+        free(ctx->namespaces);
+    }
+    xmlXPathFreeContext(ctx);
+freedoc:
+    xmlFreeDoc(xsdDoc);
+
+    return rc;
+}
 
 /* Functions */
 int main(int argc, char* argv[])
@@ -80,6 +217,7 @@ int main(int argc, char* argv[])
         {"help", no_argument, 0, 'h'},
         {"pbe", required_argument, 0, 'p'},
         {"xmlwriter", no_argument, 0, 'x'},
+        {"xsd", required_argument, 0, 'X'},
         {0, 0, 0, 0}
     };
     SaImmHandleT           immHandle;
@@ -110,6 +248,8 @@ int main(int argc, char* argv[])
     const char* trace_label = dump_trace_label;
     ClassMap classIdMap;
     unsigned int objCount=0;
+    std::string xsd;
+    std::string schema = "SAI-AIS-IMM-XSD-A.02.13.xsd";
 
     if ((logPath = getenv("IMMSV_TRACE_PATHNAME")))
     {
@@ -128,12 +268,12 @@ int main(int argc, char* argv[])
     if (argc > 5)
     {
         printf("Usage: %s [ <xmldumpfile> ]\n", basename(argv[0]));
-       usage(basename(argv[0]));
+        usage(basename(argv[0]));
         exit(1);
     }
 
     while (1) {
-    if ((c = getopt_long(argc, argv, "hp:x:", long_options, NULL)) == -1)
+    if ((c = getopt_long(argc, argv, "hp:x:X:", long_options, NULL)) == -1)
             break;
 
             switch (c) {
@@ -143,15 +283,18 @@ int main(int argc, char* argv[])
                     break;
 
                 case 'p':
-                           pbeDumpCase = true;
-
-                   filename.append(optarg);
+                    pbeDumpCase = true;
+                    filename.append(optarg);
                     break;
 
                 case 'x':
                     filename.append(optarg);
                     break;
 
+                case 'X':
+                    xsd = optarg;
+                    break;
+
                 default:
                     fprintf(stderr, "Try '%s --help' for more information\n", 
                         argv[0]);
@@ -174,11 +317,20 @@ int main(int argc, char* argv[])
         exit(1);
     }
 
+    if(xsd.size() > 0) {
+        if(!loadXsd(xsd.c_str())) {
+            std::cerr << "Failed to load schema - exiting\n";
+            exit(1);
+        }
+
+        schema = basename((char *)xsd.c_str());
+    }
+
     if(pbeDumpCase) {
        /* Generate PBE database file from current IMM state */
 
         if(filename.empty()) {
-           filename.append(argv[1]);
+            filename.append(argv[optind]);
         }
 
        std::cout <<
@@ -224,7 +376,7 @@ int main(int argc, char* argv[])
                filename.append("/proc/self/fd/1");
        } else {
                if(filename.empty())
-                       filename.append(argv[1]);
+                filename.append(argv[optind]);
                std::cout << "Dumping current IMM state to XML file " << 
filename <<
                                " using XMLWriter" << std::endl;
        }
@@ -266,9 +418,9 @@ int main(int argc, char* argv[])
 
         if(xmlTextWriterWriteAttributeNS(writer,
                 (xmlChar*)"xsi",(xmlChar *)"noNamespaceSchemaLocation", NULL,
-                (xmlChar*)"SAI-AIS-IMM-XSD-A.02.13.xsd") < 0) {
-               std::cout <<"Error at xmlTextWriterWriteAttribute (attribute 
2)" << std::endl;
-               exit(1);
+                (xmlChar*)schema.c_str()) < 0) {
+            std::cout <<"Error at xmlTextWriterWriteAttribute (attribute 2)" 
<< std::endl;
+            exit(1);
         }
 
         if(xmlTextWriterWriteAttributeNS(writer, (xmlChar*) "xmlns",(xmlChar 
*)"xs", NULL,
diff --git a/osaf/tools/safimm/immdump/imm_dumper.hh 
b/osaf/tools/safimm/immdump/imm_dumper.hh
--- a/osaf/tools/safimm/immdump/imm_dumper.hh
+++ b/osaf/tools/safimm/immdump/imm_dumper.hh
@@ -21,6 +21,8 @@
 #include "immpbe_dump.hh"
 
 
+typedef std::map<std::string, SaImmAttrFlagsT> AttrFlagMap;
+
 /* XML-Writer related functions */
 
 void dumpClassesXMLw(SaImmHandleT, xmlTextWriterPtr);
diff --git a/osaf/tools/safimm/immdump/imm_xmlw_dump.cc 
b/osaf/tools/safimm/immdump/imm_xmlw_dump.cc
--- a/osaf/tools/safimm/immdump/imm_xmlw_dump.cc
+++ b/osaf/tools/safimm/immdump/imm_xmlw_dump.cc
@@ -23,6 +23,7 @@
 #include <osaf_unicode.h>
 
 
+extern AttrFlagMap attrFlagMap;
 
 /* Functions */
 
@@ -517,6 +518,16 @@ void flagsToXMLw(SaImmAttrDefinitionT_2*
         }   
     }
 
+    AttrFlagMap::iterator it;
+    for(it = attrFlagMap.begin(); it != attrFlagMap.end(); ++it) {
+       if(flags & it->second) {
+            if(xmlTextWriterWriteElement(writer, (xmlChar*) "flag",
+                    (xmlChar*) it->first.c_str()) < 0 ) {
+                std::cout << "Error at xmlTextWriterWriteElement (flag - " << 
it->first << ")" << std::endl;
+                exit(1);
+            }
+       }
+    }
 }
 
 void typeToXMLw(SaImmAttrDefinitionT_2* p, xmlTextWriterPtr writer)
diff --git a/osaf/tools/safimm/immlist/Makefile.am 
b/osaf/tools/safimm/immlist/Makefile.am
--- a/osaf/tools/safimm/immlist/Makefile.am
+++ b/osaf/tools/safimm/immlist/Makefile.am
@@ -20,6 +20,8 @@ MAINTAINERCLEANFILES = Makefile.in
 
 bin_PROGRAMS = immlist
 
+immlist_CFLAGS = $(AM_CFLAGS) @XML2_CFLAGS@
+
 immlist_CPPFLAGS = \
        $(AM_CPPFLAGS) \
        -I$(top_srcdir)/osaf/tools/safimm/include \
@@ -29,6 +31,8 @@ immlist_SOURCES = \
        $(top_srcdir)/osaf/tools/safimm/src/immutil.c \
        imm_list.c
 
+immlist_LDFLAGS = @XML2_LIBS@
+
 immlist_LDADD = \
        $(top_builddir)/osaf/libs/core/libopensaf_core.la \
        $(top_builddir)/osaf/libs/saf/libSaImm/libSaImmOm.la \
diff --git a/osaf/tools/safimm/immlist/imm_list.c 
b/osaf/tools/safimm/immlist/imm_list.c
--- a/osaf/tools/safimm/immlist/imm_list.c
+++ b/osaf/tools/safimm/immlist/imm_list.c
@@ -35,6 +35,10 @@
 #include <libgen.h>
 #include <time.h>
 #include <signal.h>
+#include <sys/stat.h>
+#include <libxml/parser.h>
+#include <libxml/xmlmemory.h>
+#include <libxml/xpath.h>
 
 #include <saAis.h>
 #include <saImmOm.h>
@@ -44,6 +48,24 @@
 static SaVersionT immVersion = { 'A', 2, 11 };
 extern struct ImmutilWrapperProfile immutilWrapperProfile;
 
+typedef struct AttrFlagList {
+       char *name;
+       SaImmAttrFlagsT value;
+       struct AttrFlagList *next;
+} AttrFlagList;
+AttrFlagList *attrFlagList = NULL;
+
+static SaImmAttrFlagsT attrFlagMask = (SA_IMM_ATTR_RUNTIME
+               | SA_IMM_ATTR_CONFIG
+               | SA_IMM_ATTR_MULTI_VALUE
+               | SA_IMM_ATTR_WRITABLE
+               | SA_IMM_ATTR_INITIALIZED
+               | SA_IMM_ATTR_PERSISTENT
+               | SA_IMM_ATTR_CACHED
+               | SA_IMM_ATTR_NOTIFY
+               | SA_IMM_ATTR_NO_DUPLICATES
+               | SA_IMM_ATTR_NO_DANGLING);
+
 /* signal handler for SIGALRM */ 
 void sigalarmh(int sig) 
 {
@@ -70,6 +92,7 @@ static void usage(const char *progname)
        printf("\t-p, --pretty-print=<yes|no> - select pretty print, default 
yes\n");
        printf("\t-t, --timeout <sec>\n");
        printf("\t\tutility timeout in seconds\n");
+       printf("\t-X, --xsd <schema.xsd>\n");
 
        printf("\nEXAMPLE\n");
        printf("\timmlist -a saAmfApplicationAdminState safApp=OpenSAF\n");
@@ -354,6 +377,14 @@ static void display_class_definition(con
                                printf(", NO_DUPLICATES");
                }
 
+               AttrFlagList *attrFlag = attrFlagList;
+               while(attrFlag) {
+                       if(attrFlag->value & attrDefinition->attrFlags) {
+                               printf(", %s", attrFlag->name);
+                       }
+                       attrFlag = attrFlag->next;
+               }
+
                printf("}\n");
        }
 
@@ -412,6 +443,138 @@ static void display_object(const char *n
        }
 }
 
+static inline char *getAttrValue(xmlAttributePtr attr) {
+       if(!attr || !attr->children) {
+               return NULL;
+       }
+
+       return (char *)attr->children->content;
+}
+
+static int loadXsd(const char *xsdFile) {
+       struct stat st;
+       if(stat(xsdFile, &st)) {
+               if(errno == ENOENT) {
+                       fprintf(stderr, "%s does not exist", xsdFile);
+               } else {
+                       fprintf(stderr, "stat of %s return error: %d", xsdFile, 
errno);
+               }
+
+               return 0;
+       }
+       // It should be a file or a directory
+       if(!S_ISREG(st.st_mode)) {
+               fprintf(stderr, "%s is not a file", xsdFile);
+               return 0;
+       }
+
+       xmlNodePtr xsdDocRoot;
+       xmlDocPtr xsdDoc = xmlParseFile(xsdFile);
+       if(!xsdDoc) {
+               return 0;
+       }
+
+       int rc = 1;
+       xmlXPathContextPtr ctx = xmlXPathNewContext(xsdDoc);
+       if(!ctx) {
+               rc = 0;
+               goto freedoc;
+       }
+
+       //      Add namespace of the first element
+       xsdDocRoot = xmlDocGetRootElement(xsdDoc);
+       if(xsdDocRoot->ns) {
+               ctx->namespaces = (xmlNsPtr *)malloc(sizeof(xmlNsPtr));
+               ctx->namespaces[0] = xsdDocRoot->ns;
+               ctx->nsNr = 1;
+       }
+
+       xmlXPathObjectPtr xpathObj;
+       xpathObj = xmlXPathEval((const 
xmlChar*)"/xs:schema/xs:simpleType[@name=\"attr-flags\"]/xs:restriction/xs:enumeration",
 ctx);
+       if(!xpathObj || !xpathObj->nodesetval) {
+               rc = 0;
+               goto freectx;
+       }
+
+       xmlElementPtr element;
+       xmlAttributePtr attr;
+       char *id;
+       char *value;
+       int size;
+       int i;
+
+       size = xpathObj->nodesetval->nodeNr;
+       for(i=0; i<size; i++) {
+               id = NULL;
+               value = NULL;
+               element = (xmlElementPtr)xpathObj->nodesetval->nodeTab[i];
+               attr = element->attributes;
+               while(attr) {
+                       if(!strcmp((char *)attr->name, "ID")) {
+                               id = getAttrValue(attr);
+                       } else if(!strcmp((char *)attr->name, "value")) {
+                               value = getAttrValue(attr);
+                       }
+
+                       if(id && value) {
+                               break;
+                       }
+
+                       attr = (xmlAttributePtr)attr->next;
+               }
+
+               if(id && value) {
+                       AttrFlagList *flag;
+                       SaImmAttrFlagsT attrFlag;
+                       char *end;
+                       if(!strncmp(id, "0x", 2)) {
+                               attrFlag = strtoull(id, &end, 16);
+                       } else {
+                               attrFlag = strtoull(id, &end, 10);
+                       }
+
+                       if(*end) {
+                               fprintf(stdout, "INVALID ID(%s) FOR FLAG %s.", 
id, value);
+
+                               AttrFlagList *tmp;
+                               flag = attrFlagList;
+                               while(flag) {
+                                       tmp = flag->next;
+                                       free(flag->name);
+                                       free(flag);
+                                       flag = tmp;
+                               }
+                               attrFlagList = NULL;
+                               rc = 0;
+                               goto freexpath;
+                       } else if(((attrFlag & ~attrFlagMask) || (attrFlag == 
0)) &&
+                                       strcmp(value, "SA_RUNTIME") && 
strcmp(value, "SA_CONFIG") &&
+                                       strcmp(value, "SA_MULTI_VALUE") && 
strcmp(value, "SA_WRITABLE") &&
+                                       strcmp(value, "SA_INITIALIZED") && 
strcmp(value, "SA_PERSISTENT") &&
+                                       strcmp(value, "SA_CACHED") && 
strcmp(value, "SA_NOTIFY") &&
+                                       strcmp(value, "SA_NO_DUPLICATES") && 
strcmp(value, "SA_NO_DANGLING")) {
+                               flag = (AttrFlagList 
*)malloc(sizeof(AttrFlagList));
+                               flag->name = strdup(value);
+                               flag->value = attrFlag;
+                               flag->next = attrFlagList;
+                               attrFlagList = flag;
+                       }
+               }
+       }
+
+freexpath:
+       xmlXPathFreeObject(xpathObj);
+freectx:
+       if(ctx->nsNr) {
+               free(ctx->namespaces);
+       }
+       xmlXPathFreeContext(ctx);
+freedoc:
+       xmlFreeDoc(xsdDoc);
+
+       return rc;
+}
+
 int main(int argc, char *argv[])
 {
        int c;
@@ -421,6 +584,7 @@ int main(int argc, char *argv[])
                {"timeout", required_argument, 0, 't'},
                {"help", no_argument, 0, 'h'},
                {"pretty-print", required_argument, 0, 'p'},
+               {"xsd", required_argument, 0, 'X'},
                {0, 0, 0, 0}
        };
        SaAisErrorT error;
@@ -432,9 +596,10 @@ int main(int argc, char *argv[])
        int class_desc_print = 0;
        int rc = EXIT_SUCCESS;
        unsigned long timeoutVal = 60;
+       char *xsd = NULL;
 
        while (1) {
-               c = getopt_long(argc, argv, "a:p:t:ch", long_options, NULL);
+               c = getopt_long(argc, argv, "a:p:t:cX:h", long_options, NULL);
 
                if (c == -1)    /* have all command-line options have been 
parsed? */
                        break;
@@ -460,6 +625,13 @@ int main(int argc, char *argv[])
                        if (!strcasecmp(optarg, "no"))
                                pretty_print = 0;
                        break;
+               case 'X':
+                       if(xsd) {
+                               fprintf(stderr, "Cannot set more then one 
schema\n");
+                               exit(EXIT_FAILURE);
+                       }
+                       xsd = strdup(optarg);
+                       break;
                default:
                        fprintf(stderr, "Try '%s --help' for more 
information\n", argv[0]);
                        exit(EXIT_FAILURE);
@@ -488,6 +660,13 @@ int main(int argc, char *argv[])
                goto done;
        }
 
+       if(xsd) {
+               if(!loadXsd(xsd)) {
+                       rc = EXIT_FAILURE;
+                       goto done;
+               }
+       }
+
        if (class_desc_print) {
                while (optind < argc) {
                        display_class_definition(argv[optind], immHandle);
@@ -516,6 +695,17 @@ int main(int argc, char *argv[])
        }
 
 done_finalize:
+
+       if(attrFlagList) {
+               AttrFlagList *attrFlag;
+               while(attrFlagList) {
+                       attrFlag = attrFlagList->next;
+                       free(attrFlagList->name);
+                       free(attrFlagList);
+                       attrFlagList = attrFlag;
+               }
+       }
+
        error = immutil_saImmOmFinalize(immHandle);
        if (SA_AIS_OK != error) {
                fprintf(stderr, "error - saImmOmFinalize FAILED: %s\n", 
saf_error(error));

------------------------------------------------------------------------------
Managing the Performance of Cloud-Based Applications
Take advantage of what the Cloud has to offer - Avoid Common Pitfalls.
Read the Whitepaper.
http://pubads.g.doubleclick.net/gampad/clk?id=121054471&iu=/4140/ostg.clktrk
_______________________________________________
Opensaf-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/opensaf-devel

Reply via email to