Fixed estimation of generated size when no re-encoding is needed.
This commit is contained in:
parent
e071de8a60
commit
9df44078b8
@ -543,6 +543,13 @@ size_t body::getGeneratedSize(const generationContext& ctx)
|
|||||||
}
|
}
|
||||||
// Simple body
|
// Simple body
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
if (getEncoding() == m_contents->getEncoding())
|
||||||
|
{
|
||||||
|
// No re-encoding has to be performed
|
||||||
|
return m_contents->getLength();
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
shared_ptr <utility::encoder::encoder> srcEncoder = m_contents->getEncoding().getEncoder();
|
shared_ptr <utility::encoder::encoder> srcEncoder = m_contents->getEncoding().getEncoder();
|
||||||
shared_ptr <utility::encoder::encoder> dstEncoder = getEncoding().getEncoder();
|
shared_ptr <utility::encoder::encoder> dstEncoder = getEncoding().getEncoder();
|
||||||
@ -550,6 +557,7 @@ size_t body::getGeneratedSize(const generationContext& ctx)
|
|||||||
return dstEncoder->getEncodedSize(srcEncoder->getDecodedSize(m_contents->getLength()));
|
return dstEncoder->getEncodedSize(srcEncoder->getDecodedSize(m_contents->getLength()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user