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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
package com.wutka.dtd;
import java.io.*;
import java.net.*;
/** Represents an Entity defined in a DTD
*
* @author Mark Wutka
* @version $Revision: 1.18 $ $Date: 2002/07/31 00:19:10 $ by $Author: wutka $
*/
public class DTDEntity implements DTDOutput
{
public String name;
public boolean isParsed;
public String value;
public DTDExternalID externalID;
public String ndata;
public Object defaultLocation;
public DTDEntity()
{
}
public DTDEntity(String aName)
{
name = aName;
}
public DTDEntity(String aName, Object aDefaultLocation)
{
name = aName;
defaultLocation = aDefaultLocation;
}
/** Writes out an entity declaration for this entity */
public void write(PrintWriter out)
throws IOException
{
out.print("<!ENTITY ");
if (isParsed)
{
out.print(" % ");
}
out.print(name);
if (value != null)
{
char quoteChar = '"';
if (value.indexOf(quoteChar) >= 0) quoteChar='\'';
out.print(quoteChar);
out.print(value);
out.print(quoteChar);
}
else
{
externalID.write(out);
if (ndata != null)
{
out.print(" NDATA ");
out.print(ndata);
}
}
out.println(">");
}
public String getExternalId()
{
return(externalID.system);
}
public Reader getReader()
throws IOException
{
// MAW Ver 1.19 - Added check for externalID == null
if (externalID == null)
{
return null;
}
Reader rd = getReader(externalID.system);
return rd;
}
public Reader getReader(String entityName)
{
try
{
if (defaultLocation != null)
{
if (defaultLocation instanceof File)
{
File loc = (File) defaultLocation;
BufferedReader in = new BufferedReader(
new FileReader(new File(loc, entityName)));
return in;
}
else if (defaultLocation instanceof URL)
{
// MAW Version 1.17
// Changed to construct new URL based on default
// location plus the entity name just like is done
// with the File-based name. This allows parsing of
// a URL-based DTD file that references other files either
// relatively or absolutely.
URL url = new URL((URL) defaultLocation, entityName);
BufferedReader in = new BufferedReader(
new InputStreamReader(url.openStream()));
return in;
}
}
BufferedReader in = new BufferedReader(
new FileReader(entityName));
return in;
}
catch (Exception ignore)
{
}
try
{
URL url = new URL(entityName);
InputStream inStream = url.openStream();
BufferedReader in = new BufferedReader(
new InputStreamReader(inStream));
return in;
}
catch (Exception ignore)
{
}
return null;
}
public boolean equals(Object ob)
{
if (ob == this) return true;
if (!(ob instanceof DTDEntity)) return false;
DTDEntity other = (DTDEntity) ob;
if (name == null)
{
if (other.name != null) return false;
}
else
{
if (!name.equals(other.name)) return false;
}
if (isParsed != other.isParsed) return false;
if (value == null)
{
if (other.value != null) return false;
}
else
{
if (!value.equals(other.value)) return false;
}
if (externalID == null)
{
if (other.externalID != null) return false;
}
else
{
if (!externalID.equals(other.externalID)) return false;
}
if (ndata == null)
{
if (other.ndata != null) return false;
}
else
{
if (!ndata.equals(other.ndata)) return false;
}
return true;
}
/** Sets the name of this entity */
public void setName(String aName)
{
name = aName;
}
/** Returns the name of this entity */
public String getName()
{
return name;
}
/** Sets the isParsed flag */
public void setIsParsed(boolean flag)
{
isParsed = flag;
}
/** Returns the isParsed flag */
public boolean isParsed()
{
return isParsed;
}
/** Sets the entity value */
public void setValue(String aValue)
{
value = aValue;
}
/** Returns the entity value */
public String getValue()
{
return value;
}
/** Sets the external ID for the entity */
public void setExternalID(DTDExternalID anExternalID)
{
externalID = anExternalID;
}
/** Returns the external ID for the entity */
public DTDExternalID getExternalID()
{
return externalID;
}
/** Sets the entity ndata */
public void setNdata(String anNdata)
{
ndata = anNdata;
}
/** Returns the entity ndata */
public String getNdata()
{
return ndata;
}
}
|