public abstract class TextFileModelAdapter extends FileModelAdapter
ModelAdapter
adapter which adapts a text file node.
When the node is open, this adapter tracks changes to the text buffer associated with the node and maps offsets across edits to the node. When the node is opened, this adapter attaches an observer to the text buffer.
ModelAdapter
Constructor and Description |
---|
TextFileModelAdapter(ModelFactory factory,
ModelType type,
ContainerModelAdapter workspace,
ContainerModelAdapter project,
ContainerModelAdapter directory,
Node node,
java.net.URL url) |
TextFileModelAdapter(ModelFactory factory,
ModelType type,
ContainerModelAdapter workspace,
ContainerModelAdapter project,
ContainerModelAdapter directory,
Node node,
java.net.URL url,
java.lang.String primaryCollationString) |
Modifier and Type | Method and Description |
---|---|
protected void |
acquireReadLock(WriteLockRequestListener listener)
Acquires a read lock for this model.
|
protected void |
beginReadHook()
A subclass hook invoked by
ModelAdapter.beginRead() after it invokes
ModelAdapter.acquireReadLock(oracle.javatools.buffer.WriteLockRequestListener) . |
java.lang.String |
contextDescription(Location location)
Gets a description of a location of this model.
|
protected void |
endReadHook()
A subclass hook invoked by
ModelAdapter.endRead() before it invokes
ModelAdapter.releaseReadLock(oracle.javatools.buffer.WriteLockRequestListener) . |
char |
getCharacter(int offset)
Gets a character from this model, or
0 if no text is
available. |
int |
getColumnOffset(int offset)
Gets the zero-based column offset of a character offset in this model,
or the character offset if this model does not have lines and columns.
|
protected int |
getDeltaLength(int offset,
int length,
int version) |
protected int |
getDeltaOffset(int offset,
int version) |
Location |
getFocusLocation(Location location)
Gets the focus location for a location in this model.
|
int |
getInitialLength()
Gets the initial length of this model.
|
java.lang.String |
getLine(int offset)
Gets a line of text from this model, or null if no text is available.
|
int |
getLineOffset(int offset)
Gets the zero-based line offset of a character offset in this model,
or
0 if this model does not have lines and columns. |
Location |
getLocation(int offset,
int length)
Gets a location in this model.
|
oracle.ide.navigation.NavigationPoint |
getNavigationPoint(Location location)
Gets a
NavigationPoint to navigate to a location, or null if the
location is not navigable. |
java.lang.Object |
getRoot()
Gets the root construct of this model.
|
abstract java.lang.Object |
getRootImplementation() |
java.lang.String |
getText(int offset,
int length)
Gets text from this model, or null if no text is available.
|
TextBuffer |
getTextBuffer()
Gets the text buffer for this model.
|
TextNode |
getTextNode()
Gets the IDE {@link TextNode) containing this model.
|
boolean |
isEditable(Location location)
Gets whether a location in this model is editable.
|
boolean |
isModifiable()
Gets whether this model is modifiable.
|
boolean |
isModified()
Gets whether the model has been modified since this representation of it
was created.
|
boolean |
isModified(Location location)
Gets whether a region of this model has been modified since this
model adapter was created.
|
void |
release()
Releases resources used by this model.
|
protected void |
releaseReadLock(WriteLockRequestListener listener)
Releases a read lock for this model.
|
void |
verifyReadTransaction()
Verifies that a read transaction is in progress for this model.
|
compareTo, contains, getContainingAdapter, getDependency, getFileAdapter, getUrl, isFile
acquireReadLock, beginRead, beginRead, cancelRead, compareSiblings, contains, contains, contains, edit, endRead, endRead, enter, equals, exit, getAttribute, getConstruct, getConstruct, getContainedConstructs, getDirectory, getDirectoryAdapter, getElement, getElementLocations, getEndLocation, getFactory, getFocusLocation, getIdeContext, getLocation, getLocation, getLock, getNode, getPrimaryCollationKey, getProject, getProjectAdapter, getSecondaryCollationKey, getSecondaryCollationString, getShortLabel, getType, getURL, getWorkspace, getWorkspaceAdapter, hashCode, icon, icon, isReadLockHeld, isWriteLockHeld, label, label, setAttribute, summary, summary, toString
public TextFileModelAdapter(ModelFactory factory, ModelType type, ContainerModelAdapter workspace, ContainerModelAdapter project, ContainerModelAdapter directory, Node node, java.net.URL url)
public TextFileModelAdapter(ModelFactory factory, ModelType type, ContainerModelAdapter workspace, ContainerModelAdapter project, ContainerModelAdapter directory, Node node, java.net.URL url, java.lang.String primaryCollationString)
public TextNode getTextNode()
public boolean isModifiable()
ModelAdapter
ModelAdapter
implementation returns false
.isModifiable
in class ModelAdapter
public boolean isModified()
ModelAdapter
ModelAdapter
implementation returns false
.isModified
in class ModelAdapter
public boolean isModified(Location location)
ModelAdapter
isModified
in class ModelAdapter
public int getInitialLength()
ModelAdapter
Integer.MAX_VALUE
if this node has not been opened. The default ModelAdapter
implementation returns Integer.MAX_VALUE
.getInitialLength
in class ModelAdapter
public Location getLocation(int offset, int length)
ModelAdapter
getLocation
in class ModelAdapter
protected int getDeltaLength(int offset, int length, int version)
protected int getDeltaOffset(int offset, int version)
protected void acquireReadLock(WriteLockRequestListener listener) throws java.lang.InterruptedException
ModelAdapter.beginRead()
with
no read transaction for this model active on the current thread. The
client is assumed to be preemptable if it supplies the listener argument;
non-preemptable if not. The default ModelAdapter
implementation
does nothing.
The default TextFileModelAdapter
implementation is the following:
.
ReadWriteLock lock = getLock();
lock.readLock();
if (listener != null && lock.addWriteLockRequestListener(listener))
{
lock.removeWriteLockRequestListener(listener);
lock.readUnlock();
throw new InterruptedException("self-cancellation: write lock request pending");
}
acquireReadLock
in class ModelAdapter
listener
- The listener to notify if a thread waits to acquire the write lock, or null.java.lang.InterruptedException
- if the current thread is in or gets put in
the interrupted state. The interrupted state is cleared when this
exception is thrown.public void verifyReadTransaction()
ModelAdapter
ModelAdapter
implementation does nothing.verifyReadTransaction
in class ModelAdapter
protected void releaseReadLock(WriteLockRequestListener listener)
ModelAdapter.endRead()
with
a read transaction for this model active on the current thread. The
default TextFileModelAdapter
implementation is the following:
ReadWriteLock lock = getLock();
if (listener != null) lock.removeWriteLockRequestListener(listener);
lock.readUnlock();
.releaseReadLock
in class ModelAdapter
listener
- The value given to the matching acquireReadLock(oracle.javatools.buffer.WriteLockRequestListener)
.protected void beginReadHook() throws java.lang.InterruptedException
ModelAdapter.beginRead()
after it invokes
ModelAdapter.acquireReadLock(oracle.javatools.buffer.WriteLockRequestListener)
. The default ModelAdapter
implementation
does nothing.
The TextFileModelAdapter
implementation pins the text buffer for
use during the read transaction. Subclasses should not invoke
this method from inside a synchronized block, on peril of deadlock!
beginReadHook
in class ModelAdapter
java.lang.InterruptedException
ModelAdapter.beginRead()
,
endReadHook()
protected void endReadHook()
ModelAdapter.endRead()
before it invokes
ModelAdapter.releaseReadLock(oracle.javatools.buffer.WriteLockRequestListener)
. The default ModelAdapter
implementation
does nothing.
The TextFileModelAdapter
implementation unpins the text buffer.endReadHook
in class ModelAdapter
ModelAdapter.endRead()
,
beginReadHook()
public char getCharacter(int offset)
ModelAdapter
0
if no text is
available. A read transaction must be active on this node. The
ModelAdapter
implementation returns 0
.getCharacter
in class ModelAdapter
offset
- The index of the character to return.public int getColumnOffset(int offset)
ModelAdapter
ModelAdapter
implementation returns the character offset.getColumnOffset
in class ModelAdapter
public Location getFocusLocation(Location location)
ModelAdapter
ModelAdapter.getFocusLocation(java.lang.Object, oracle.jdeveloper.audit.model.Location)
implementation gets the whole location. A read
transaction must be active on this node.getFocusLocation
in class ModelAdapter
location
- a location in this model.public java.lang.String getLine(int offset)
ModelAdapter
ModelAdapter
implementation returns null.getLine
in class ModelAdapter
offset
- The index of a character in the line to return.public int getLineOffset(int offset)
ModelAdapter
0
if this model does not have lines and columns. A read
transaction must be active on this node. The ModelAdapter
implementation returns 0.getLineOffset
in class ModelAdapter
public final java.lang.Object getRoot()
ModelAdapter
getRoot
in class ModelAdapter
public abstract java.lang.Object getRootImplementation()
public java.lang.String getText(int offset, int length)
ModelAdapter
ModelAdapter
implementation returns null.getText
in class ModelAdapter
offset
- The index of the first character to return.length
- The number of characters to return.public TextBuffer getTextBuffer()
public boolean isEditable(Location location)
FileModelAdapter
implementation returns true.isEditable
in class ModelAdapter
public oracle.ide.navigation.NavigationPoint getNavigationPoint(Location location)
NavigationPoint
to navigate to a location, or null if the
location is not navigable. The default ModelAdapter
implementation
returns null.
The default TextFileModelAdapter
implementation creates an
OffsetNavigationPoint
which will navigate to the code editor.getNavigationPoint
in class ModelAdapter
public void release()
ModelAdapter
release
in class ModelAdapter
public java.lang.String contextDescription(Location location)
The ModelAdapter
implementation includes the file name and offsets
of the location.
The TextFileModelAdapter
implementation adds the line and column
numbers and the text of the location.
contextDescription
in class ModelAdapter