public class JCasImpl extends AbstractCas_ImplBase implements AbstractCas, JCas
There are variables here that hold references to constant, frequently needed Cas values, such as 0-length FSArrays, 0-length Strings, etc. These can be used to improve efficiency, since the same object can be shared and used for all instances because it is unchangeable. These objects are reset when the CAS is reset, and are initialized lazily, on first use.
INVALID_FEATURE_CODE| Modifier and Type | Method and Description |
|---|---|
void |
addFsToIndexes(FeatureStructure instance)
Add a feature structure to all appropriate indexes in the repository associated with this CAS
View.
|
void |
checkArrayBounds(int fsRef,
int pos) |
static void |
clearData(CAS cas)
(Internal Use only) called by the CAS reset function - clears the hashtable holding the
associations.
|
FeaturePath |
createFeaturePath()
Create a feature path.
|
FeatureValuePath |
createFeatureValuePath(String featureValuePath)
Create a feature-value path from a string.
|
<T extends FeatureStructure> |
createFilteredIterator(FSIterator<T> it,
FSMatchConstraint constraint)
Create an iterator over structures satisfying a given constraint.
|
SofaFS |
createSofa(SofaID sofaID,
String mimeType)
Create a Subject of Analysis.
|
JCas |
createView(String sofaID)
Create a view and its underlying Sofa (subject of analysis).
|
<T extends FeatureStructure> |
fs2listIterator(FSIterator<T> it)
Wrap a standard Java
ListIterator around an FSListIterator. |
AnnotationIndex<Annotation> |
getAnnotationIndex()
Get the standard annotation index.
|
AnnotationIndex<Annotation> |
getAnnotationIndex(int type)
Get the standard annotation index restricted to a specific annotation type.
|
AnnotationIndex<Annotation> |
getAnnotationIndex(Type type)
Get the standard annotation index restricted to a specific annotation type.
|
CAS |
getCas() |
CASImpl |
getCasImpl() |
Type |
getCasType(int i)
Given Foo.type, return the corresponding CAS Type object.
|
ConstraintFactory |
getConstraintFactory()
Get a constraint factory.
|
TOP |
getDocumentAnnotationFs()
Gets the document annotation.
|
String |
getDocumentLanguage()
Gets the language code for this document from the language feature of the special instance of
the DocumentationAnnotation associated with this CAS.
|
String |
getDocumentText()
Get the document text.
|
FloatArray |
getFloatArray0L() |
FSArray |
getFSArray0L()
A constant for each cas which holds a 0-length instance.
|
FSIndexRepository |
getFSIndexRepository() |
FSIndexRepository |
getIndexRepository()
Get the index repository.
|
IntegerArray |
getIntegerArray0L()
A constant for each cas which holds a 0-length instance.
|
static JCas |
getJCas(CASImpl cas)
creates a new JCas instance that corresponds to a CAS instance.
|
JCas |
getJCas(Sofa sofa)
Create a JCas view for a Sofa.
|
TOP |
getJfsFromCaddr(int casAddr) |
JFSIndexRepository |
getJFSIndexRepository()
Gets the JCas-based interface to the Index Repository.
|
LowLevelCAS |
getLowLevelCas() |
LowLevelIndexRepository |
getLowLevelIndexRepository() |
Feature |
getRequiredFeature(Type t,
String s) |
Feature |
getRequiredFeatureDE(Type t,
String s,
String rangeName,
boolean featOkTst) |
Type |
getRequiredType(String s)
Make the instance of the JCas xxx_Type class for this CAS.
|
Sofa |
getSofa()
Get the Sofa feature structure associated with this JCas view.
|
Sofa |
getSofa(SofaID sofaID) |
FeatureStructure |
getSofaDataArray()
Get the Sofa data array.
|
InputStream |
getSofaDataStream()
Get the Sofa data as a byte stream.
|
String |
getSofaDataString()
Get the Sofa Data String (a.k.a.
|
String |
getSofaDataURI()
Get the Sofa data array.
|
FSIterator<SofaFS> |
getSofaIterator()
Get iterator for all SofaFS in the CAS.
|
String |
getSofaMimeType()
Get the mime type of the Sofa data being analyzed.
|
StringArray |
getStringArray0L()
A constant for each cas which holds a 0-length instance.
|
TOP_Type |
getType(int i)
get the JCas _Type instance for a particular CAS type constant
|
TOP_Type |
getType(TOP instance)
get the JCas x_Type instance for a particular Java instance of a type
|
TypeSystem |
getTypeSystem()
Return the type system of this CAS instance.
|
JCas |
getView(SofaFS aSofa)
Get the view for a Sofa (subject of analysis).
|
JCas |
getView(String localViewName)
Get the view for a Sofa (subject of analysis).
|
Iterator<JCas> |
getViewIterator()
Get iterator over all views in this JCas.
|
Iterator<JCas> |
getViewIterator(String localViewNamePrefix)
Get iterator over all views with the given name prefix.
|
String |
getViewName()
Get the view name.
|
void |
instantiateJCas_Types(ClassLoader cl) |
void |
processInit()
initialize the JCas for new Cas content.
|
void |
putJfsFromCaddr(int casAddr,
FeatureStructure fs) |
void |
release()
Default implementation that returns this CAS to its CasManager by calling
CasOwner.releaseCas(AbstractCas). |
void |
removeAllExcludingSubtypes(int i)
Remove all feature structures of a given type (excluding subtypes) from all indexes in the repository associated with this CAS View.
|
void |
removeAllIncludingSubtypes(int i)
Remove all feature structures of a given type (including subtypes) from all indexes in the repository associated with this CAS View.
|
void |
removeFsFromIndexes(FeatureStructure instance)
Remove a feature structure from all indexes in the repository associated with this CAS View.
|
void |
reset()
Reset the CAS, emptying it of all content.
|
void |
setDocumentLanguage(String language)
Sets the language for this document.
|
void |
setDocumentText(String text)
Set the document text.
|
void |
setOwner(CasOwner aCasOwner)
Provides this CAS with a handle to the CASOwner that owns it.
|
void |
setSofaDataArray(FeatureStructure array,
String mime)
Set the Sofa data as an ArrayFS.
|
void |
setSofaDataString(String text,
String mime)
Set the document text.
|
void |
setSofaDataURI(String uri,
String mime)
Set the Sofa data as a URI.
|
void |
showJfsFromCaddrHistogram() |
int |
size()
Estimate the memory consumption of this CAS instance (in bytes).
|
void |
switchClassLoader(ClassLoader cl)
This is only called when the JCas is already set up
|
void |
throwFeatMissing(String feat,
String type)
Internal - throw missing feature exception at runtime
|
public FSIndexRepository getFSIndexRepository()
getFSIndexRepository in interface JCaspublic LowLevelIndexRepository getLowLevelIndexRepository()
getLowLevelIndexRepository in interface JCaspublic CAS getCas()
public CASImpl getCasImpl()
getCasImpl in interface JCaspublic LowLevelCAS getLowLevelCas()
getLowLevelCas in interface JCaspublic TypeSystem getTypeSystem()
JCasgetTypeSystem in interface JCasnull if none is available.public TOP_Type getType(int i)
JCaspublic Type getCasType(int i)
JCasgetCasType in interface JCasi - -
index returned by Foo.typepublic TOP_Type getType(TOP instance)
JCaspublic void switchClassLoader(ClassLoader cl)
cl - class loader to switch toCASException - passthrupublic void instantiateJCas_Types(ClassLoader cl)
public static JCas getJCas(CASImpl cas) throws CASException
cas - a CAS instanceCASExceptionpublic Type getRequiredType(String s) throws CASException
getRequiredType in interface JCasCASExceptionpublic Feature getRequiredFeature(Type t, String s) throws CASException
getRequiredFeature in interface JCasCASExceptionpublic Feature getRequiredFeatureDE(Type t, String s, String rangeName, boolean featOkTst)
getRequiredFeatureDE in interface JCaspublic void throwFeatMissing(String feat, String type)
throwFeatMissing in interface JCasfeat - type - public void putJfsFromCaddr(int casAddr,
FeatureStructure fs)
putJfsFromCaddr in interface JCaspublic TOP getJfsFromCaddr(int casAddr)
getJfsFromCaddr in interface JCaspublic void showJfsFromCaddrHistogram()
public static void clearData(CAS cas)
public void reset()
JCaspublic final void checkArrayBounds(int fsRef,
int pos)
checkArrayBounds in interface JCaspublic Sofa getSofa()
JCaspublic JCas createView(String sofaID) throws CASException
JCas
This method creates the underlying Sofa feature structure, but does not set the Sofa data.
Setting ths Sofa data must be done by calling JCas.setSofaDataArray(FeatureStructure, String),
JCas.setSofaDataString(String, String) or JCas.setSofaDataURI(String, String) on the
JCas view returned by this method.
createView in interface JCassofaID - the local view name, before any sofa name mapping is done, for this view (note: this is the
same as the associated Sofa name).CASException - -
if a View with this name already exists in this CASpublic JCas getJCas(Sofa sofa) throws CASException
JCasgetJCas in interface JCassofa - a Sofa feature structure in this CAS.CASException - -public FSIterator<SofaFS> getSofaIterator()
JCasgetSofaIterator in interface JCaspublic JFSIndexRepository getJFSIndexRepository()
JCasJCas.getFSIndexRepository() except that the methods that take a "type"
argument take type arguments obtainable easily from the JCas type.getJFSIndexRepository in interface JCaspublic TOP getDocumentAnnotationFs()
JCasDocumentAnnotation.
The reason that the return type of this method is not DocumentAnnotation is because of problems that arise when using the UIMA Extension ClassLoader to load annotator classes. The DocumentAnnotation type may be defined in the UIMA extension ClassLoader, differently than in the framework ClassLoader.
getDocumentAnnotationFs in interface JCasCAS.getDocumentAnnotation()public String getDocumentText()
JCasgetDocumentText in interface JCaspublic String getSofaDataString()
JCasgetSofaDataString in interface JCaspublic FeatureStructure getSofaDataArray()
JCasgetSofaDataArray in interface JCaspublic String getSofaDataURI()
JCasgetSofaDataURI in interface JCaspublic String getSofaMimeType()
JCasgetSofaMimeType in interface JCaspublic void setDocumentText(String text) throws CASRuntimeException
JCassetDocumentText in interface JCastext - The text to be analyzed.CASRuntimeException - If the Sofa data has already been set.public void setSofaDataString(String text, String mime) throws CASRuntimeException
JCassetSofaDataString in interface JCastext - The text to be analyzed.mime - The mime type of the dataCASRuntimeException - If the Sofa data has already been set.public void setSofaDataArray(FeatureStructure array, String mime) throws CASRuntimeException
JCassetSofaDataArray in interface JCasarray - The ArrayFS to be analyzed.mime - The mime type of the dataCASRuntimeException - If the Sofa data has already been set.public void setSofaDataURI(String uri, String mime) throws CASRuntimeException
JCassetSofaDataURI in interface JCasuri - The URI of the data to be analyzed.mime - The mime type of the dataCASRuntimeException - If the Sofa data has already been set.public String getDocumentLanguage()
JCasgetDocumentLanguage in interface JCaspublic void setDocumentLanguage(String language) throws CASRuntimeException
JCassetDocumentLanguage in interface JCaslanguage - the language codeCASRuntimeException - passthrupublic InputStream getSofaDataStream()
JCasgetSofaDataStream in interface JCaspublic ConstraintFactory getConstraintFactory()
JCasFSMatchConstraints.getConstraintFactory in interface JCaspublic FeaturePath createFeaturePath()
JCasFSMatchConstraints.createFeaturePath in interface JCaspublic <T extends FeatureStructure> FSIterator<T> createFilteredIterator(FSIterator<T> it, FSMatchConstraint constraint)
JCasConstraintFactory and related classes.createFilteredIterator in interface JCasT - the particular FeatureStructure typeit - The input iterator.constraint - The constraint specifying what structures should be returned.public StringArray getStringArray0L()
JCasgetStringArray0L in interface JCaspublic IntegerArray getIntegerArray0L()
JCasgetIntegerArray0L in interface JCaspublic FloatArray getFloatArray0L()
public FSArray getFSArray0L()
JCasgetFSArray0L in interface JCaspublic void processInit()
JCasprocessInit in interface JCaspublic void setOwner(CasOwner aCasOwner)
AbstractCas_ImplBasesetOwner in class AbstractCas_ImplBasepublic void release()
AbstractCas_ImplBaseCasOwner.releaseCas(AbstractCas).release in interface AbstractCasrelease in class AbstractCas_ImplBasepublic JCas getView(String localViewName) throws CASException
JCasgetView in interface JCaslocalViewName - the local name, before any sofa name mapping is done, for this view (note: this is the
same as the associated Sofa name).CASException - passthrupublic JCas getView(SofaFS aSofa) throws CASException
JCasgetView in interface JCasaSofa - a Sofa feature structure in the CASCASException - passthrupublic void addFsToIndexes(FeatureStructure instance)
JCas
Important: after you have called addFsToIndexes(...) on a FS, do not
change the values of any features used for indexing. If you do, the index will become corrupted
and may be unusable. If you need to change an index feature value, first call
removeFsFromIndexes(...) on the FS, change the
feature values, then call addFsToIndexes(...) again.
addFsToIndexes in interface JCasinstance - The Feature Structure to be added.public void removeFsFromIndexes(FeatureStructure instance)
JCasremoveFsFromIndexes in interface JCasinstance - The Feature Structure to be removed.public void removeAllIncludingSubtypes(int i)
JCasremoveAllIncludingSubtypes in interface JCasi - the CAS type constant, written as Foo.type (for a given JCas Type) or anInstanceOfFoo.getTypeIndexID(), for an instancepublic void removeAllExcludingSubtypes(int i)
JCasremoveAllExcludingSubtypes in interface JCasi - the CAS type constant, written as Foo.type (for a given JCas Type) or anInstanceOfFoo.getTypeIndexID(), for an instancepublic <T extends FeatureStructure> ListIterator<T> fs2listIterator(FSIterator<T> it)
JCasListIterator around an FSListIterator. Use
if you feel more comfortable with java style iterators.fs2listIterator in interface JCasT - The particular Feature Structure typeit - The FSListIterator to be wrapped.ListIterator.CAS.fs2listIterator(FSIterator)public FeatureValuePath createFeatureValuePath(String featureValuePath) throws CASRuntimeException
JCascreateFeatureValuePath in interface JCasfeatureValuePath - String representation of the feature-value path.CASRuntimeException - If the input string is not well-formed.public SofaFS createSofa(SofaID sofaID, String mimeType)
JCascreateSofa in interface JCassofaID - the SofA IDmimeType - the mime typepublic FSIndexRepository getIndexRepository()
JCasgetIndexRepository in interface JCasnull if none is available.public String getViewName()
JCasgetViewName in interface JCaspublic int size()
JCaspublic AnnotationIndex<Annotation> getAnnotationIndex()
JCasgetAnnotationIndex in interface JCaspublic AnnotationIndex<Annotation> getAnnotationIndex(Type type) throws CASRuntimeException
JCasgetAnnotationIndex in interface JCastype - The annotation type the index is restricted to.type.CASRuntimeExceptionpublic AnnotationIndex<Annotation> getAnnotationIndex(int type) throws CASRuntimeException
JCasgetAnnotationIndex in interface JCastype - The annotation type the index is restricted to,
passed as an integer using the form
MyAnnotationType.typetype.CASRuntimeException - -public Iterator<JCas> getViewIterator() throws CASException
JCasgetViewIterator in interface JCasCASException - -public Iterator<JCas> getViewIterator(String localViewNamePrefix) throws CASException
JCas
When passed the prefix namePrefix, the iterator will return all views who
name is either exactly equal to namePrefix or is of the form
namePrefix.suffix, where suffix can be any String.
getViewIterator in interface JCaslocalViewNamePrefix - the local name prefix, before any sofa name mapping
is done, for this view (note: this is the same as the associated Sofa name prefix).CASException - -Copyright © 2014. All rights reserved.