Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/* Woodstox XML processor
*
* Copyright (c) 2004 Tatu Saloranta, [email protected]
*
* Licensed under the License specified in file LICENSE, included with
* the source code.
* You may not use this file except in compliance with the License.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.ctc.wstx.io;
import java.io.Serializable;
import javax.xml.stream.Location;
import org.codehaus.stax2.XMLStreamLocation2;
import com.ctc.wstx.util.StringUtil;
/**
* Basic implementation of {@link Location}, used by Wstx readers.
*/
public class WstxInputLocation
implements Serializable, XMLStreamLocation2
{
private static final long serialVersionUID = 1L;
private final static WstxInputLocation sEmptyLocation
= new WstxInputLocation(null, "", "", -1, -1, -1);
/**
* Enclosing (parent) input location; location from which current
* location is derived.
*/
final protected WstxInputLocation mContext;
final protected String mPublicId, mSystemId;
final protected long mCharOffset;
final protected int mCol, mRow;
transient protected String mDesc = null;
/**
* @param ctxt Enclosing input location, if any
*/
public WstxInputLocation(WstxInputLocation ctxt,
String pubId, String sysId,
long charOffset, int row, int col)
{
mContext = ctxt;
mPublicId = pubId;
mSystemId = sysId;
/* Overflow? Can obviously only handle limited range of overflows,
* but let's do that at least?
*/
mCharOffset = charOffset;
mCol = col;
mRow = row;
}
public WstxInputLocation(WstxInputLocation ctxt,
String pubId, SystemId sysId, long charOffset, int row, int col)
{
mContext = ctxt;
mPublicId = pubId;
mSystemId = (sysId == null) ? "N/A" : sysId.toString();
mCharOffset = charOffset;
mCol = col;
mRow = row;
}
public static WstxInputLocation getEmptyLocation() {
return sEmptyLocation;
}
public long getCharacterOffsetLong() { return mCharOffset; }
public int getCharacterOffset() { return (int)mCharOffset; }
public int getColumnNumber() { return mCol; }
public int getLineNumber() { return mRow; }
public String getPublicId() { return mPublicId; }
public String getSystemId() { return mSystemId; }
/*
////////////////////////////////////////////////////////
// StAX 2 API:
////////////////////////////////////////////////////////
*/
public XMLStreamLocation2 getContext() { return mContext; }
/*
////////////////////////////////////////////////////////
// Overridden standard methods
////////////////////////////////////////////////////////
*/
public String toString()
{
if (mDesc == null) {
StringBuffer sb;
if (mContext != null) {
sb = new StringBuffer(200);
} else {
sb = new StringBuffer(80);
}
appendDesc(sb);
mDesc = sb.toString();
}
return mDesc;
}
public int hashCode() {
return ((int)mCharOffset) ^ (int)(0xffffffff & mCharOffset >> 32) ^ mRow ^ mCol + (mCol << 3);
}
public boolean equals(Object o) {
if (!(o instanceof WstxInputLocation)) {
return false;
}
WstxInputLocation other = (WstxInputLocation) o;
// char offset should be good enough, without row/col:
if (other.getCharacterOffsetLong() != getCharacterOffsetLong()) {
return false;
}
String otherPub = other.getPublicId();
if (otherPub == null) {
otherPub = "";
}
if (!otherPub.equals(mPublicId)) {
return false;
}
String otherSys = other.getSystemId();
if (otherSys == null) {
otherSys = "";
}
return otherSys.equals(mSystemId);
}
/*
////////////////////////////////////////////////////////
// Internal methods:
////////////////////////////////////////////////////////
*/
private void appendDesc(StringBuffer sb)
{
String srcId;
if (mSystemId != null) {
sb.append("[row,col,system-id]: ");
srcId = mSystemId;
} else if (mPublicId != null) {
sb.append("[row,col,public-id]: ");
srcId = mPublicId;
} else {
sb.append("[row,col {unknown-source}]: ");
srcId = null;
}
sb.append('[');
sb.append(mRow);
sb.append(',');
sb.append(mCol);
// Uncomment for testing, to see the char offset:
//sb.append(" #").append(mCharOffset);
//sb.append("{").append(System.identityHashCode(this)).append("}");
if (srcId != null) {
sb.append(',');
sb.append('"');
sb.append(srcId);
sb.append('"');
}
sb.append(']');
if (mContext != null) {
StringUtil.appendLF(sb);
sb.append(" from ");
mContext.appendDesc(sb);
}
}
}