npwin.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:16k
源码类别:

midi

开发平台:

Unix_Linux

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  *
  3.  * Mozilla/Firefox plugin for VLC
  4.  * Copyright (C) 2009, Jean-Paul Saman <jpsaman@videolan.org>
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Lesser General Public
  8.  * License as published by the Free Software Foundation; either
  9.  * version 2.1 of the License, or (at your option) any later version.
  10.  *
  11.  * This library is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * Lesser General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU Lesser General Public
  17.  * License along with this library; if not, write to the Free Software
  18.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  19.  *
  20.  * The Original Code is Mozilla Communicator client code.
  21.  *
  22.  * The Initial Developer of the Original Code is
  23.  * Netscape Communications Corporation.
  24.  * Portions created by the Initial Developer are Copyright (C) 1998
  25.  * the Initial Developer. All Rights Reserved.
  26.  *
  27.  */
  28. #include "config.h"
  29. //#define OJI 1
  30. #ifdef HAVE_MOZILLA_CONFIG_H
  31. #   include <mozilla-config.h>
  32. #endif
  33. #ifndef _NPAPI_H_
  34. #   include "npapi.h"
  35. #endif
  36. #ifdef HAVE_NPFUNCTIONS_H
  37. #   include "npfunctions.h"
  38. #else
  39. #   ifndef _NPUPP_H_
  40. #      include "npupp.h"
  41. #   endif
  42. #endif
  43. #include "../vlcshell.h"
  44. //\// DEFINE
  45. #define NP_EXPORT
  46. //\// GLOBAL DATA
  47. NPNetscapeFuncs* g_pNavigatorFuncs = 0;
  48. #ifdef OJI
  49. JRIGlobalRef Private_GetJavaClass(void);
  50. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  51. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  52. // Private_GetJavaClass (global function)
  53. //
  54. // Given a Java class reference (thru NPP_GetJavaClass) inform JRT
  55. // of this class existence
  56. //
  57. JRIGlobalRef
  58. Private_GetJavaClass(void)
  59. {
  60.     jref clazz = NPP_GetJavaClass();
  61.     if (clazz) {
  62.         JRIEnv* env = NPN_GetJavaEnv();
  63.         return JRI_NewGlobalRef(env, clazz);
  64.     }
  65.     return NULL;
  66. }
  67. #endif /* OJI */
  68. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  69. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  70. // PLUGIN DLL entry points   
  71. //
  72. // These are the Windows specific DLL entry points. They must be exoprted
  73. //
  74. // we need these to be global since we have to fill one of its field
  75. // with a data (class) which requires knowlwdge of the navigator
  76. // jump-table. This jump table is known at Initialize time (NP_Initialize)
  77. // which is called after NP_GetEntryPoint
  78. static NPPluginFuncs* g_pluginFuncs;
  79. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  80. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  81. // NP_GetEntryPoints
  82. //
  83. // fills in the func table used by Navigator to call entry points in
  84. //  plugin DLL.  Note that these entry points ensure that DS is loaded
  85. //  by using the NP_LOADDS macro, when compiling for Win16
  86. //
  87. #ifdef __MINGW32__
  88. extern "C" __declspec(dllexport) NPError WINAPI
  89. #else
  90. NPError WINAPI NP_EXPORT
  91. #endif
  92. NP_GetEntryPoints(NPPluginFuncs* pFuncs)
  93. {
  94.     // trap a NULL ptr 
  95.     if(pFuncs == NULL)
  96.         return NPERR_INVALID_FUNCTABLE_ERROR;
  97.     // if the plugin's function table is smaller than the plugin expects,
  98.     // then they are incompatible, and should return an error 
  99.     pFuncs->version       = (NP_VERSION_MAJOR << 8) | NP_VERSION_MINOR;
  100.     pFuncs->newp          = NPP_New;
  101.     pFuncs->destroy       = NPP_Destroy;
  102.     pFuncs->setwindow     = NPP_SetWindow;
  103.     pFuncs->newstream     = NPP_NewStream;
  104.     pFuncs->destroystream = NPP_DestroyStream;
  105.     pFuncs->asfile        = NPP_StreamAsFile;
  106.     pFuncs->writeready    = NPP_WriteReady;
  107.     pFuncs->write         = NPP_Write;
  108.     pFuncs->print         = NPP_Print;
  109.     pFuncs->event         = 0;       /// reserved
  110.     pFuncs->getvalue      = NPP_GetValue;
  111.     pFuncs->setvalue      = NPP_SetValue;
  112.     g_pluginFuncs         = pFuncs;
  113.     return NPERR_NO_ERROR;
  114. }
  115. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  116. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  117. // NP_Initialize
  118. //
  119. // called immediately after the plugin DLL is loaded
  120. //
  121. #ifdef __MINGW32__
  122. extern "C" __declspec(dllexport) NPError WINAPI
  123. #else
  124. NPError WINAPI NP_EXPORT
  125. #endif
  126. NP_Initialize(NPNetscapeFuncs* pFuncs)
  127. {
  128.     // trap a NULL ptr 
  129.     if(pFuncs == NULL)
  130.         return NPERR_INVALID_FUNCTABLE_ERROR;
  131.     g_pNavigatorFuncs = pFuncs; // save it for future reference 
  132.     // if the plugin's major ver level is lower than the Navigator's,
  133.     // then they are incompatible, and should return an error 
  134.     if(HIBYTE(pFuncs->version) > NP_VERSION_MAJOR)
  135.         return NPERR_INCOMPATIBLE_VERSION_ERROR;
  136.     // We have to defer these assignments until g_pNavigatorFuncs is set
  137.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  138.     if( navMinorVers >= NPVERS_HAS_NOTIFICATION ) {
  139.         g_pluginFuncs->urlnotify = NPP_URLNotify;
  140.     }
  141. #ifdef OJI
  142.     if( navMinorVers >= NPVERS_HAS_LIVECONNECT ) {
  143.         g_pluginFuncs->javaClass = Private_GetJavaClass();
  144.     }
  145. #endif
  146.     // NPP_Initialize is a standard (cross-platform) initialize function.
  147.     return NPP_Initialize();
  148. }
  149. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  150. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  151. // NP_Shutdown
  152. //
  153. // called immediately before the plugin DLL is unloaded.
  154. // This function should check for some ref count on the dll to see if it is
  155. // unloadable or it needs to stay in memory. 
  156. //
  157. #ifdef __MINGW32__
  158. extern "C" __declspec(dllexport) NPError WINAPI
  159. #else
  160. NPError WINAPI NP_EXPORT 
  161. #endif
  162. NP_Shutdown()
  163. {
  164.     NPP_Shutdown();
  165.     g_pNavigatorFuncs = NULL;
  166.     return NPERR_NO_ERROR;
  167. }
  168. char * NP_GetMIMEDescription()
  169. {
  170.   return NPP_GetMIMEDescription();
  171. }
  172. // END - PLUGIN DLL entry points   
  173. ////\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//.
  174. //\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\//\.
  175. /*    NAVIGATOR Entry points    */
  176. /* These entry points expect to be called from within the plugin.  The
  177.    noteworthy assumption is that DS has already been set to point to the
  178.    plugin's DLL data segment.  Don't call these functions from outside
  179.    the plugin without ensuring DS is set to the DLLs data segment first,
  180.    typically using the NP_LOADDS macro
  181.  */
  182. /* returns the major/minor version numbers of the Plugin API for the plugin
  183.    and the Navigator
  184.  */
  185. void NPN_Version(int* plugin_major, int* plugin_minor, int* netscape_major, int* netscape_minor)
  186. {
  187.     *plugin_major   = NP_VERSION_MAJOR;
  188.     *plugin_minor   = NP_VERSION_MINOR;
  189.     *netscape_major = HIBYTE(g_pNavigatorFuncs->version);
  190.     *netscape_minor = LOBYTE(g_pNavigatorFuncs->version);
  191. }
  192. NPError NPN_GetValue(NPP instance, NPNVariable variable, void *result)
  193. {
  194.     return g_pNavigatorFuncs->getvalue(instance, variable, result);
  195. }
  196. NPError NPN_SetValue(NPP instance, NPPVariable variable, void *value)
  197. {
  198.     return g_pNavigatorFuncs->setvalue(instance, variable, value);
  199. }
  200. void NPN_InvalidateRect(NPP instance, NPRect *rect)
  201. {
  202.     g_pNavigatorFuncs->invalidaterect(instance, rect);
  203. }
  204. void NPN_InvalidateRegion(NPP instance, NPRegion region)
  205. {
  206.     g_pNavigatorFuncs->invalidateregion(instance, region);
  207. }
  208. void NPN_ForceRedraw(NPP instance)
  209. {
  210.     g_pNavigatorFuncs->forceredraw(instance);
  211. }
  212. NPIdentifier NPN_GetStringIdentifier(const NPUTF8 *name)
  213. {
  214.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  215.     if( navMinorVers >= 14 )
  216.     {
  217.         return g_pNavigatorFuncs->getstringidentifier(name);
  218.     }
  219.     return NULL;
  220. }
  221. void NPN_GetStringIdentifiers(const NPUTF8 **names, int32_t nameCount, NPIdentifier *identifiers)
  222. {
  223.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  224.     if( navMinorVers >= 14 )
  225.     {
  226.         g_pNavigatorFuncs->getstringidentifiers(names, nameCount, identifiers);
  227.     }
  228. }
  229. NPIdentifier NPN_GetIntIdentifier(int32_t intid)
  230. {
  231.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  232.     if( navMinorVers >= 14 )
  233.     {
  234.         return g_pNavigatorFuncs->getintidentifier(intid);
  235.     }
  236.     return NULL;
  237. }
  238. bool NPN_IdentifierIsString(NPIdentifier identifier)
  239. {
  240.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  241.     if( navMinorVers >= 14 )
  242.     {
  243.         return g_pNavigatorFuncs->identifierisstring(identifier);
  244.     }
  245.     return false;
  246. }
  247. NPUTF8 *NPN_UTF8FromIdentifier(NPIdentifier identifier)
  248. {
  249.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  250.     if( navMinorVers >= 14 )
  251.     {
  252.         return g_pNavigatorFuncs->utf8fromidentifier(identifier);
  253.     }
  254.     return NULL;
  255. }
  256. int32_t NPN_IntFromIdentifier(NPIdentifier identifier)
  257. {
  258.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  259.     if( navMinorVers >= 14 )
  260.     {
  261.         return g_pNavigatorFuncs->intfromidentifier(identifier);
  262.     }
  263.     return 0;
  264. }
  265. NPObject *NPN_CreateObject(NPP instance, NPClass *aClass)
  266. {
  267.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  268.     if( navMinorVers >= 14 )
  269.     {
  270.         return g_pNavigatorFuncs->createobject(instance, aClass);
  271.     }
  272.     return NULL;
  273. }
  274. NPObject *NPN_RetainObject(NPObject *npobj)
  275. {
  276.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  277.     if( navMinorVers >= 14 )
  278.     {
  279.         return g_pNavigatorFuncs->retainobject(npobj);
  280.     }
  281.     return NULL;
  282. }
  283. void NPN_ReleaseObject(NPObject *npobj)
  284. {
  285.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  286.     if( navMinorVers >= 14 )
  287.     {
  288.         g_pNavigatorFuncs->releaseobject(npobj);
  289.     }
  290. }
  291. bool NPN_Invoke(NPP instance, NPObject *npobj, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result)
  292. {
  293.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  294.     if( navMinorVers >= 14 )
  295.     {
  296.         return g_pNavigatorFuncs->invoke(instance, npobj, methodName, args, argCount, result);
  297.     }
  298.     return false;
  299. }
  300. bool NPN_InvokeDefault(NPP instance, NPObject *npobj, const NPVariant *args, uint32_t argCount, NPVariant *result)
  301. {
  302.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  303.     if( navMinorVers >= 14 )
  304.     {
  305.         return g_pNavigatorFuncs->invokeDefault(instance, npobj, args, argCount, result);
  306.     }
  307.     return false;
  308. }
  309. bool NPN_Evaluate(NPP instance, NPObject *npobj, NPString *script, NPVariant *result)
  310. {
  311.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  312.     if( navMinorVers >= 14 )
  313.     {
  314.         return g_pNavigatorFuncs->evaluate(instance, npobj, script, result);
  315.     }
  316.     return false;
  317. }
  318. bool NPN_GetProperty(NPP instance, NPObject *npobj, NPIdentifier propertyName, NPVariant *result)
  319. {
  320.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  321.     if( navMinorVers >= 14 )
  322.     {
  323.         return g_pNavigatorFuncs->getproperty(instance, npobj, propertyName, result);
  324.     }
  325.     return false;
  326. }
  327. bool NPN_SetProperty(NPP instance, NPObject *npobj, NPIdentifier propertyName, const NPVariant *value)
  328. {
  329.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  330.     if( navMinorVers >= 14 )
  331.     {
  332.         return g_pNavigatorFuncs->setproperty(instance, npobj, propertyName, value);
  333.     }
  334.     return false;
  335. }
  336. bool NPN_RemoveProperty(NPP instance, NPObject *npobj, NPIdentifier propertyName)
  337. {
  338.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  339.     if( navMinorVers >= 14 )
  340.     {
  341.         return g_pNavigatorFuncs->removeproperty(instance, npobj, propertyName);
  342.     }
  343.     return false;
  344. }
  345. bool NPN_HasProperty(NPP instance, NPObject *npobj, NPIdentifier propertyName)
  346. {
  347.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  348.     if( navMinorVers >= 14 )
  349.     {
  350.         return g_pNavigatorFuncs->hasproperty(instance, npobj, propertyName);
  351.     }
  352.     return false;
  353. }
  354. bool NPN_HasMethod(NPP instance, NPObject *npobj, NPIdentifier methodName)
  355. {
  356.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  357.     if( navMinorVers >= 14 )
  358.     {
  359.         return g_pNavigatorFuncs->hasmethod(instance, npobj, methodName);
  360.     }
  361.     return false;
  362. }
  363. void NPN_ReleaseVariantValue(NPVariant *variant)
  364. {
  365.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  366.     if( navMinorVers >= 14 )
  367.     {
  368.         g_pNavigatorFuncs->releasevariantvalue(variant);
  369.     }
  370. }
  371. void NPN_SetException(NPObject *npobj, const NPUTF8 *message)
  372. {
  373.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  374.     if( navMinorVers >= 14 )
  375.     {
  376.         g_pNavigatorFuncs->setexception(npobj, message);
  377.     }
  378. }
  379. /* causes the specified URL to be fetched and streamed in
  380.  */
  381. NPError NPN_GetURLNotify(NPP instance, const char *url, const char *target, void* notifyData)
  382. {
  383.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  384.     NPError err;
  385.     if( navMinorVers >= NPVERS_HAS_NOTIFICATION ) {
  386.         err = g_pNavigatorFuncs->geturlnotify(instance, url, target, notifyData);
  387.     }
  388.     else {
  389.         err = NPERR_INCOMPATIBLE_VERSION_ERROR;
  390.     }
  391.     return err;
  392. }
  393. NPError NPN_GetURL(NPP instance, const char *url, const char *target)
  394. {
  395.     return g_pNavigatorFuncs->geturl(instance, url, target);
  396. }
  397. NPError NPN_PostURLNotify(NPP instance, const char* url, const char* window, uint32_t len, const char* buf, NPBool file, void* notifyData)
  398. {
  399.     int navMinorVers = g_pNavigatorFuncs->version & 0xFF;
  400.     NPError err;
  401.     if( navMinorVers >= NPVERS_HAS_NOTIFICATION ) {
  402.         err = g_pNavigatorFuncs->posturlnotify(instance, url, window, len, buf, file, notifyData);
  403.     }
  404.     else {
  405.         err = NPERR_INCOMPATIBLE_VERSION_ERROR;
  406.     }
  407.     return err;
  408. }
  409. NPError NPN_PostURL(NPP instance, const char* url, const char* window, uint32_t len, const char* buf, NPBool file)
  410. {
  411.     return g_pNavigatorFuncs->posturl(instance, url, window, len, buf, file);
  412. }
  413. /* Requests that a number of bytes be provided on a stream.  Typically
  414.    this would be used if a stream was in "pull" mode.  An optional
  415.    position can be provided for streams which are seekable.
  416.  */
  417. NPError NPN_RequestRead(NPStream* stream, NPByteRange* rangeList)
  418. {
  419.     return g_pNavigatorFuncs->requestread(stream, rangeList);
  420. }
  421. /* Creates a new stream of data from the plug-in to be interpreted
  422.  * by Netscape in the current window.
  423.  */
  424. NPError NPN_NewStream(NPP instance, NPMIMEType type, 
  425.                       const char* target, NPStream** stream)
  426. {
  427.     int navMinorVersion = g_pNavigatorFuncs->version & 0xFF;
  428.     NPError err;
  429.     if( navMinorVersion >= NPVERS_HAS_STREAMOUTPUT ) {
  430.         err = g_pNavigatorFuncs->newstream(instance, type, target, stream);
  431.     }
  432.     else {
  433.         err = NPERR_INCOMPATIBLE_VERSION_ERROR;
  434.     }
  435.     return err;
  436. }
  437. /* Provides len bytes of data.
  438.  */
  439. int32_t NPN_Write(NPP instance, NPStream *stream,
  440.                 int32_t len, void *buffer)
  441. {
  442.     int navMinorVersion = g_pNavigatorFuncs->version & 0xFF;
  443.     int32_t result;
  444.     if( navMinorVersion >= NPVERS_HAS_STREAMOUTPUT ) {
  445.         result = g_pNavigatorFuncs->write(instance, stream, len, buffer);
  446.     }
  447.     else {
  448.         result = -1;
  449.     }
  450.     return result;
  451. }
  452. /* Closes a stream object.
  453.  * reason indicates why the stream was closed.
  454.  */
  455. NPError NPN_DestroyStream(NPP instance, NPStream* stream, NPError reason)
  456. {
  457.     int navMinorVersion = g_pNavigatorFuncs->version & 0xFF;
  458.     NPError err;
  459.     if( navMinorVersion >= NPVERS_HAS_STREAMOUTPUT ) {
  460.         err = g_pNavigatorFuncs->destroystream(instance, stream, reason);
  461.     }
  462.     else {
  463.         err = NPERR_INCOMPATIBLE_VERSION_ERROR;
  464.     }
  465.     return err;
  466. }
  467. /* Provides a text status message in the Netscape client user interface
  468.  */
  469. void NPN_Status(NPP instance, const char *message)
  470. {
  471.     g_pNavigatorFuncs->status(instance, message);
  472. }
  473. /* returns the user agent string of Navigator, which contains version info
  474.  */
  475. const char* NPN_UserAgent(NPP instance)
  476. {
  477.     return g_pNavigatorFuncs->uagent(instance);
  478. }
  479. /* allocates memory from the Navigator's memory space.  Necessary so that
  480.  * saved instance data may be freed by Navigator when exiting.
  481.  */
  482. void *NPN_MemAlloc(uint32 size)
  483. {
  484.     return g_pNavigatorFuncs->memalloc(size);
  485. }
  486. /* reciprocal of MemAlloc() above
  487.  */
  488. void NPN_MemFree(void* ptr)
  489. {
  490.     g_pNavigatorFuncs->memfree(ptr);
  491. }
  492. #ifdef OJI
  493. /* private function to Netscape.  do not use!
  494.  */
  495. void NPN_ReloadPlugins(NPBool reloadPages)
  496. {
  497.     g_pNavigatorFuncs->reloadplugins(reloadPages);
  498. }
  499. JRIEnv* NPN_GetJavaEnv(void)
  500. {
  501.     return g_pNavigatorFuncs->getJavaEnv();
  502. }
  503. jref NPN_GetJavaPeer(NPP instance)
  504. {
  505.     return g_pNavigatorFuncs->getJavaPeer(instance);
  506. }
  507. #endif