1999-09-21 00:08:25 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +00: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/. */
|
1999-09-21 00:08:25 +00:00
|
|
|
|
|
|
|
#ifndef nsPrimitiveHelpers_h___
|
|
|
|
#define nsPrimitiveHelpers_h___
|
|
|
|
|
|
|
|
#include "prtypes.h"
|
1999-12-02 03:39:41 +00:00
|
|
|
#include "nsError.h"
|
2000-01-29 20:24:50 +00:00
|
|
|
#include "nscore.h"
|
1999-09-21 00:08:25 +00:00
|
|
|
|
|
|
|
class nsISupports;
|
|
|
|
|
|
|
|
|
|
|
|
class nsPrimitiveHelpers
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
1999-11-30 22:07:29 +00:00
|
|
|
// Given some data and the flavor it corresponds to, creates the appropriate
|
|
|
|
// nsISupports* wrapper for passing across IDL boundaries. The length parameter
|
|
|
|
// should not include the null if the data is null terminated.
|
1999-09-21 00:08:25 +00:00
|
|
|
static void CreatePrimitiveForData ( const char* aFlavor, void* aDataBuff,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aDataLen, nsISupports** aPrimitive ) ;
|
1999-09-21 00:08:25 +00:00
|
|
|
|
1999-11-30 22:07:29 +00:00
|
|
|
// Given a nsISupports* primitive and the flavor it represents, creates a new data
|
|
|
|
// buffer with the data in it. This data will be null terminated, but the length
|
|
|
|
// parameter does not reflect that.
|
1999-09-21 00:08:25 +00:00
|
|
|
static void CreateDataFromPrimitive ( const char* aFlavor, nsISupports* aPrimitive,
|
2012-08-22 15:56:38 +00:00
|
|
|
void** aDataBuff, uint32_t aDataLen ) ;
|
1999-09-21 00:08:25 +00:00
|
|
|
|
2000-01-29 20:24:50 +00:00
|
|
|
// Given a unicode buffer (flavor text/unicode), this converts it to plain text using
|
|
|
|
// the appropriate platform charset encoding. |inUnicodeLen| is the length of the input
|
2000-02-01 22:26:21 +00:00
|
|
|
// string, not the # of bytes in the buffer. |outPlainTextData| is null terminated,
|
2000-01-29 20:24:50 +00:00
|
|
|
// but its length parameter, |outPlainTextLen|, does not reflect that.
|
2012-08-22 15:56:38 +00:00
|
|
|
static nsresult ConvertUnicodeToPlatformPlainText ( PRUnichar* inUnicode, int32_t inUnicodeLen,
|
|
|
|
char** outPlainTextData, int32_t* outPlainTextLen ) ;
|
2000-01-29 20:24:50 +00:00
|
|
|
|
2000-02-01 22:26:21 +00:00
|
|
|
// Given a char buffer (flavor text/plaikn), this converts it to unicode using
|
|
|
|
// the appropriate platform charset encoding. |outUnicode| is null terminated,
|
|
|
|
// but its length parameter, |outUnicodeLen|, does not reflect that. |outUnicodeLen| is
|
|
|
|
// the length of the string in characters, not bytes.
|
2012-08-22 15:56:38 +00:00
|
|
|
static nsresult ConvertPlatformPlainTextToUnicode ( const char* inText, int32_t inTextLen,
|
|
|
|
PRUnichar** outUnicode, int32_t* outUnicodeLen ) ;
|
2000-02-01 22:26:21 +00:00
|
|
|
|
1999-09-21 00:08:25 +00:00
|
|
|
}; // class nsPrimitiveHelpers
|
|
|
|
|
|
|
|
|
1999-12-02 03:39:41 +00:00
|
|
|
|
|
|
|
class nsLinebreakHelpers
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Given some data, convert from the platform linebreaks into the LF expected by the
|
|
|
|
// DOM. This will attempt to convert the data in place, but the buffer may still need to
|
|
|
|
// be reallocated regardless (disposing the old buffer is taken care of internally, see
|
|
|
|
// the note below).
|
|
|
|
//
|
2000-06-03 09:46:12 +00:00
|
|
|
// NOTE: this assumes that it can use nsMemory to dispose of the old buffer.
|
2012-08-22 15:56:38 +00:00
|
|
|
static nsresult ConvertPlatformToDOMLinebreaks ( const char* inFlavor, void** ioData, int32_t* ioLengthInBytes ) ;
|
1999-12-02 03:39:41 +00:00
|
|
|
|
|
|
|
}; // class nsLinebreakHelpers
|
|
|
|
|
|
|
|
|
1999-09-21 00:08:25 +00:00
|
|
|
#endif // nsPrimitiveHelpers_h___
|