mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-01 03:12:29 +00:00
70 lines
1.1 KiB
C++
70 lines
1.1 KiB
C++
#include <qpdf/QPDF_Name.hh>
|
|
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <qpdf/QUtil.hh>
|
|
|
|
QPDF_Name::QPDF_Name(std::string const& name) :
|
|
name(name)
|
|
{
|
|
}
|
|
|
|
QPDF_Name::~QPDF_Name()
|
|
{
|
|
}
|
|
|
|
std::string
|
|
QPDF_Name::normalizeName(std::string const& name)
|
|
{
|
|
if (name.empty())
|
|
{
|
|
return name;
|
|
}
|
|
std::string result;
|
|
result += name.at(0);
|
|
for (unsigned int i = 1; i < name.length(); ++i)
|
|
{
|
|
char ch = name.at(i);
|
|
// Don't use locale/ctype here; follow PDF spec guidelines.
|
|
if (strchr("#()<>[]{}/%", ch) || (ch < 33) || (ch > 126))
|
|
{
|
|
result += "#" + QUtil::hex_encode(std::string(&ch, 1));
|
|
}
|
|
else
|
|
{
|
|
result += ch;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
std::string
|
|
QPDF_Name::unparse()
|
|
{
|
|
return normalizeName(this->name);
|
|
}
|
|
|
|
JSON
|
|
QPDF_Name::getJSON()
|
|
{
|
|
return JSON::makeString(normalizeName(this->name));
|
|
}
|
|
|
|
QPDFObject::object_type_e
|
|
QPDF_Name::getTypeCode() const
|
|
{
|
|
return QPDFObject::ot_name;
|
|
}
|
|
|
|
char const*
|
|
QPDF_Name::getTypeName() const
|
|
{
|
|
return "name";
|
|
}
|
|
|
|
std::string
|
|
QPDF_Name::getName() const
|
|
{
|
|
return this->name;
|
|
}
|