/usr/include/sp/ExternalId.h is in libsp1-dev 1.3.4-1.2.1-47.3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | // Copyright (c) 1994 James Clark
// See the file COPYING for copying permission.
#ifndef ExternalId_INCLUDED
#define ExternalId_INCLUDED 1
#ifdef __GNUG__
#pragma interface
#endif
#include "Boolean.h"
#include "StringC.h"
#include "Text.h"
#include "types.h"
#include "Message.h"
#ifdef SP_NAMESPACE
namespace SP_NAMESPACE {
#endif
class CharsetInfo;
class SP_API PublicId {
public:
enum TextClass {
CAPACITY,
CHARSET,
DOCUMENT,
DTD,
ELEMENTS,
ENTITIES,
LPD,
NONSGML,
NOTATION,
SD,
SHORTREF,
SUBDOC,
SYNTAX,
TEXT
};
enum OwnerType {
ISO,
registered,
unregistered
};
PublicId();
Boolean getOwnerType(OwnerType &) const;
Boolean getOwner(StringC &) const;
Boolean getTextClass(TextClass &) const;
Boolean getUnavailable(Boolean &) const;
Boolean getDescription(StringC &) const;
Boolean getLanguage(StringC &) const;
Boolean getDesignatingSequence(StringC &) const;
Boolean getDisplayVersion(StringC &) const;
// If it's not a valid formal public identifier, return 0
// and set error, otherwise return 1.
// charset describes the character set to use for parsing the
// id.
Boolean init(Text &, const CharsetInfo &, Char space,
const MessageType1 *&error);
const StringC &string() const;
const Text &text() const;
private:
static Boolean nextField(Char solidus,
const Char *&next,
const Char *lim,
const Char *&fieldStart,
size_t &fieldLength);
static Boolean lookupTextClass(const StringC &, const CharsetInfo &,
TextClass &);
static const char *const textClasses[];
PackedBoolean formal_;
OwnerType ownerType_;
StringC owner_;
TextClass textClass_;
PackedBoolean unavailable_;
StringC description_;
StringC languageOrDesignatingSequence_;
PackedBoolean haveDisplayVersion_;
StringC displayVersion_;
Text text_;
};
class SP_API ExternalId {
public:
ExternalId();
const StringC *systemIdString() const;
const StringC *publicIdString() const;
const StringC &effectiveSystemId() const;
const Text *systemIdText() const;
const Text *publicIdText() const;
const PublicId *publicId() const;
void setSystem(Text &);
void setEffectiveSystem(StringC &);
// If it's not a valid formal public identifier, return 0
// and set error, otherwise return 1.
// charset describes the character set to use for parsing the
// id.
Boolean setPublic(Text &, const CharsetInfo &, Char space,
const MessageType1 *&error);
void setLocation(const Location &);
// location of keyword
const Location &location() const;
private:
PackedBoolean haveSystem_;
PackedBoolean havePublic_;
Text system_;
PublicId public_;
Location loc_;
StringC effectiveSystem_;
};
inline
const StringC &PublicId::string() const
{
return text_.string();
}
inline
const Text &PublicId::text() const
{
return text_;
}
inline
const StringC *ExternalId::systemIdString() const
{
return haveSystem_ ? &system_.string() : 0;
}
inline
const StringC *ExternalId::publicIdString() const
{
return havePublic_ ? &public_.string() : 0;
}
inline
const Text *ExternalId::systemIdText() const
{
return haveSystem_ ? &system_ : 0;
}
inline
const Text *ExternalId::publicIdText() const
{
return havePublic_ ? &public_.text() : 0;
}
inline
const PublicId *ExternalId::publicId() const
{
return havePublic_ ? &public_ : 0;
}
inline
const Location &ExternalId::location() const
{
return loc_;
}
inline
const StringC &ExternalId::effectiveSystemId() const
{
return effectiveSystem_;
}
inline
void ExternalId::setEffectiveSystem(StringC &str)
{
str.swap(effectiveSystem_);
}
#ifdef SP_NAMESPACE
}
#endif
#endif /* not ExternalId_INCLUDED */
|