npwin.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:11k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: NPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Netscape Public License
  6.  * Version 1.1 (the "License"); you may not use this file except in
  7.  * compliance with the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/NPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Communicator client code.
  16.  *
  17.  * The Initial Developer of the Original Code is 
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or 
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the NPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the NPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37. #include "config.h"
  38. #ifdef HAVE_MOZILLA_CONFIG_H
  39. #   include <mozilla-config.h>
  40. #endif
  41. #include "nscore.h"
  42. #include "npapi.h"
  43. #include "npupp.h"
  44. //\// DEFINE
  45. #define NP_EXPORT
  46. //\// GLOBAL DATA
  47. NPNetscapeFuncs* g_pNavigatorFuncs = 0;
  48. JRIGlobalRef Private_GetJavaClass(void);
  49. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  50. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  51. // Private_GetJavaClass (global function)
  52. //
  53. // Given a Java class reference (thru NPP_GetJavaClass) inform JRT
  54. // of this class existence
  55. //
  56. JRIGlobalRef
  57. Private_GetJavaClass(void)
  58. {
  59.     jref clazz = NPP_GetJavaClass();
  60.     if (clazz) {
  61. JRIEnv* env = NPN_GetJavaEnv();
  62. return JRI_NewGlobalRef(env, clazz);
  63.     }
  64.     return NULL;
  65. }
  66. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  67. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  68. // PLUGIN DLL entry points   
  69. //
  70. // These are the Windows specific DLL entry points. They must be exoprted
  71. //
  72. // we need these to be global since we have to fill one of its field
  73. // with a data (class) which requires knowlwdge of the navigator
  74. // jump-table. This jump table is known at Initialize time (NP_Initialize)
  75. // which is called after NP_GetEntryPoint
  76. static NPPluginFuncs* g_pluginFuncs;
  77. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  78. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  79. // NP_GetEntryPoints
  80. //
  81. // fills in the func table used by Navigator to call entry points in
  82. //  plugin DLL.  Note that these entry points ensure that DS is loaded
  83. //  by using the NP_LOADDS macro, when compiling for Win16
  84. //
  85. #ifdef __MINGW32__
  86. extern "C" __declspec(dllexport) NPError WINAPI
  87. #else
  88. NPError WINAPI NP_EXPORT
  89. #endif
  90. NP_GetEntryPoints(NPPluginFuncs* pFuncs)
  91. {
  92.     // trap a NULL ptr 
  93.     if(pFuncs == NULL)
  94.         return NPERR_INVALID_FUNCTABLE_ERROR;
  95.     // if the plugin's function table is smaller than the plugin expects,
  96.     // then they are incompatible, and should return an error 
  97.     pFuncs->version       = (NP_VERSION_MAJOR << 8) | NP_VERSION_MINOR;
  98.     pFuncs->newp          = NPP_New;
  99.     pFuncs->destroy       = NPP_Destroy;
  100.     pFuncs->setwindow     = NPP_SetWindow;
  101.     pFuncs->newstream     = NPP_NewStream;
  102.     pFuncs->destroystream = NPP_DestroyStream;
  103.     pFuncs->asfile        = NPP_StreamAsFile;
  104.     pFuncs->writeready    = NPP_WriteReady;
  105.     pFuncs->write         = NPP_Write;
  106.     pFuncs->print         = NPP_Print;
  107.     pFuncs->getvalue   = NPP_GetValue;
  108.     pFuncs->event         = 0;       /// reserved 
  109. g_pluginFuncs   = pFuncs;
  110.     return NPERR_NO_ERROR;
  111. }
  112. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  113. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  114. // NP_Initialize
  115. //
  116. // called immediately after the plugin DLL is loaded
  117. //
  118. #ifdef __MINGW32__
  119. extern "C" __declspec(dllexport) NPError WINAPI
  120. #else
  121. NPError WINAPI NP_EXPORT 
  122. #endif
  123. NP_Initialize(NPNetscapeFuncs* pFuncs)
  124. {
  125.     // trap a NULL ptr 
  126.     if(pFuncs == NULL)
  127.         return NPERR_INVALID_FUNCTABLE_ERROR;
  128.     g_pNavigatorFuncs = pFuncs; // save it for future reference 
  129.     // if the plugin's major ver level is lower than the Navigator's,
  130.     // then they are incompatible, and should return an error 
  131.     if(HIBYTE(pFuncs->version) > NP_VERSION_MAJOR)
  132.         return NPERR_INCOMPATIBLE_VERSION_ERROR;
  133. // We have to defer these assignments until g_pNavigatorFuncs is set
  134.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  135. if( navMinorVers >= NPVERS_HAS_NOTIFICATION ) {
  136. g_pluginFuncs->urlnotify = NPP_URLNotify;
  137. }
  138. if( navMinorVers >= NPVERS_HAS_LIVECONNECT ) {
  139. g_pluginFuncs->javaClass = Private_GetJavaClass();
  140. }
  141. // NPP_Initialize is a standard (cross-platform) initialize function.
  142.     return NPP_Initialize();
  143. }
  144. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  145. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  146. // NP_Shutdown
  147. //
  148. // called immediately before the plugin DLL is unloaded.
  149. // This functio shuold check for some ref count on the dll to see if it is
  150. // unloadable or it needs to stay in memory. 
  151. //
  152. #ifdef __MINGW32__
  153. extern "C" __declspec(dllexport) NPError WINAPI
  154. #else
  155. NPError WINAPI NP_EXPORT 
  156. #endif
  157. NP_Shutdown()
  158. {
  159.     NPP_Shutdown();
  160.     g_pNavigatorFuncs = NULL;
  161.     return NPERR_NO_ERROR;
  162. }
  163. // END - PLUGIN DLL entry points   
  164. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  165. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  166. /*    NAVIGATOR Entry points    */
  167. /* These entry points expect to be called from within the plugin.  The
  168.    noteworthy assumption is that DS has already been set to point to the
  169.    plugin's DLL data segment.  Don't call these functions from outside
  170.    the plugin without ensuring DS is set to the DLLs data segment first,
  171.    typically using the NP_LOADDS macro
  172. */
  173. /* returns the major/minor version numbers of the Plugin API for the plugin
  174.    and the Navigator
  175. */
  176. void NPN_Version(int* plugin_major, int* plugin_minor, int* netscape_major, int* netscape_minor)
  177. {
  178.     *plugin_major   = NP_VERSION_MAJOR;
  179.     *plugin_minor   = NP_VERSION_MINOR;
  180.     *netscape_major = HIBYTE(g_pNavigatorFuncs->version);
  181.     *netscape_minor = LOBYTE(g_pNavigatorFuncs->version);
  182. }
  183. NPError NPN_GetValue(NPP instance, NPNVariable variable, void *result)
  184. {
  185.     return g_pNavigatorFuncs->getvalue(instance, variable, result);
  186. }
  187. /* causes the specified URL to be fetched and streamed in
  188. */
  189. NPError NPN_GetURLNotify(NPP instance, const char *url, const char *target, void* notifyData)
  190. {
  191. int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  192. NPError err;
  193. if( navMinorVers >= NPVERS_HAS_NOTIFICATION ) {
  194. err = g_pNavigatorFuncs->geturlnotify(instance, url, target, notifyData);
  195. }
  196. else {
  197. err = NPERR_INCOMPATIBLE_VERSION_ERROR;
  198. }
  199. return err;
  200. }
  201. NPError NPN_GetURL(NPP instance, const char *url, const char *target)
  202. {
  203.     return g_pNavigatorFuncs->geturl(instance, url, target);
  204. }
  205. NPError NPN_PostURLNotify(NPP instance, const char* url, const char* window, uint32 len, const char* buf, NPBool file, void* notifyData)
  206. {
  207. int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  208. NPError err;
  209. if( navMinorVers >= NPVERS_HAS_NOTIFICATION ) {
  210. err = g_pNavigatorFuncs->posturlnotify(instance, url, window, len, buf, file, notifyData);
  211. }
  212. else {
  213. err = NPERR_INCOMPATIBLE_VERSION_ERROR;
  214. }
  215. return err;
  216. }
  217. NPError NPN_PostURL(NPP instance, const char* url, const char* window, uint32 len, const char* buf, NPBool file)
  218. {
  219.     return g_pNavigatorFuncs->posturl(instance, url, window, len, buf, file);
  220. }
  221. /* Requests that a number of bytes be provided on a stream.  Typically
  222.    this would be used if a stream was in "pull" mode.  An optional
  223.    position can be provided for streams which are seekable.
  224. */
  225. NPError NPN_RequestRead(NPStream* stream, NPByteRange* rangeList)
  226. {
  227.     return g_pNavigatorFuncs->requestread(stream, rangeList);
  228. }
  229. /* Creates a new stream of data from the plug-in to be interpreted
  230.    by Netscape in the current window.
  231. */
  232. NPError NPN_NewStream(NPP instance, NPMIMEType type, 
  233. const char* target, NPStream** stream)
  234. {
  235. int navMinorVersion = g_pNavigatorFuncs->version & 0xFF;
  236. NPError err;
  237. if( navMinorVersion >= NPVERS_HAS_STREAMOUTPUT ) {
  238. err = g_pNavigatorFuncs->newstream(instance, type, target, stream);
  239. }
  240. else {
  241. err = NPERR_INCOMPATIBLE_VERSION_ERROR;
  242. }
  243. return err;
  244. }
  245. /* Provides len bytes of data.
  246. */
  247. int32 NPN_Write(NPP instance, NPStream *stream,
  248.                 int32 len, void *buffer)
  249. {
  250. int navMinorVersion = g_pNavigatorFuncs->version & 0xFF;
  251. int32 result;
  252. if( navMinorVersion >= NPVERS_HAS_STREAMOUTPUT ) {
  253. result = g_pNavigatorFuncs->write(instance, stream, len, buffer);
  254. }
  255. else {
  256. result = -1;
  257. }
  258. return result;
  259. }
  260. /* Closes a stream object.  
  261. reason indicates why the stream was closed.
  262. */
  263. NPError NPN_DestroyStream(NPP instance, NPStream* stream, NPError reason)
  264. {
  265. int navMinorVersion = g_pNavigatorFuncs->version & 0xFF;
  266. NPError err;
  267. if( navMinorVersion >= NPVERS_HAS_STREAMOUTPUT ) {
  268. err = g_pNavigatorFuncs->destroystream(instance, stream, reason);
  269. }
  270. else {
  271. err = NPERR_INCOMPATIBLE_VERSION_ERROR;
  272. }
  273. return err;
  274. }
  275. /* Provides a text status message in the Netscape client user interface
  276. */
  277. void NPN_Status(NPP instance, const char *message)
  278. {
  279.     g_pNavigatorFuncs->status(instance, message);
  280. }
  281. /* returns the user agent string of Navigator, which contains version info
  282. */
  283. const char* NPN_UserAgent(NPP instance)
  284. {
  285.     return g_pNavigatorFuncs->uagent(instance);
  286. }
  287. /* allocates memory from the Navigator's memory space.  Necessary so that
  288.    saved instance data may be freed by Navigator when exiting.
  289. */
  290. void* NPN_MemAlloc(uint32 size)
  291. {
  292.     return g_pNavigatorFuncs->memalloc(size);
  293. }
  294. /* reciprocal of MemAlloc() above
  295. */
  296. void NPN_MemFree(void* ptr)
  297. {
  298.     g_pNavigatorFuncs->memfree(ptr);
  299. }
  300. /* private function to Netscape.  do not use!
  301. */
  302. void NPN_ReloadPlugins(NPBool reloadPages)
  303. {
  304.     g_pNavigatorFuncs->reloadplugins(reloadPages);
  305. }
  306. JRIEnv* NPN_GetJavaEnv(void)
  307. {
  308. return g_pNavigatorFuncs->getJavaEnv();
  309. }
  310. jref NPN_GetJavaPeer(NPP instance)
  311. {
  312. return g_pNavigatorFuncs->getJavaPeer(instance);
  313. }