blob: 6f5506d095cd052a9f056696724e4e2fdabd4be5 [file] [log] [blame]
/*
* The Apache Software License, Version 1.1
*
*
* Copyright (c) 1999 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Xalan" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation and was
* originally based on software copyright (c) 1999, International
* Business Machines, Inc., http://www.ibm.com. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
#include "XalanNumberFormat.hpp"
#include <Include/XalanAutoPtr.hpp>
#include <Include/STLHelper.hpp>
#include "DOMStringHelper.hpp"
#include "XalanUnicode.hpp"
const XalanDOMChar XalanNumberFormat::s_defaultGroupingSeparator[] =
{
XalanUnicode::charComma,
0
};
XalanNumberFormat::XalanNumberFormat() :
m_isGroupingUsed(false),
m_groupingSeparator(s_defaultGroupingSeparator),
m_groupingSize(3) // Default to US values
{
}
XalanNumberFormat::~XalanNumberFormat()
{
}
XalanDOMString
XalanNumberFormat::format(double theValue)
{
// $$$ ToDo: Fix this!
XalanDOMString theResult;
format(theValue, theResult);
return theResult;
}
void
XalanNumberFormat::format(
double theValue,
XalanDOMString& theResult)
{
// $$$ ToDo: Fix this!
DoubleToDOMString(theValue, theResult);
applyGrouping(theResult, theResult);
}
XalanDOMString
XalanNumberFormat::format(int theValue)
{
// $$$ ToDo: Fix this!
XalanDOMString theResult;
format(theValue, theResult);
return theResult;
}
void
XalanNumberFormat::format(
int theValue,
XalanDOMString& theResult)
{
// $$$ ToDo: Fix this!
LongToDOMString(theValue, theResult);
applyGrouping(theResult, theResult);
}
XalanDOMString
XalanNumberFormat::format(unsigned int theValue)
{
// $$$ ToDo: Fix this!
XalanDOMString theResult;
format(theValue, theResult);
return theResult;
}
void
XalanNumberFormat::format(
unsigned int theValue,
XalanDOMString& theResult)
{
// $$$ ToDo: Fix this!
UnsignedLongToDOMString(theValue, theResult);
applyGrouping(theResult, theResult);
}
XalanDOMString
XalanNumberFormat::format(long theValue)
{
// $$$ ToDo: Fix this!
XalanDOMString theResult;
format(theValue, theResult);
return theResult;
}
void
XalanNumberFormat::format(
long theValue,
XalanDOMString& theResult)
{
// $$$ ToDo: Fix this!
LongToDOMString(theValue, theResult);
applyGrouping(theResult, theResult);
}
XalanDOMString
XalanNumberFormat::format(unsigned long theValue)
{
// $$$ ToDo: Fix this!
XalanDOMString theResult;
format(theValue, theResult);
return theResult;
}
void
XalanNumberFormat::format(
unsigned long theValue,
XalanDOMString& theResult)
{
// $$$ ToDo: Fix this!
UnsignedLongToDOMString(theValue, theResult);
applyGrouping(theResult, theResult);
}
/*
* Convert a string value using the currently active values for grouping size
* and separator; returns the converted string
*/
void
XalanNumberFormat::applyGrouping(
const XalanDOMString& value,
XalanDOMString& result)
{
if (m_isGroupingUsed == false ||
m_groupingSize == 0)
{
result = value;
}
else
{
const XalanDOMString::size_type len = length(value);
if (len == 0)
{
result = value;
}
else
{
// Add two, so we leave one byte at the beginning as empty space
const XalanDOMString::size_type bufsize = len + len / m_groupingSize + 2;
XalanDOMChar* const buffer = new XalanDOMChar[bufsize];
XalanArrayAutoPtr<XalanDOMChar> theGuard(buffer);
XalanDOMChar* p = buffer + bufsize - 1;
*p-- = 0; // null terminate
for (XalanDOMString::size_type i = 0, ix = len - 1; i < len && p > buffer; i++, ix--)
{
const XalanDOMChar c = charAt(value, ix);
if (i && !(i% m_groupingSize))
{
// Could be a multiple character separator??
for (long j = long(m_groupingSeparator.length() - 1); j >= 0 && p > buffer; j--)
*p-- = charAt(m_groupingSeparator, j);
}
*p-- = c;
}
result = ++p;
}
}
}
bool
XalanNumberFormat::isGroupingUsed() const
{
return m_isGroupingUsed;
}
void
XalanNumberFormat::setGroupingUsed(bool bUsed)
{
m_isGroupingUsed = bUsed;
}
void
XalanNumberFormat::setGroupingSize(unsigned long size)
{
assert(size > 0);
m_groupingSize = size;
}
void
XalanNumberFormat::setGroupingSeparator(const XalanDOMString& s)
{
m_groupingSeparator = s;
}