gecko-dev/dom/plugins/base/nsPluginsDirOS2.cpp

275 строки
6.6 KiB
C++
Исходник Обычный вид История

2012-05-21 15:12:37 +04:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// OS/2 plugin-loading code.
#define INCL_DOS
#define INCL_DOSERRORS
#include <os2.h>
#include "nsPluginsDir.h"
#include "prlink.h"
#include "plstr.h"
#include "prmem.h"
#include "prprf.h"
#include "npapi.h"
2003-03-15 17:07:54 +03:00
#include "nsString.h"
/* Load a string stored as RCDATA in a resource segment */
/* Returned string needs to be PR_Free'd by caller */
static char *LoadRCDATAString( HMODULE hMod, ULONG resid)
{
APIRET rc;
ULONG ulSize = 0;
char *string = 0;
rc = DosQueryResourceSize( hMod, RT_RCDATA, resid, &ulSize);
if( rc == NO_ERROR)
{
char *readOnlyString = 0;
rc = DosGetResource( hMod, RT_RCDATA, resid, (void**) &readOnlyString);
/* allow for 0-termination if user hasn't got it right */
if( readOnlyString[ ulSize - 1] != '\0')
ulSize++;
if( rc == NO_ERROR)
{
/* copy string & zero-terminate */
string = (char*) PR_Malloc( ulSize);
memcpy( string, readOnlyString, ulSize - 1);
string[ ulSize - 1] = '\0';
DosFreeResource( readOnlyString);
}
}
return string;
}
/* Load a version string stored as RCDATA in a resource segment */
/* Returned string needs to be PR_Free'd by caller */
static char *LoadRCDATAVersion(HMODULE hMod, ULONG resid)
{
APIRET rc;
ULONG ulSize = 0;
char *string = 0;
rc = DosQueryResourceSize(hMod, RT_RCDATA, resid, &ulSize);
// version info is should be 8 chars
if (rc == NO_ERROR && ulSize == 8)
{
char *version = NULL;
rc = DosGetResource(hMod, RT_RCDATA, resid, (void**) &version);
if (rc == NO_ERROR)
{
string = PR_smprintf("%d.%d.%d.%d\n",
version[0], version[2], version[4], version[6]);
DosFreeResource(version);
}
}
return string;
}
static uint32_t CalculateVariantCount(char* mimeTypes)
{
uint32_t variants = 1;
if(mimeTypes == nullptr)
2000-08-03 03:01:35 +04:00
return 0;
char* index = mimeTypes;
while (*index)
{
if (*index == '|')
variants++;
++index;
}
return variants;
2000-08-03 03:01:35 +04:00
}
static char** MakeStringArray(uint32_t variants, char* data)
2000-08-03 03:01:35 +04:00
{
if((variants <= 0) || (data == nullptr))
return nullptr;
2000-08-03 03:01:35 +04:00
char ** array = (char **)PR_Calloc(variants, sizeof(char *));
if(array == nullptr)
return nullptr;
2000-08-03 03:01:35 +04:00
char * start = data;
for(uint32_t i = 0; i < variants; i++)
2000-08-03 03:01:35 +04:00
{
char * p = PL_strchr(start, '|');
if(p != nullptr)
2000-08-03 03:01:35 +04:00
*p = 0;
array[i] = PL_strdup(start);
start = ++p;
}
return array;
}
static void FreeStringArray(uint32_t variants, char ** array)
2000-08-03 03:01:35 +04:00
{
if((variants == 0) || (array == nullptr))
2000-08-03 03:01:35 +04:00
return;
for(uint32_t i = 0; i < variants; i++)
2000-08-03 03:01:35 +04:00
{
if(array[i] != nullptr)
2000-08-03 03:01:35 +04:00
{
PL_strfree(array[i]);
array[i] = nullptr;
2000-08-03 03:01:35 +04:00
}
}
PR_Free(array);
}
// nsPluginsDir class
bool nsPluginsDir::IsPluginFile(nsIFile* file)
{
nsCAutoString leaf;
if (NS_FAILED(file->GetNativeLeafName(leaf)))
return false;
const char *leafname = leaf.get();
if( nullptr != leafname)
{
int len = strlen( leafname);
if( len > 6 && // np*.dll
(0 == strnicmp( &(leafname[len - 4]), ".dll", 4)) &&
(0 == strnicmp( leafname, "np", 2)))
{
return true;
}
}
return false;
}
// nsPluginFile implementation
2003-03-15 17:07:54 +03:00
nsPluginFile::nsPluginFile(nsIFile* file)
: mPlugin(file)
{}
nsPluginFile::~nsPluginFile()
{}
// Loads the plugin into memory using NSPR's shared-library loading
nsresult nsPluginFile::LoadPlugin(PRLibrary **outLibrary)
{
if (!mPlugin)
return NS_ERROR_NULL_POINTER;
nsCAutoString temp;
mPlugin->GetNativePath(temp);
*outLibrary = PR_LoadLibrary(temp.get());
return *outLibrary == nullptr ? NS_ERROR_FAILURE : NS_OK;
}
// Obtains all of the information currently available for this plugin.
nsresult nsPluginFile::GetPluginInfo(nsPluginInfo &info, PRLibrary **outLibrary)
{
*outLibrary = nullptr;
nsresult rv = NS_ERROR_FAILURE;
HMODULE hPlug = 0; // Need a HMODULE to query resource statements
char failure[ CCHMAXPATH] = "";
APIRET ret;
nsCAutoString path;
if (NS_FAILED(rv = mPlugin->GetNativePath(path)))
return rv;
nsCAutoString fileName;
if (NS_FAILED(rv = mPlugin->GetNativeLeafName(fileName)))
return rv;
ret = DosLoadModule( failure, CCHMAXPATH, path.get(), &hPlug);
info.fVersion = nullptr;
while( ret == NO_ERROR)
{
info.fName = LoadRCDATAString( hPlug, NP_INFO_ProductName);
info.fVersion = LoadRCDATAVersion( hPlug, NP_INFO_ProductVersion);
// get description (doesn't matter if it's missing)...
info.fDescription = LoadRCDATAString( hPlug, NP_INFO_FileDescription);
char * mimeType = LoadRCDATAString( hPlug, NP_INFO_MIMEType);
if( nullptr == mimeType) break;
2000-08-03 03:01:35 +04:00
char * mimeDescription = LoadRCDATAString( hPlug, NP_INFO_FileOpenName);
if( nullptr == mimeDescription) break;
2000-08-03 03:01:35 +04:00
char * extensions = LoadRCDATAString( hPlug, NP_INFO_FileExtents);
if( nullptr == extensions) break;
2000-08-03 03:01:35 +04:00
info.fVariantCount = CalculateVariantCount(mimeType);
info.fMimeTypeArray = MakeStringArray(info.fVariantCount, mimeType);
if( info.fMimeTypeArray == nullptr) break;
info.fMimeDescriptionArray = MakeStringArray(info.fVariantCount, mimeDescription);
if( nullptr == info.fMimeDescriptionArray) break;
info.fExtensionArray = MakeStringArray(info.fVariantCount, extensions);
if( nullptr == info.fExtensionArray) break;
info.fFullPath = PL_strdup(path.get());
info.fFileName = PL_strdup(fileName.get());
rv = NS_OK;
break;
}
if( 0 != hPlug)
DosFreeModule( hPlug);
return rv;
}
nsresult nsPluginFile::FreePluginInfo(nsPluginInfo& info)
{
if(info.fName != nullptr)
PL_strfree(info.fName);
if(info.fFullPath != nullptr)
PL_strfree(info.fFullPath);
if(info.fFileName != nullptr)
PL_strfree(info.fFileName);
if(info.fVersion != nullptr)
PL_strfree(info.fVersion);
if(info.fDescription != nullptr)
PL_strfree(info.fDescription);
if(info.fMimeTypeArray != nullptr)
2000-08-03 03:01:35 +04:00
FreeStringArray(info.fVariantCount, info.fMimeTypeArray);
if(info.fMimeDescriptionArray != nullptr)
2000-08-03 03:01:35 +04:00
FreeStringArray(info.fVariantCount, info.fMimeDescriptionArray);
if(info.fExtensionArray != nullptr)
2000-08-03 03:01:35 +04:00
FreeStringArray(info.fVariantCount, info.fExtensionArray);
memset((void *)&info, 0, sizeof(info));
return NS_OK;
}