com.oracle.truffle.api.debug.BreakpointLocation Maven / Gradle / Ivy
Show all versions of truffle-api Show documentation
/*
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package com.oracle.truffle.api.debug;
import java.net.URI;
import java.util.Objects;
import com.oracle.truffle.api.source.Source;
/**
* Description of a textual location in guest language source code where a {@link Breakpoint} can be
* installed.
*
* The location's key identifies a particular unit of source code, for example a
* {@link Source} or {@link URI}. It can be optionally specialized to a 1-based line number and if
* it is, then it may also be optionally specialized to a 1-based column number.
*
*
* Equality is value-based.
*
*/
final class BreakpointLocation implements Comparable {
/**
* A location with {@code key == null} that always matches.
*/
public static final BreakpointLocation ANY = new BreakpointLocation();
private final Object key;
private final int line;
private final int column;
/**
* @param key non-null source identifier
* @param line 1-based line number, -1 for unspecified
*/
BreakpointLocation(Object key, int line) {
assert key instanceof Source || key instanceof URI;
assert line > 0 || line == -1;
this.key = key;
this.line = line;
this.column = -1;
}
/**
* @param key non-null source identifier
* @param line 1-based line number
* @param column 1-based column number
*/
BreakpointLocation(Object key, int line, int column) {
assert key instanceof Source || key instanceof URI;
assert line > 0;
assert column > 0;
this.key = key;
this.line = line;
this.column = column;
}
private BreakpointLocation() {
this.key = null;
this.line = -1;
this.column = -1;
}
Object getKey() {
return key;
}
public int compareTo(BreakpointLocation o) {
final Object key1 = key;
final Object key2 = o.key;
if (key1 instanceof Source && key2 instanceof Source) {
final int nameOrder = ((Source) key1).getName().compareTo(((Source) key2).getName());
if (nameOrder != 0) {
return nameOrder;
}
} else if (key1 instanceof URI && key2 instanceof URI) {
int uriOrder = key1.toString().compareTo(key2.toString());
if (uriOrder != 0) {
return uriOrder;
}
} else {
if (key1 instanceof URI) {
return 1;
} else {
return -1;
}
}
int lineOrder = Integer.compare(line, o.line);
if (lineOrder != 0) {
return lineOrder;
}
int columnOrder = Integer.compare(column, o.column);
if (columnOrder != 0) {
return columnOrder;
}
return 0;
}
@Override
public int hashCode() {
return Objects.hash(key, this.line, this.column);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final BreakpointLocation other = (BreakpointLocation) obj;
if (this.line != other.line) {
return false;
}
if (this.column != other.column) {
return false;
}
if (!Objects.equals(key, other.key)) {
return false;
}
return true;
}
@Override
public String toString() {
String keyDescription;
if (key instanceof Source) {
keyDescription = "sourceName=" + ((Source) key).getName();
} else if (key instanceof URI) {
keyDescription = "uri=" + ((URI) key).toString();
} else {
keyDescription = key.toString();
}
return keyDescription + ", line=" + line + ", column=" + column;
}
}