home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap15 / npavi / NPSHELL.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-03  |  12.1 KB  |  376 lines

  1. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  2. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  3. // npshell.cpp 
  4. // 
  5. //        This file handles the entry points from the navigator into the
  6. //        plugin.  This example shows a basic shell which can be used as
  7. //        a good starting point for other plugins... 
  8. //
  9. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  10. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  11.  
  12. //\\// INCLUDE
  13. // windows
  14. #ifndef _INC_WINDOWS    
  15. #include <windows.h>
  16. #endif
  17. #ifndef _INC_STRING
  18. #include <string.h>
  19. #endif
  20.  
  21. // netscape
  22. #ifndef _NPAPI_H_
  23. #include "npapi.h"
  24. #endif
  25. #ifndef _NPUPP_H_
  26. #include "npupp.h"
  27. #endif
  28.  
  29. // example specific
  30. #ifndef __PLGWND_H__
  31. #include "plgwnd.h"
  32. #endif
  33. #ifndef __CAVI_H__
  34. #include "cavi.h"
  35. #endif
  36.  
  37. // java include
  38. // these files are produced by javah running on the java class(es) 
  39. // representing the plugin
  40. #ifndef _AviPlayer_H_
  41. #include "AviPlayer.h"
  42. #endif
  43. #ifndef _AviObserver_H_
  44. #include "AviObserver.h"
  45. #endif
  46.  
  47. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  48. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  49. // NPP_Initialize
  50. //
  51. //    Initialize the plugin library. Your DLL global initialization
  52. //    should be here
  53. //
  54. NPError 
  55. NPP_Initialize(void)
  56. {
  57.     return NPERR_NO_ERROR;
  58. }
  59.  
  60. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  61. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  62. // NPP_Shutdown
  63. //
  64. //    shutdown the plugin library. Revert initializition
  65. //
  66. void 
  67. NPP_Shutdown(void)
  68. {
  69. }
  70.  
  71. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  72. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  73. // NPP_GetJavaClass
  74. //
  75. //    Return the Java class representing this plugin
  76. //
  77. jref 
  78. NPP_GetJavaClass(void)
  79. {
  80.     //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  81.     // get the Java environment. You need this information pretty much for
  82.     // any jri (Java Runtime Interface) call. 
  83.     JRIEnv* env = NPN_GetJavaEnv();
  84.     //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  85.     // init any classes that define native methods.
  86.     // The following functions are generated by javah running on the java
  87.     // class(es) representing this plugin. javah generates the files
  88.     // <java class name>.h and <java class name>.c (same for any additional
  89.     // class you may want to use)
  90.     // Return the main java class representing this plugin (derives from
  91.     // Plugin class on the java side)
  92.     return init_AviPlayer(env);
  93.     // if no java is used
  94.     // return NULL;
  95. }
  96.  
  97. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  98. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  99. // NPP_New
  100. //
  101. //    create a new plugin instance 
  102. //    handle any instance specific code initialization here
  103. //
  104. NPError NP_LOADDS
  105. NPP_New(NPMIMEType pluginType,
  106.                 NPP instance,
  107.                 uint16 mode,
  108.                 int16 argc,
  109.                 char* argn[],
  110.                 char* argv[],
  111.                 NPSavedData* saved)
  112. {   
  113.     BOOL bAutoStart, bLoop;
  114.     // CPluginWindow is the main plugin object. Keep state information
  115.     // about the specific instance to be created
  116.     CPluginWindow * pluginData;
  117.  
  118.     // trap a NULL ptr 
  119.     if (instance == NULL)
  120.         return NPERR_INVALID_INSTANCE_ERROR;
  121.  
  122.     // extract the pseudo command line arguments which were passed as attributes in the
  123.     // embed tag of the document
  124.  
  125.     // for this example the plugin takes a true/false value for both autostart and loop
  126.     // to determine the plugin style characteristics
  127.     bAutoStart = FALSE;
  128.     bLoop = FALSE;
  129.     for (int idx =0; idx<argc; idx++) {
  130.         if (!strcmpi(argn[idx],"autostart")) {
  131.             if (!strcmpi(argv[idx],"true")) {
  132.                 bAutoStart = TRUE;                            
  133.             }
  134.         }
  135.  
  136.         if (!strcmpi(argn[idx],"loop")) {
  137.             if (!strcmpi(argv[idx],"true")) {
  138.                 bLoop = TRUE;                            
  139.             }
  140.         }
  141.     }
  142.  
  143.     // create a data pointer to pass around with the instance
  144.     pluginData = new CPluginWindow (bAutoStart, bLoop, mode, instance);
  145.  
  146.     instance->pdata = pluginData;    // save my data pointer in the instance pdata pointer
  147.                                     // this will be passed back to me in all calls so that I
  148.                                     // can extract it later
  149.  
  150.     return NPERR_NO_ERROR;
  151. }
  152.  
  153. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  154. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  155. // NPP_Destroy
  156. //
  157. //    Deletes a plug-in instance and releases all of its resources.
  158. //
  159. NPError NP_LOADDS
  160. NPP_Destroy(NPP instance, NPSavedData** save)
  161. {
  162.     CPluginWindow * pluginData = (CPluginWindow *)instance->pdata;
  163.     delete pluginData;
  164.     instance->pdata = 0;
  165.  
  166.     return NPERR_NO_ERROR;
  167.  
  168. }
  169.  
  170. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  171. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  172. // NPP_SetWindow
  173. //
  174. //    Associates a platform specific window handle with a plug-in instance.
  175. //        Called multiple times while, e.g., scrolling.  Can be called for three
  176. //        reasons:
  177. //
  178. //            1.  A new window has been created
  179. //            2.  A window has been moved or resized
  180. //            3.  A window has been destroyed
  181. //
  182. //    There is also the degenerate case;  that it was called spuriously, and
  183. //  the window handle and or coords may have or have not changed, or
  184. //  the window handle and or coords may be ZERO.  State information
  185. //  must be maintained by the plug-in to correctly handle the degenerate
  186. //  case.
  187. //
  188. NPError NP_LOADDS
  189. NPP_SetWindow(NPP instance, NPWindow* window)
  190. {    
  191.     // strange...
  192.     if (!window)
  193.         return NPERR_GENERIC_ERROR;
  194.  
  195.     // strange...
  196.     if (!instance)
  197.         return  NPERR_INVALID_INSTANCE_ERROR;
  198.  
  199.     // get back the plugin instance object
  200.     CPluginWindow * pluginData = (CPluginWindow *)instance->pdata;
  201.  
  202.     if (pluginData) {
  203.         if (!window->window) {   
  204.             // watch out this case.
  205.             // window went away 
  206.             //delete pluginData; (?????)
  207.             return NPERR_NO_ERROR;
  208.         }
  209.         if (!pluginData->GetWndProc()) {   
  210.             //\\// First time in //\\//
  211.             // grab the handle so we can control the messages flow
  212.             pluginData->SetWindow((HWND)window->window);
  213.         }
  214.         
  215.         // resize or moved window (or newly created)
  216.         InvalidateRect(*pluginData, NULL, TRUE);
  217.         UpdateWindow(*pluginData);
  218.  
  219.         return NPERR_NO_ERROR;
  220.     }
  221.  
  222.     // return an error if no object defined
  223.     return NPERR_GENERIC_ERROR;
  224. }
  225.  
  226. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  227. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  228. // NPP_NewStream
  229. //
  230. //    Notifies the plugin of a new data stream.
  231. //  The data type of the stream (a MIME name) is provided.
  232. //  The stream object indicates whether it is seekable.
  233. //  The plugin specifies how it wants to handle the stream.
  234. //
  235. //  In this case, I set the streamtype to be NPAsFile.  This tells the Navigator
  236. //  that the plugin doesn't handle streaming and can only deal with the object as
  237. //  a complete disk file.  It will still call the write functions but it will also
  238. //  pass the filename of the cached file in a later NPE_StreamAsFile call when it
  239. //  is done transfering the file.
  240. //
  241. //  If a plugin handles the data in a streaming manner, it should set streamtype to
  242. //  NPNormal  (e.g. *streamtype = NPNormal)...the NPE_StreamAsFile function will
  243. //  never be called in this case
  244. //
  245. NPError NP_LOADDS
  246. NPP_NewStream(NPP instance,
  247.               NPMIMEType type,
  248.               NPStream *stream, 
  249.               NPBool seekable,
  250.               uint16 *stype)
  251. {
  252.     if(!instance)
  253.         return NPERR_INVALID_INSTANCE_ERROR;
  254.  
  255.     // save the plugin instance object in the stream instance
  256.     stream->pdata = instance->pdata;
  257.     *stype = NP_ASFILE;
  258.     return NPERR_NO_ERROR;
  259. }
  260.  
  261. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  262. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  263. // NPP_StreamAsFile
  264. //
  265. //    The stream is done transferring and here is a pointer to the file in the cache
  266. //    This function is only called if the streamtype was set to NPAsFile.
  267. //
  268. void NP_LOADDS
  269. NPP_StreamAsFile(NPP instance, NPStream *stream, const char* fname)
  270. {
  271.     if(fname == NULL || fname[0] == NULL)
  272.         return;
  273.     // get back the plugin instance object
  274.     CPluginWindow * pluginData = (CPluginWindow *)instance->pdata;
  275.  
  276.     // get the avi object controller
  277.     CAvi& aviPlayer = pluginData->GetAviStream();
  278.  
  279.     // open the avi driver with the specified name
  280.     aviPlayer.Open(*pluginData, fname);
  281.     aviPlayer.Update();
  282.  
  283.     // well, christ, the AVI window Update() paint doesn't work in Win95.
  284.     // It works fine in NT and Win3.1, but Win95 is doing something
  285.     // hostile.  So, I have a hack here that steps the frame forward
  286.     // to paint the window;  barf ...
  287.  
  288.     // figure out whether to hack for Win 95
  289.     DWORD dwVer = GetVersion();
  290.     int iVer = (LOBYTE(LOWORD(dwVer))*100)+HIBYTE(LOWORD(dwVer));
  291.     if(iVer > 394) {
  292.         // Win 95
  293.         aviPlayer.FrameForward();
  294.     }
  295. }
  296.  
  297. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  298. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  299. //
  300. //        These next 2 functions are really only directly relevant 
  301. //        in a plug-in which handles the data in a streaming manner.  
  302. //        For a NPAsFile stream, they are still called but can safely 
  303. //        be ignored.
  304. //
  305. //        In a streaming plugin, all data handling would take place here...
  306. //
  307. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  308. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  309.  
  310. int32 STREAMBUFSIZE = 0X0FFFFFFF;   // we are reading from a file in NPAsFile mode
  311.                                     // so we can take any size stream in our write
  312.                                     // call (since we ignore it)
  313.                                 
  314. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  315. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  316. // NPP_WriteReady
  317. //
  318. //    The number of bytes that a plug-in is willing to accept in a subsequent
  319. //    NPO_Write call.
  320. //
  321. int32 NP_LOADDS
  322. NPP_WriteReady(NPP instance, NPStream *stream)
  323. {
  324.     return STREAMBUFSIZE;  
  325. }
  326.  
  327. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  328. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  329. // NPP_Write
  330. //
  331. //    Provides len bytes of data.
  332. //
  333. int32 NP_LOADDS
  334. NPP_Write(NPP instance, NPStream *stream, int32 offset, int32 len, void *buffer)
  335. {   
  336.     //MessageBox(NULL,"NPError NP_EXPORT NPE_Write()","Plug-in-test",MB_OK);
  337.     return len;
  338. }
  339.  
  340. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  341. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  342. // NPP_DestroyStream
  343. //
  344. //    Closes a stream object.  
  345. //    reason indicates why the stream was closed.  Possible reasons are
  346. //    that it was complete, because there was some error, or because 
  347. //    the user aborted it.
  348. //
  349. NPError NP_LOADDS
  350. NPP_DestroyStream(NPP instance, NPStream *stream, NPError reason)
  351. {
  352.     // because I am handling the stream as a file, I don't do anything here...
  353.     // If I was streaming, I would know that I was done and do anything appropriate
  354.     // to the end of the stream...   
  355.     return NPERR_NO_ERROR;
  356. }
  357.  
  358. //\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\.
  359. ////\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//.
  360. // NPP_Print
  361. //
  362. //    Printing the plugin (to be continued...)
  363. //
  364. void NP_LOADDS
  365. NPP_Print(NPP instance, NPPrint* printInfo)
  366. {
  367.     if(printInfo == NULL)   // trap invalid parm
  368.         return;
  369.  
  370.     if (instance != NULL) {
  371.         CPluginWindow* pluginData = (CPluginWindow*) instance->pdata;
  372.         pluginData->Print(printInfo);
  373.     }
  374. }
  375.  
  376.