~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/dlls/msxml3/main.c

Version: ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 /*
  2  *    MSXML Class Factory
  3  *
  4  * Copyright 2002 Lionel Ulmer
  5  * Copyright 2005 Mike McCormack
  6  *
  7  * This library is free software; you can redistribute it and/or
  8  * modify it under the terms of the GNU Lesser General Public
  9  * License as published by the Free Software Foundation; either
 10  * version 2.1 of the License, or (at your option) any later version.
 11  *
 12  * This library is distributed in the hope that it will be useful,
 13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 15  * Lesser General Public License for more details.
 16  *
 17  * You should have received a copy of the GNU Lesser General Public
 18  * License along with this library; if not, write to the Free Software
 19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 20  */
 21 
 22 #include "config.h"
 23 #include "wine/port.h"
 24 
 25 #define COBJMACROS
 26 
 27 #include <stdarg.h>
 28 #include "windef.h"
 29 #include "winbase.h"
 30 #include "winuser.h"
 31 #include "ole2.h"
 32 #include "msxml.h"
 33 #include "msxml2.h"
 34 
 35 #include "wine/unicode.h"
 36 #include "wine/debug.h"
 37 #include "wine/library.h"
 38 
 39 #include "msxml_private.h"
 40 
 41 WINE_DEFAULT_DEBUG_CHANNEL(msxml);
 42 
 43 #ifdef HAVE_LIBXML2
 44 
 45 /* Support for loading xml files from a Wine Windows drive */
 46 static int wineXmlMatchCallback (char const * filename)
 47 {
 48     int nRet = 0;
 49 
 50     TRACE("%s\n", filename);
 51 
 52     /*
 53      * We will deal with loading XML files from the file system
 54      *   We only care about files that linux cannot find.
 55      *    e.g. C:,D: etc
 56      */
 57     if(isalpha(filename[0]) && filename[1] == ':')
 58         nRet = 1;
 59 
 60     return nRet;
 61 }
 62 
 63 static void *wineXmlOpenCallback (char const * filename)
 64 {
 65     BSTR sFilename = bstr_from_xmlChar( (xmlChar*)filename);
 66     HANDLE hFile;
 67 
 68     TRACE("%s\n", debugstr_w(sFilename));
 69 
 70     hFile = CreateFileW(sFilename, GENERIC_READ,FILE_SHARE_READ, NULL,
 71                        OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL, NULL);
 72     if(hFile == INVALID_HANDLE_VALUE) hFile = 0;
 73     SysFreeString(sFilename);
 74     return hFile;
 75 }
 76 
 77 static int wineXmlReadCallback(void * context, char * buffer, int len)
 78 {
 79     DWORD dwBytesRead;
 80 
 81     TRACE("%p %s %d\n", context, buffer, len);
 82 
 83     if ((context == NULL) || (buffer == NULL))
 84         return(-1);
 85 
 86     if(!ReadFile( context, buffer,len, &dwBytesRead, NULL))
 87     {
 88         ERR("Failed to read file\n");
 89         return -1;
 90     }
 91 
 92     TRACE("Read %d\n", dwBytesRead);
 93 
 94     return dwBytesRead;
 95 }
 96 
 97 static int wineXmlFileCloseCallback (void * context)
 98 {
 99     return CloseHandle(context) ? 0 : -1;
100 }
101 
102 #endif
103 
104 
105 HRESULT WINAPI DllCanUnloadNow(void)
106 {
107     FIXME("\n");
108     return S_FALSE;
109 }
110 
111 
112 void* libxslt_handle = NULL;
113 #ifdef SONAME_LIBXSLT
114 # define DECL_FUNCPTR(f) typeof(f) * p##f = NULL
115 DECL_FUNCPTR(xsltApplyStylesheet);
116 DECL_FUNCPTR(xsltCleanupGlobals);
117 DECL_FUNCPTR(xsltFreeStylesheet);
118 DECL_FUNCPTR(xsltParseStylesheetDoc);
119 # undef MAKE_FUNCPTR
120 #endif
121 
122 static void init_libxslt(void)
123 {
124 #ifdef SONAME_LIBXSLT
125     void (*pxsltInit)(void); /* Missing in libxslt <= 1.1.14 */
126 
127     libxslt_handle = wine_dlopen(SONAME_LIBXSLT, RTLD_NOW, NULL, 0);
128     if (!libxslt_handle)
129         return;
130 
131 #define LOAD_FUNCPTR(f, needed) if ((p##f = wine_dlsym(libxslt_handle, #f, NULL, 0)) == NULL && needed) { WARN("Can't find symbol %s\n", #f); goto sym_not_found; }
132     LOAD_FUNCPTR(xsltInit, 0);
133     LOAD_FUNCPTR(xsltApplyStylesheet, 1);
134     LOAD_FUNCPTR(xsltCleanupGlobals, 1);
135     LOAD_FUNCPTR(xsltFreeStylesheet, 1);
136     LOAD_FUNCPTR(xsltParseStylesheetDoc, 1);
137 #undef LOAD_FUNCPTR
138 
139     if (pxsltInit)
140         pxsltInit();
141     return;
142 
143  sym_not_found:
144     wine_dlclose(libxslt_handle, NULL, 0);
145     libxslt_handle = NULL;
146 #endif
147 }
148 
149 
150 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
151 {
152     switch(fdwReason)
153     {
154     case DLL_PROCESS_ATTACH:
155 #ifdef HAVE_LIBXML2
156         xmlInitParser();
157 
158         /* Set the default indent character to a single tab,
159            for this thread and as default for new threads */
160         xmlTreeIndentString = "\t";
161         xmlThrDefTreeIndentString("\t");
162 
163          /* Register callbacks for loading XML files */
164         if(xmlRegisterInputCallbacks(wineXmlMatchCallback, wineXmlOpenCallback,
165                             wineXmlReadCallback, wineXmlFileCloseCallback) == -1)
166             WARN("Failed to register callbacks\n");
167 
168 #endif
169         init_libxslt();
170         DisableThreadLibraryCalls(hInstDLL);
171         break;
172     case DLL_PROCESS_DETACH:
173 #ifdef SONAME_LIBXSLT
174         if (libxslt_handle)
175         {
176             pxsltCleanupGlobals();
177             wine_dlclose(libxslt_handle, NULL, 0);
178             libxslt_handle = NULL;
179         }
180 #endif
181 #ifdef HAVE_LIBXML2
182         /* Restore default Callbacks */
183         xmlCleanupInputCallbacks();
184         xmlRegisterDefaultInputCallbacks();
185 
186         xmlCleanupParser();
187 #endif
188         release_typelib();
189         break;
190     }
191     return TRUE;
192 }
193 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.