2011-03-20 23:45:24 +01:00
|
|
|
//---------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Little Color Management System
|
2016-04-30 17:58:04 +02:00
|
|
|
// Copyright (c) 1998-2016 Marti Maria Saguer
|
2011-03-20 23:45:24 +01:00
|
|
|
//
|
2015-07-21 23:49:11 +02:00
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
// a copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the Software
|
2011-03-20 23:45:24 +01:00
|
|
|
// is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
2015-07-21 23:49:11 +02:00
|
|
|
// The above copyright notice and this permission notice shall be included in
|
2011-03-20 23:45:24 +01:00
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
2015-07-21 23:49:11 +02:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
|
|
|
// THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
2011-03-20 23:45:24 +01:00
|
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "lcms2_internal.h"
|
|
|
|
|
|
|
|
// Multilocalized unicode objects. That is an attempt to encapsulate i18n.
|
|
|
|
|
|
|
|
|
|
|
|
// Allocates an empty multi localizad unicode object
|
|
|
|
cmsMLU* CMSEXPORT cmsMLUalloc(cmsContext ContextID, cmsUInt32Number nItems)
|
|
|
|
{
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsMLU* mlu;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// nItems should be positive if given
|
|
|
|
if (nItems <= 0) nItems = 2;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Create the container
|
|
|
|
mlu = (cmsMLU*) _cmsMallocZero(ContextID, sizeof(cmsMLU));
|
|
|
|
if (mlu == NULL) return NULL;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
mlu ->ContextID = ContextID;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Create entry array
|
|
|
|
mlu ->Entries = (_cmsMLUentry*) _cmsCalloc(ContextID, nItems, sizeof(_cmsMLUentry));
|
|
|
|
if (mlu ->Entries == NULL) {
|
|
|
|
_cmsFree(ContextID, mlu);
|
|
|
|
return NULL;
|
|
|
|
}
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Ok, keep indexes up to date
|
|
|
|
mlu ->AllocatedEntries = nItems;
|
|
|
|
mlu ->UsedEntries = 0;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
return mlu;
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Grows a mempool table for a MLU. Each time this function is called, mempool size is multiplied times two.
|
2011-03-20 23:45:24 +01:00
|
|
|
static
|
|
|
|
cmsBool GrowMLUpool(cmsMLU* mlu)
|
|
|
|
{
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsUInt32Number size;
|
|
|
|
void *NewPtr;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Sanity check
|
|
|
|
if (mlu == NULL) return FALSE;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (mlu ->PoolSize == 0)
|
|
|
|
size = 256;
|
|
|
|
else
|
|
|
|
size = mlu ->PoolSize * 2;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Check for overflow
|
|
|
|
if (size < mlu ->PoolSize) return FALSE;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Reallocate the pool
|
|
|
|
NewPtr = _cmsRealloc(mlu ->ContextID, mlu ->MemPool, size);
|
|
|
|
if (NewPtr == NULL) return FALSE;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
mlu ->MemPool = NewPtr;
|
|
|
|
mlu ->PoolSize = size;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
return TRUE;
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Grows a entry table for a MLU. Each time this function is called, table size is multiplied times two.
|
2011-03-20 23:45:24 +01:00
|
|
|
static
|
|
|
|
cmsBool GrowMLUtable(cmsMLU* mlu)
|
|
|
|
{
|
2016-04-30 17:58:04 +02:00
|
|
|
cmsUInt32Number AllocatedEntries;
|
2011-03-20 23:45:24 +01:00
|
|
|
_cmsMLUentry *NewPtr;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
|
|
|
// Sanity check
|
|
|
|
if (mlu == NULL) return FALSE;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
AllocatedEntries = mlu ->AllocatedEntries * 2;
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Check for overflow
|
|
|
|
if (AllocatedEntries / 2 != mlu ->AllocatedEntries) return FALSE;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Reallocate the memory
|
2011-03-20 23:45:24 +01:00
|
|
|
NewPtr = (_cmsMLUentry*)_cmsRealloc(mlu ->ContextID, mlu ->Entries, AllocatedEntries*sizeof(_cmsMLUentry));
|
|
|
|
if (NewPtr == NULL) return FALSE;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
mlu ->Entries = NewPtr;
|
|
|
|
mlu ->AllocatedEntries = AllocatedEntries;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Search for a specific entry in the structure. Language and Country are used.
|
2011-03-20 23:45:24 +01:00
|
|
|
static
|
|
|
|
int SearchMLUEntry(cmsMLU* mlu, cmsUInt16Number LanguageCode, cmsUInt16Number CountryCode)
|
|
|
|
{
|
2016-04-30 17:58:04 +02:00
|
|
|
cmsUInt32Number i;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Sanity check
|
|
|
|
if (mlu == NULL) return -1;
|
|
|
|
|
|
|
|
// Iterate whole table
|
2011-03-20 23:45:24 +01:00
|
|
|
for (i=0; i < mlu ->UsedEntries; i++) {
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (mlu ->Entries[i].Country == CountryCode &&
|
2011-03-20 23:45:24 +01:00
|
|
|
mlu ->Entries[i].Language == LanguageCode) return i;
|
|
|
|
}
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Not found
|
2011-03-20 23:45:24 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Add a block of characters to the intended MLU. Language and country are specified.
|
2011-03-20 23:45:24 +01:00
|
|
|
// Only one entry for Language/country pair is allowed.
|
|
|
|
static
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsBool AddMLUBlock(cmsMLU* mlu, cmsUInt32Number size, const wchar_t *Block,
|
2011-03-20 23:45:24 +01:00
|
|
|
cmsUInt16Number LanguageCode, cmsUInt16Number CountryCode)
|
|
|
|
{
|
|
|
|
cmsUInt32Number Offset;
|
|
|
|
cmsUInt8Number* Ptr;
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Sanity check
|
|
|
|
if (mlu == NULL) return FALSE;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
// Is there any room available?
|
|
|
|
if (mlu ->UsedEntries >= mlu ->AllocatedEntries) {
|
|
|
|
if (!GrowMLUtable(mlu)) return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Only one ASCII string
|
|
|
|
if (SearchMLUEntry(mlu, LanguageCode, CountryCode) >= 0) return FALSE; // Only one is allowed!
|
|
|
|
|
|
|
|
// Check for size
|
2015-07-21 23:49:11 +02:00
|
|
|
while ((mlu ->PoolSize - mlu ->PoolUsed) < size) {
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
if (!GrowMLUpool(mlu)) return FALSE;
|
2015-07-21 23:49:11 +02:00
|
|
|
}
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
Offset = mlu ->PoolUsed;
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
Ptr = (cmsUInt8Number*) mlu ->MemPool;
|
|
|
|
if (Ptr == NULL) return FALSE;
|
|
|
|
|
|
|
|
// Set the entry
|
2011-03-20 23:45:24 +01:00
|
|
|
memmove(Ptr + Offset, Block, size);
|
|
|
|
mlu ->PoolUsed += size;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
mlu ->Entries[mlu ->UsedEntries].StrW = Offset;
|
|
|
|
mlu ->Entries[mlu ->UsedEntries].Len = size;
|
|
|
|
mlu ->Entries[mlu ->UsedEntries].Country = CountryCode;
|
|
|
|
mlu ->Entries[mlu ->UsedEntries].Language = LanguageCode;
|
|
|
|
mlu ->UsedEntries++;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2016-04-30 17:58:04 +02:00
|
|
|
// Convert from a 3-char code to a cmsUInt16Number. It is done inthis way because some
|
|
|
|
// compilers don't properly align beginning of strings
|
|
|
|
|
|
|
|
static
|
|
|
|
cmsUInt16Number strTo16(const char str[3])
|
|
|
|
{
|
|
|
|
cmsUInt16Number n = ((cmsUInt16Number) str[0] << 8) | str[1];
|
|
|
|
|
|
|
|
return n; // Always big endian in this case
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void strFrom16(char str[3], cmsUInt16Number n)
|
|
|
|
{
|
|
|
|
// Assiming this would be aligned
|
|
|
|
union {
|
|
|
|
|
|
|
|
cmsUInt16Number n;
|
|
|
|
char str[2];
|
|
|
|
|
|
|
|
} c;
|
|
|
|
|
|
|
|
c.n = n; // Always big endian in this case
|
|
|
|
|
|
|
|
str[0] = c.str[0]; str[1] = c.str[1]; str[2] = 0;
|
|
|
|
|
|
|
|
}
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2016-08-06 13:04:56 +02:00
|
|
|
// Add an ASCII entry. Do not add any \0 termination (ICC1v43_2010-12.pdf page 61)
|
2011-03-20 23:45:24 +01:00
|
|
|
cmsBool CMSEXPORT cmsMLUsetASCII(cmsMLU* mlu, const char LanguageCode[3], const char CountryCode[3], const char* ASCIIString)
|
|
|
|
{
|
2016-08-06 13:04:56 +02:00
|
|
|
cmsUInt32Number i, len = (cmsUInt32Number) strlen(ASCIIString);
|
2011-03-20 23:45:24 +01:00
|
|
|
wchar_t* WStr;
|
|
|
|
cmsBool rc;
|
2016-04-30 17:58:04 +02:00
|
|
|
cmsUInt16Number Lang = strTo16(LanguageCode);
|
|
|
|
cmsUInt16Number Cntry = strTo16(CountryCode);
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
if (mlu == NULL) return FALSE;
|
|
|
|
|
|
|
|
WStr = (wchar_t*) _cmsCalloc(mlu ->ContextID, len, sizeof(wchar_t));
|
|
|
|
if (WStr == NULL) return FALSE;
|
|
|
|
|
|
|
|
for (i=0; i < len; i++)
|
|
|
|
WStr[i] = (wchar_t) ASCIIString[i];
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
rc = AddMLUBlock(mlu, len * sizeof(wchar_t), WStr, Lang, Cntry);
|
|
|
|
|
|
|
|
_cmsFree(mlu ->ContextID, WStr);
|
|
|
|
return rc;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// We don't need any wcs support library
|
2015-07-21 23:49:11 +02:00
|
|
|
static
|
2011-03-20 23:45:24 +01:00
|
|
|
cmsUInt32Number mywcslen(const wchar_t *s)
|
|
|
|
{
|
|
|
|
const wchar_t *p;
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
p = s;
|
2011-03-20 23:45:24 +01:00
|
|
|
while (*p)
|
|
|
|
p++;
|
|
|
|
|
|
|
|
return (cmsUInt32Number)(p - s);
|
|
|
|
}
|
|
|
|
|
2016-08-06 13:04:56 +02:00
|
|
|
// Add a wide entry. Do not add any \0 terminator (ICC1v43_2010-12.pdf page 61)
|
2011-03-20 23:45:24 +01:00
|
|
|
cmsBool CMSEXPORT cmsMLUsetWide(cmsMLU* mlu, const char Language[3], const char Country[3], const wchar_t* WideString)
|
|
|
|
{
|
2016-04-30 17:58:04 +02:00
|
|
|
cmsUInt16Number Lang = strTo16(Language);
|
|
|
|
cmsUInt16Number Cntry = strTo16(Country);
|
2011-03-20 23:45:24 +01:00
|
|
|
cmsUInt32Number len;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
if (mlu == NULL) return FALSE;
|
2015-07-21 23:49:11 +02:00
|
|
|
if (WideString == NULL) return FALSE;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2016-08-06 13:04:56 +02:00
|
|
|
len = (cmsUInt32Number) (mywcslen(WideString)) * sizeof(wchar_t);
|
2011-03-20 23:45:24 +01:00
|
|
|
return AddMLUBlock(mlu, len, WideString, Lang, Cntry);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Duplicating a MLU is as easy as copying all members
|
|
|
|
cmsMLU* CMSEXPORT cmsMLUdup(const cmsMLU* mlu)
|
|
|
|
{
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsMLU* NewMlu = NULL;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Duplicating a NULL obtains a NULL
|
|
|
|
if (mlu == NULL) return NULL;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
NewMlu = cmsMLUalloc(mlu ->ContextID, mlu ->UsedEntries);
|
|
|
|
if (NewMlu == NULL) return NULL;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Should never happen
|
|
|
|
if (NewMlu ->AllocatedEntries < mlu ->UsedEntries)
|
|
|
|
goto Error;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Sanitize...
|
|
|
|
if (NewMlu ->Entries == NULL || mlu ->Entries == NULL) goto Error;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
memmove(NewMlu ->Entries, mlu ->Entries, mlu ->UsedEntries * sizeof(_cmsMLUentry));
|
|
|
|
NewMlu ->UsedEntries = mlu ->UsedEntries;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// The MLU may be empty
|
|
|
|
if (mlu ->PoolUsed == 0) {
|
|
|
|
NewMlu ->MemPool = NULL;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// It is not empty
|
|
|
|
NewMlu ->MemPool = _cmsMalloc(mlu ->ContextID, mlu ->PoolUsed);
|
|
|
|
if (NewMlu ->MemPool == NULL) goto Error;
|
|
|
|
}
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
NewMlu ->PoolSize = mlu ->PoolUsed;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (NewMlu ->MemPool == NULL || mlu ->MemPool == NULL) goto Error;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
memmove(NewMlu ->MemPool, mlu->MemPool, mlu ->PoolUsed);
|
|
|
|
NewMlu ->PoolUsed = mlu ->PoolUsed;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
return NewMlu;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
Error:
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (NewMlu != NULL) cmsMLUfree(NewMlu);
|
|
|
|
return NULL;
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Free any used memory
|
|
|
|
void CMSEXPORT cmsMLUfree(cmsMLU* mlu)
|
|
|
|
{
|
2015-07-21 23:49:11 +02:00
|
|
|
if (mlu) {
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (mlu -> Entries) _cmsFree(mlu ->ContextID, mlu->Entries);
|
|
|
|
if (mlu -> MemPool) _cmsFree(mlu ->ContextID, mlu->MemPool);
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
_cmsFree(mlu ->ContextID, mlu);
|
|
|
|
}
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// The algorithm first searches for an exact match of country and language, if not found it uses
|
2011-03-20 23:45:24 +01:00
|
|
|
// the Language. If none is found, first entry is used instead.
|
|
|
|
static
|
2015-07-21 23:49:11 +02:00
|
|
|
const wchar_t* _cmsMLUgetWide(const cmsMLU* mlu,
|
|
|
|
cmsUInt32Number *len,
|
|
|
|
cmsUInt16Number LanguageCode, cmsUInt16Number CountryCode,
|
|
|
|
cmsUInt16Number* UsedLanguageCode, cmsUInt16Number* UsedCountryCode)
|
2011-03-20 23:45:24 +01:00
|
|
|
{
|
2016-04-30 17:58:04 +02:00
|
|
|
cmsUInt32Number i;
|
|
|
|
cmsInt32Number Best = -1;
|
2015-07-21 23:49:11 +02:00
|
|
|
_cmsMLUentry* v;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
if (mlu == NULL) return NULL;
|
|
|
|
|
|
|
|
if (mlu -> AllocatedEntries <= 0) return NULL;
|
|
|
|
|
|
|
|
for (i=0; i < mlu ->UsedEntries; i++) {
|
|
|
|
|
|
|
|
v = mlu ->Entries + i;
|
|
|
|
|
|
|
|
if (v -> Language == LanguageCode) {
|
|
|
|
|
|
|
|
if (Best == -1) Best = i;
|
|
|
|
|
|
|
|
if (v -> Country == CountryCode) {
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (UsedLanguageCode != NULL) *UsedLanguageCode = v ->Language;
|
|
|
|
if (UsedCountryCode != NULL) *UsedCountryCode = v ->Country;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
if (len != NULL) *len = v ->Len;
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
return (wchar_t*) ((cmsUInt8Number*) mlu ->MemPool + v -> StrW); // Found exact match
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No string found. Return First one
|
|
|
|
if (Best == -1)
|
|
|
|
Best = 0;
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
v = mlu ->Entries + Best;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (UsedLanguageCode != NULL) *UsedLanguageCode = v ->Language;
|
|
|
|
if (UsedCountryCode != NULL) *UsedCountryCode = v ->Country;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
if (len != NULL) *len = v ->Len;
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
return(wchar_t*) ((cmsUInt8Number*) mlu ->MemPool + v ->StrW);
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Obtain an ASCII representation of the wide string. Setting buffer to NULL returns the len
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsUInt32Number CMSEXPORT cmsMLUgetASCII(const cmsMLU* mlu,
|
|
|
|
const char LanguageCode[3], const char CountryCode[3],
|
|
|
|
char* Buffer, cmsUInt32Number BufferSize)
|
2011-03-20 23:45:24 +01:00
|
|
|
{
|
|
|
|
const wchar_t *Wide;
|
|
|
|
cmsUInt32Number StrLen = 0;
|
|
|
|
cmsUInt32Number ASCIIlen, i;
|
|
|
|
|
2016-04-30 17:58:04 +02:00
|
|
|
cmsUInt16Number Lang = strTo16(LanguageCode);
|
|
|
|
cmsUInt16Number Cntry = strTo16(CountryCode);
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Sanitize
|
2011-03-20 23:45:24 +01:00
|
|
|
if (mlu == NULL) return 0;
|
|
|
|
|
|
|
|
// Get WideChar
|
|
|
|
Wide = _cmsMLUgetWide(mlu, &StrLen, Lang, Cntry, NULL, NULL);
|
|
|
|
if (Wide == NULL) return 0;
|
|
|
|
|
|
|
|
ASCIIlen = StrLen / sizeof(wchar_t);
|
|
|
|
|
|
|
|
// Maybe we want only to know the len?
|
|
|
|
if (Buffer == NULL) return ASCIIlen + 1; // Note the zero at the end
|
|
|
|
|
|
|
|
// No buffer size means no data
|
|
|
|
if (BufferSize <= 0) return 0;
|
|
|
|
|
|
|
|
// Some clipping may be required
|
|
|
|
if (BufferSize < ASCIIlen + 1)
|
|
|
|
ASCIIlen = BufferSize - 1;
|
|
|
|
|
|
|
|
// Precess each character
|
2015-07-21 23:49:11 +02:00
|
|
|
for (i=0; i < ASCIIlen; i++) {
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
if (Wide[i] == 0)
|
|
|
|
Buffer[i] = 0;
|
|
|
|
else
|
|
|
|
Buffer[i] = (char) Wide[i];
|
|
|
|
}
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// We put a termination "\0"
|
2011-03-20 23:45:24 +01:00
|
|
|
Buffer[ASCIIlen] = 0;
|
|
|
|
return ASCIIlen + 1;
|
|
|
|
}
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Obtain a wide representation of the MLU, on depending on current locale settings
|
|
|
|
cmsUInt32Number CMSEXPORT cmsMLUgetWide(const cmsMLU* mlu,
|
|
|
|
const char LanguageCode[3], const char CountryCode[3],
|
|
|
|
wchar_t* Buffer, cmsUInt32Number BufferSize)
|
2011-03-20 23:45:24 +01:00
|
|
|
{
|
|
|
|
const wchar_t *Wide;
|
|
|
|
cmsUInt32Number StrLen = 0;
|
|
|
|
|
2016-04-30 17:58:04 +02:00
|
|
|
cmsUInt16Number Lang = strTo16(LanguageCode);
|
|
|
|
cmsUInt16Number Cntry = strTo16(CountryCode);
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Sanitize
|
2011-03-20 23:45:24 +01:00
|
|
|
if (mlu == NULL) return 0;
|
|
|
|
|
|
|
|
Wide = _cmsMLUgetWide(mlu, &StrLen, Lang, Cntry, NULL, NULL);
|
|
|
|
if (Wide == NULL) return 0;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
// Maybe we want only to know the len?
|
|
|
|
if (Buffer == NULL) return StrLen + sizeof(wchar_t);
|
|
|
|
|
|
|
|
// No buffer size means no data
|
|
|
|
if (BufferSize <= 0) return 0;
|
|
|
|
|
|
|
|
// Some clipping may be required
|
|
|
|
if (BufferSize < StrLen + sizeof(wchar_t))
|
|
|
|
StrLen = BufferSize - + sizeof(wchar_t);
|
|
|
|
|
|
|
|
memmove(Buffer, Wide, StrLen);
|
2015-07-21 23:49:11 +02:00
|
|
|
Buffer[StrLen / sizeof(wchar_t)] = 0;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
return StrLen + sizeof(wchar_t);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Get also the language and country
|
2015-07-21 23:49:11 +02:00
|
|
|
CMSAPI cmsBool CMSEXPORT cmsMLUgetTranslation(const cmsMLU* mlu,
|
|
|
|
const char LanguageCode[3], const char CountryCode[3],
|
|
|
|
char ObtainedLanguage[3], char ObtainedCountry[3])
|
2011-03-20 23:45:24 +01:00
|
|
|
{
|
2015-07-21 23:49:11 +02:00
|
|
|
const wchar_t *Wide;
|
|
|
|
|
2016-04-30 17:58:04 +02:00
|
|
|
cmsUInt16Number Lang = strTo16(LanguageCode);
|
|
|
|
cmsUInt16Number Cntry = strTo16(CountryCode);
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsUInt16Number ObtLang, ObtCode;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Sanitize
|
2011-03-20 23:45:24 +01:00
|
|
|
if (mlu == NULL) return FALSE;
|
|
|
|
|
|
|
|
Wide = _cmsMLUgetWide(mlu, NULL, Lang, Cntry, &ObtLang, &ObtCode);
|
2015-07-21 23:49:11 +02:00
|
|
|
if (Wide == NULL) return FALSE;
|
|
|
|
|
|
|
|
// Get used language and code
|
2016-04-30 17:58:04 +02:00
|
|
|
strFrom16(ObtainedLanguage, ObtLang);
|
|
|
|
strFrom16(ObtainedCountry, ObtCode);
|
2015-07-21 23:49:11 +02:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Get the number of translations in the MLU object
|
|
|
|
cmsUInt32Number CMSEXPORT cmsMLUtranslationsCount(const cmsMLU* mlu)
|
|
|
|
{
|
|
|
|
if (mlu == NULL) return 0;
|
|
|
|
return mlu->UsedEntries;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the language and country codes for a specific MLU index
|
|
|
|
cmsBool CMSEXPORT cmsMLUtranslationsCodes(const cmsMLU* mlu,
|
|
|
|
cmsUInt32Number idx,
|
|
|
|
char LanguageCode[3],
|
|
|
|
char CountryCode[3])
|
|
|
|
{
|
|
|
|
_cmsMLUentry *entry;
|
|
|
|
|
|
|
|
if (mlu == NULL) return FALSE;
|
|
|
|
|
2016-04-30 17:58:04 +02:00
|
|
|
if (idx >= mlu->UsedEntries) return FALSE;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
|
|
|
entry = &mlu->Entries[idx];
|
|
|
|
|
2016-04-30 17:58:04 +02:00
|
|
|
strFrom16(LanguageCode, entry->Language);
|
|
|
|
strFrom16(CountryCode, entry->Country);
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
return TRUE;
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Named color lists --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Grow the list to keep at least NumElements
|
|
|
|
static
|
|
|
|
cmsBool GrowNamedColorList(cmsNAMEDCOLORLIST* v)
|
2015-07-21 23:49:11 +02:00
|
|
|
{
|
2011-03-20 23:45:24 +01:00
|
|
|
cmsUInt32Number size;
|
|
|
|
_cmsNAMEDCOLOR * NewPtr;
|
|
|
|
|
|
|
|
if (v == NULL) return FALSE;
|
|
|
|
|
|
|
|
if (v ->Allocated == 0)
|
|
|
|
size = 64; // Initial guess
|
|
|
|
else
|
|
|
|
size = v ->Allocated * 2;
|
|
|
|
|
|
|
|
// Keep a maximum color lists can grow, 100K entries seems reasonable
|
|
|
|
if (size > 1024*100) return FALSE;
|
|
|
|
|
|
|
|
NewPtr = (_cmsNAMEDCOLOR*) _cmsRealloc(v ->ContextID, v ->List, size * sizeof(_cmsNAMEDCOLOR));
|
2015-07-21 23:49:11 +02:00
|
|
|
if (NewPtr == NULL)
|
2011-03-20 23:45:24 +01:00
|
|
|
return FALSE;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
v ->List = NewPtr;
|
|
|
|
v ->Allocated = size;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allocate a list for n elements
|
|
|
|
cmsNAMEDCOLORLIST* CMSEXPORT cmsAllocNamedColorList(cmsContext ContextID, cmsUInt32Number n, cmsUInt32Number ColorantCount, const char* Prefix, const char* Suffix)
|
|
|
|
{
|
|
|
|
cmsNAMEDCOLORLIST* v = (cmsNAMEDCOLORLIST*) _cmsMallocZero(ContextID, sizeof(cmsNAMEDCOLORLIST));
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
if (v == NULL) return NULL;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
v ->List = NULL;
|
|
|
|
v ->nColors = 0;
|
|
|
|
v ->ContextID = ContextID;
|
|
|
|
|
2016-04-30 17:58:04 +02:00
|
|
|
while (v -> Allocated < n){
|
|
|
|
if (!GrowNamedColorList(v)) return NULL;
|
|
|
|
}
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
strncpy(v ->Prefix, Prefix, sizeof(v ->Prefix)-1);
|
|
|
|
strncpy(v ->Suffix, Suffix, sizeof(v ->Suffix)-1);
|
|
|
|
v->Prefix[32] = v->Suffix[32] = 0;
|
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
v -> ColorantCount = ColorantCount;
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Free a list
|
|
|
|
void CMSEXPORT cmsFreeNamedColorList(cmsNAMEDCOLORLIST* v)
|
2015-07-21 23:49:11 +02:00
|
|
|
{
|
|
|
|
if (v == NULL) return;
|
2011-03-20 23:45:24 +01:00
|
|
|
if (v ->List) _cmsFree(v ->ContextID, v ->List);
|
2015-07-21 23:49:11 +02:00
|
|
|
_cmsFree(v ->ContextID, v);
|
|
|
|
}
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
cmsNAMEDCOLORLIST* CMSEXPORT cmsDupNamedColorList(const cmsNAMEDCOLORLIST* v)
|
|
|
|
{
|
|
|
|
cmsNAMEDCOLORLIST* NewNC;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
if (v == NULL) return NULL;
|
|
|
|
|
|
|
|
NewNC= cmsAllocNamedColorList(v ->ContextID, v -> nColors, v ->ColorantCount, v ->Prefix, v ->Suffix);
|
|
|
|
if (NewNC == NULL) return NULL;
|
|
|
|
|
|
|
|
// For really large tables we need this
|
2016-04-30 17:58:04 +02:00
|
|
|
while (NewNC ->Allocated < v ->Allocated){
|
|
|
|
if (!GrowNamedColorList(NewNC)) return NULL;
|
|
|
|
}
|
2011-03-20 23:45:24 +01:00
|
|
|
|
|
|
|
memmove(NewNC ->Prefix, v ->Prefix, sizeof(v ->Prefix));
|
|
|
|
memmove(NewNC ->Suffix, v ->Suffix, sizeof(v ->Suffix));
|
|
|
|
NewNC ->ColorantCount = v ->ColorantCount;
|
|
|
|
memmove(NewNC->List, v ->List, v->nColors * sizeof(_cmsNAMEDCOLOR));
|
|
|
|
NewNC ->nColors = v ->nColors;
|
|
|
|
return NewNC;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Append a color to a list. List pointer may change if reallocated
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsBool CMSEXPORT cmsAppendNamedColor(cmsNAMEDCOLORLIST* NamedColorList,
|
|
|
|
const char* Name,
|
2011-03-20 23:45:24 +01:00
|
|
|
cmsUInt16Number PCS[3], cmsUInt16Number Colorant[cmsMAXCHANNELS])
|
2015-07-21 23:49:11 +02:00
|
|
|
{
|
2011-03-20 23:45:24 +01:00
|
|
|
cmsUInt32Number i;
|
|
|
|
|
|
|
|
if (NamedColorList == NULL) return FALSE;
|
|
|
|
|
|
|
|
if (NamedColorList ->nColors + 1 > NamedColorList ->Allocated) {
|
|
|
|
if (!GrowNamedColorList(NamedColorList)) return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i=0; i < NamedColorList ->ColorantCount; i++)
|
|
|
|
NamedColorList ->List[NamedColorList ->nColors].DeviceColorant[i] = Colorant == NULL? 0 : Colorant[i];
|
|
|
|
|
|
|
|
for (i=0; i < 3; i++)
|
|
|
|
NamedColorList ->List[NamedColorList ->nColors].PCS[i] = PCS == NULL ? 0 : PCS[i];
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (Name != NULL) {
|
|
|
|
|
|
|
|
strncpy(NamedColorList ->List[NamedColorList ->nColors].Name, Name, cmsMAX_PATH-1);
|
|
|
|
NamedColorList ->List[NamedColorList ->nColors].Name[cmsMAX_PATH-1] = 0;
|
|
|
|
|
|
|
|
}
|
2011-03-20 23:45:24 +01:00
|
|
|
else
|
|
|
|
NamedColorList ->List[NamedColorList ->nColors].Name[0] = 0;
|
|
|
|
|
|
|
|
|
|
|
|
NamedColorList ->nColors++;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Returns number of elements
|
2011-03-20 23:45:24 +01:00
|
|
|
cmsUInt32Number CMSEXPORT cmsNamedColorCount(const cmsNAMEDCOLORLIST* NamedColorList)
|
2015-07-21 23:49:11 +02:00
|
|
|
{
|
2011-03-20 23:45:24 +01:00
|
|
|
if (NamedColorList == NULL) return 0;
|
|
|
|
return NamedColorList ->nColors;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Info aboout a given color
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsBool CMSEXPORT cmsNamedColorInfo(const cmsNAMEDCOLORLIST* NamedColorList, cmsUInt32Number nColor,
|
|
|
|
char* Name,
|
|
|
|
char* Prefix,
|
2011-03-20 23:45:24 +01:00
|
|
|
char* Suffix,
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsUInt16Number* PCS,
|
2011-03-20 23:45:24 +01:00
|
|
|
cmsUInt16Number* Colorant)
|
2015-07-21 23:49:11 +02:00
|
|
|
{
|
2011-03-20 23:45:24 +01:00
|
|
|
if (NamedColorList == NULL) return FALSE;
|
|
|
|
|
|
|
|
if (nColor >= cmsNamedColorCount(NamedColorList)) return FALSE;
|
|
|
|
|
|
|
|
if (Name) strcpy(Name, NamedColorList->List[nColor].Name);
|
|
|
|
if (Prefix) strcpy(Prefix, NamedColorList->Prefix);
|
|
|
|
if (Suffix) strcpy(Suffix, NamedColorList->Suffix);
|
2015-07-21 23:49:11 +02:00
|
|
|
if (PCS)
|
2011-03-20 23:45:24 +01:00
|
|
|
memmove(PCS, NamedColorList ->List[nColor].PCS, 3*sizeof(cmsUInt16Number));
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (Colorant)
|
|
|
|
memmove(Colorant, NamedColorList ->List[nColor].DeviceColorant,
|
2011-03-20 23:45:24 +01:00
|
|
|
sizeof(cmsUInt16Number) * NamedColorList ->ColorantCount);
|
|
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Search for a given color name (no prefix or suffix)
|
|
|
|
cmsInt32Number CMSEXPORT cmsNamedColorIndex(const cmsNAMEDCOLORLIST* NamedColorList, const char* Name)
|
2015-07-21 23:49:11 +02:00
|
|
|
{
|
2011-03-20 23:45:24 +01:00
|
|
|
int i, n;
|
|
|
|
|
|
|
|
if (NamedColorList == NULL) return -1;
|
|
|
|
n = cmsNamedColorCount(NamedColorList);
|
|
|
|
for (i=0; i < n; i++) {
|
|
|
|
if (cmsstrcasecmp(Name, NamedColorList->List[i].Name) == 0)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// MPE support -----------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static
|
|
|
|
void FreeNamedColorList(cmsStage* mpe)
|
|
|
|
{
|
|
|
|
cmsNAMEDCOLORLIST* List = (cmsNAMEDCOLORLIST*) mpe ->Data;
|
|
|
|
cmsFreeNamedColorList(List);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void* DupNamedColorList(cmsStage* mpe)
|
|
|
|
{
|
|
|
|
cmsNAMEDCOLORLIST* List = (cmsNAMEDCOLORLIST*) mpe ->Data;
|
|
|
|
return cmsDupNamedColorList(List);
|
|
|
|
}
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
static
|
|
|
|
void EvalNamedColorPCS(const cmsFloat32Number In[], cmsFloat32Number Out[], const cmsStage *mpe)
|
|
|
|
{
|
|
|
|
cmsNAMEDCOLORLIST* NamedColorList = (cmsNAMEDCOLORLIST*) mpe ->Data;
|
|
|
|
cmsUInt16Number index = (cmsUInt16Number) _cmsQuickSaturateWord(In[0] * 65535.0);
|
|
|
|
|
|
|
|
if (index >= NamedColorList-> nColors) {
|
|
|
|
cmsSignalError(NamedColorList ->ContextID, cmsERROR_RANGE, "Color %d out of range; ignored", index);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
// Named color always uses Lab
|
|
|
|
Out[0] = (cmsFloat32Number) (NamedColorList->List[index].PCS[0] / 65535.0);
|
|
|
|
Out[1] = (cmsFloat32Number) (NamedColorList->List[index].PCS[1] / 65535.0);
|
|
|
|
Out[2] = (cmsFloat32Number) (NamedColorList->List[index].PCS[2] / 65535.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
static
|
|
|
|
void EvalNamedColor(const cmsFloat32Number In[], cmsFloat32Number Out[], const cmsStage *mpe)
|
|
|
|
{
|
|
|
|
cmsNAMEDCOLORLIST* NamedColorList = (cmsNAMEDCOLORLIST*) mpe ->Data;
|
|
|
|
cmsUInt16Number index = (cmsUInt16Number) _cmsQuickSaturateWord(In[0] * 65535.0);
|
|
|
|
cmsUInt32Number j;
|
|
|
|
|
|
|
|
if (index >= NamedColorList-> nColors) {
|
|
|
|
cmsSignalError(NamedColorList ->ContextID, cmsERROR_RANGE, "Color %d out of range; ignored", index);
|
|
|
|
}
|
|
|
|
else {
|
2015-07-21 23:49:11 +02:00
|
|
|
for (j=0; j < NamedColorList ->ColorantCount; j++)
|
|
|
|
Out[j] = (cmsFloat32Number) (NamedColorList->List[index].DeviceColorant[j] / 65535.0);
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Named color lookup element
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsStage* _cmsStageAllocNamedColor(cmsNAMEDCOLORLIST* NamedColorList, cmsBool UsePCS)
|
2011-03-20 23:45:24 +01:00
|
|
|
{
|
2015-07-21 23:49:11 +02:00
|
|
|
return _cmsStageAllocPlaceholder(NamedColorList ->ContextID,
|
|
|
|
cmsSigNamedColorElemType,
|
|
|
|
1, UsePCS ? 3 : NamedColorList ->ColorantCount,
|
|
|
|
UsePCS ? EvalNamedColorPCS : EvalNamedColor,
|
|
|
|
DupNamedColorList,
|
|
|
|
FreeNamedColorList,
|
|
|
|
cmsDupNamedColorList(NamedColorList));
|
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Retrieve the named color list from a transform. Should be first element in the LUT
|
|
|
|
cmsNAMEDCOLORLIST* CMSEXPORT cmsGetNamedColorList(cmsHTRANSFORM xform)
|
|
|
|
{
|
|
|
|
_cmsTRANSFORM* v = (_cmsTRANSFORM*) xform;
|
|
|
|
cmsStage* mpe = v ->Lut->Elements;
|
|
|
|
|
|
|
|
if (mpe ->Type != cmsSigNamedColorElemType) return NULL;
|
|
|
|
return (cmsNAMEDCOLORLIST*) mpe ->Data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Profile sequence description routines -------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
cmsSEQ* CMSEXPORT cmsAllocProfileSequenceDescription(cmsContext ContextID, cmsUInt32Number n)
|
|
|
|
{
|
|
|
|
cmsSEQ* Seq;
|
|
|
|
cmsUInt32Number i;
|
|
|
|
|
|
|
|
if (n == 0) return NULL;
|
|
|
|
|
|
|
|
// In a absolutely arbitrary way, I hereby decide to allow a maxim of 255 profiles linked
|
|
|
|
// in a devicelink. It makes not sense anyway and may be used for exploits, so let's close the door!
|
|
|
|
if (n > 255) return NULL;
|
|
|
|
|
|
|
|
Seq = (cmsSEQ*) _cmsMallocZero(ContextID, sizeof(cmsSEQ));
|
2015-07-21 23:49:11 +02:00
|
|
|
if (Seq == NULL) return NULL;
|
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
Seq -> ContextID = ContextID;
|
|
|
|
Seq -> seq = (cmsPSEQDESC*) _cmsCalloc(ContextID, n, sizeof(cmsPSEQDESC));
|
|
|
|
Seq -> n = n;
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (Seq -> seq == NULL) {
|
|
|
|
_cmsFree(ContextID, Seq);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
for (i=0; i < n; i++) {
|
|
|
|
Seq -> seq[i].Manufacturer = NULL;
|
|
|
|
Seq -> seq[i].Model = NULL;
|
|
|
|
Seq -> seq[i].Description = NULL;
|
|
|
|
}
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
return Seq;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CMSEXPORT cmsFreeProfileSequenceDescription(cmsSEQ* pseq)
|
|
|
|
{
|
|
|
|
cmsUInt32Number i;
|
|
|
|
|
|
|
|
for (i=0; i < pseq ->n; i++) {
|
|
|
|
if (pseq ->seq[i].Manufacturer != NULL) cmsMLUfree(pseq ->seq[i].Manufacturer);
|
|
|
|
if (pseq ->seq[i].Model != NULL) cmsMLUfree(pseq ->seq[i].Model);
|
|
|
|
if (pseq ->seq[i].Description != NULL) cmsMLUfree(pseq ->seq[i].Description);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pseq ->seq != NULL) _cmsFree(pseq ->ContextID, pseq ->seq);
|
|
|
|
_cmsFree(pseq -> ContextID, pseq);
|
|
|
|
}
|
|
|
|
|
|
|
|
cmsSEQ* CMSEXPORT cmsDupProfileSequenceDescription(const cmsSEQ* pseq)
|
|
|
|
{
|
|
|
|
cmsSEQ *NewSeq;
|
|
|
|
cmsUInt32Number i;
|
|
|
|
|
|
|
|
if (pseq == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
NewSeq = (cmsSEQ*) _cmsMalloc(pseq -> ContextID, sizeof(cmsSEQ));
|
|
|
|
if (NewSeq == NULL) return NULL;
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
NewSeq -> seq = (cmsPSEQDESC*) _cmsCalloc(pseq ->ContextID, pseq ->n, sizeof(cmsPSEQDESC));
|
|
|
|
if (NewSeq ->seq == NULL) goto Error;
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
NewSeq -> ContextID = pseq ->ContextID;
|
|
|
|
NewSeq -> n = pseq ->n;
|
|
|
|
|
|
|
|
for (i=0; i < pseq->n; i++) {
|
|
|
|
|
|
|
|
memmove(&NewSeq ->seq[i].attributes, &pseq ->seq[i].attributes, sizeof(cmsUInt64Number));
|
|
|
|
|
|
|
|
NewSeq ->seq[i].deviceMfg = pseq ->seq[i].deviceMfg;
|
|
|
|
NewSeq ->seq[i].deviceModel = pseq ->seq[i].deviceModel;
|
|
|
|
memmove(&NewSeq ->seq[i].ProfileID, &pseq ->seq[i].ProfileID, sizeof(cmsProfileID));
|
|
|
|
NewSeq ->seq[i].technology = pseq ->seq[i].technology;
|
|
|
|
|
|
|
|
NewSeq ->seq[i].Manufacturer = cmsMLUdup(pseq ->seq[i].Manufacturer);
|
|
|
|
NewSeq ->seq[i].Model = cmsMLUdup(pseq ->seq[i].Model);
|
|
|
|
NewSeq ->seq[i].Description = cmsMLUdup(pseq ->seq[i].Description);
|
2015-07-21 23:49:11 +02:00
|
|
|
|
2011-03-20 23:45:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return NewSeq;
|
|
|
|
|
|
|
|
Error:
|
|
|
|
|
|
|
|
cmsFreeProfileSequenceDescription(NewSeq);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Dictionaries --------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Dictionaries are just very simple linked lists
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _cmsDICT_struct {
|
|
|
|
cmsDICTentry* head;
|
|
|
|
cmsContext ContextID;
|
|
|
|
} _cmsDICT;
|
|
|
|
|
|
|
|
|
|
|
|
// Allocate an empty dictionary
|
|
|
|
cmsHANDLE CMSEXPORT cmsDictAlloc(cmsContext ContextID)
|
|
|
|
{
|
|
|
|
_cmsDICT* dict = (_cmsDICT*) _cmsMallocZero(ContextID, sizeof(_cmsDICT));
|
|
|
|
if (dict == NULL) return NULL;
|
|
|
|
|
|
|
|
dict ->ContextID = ContextID;
|
|
|
|
return (cmsHANDLE) dict;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dispose resources
|
|
|
|
void CMSEXPORT cmsDictFree(cmsHANDLE hDict)
|
|
|
|
{
|
|
|
|
_cmsDICT* dict = (_cmsDICT*) hDict;
|
|
|
|
cmsDICTentry *entry, *next;
|
|
|
|
|
|
|
|
_cmsAssert(dict != NULL);
|
|
|
|
|
|
|
|
// Walk the list freeing all nodes
|
|
|
|
entry = dict ->head;
|
|
|
|
while (entry != NULL) {
|
|
|
|
|
|
|
|
if (entry ->DisplayName != NULL) cmsMLUfree(entry ->DisplayName);
|
|
|
|
if (entry ->DisplayValue != NULL) cmsMLUfree(entry ->DisplayValue);
|
|
|
|
if (entry ->Name != NULL) _cmsFree(dict ->ContextID, entry -> Name);
|
|
|
|
if (entry ->Value != NULL) _cmsFree(dict ->ContextID, entry -> Value);
|
|
|
|
|
|
|
|
// Don't fall in the habitual trap...
|
|
|
|
next = entry ->Next;
|
|
|
|
_cmsFree(dict ->ContextID, entry);
|
|
|
|
|
|
|
|
entry = next;
|
|
|
|
}
|
|
|
|
|
|
|
|
_cmsFree(dict ->ContextID, dict);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Duplicate a wide char string
|
|
|
|
static
|
|
|
|
wchar_t* DupWcs(cmsContext ContextID, const wchar_t* ptr)
|
|
|
|
{
|
|
|
|
if (ptr == NULL) return NULL;
|
|
|
|
return (wchar_t*) _cmsDupMem(ContextID, ptr, (mywcslen(ptr) + 1) * sizeof(wchar_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a new entry to the linked list
|
|
|
|
cmsBool CMSEXPORT cmsDictAddEntry(cmsHANDLE hDict, const wchar_t* Name, const wchar_t* Value, const cmsMLU *DisplayName, const cmsMLU *DisplayValue)
|
|
|
|
{
|
|
|
|
_cmsDICT* dict = (_cmsDICT*) hDict;
|
|
|
|
cmsDICTentry *entry;
|
|
|
|
|
|
|
|
_cmsAssert(dict != NULL);
|
|
|
|
_cmsAssert(Name != NULL);
|
|
|
|
|
|
|
|
entry = (cmsDICTentry*) _cmsMallocZero(dict ->ContextID, sizeof(cmsDICTentry));
|
|
|
|
if (entry == NULL) return FALSE;
|
|
|
|
|
|
|
|
entry ->DisplayName = cmsMLUdup(DisplayName);
|
|
|
|
entry ->DisplayValue = cmsMLUdup(DisplayValue);
|
|
|
|
entry ->Name = DupWcs(dict ->ContextID, Name);
|
|
|
|
entry ->Value = DupWcs(dict ->ContextID, Value);
|
|
|
|
|
|
|
|
entry ->Next = dict ->head;
|
|
|
|
dict ->head = entry;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Duplicates an existing dictionary
|
|
|
|
cmsHANDLE CMSEXPORT cmsDictDup(cmsHANDLE hDict)
|
|
|
|
{
|
|
|
|
_cmsDICT* old_dict = (_cmsDICT*) hDict;
|
|
|
|
cmsHANDLE hNew;
|
|
|
|
cmsDICTentry *entry;
|
|
|
|
|
|
|
|
_cmsAssert(old_dict != NULL);
|
|
|
|
|
|
|
|
hNew = cmsDictAlloc(old_dict ->ContextID);
|
|
|
|
if (hNew == NULL) return NULL;
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
// Walk the list freeing all nodes
|
|
|
|
entry = old_dict ->head;
|
|
|
|
while (entry != NULL) {
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
if (!cmsDictAddEntry(hNew, entry ->Name, entry ->Value, entry ->DisplayName, entry ->DisplayValue)) {
|
2011-03-20 23:45:24 +01:00
|
|
|
|
2015-07-21 23:49:11 +02:00
|
|
|
cmsDictFree(hNew);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
entry = entry -> Next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hNew;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get a pointer to the linked list
|
|
|
|
const cmsDICTentry* CMSEXPORT cmsDictGetEntryList(cmsHANDLE hDict)
|
|
|
|
{
|
|
|
|
_cmsDICT* dict = (_cmsDICT*) hDict;
|
|
|
|
|
|
|
|
if (dict == NULL) return NULL;
|
|
|
|
return dict ->head;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Helper For external languages
|
|
|
|
const cmsDICTentry* CMSEXPORT cmsDictNextEntry(const cmsDICTentry* e)
|
|
|
|
{
|
|
|
|
if (e == NULL) return NULL;
|
|
|
|
return e ->Next;
|
|
|
|
}
|