mirror of
https://github.com/qpdf/qpdf.git
synced 2025-02-10 23:58:31 +00:00
34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
#ifndef QPDF_NAME_HH
|
|
#define QPDF_NAME_HH
|
|
|
|
#include <qpdf/QPDFValue.hh>
|
|
|
|
class QPDF_Name: public QPDFValue
|
|
{
|
|
public:
|
|
~QPDF_Name() override = default;
|
|
static std::shared_ptr<QPDFObject> create(std::string const& name);
|
|
std::shared_ptr<QPDFObject> copy(bool shallow = false) override;
|
|
std::string unparse() override;
|
|
void writeJSON(int json_version, JSON::Writer& p) override;
|
|
|
|
// Put # into strings with characters unsuitable for name token
|
|
static std::string normalizeName(std::string const& name);
|
|
|
|
// Check whether name is valid utf-8 and whether it contains characters that require escaping.
|
|
// Return {false, false} if the name is not valid utf-8, otherwise return {true, true} if no
|
|
// characters require or {true, false} if escaping is required.
|
|
static std::pair<bool, bool> analyzeJSONEncoding(std::string const& name);
|
|
std::string
|
|
getStringValue() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
private:
|
|
QPDF_Name(std::string const& name);
|
|
std::string name;
|
|
};
|
|
|
|
#endif // QPDF_NAME_HH
|