XmlEntityLoader.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "config.h"
00031
00032 #include "XmlEntityLoader.hpp"
00033
00034 #include <string>
00035
00036 #include <FilePathSearch.hpp>
00037
00038 using namespace mermaid::support::xml;
00039 using std::string;
00040 using mermaid::support::system::FilePathSearch;
00041
00042
00043
00044 xmlExternalEntityLoader XmlEntityLoader::defaultLoader_ = xmlGetExternalEntityLoader();
00045
00046
00047
00048 xmlParserInputPtr XmlEntityLoader::loaderFunction (const char * URL,
00049 const char * ID,
00050 xmlParserCtxtPtr context)
00051 {
00052 #if 0
00053 cerr << "XmlEntityLoader::loaderFunction : ";
00054 if (URL != 0) {
00055 cerr << "URL:" << URL;
00056 }
00057 if (ID != 0) {
00058 cerr << " ID:" << ID;
00059 }
00060
00061 cerr << endl;
00062 #endif
00063
00064 xmlParserInputPtr ret = defaultLoader_ (URL, ID, context);
00065
00066
00067
00068 if ( (ret == 0) & (URL != 0)) {
00069 string fileFullPath;
00070
00071 try {
00072
00073 fileFullPath = FilePathSearch::getFullPathForFile (string (URL));
00074 }
00075 catch (...) {
00076
00077
00078 string url (URL);
00079 int slashPos = url.find_last_of ("/");
00080 string fileName = url.substr (slashPos + 1);
00081
00082
00083 try {
00084 fileFullPath = FilePathSearch::getFullPathForFile (fileName);
00085 }
00086 catch (...) {
00087
00088 }
00089 }
00090
00091 ret = defaultLoader_ (fileFullPath.c_str(), ID, context);
00092 }
00093
00094 return ret;
00095 }