Public Types | |
typedef string | Id |
Generic identifier (can be from any of AGSetId, AGId, AnnotationId, TimelineId, SignalId). | |
typedef string | AGSetId |
AGSet identifier. | |
typedef string | AGId |
AG identifier. | |
typedef string | AnnotationId |
Annotation identifier. | |
typedef string | AnnotationType |
Annotation type. | |
typedef string | AnchorId |
Anchor identifier. | |
typedef string | TimelineId |
Timeline identifier. | |
typedef string | SignalId |
Signal identifier. | |
typedef string | FeatureName |
feature name | |
typedef string | FeatureValue |
feature value | |
typedef string | URI |
a uniform resource identifier | |
typedef string | MimeClass |
the MIME class | |
typedef string | MimeType |
the MIME type | |
typedef string | Encoding |
the signal encoding | |
typedef string | Unit |
the unit for offsets | |
typedef double | Offset |
the offset into a signal | |
typedef string | Track |
the track of a signal | |
Public Methods | |
AGSet functions | |
AGSetId | CreateAGSet (AGSetId agSetId) |
Create a new AGSet. | |
bool | ExistsAGSet (AGSetId agSetId) |
Test if an AGSet exists. | |
void | DeleteAGSet (AGSetId agSetId) |
Delete an AGSet. | |
sequence< AGId > | GetAGIds (AGSetId agsetId) |
Get all the Ids of AGs which belong to the specified AGSet. | |
Timeline functions | |
TimelineId | CreateTimeline (Id id) |
Create a new timeline and add it to the AGSet. | |
bool | ExistsTimeline (TimelineId timelineId) |
Test if a timeline exists. | |
void | DeleteTimeline (TimelineId timelineId) |
Delete a timeline. | |
sequence< SignalId > | GetSignals (TimelineId timelineId) |
Get a list of all the Ids of sigals which belong to the specified timeline. | |
Signal functions | |
SignalId | CreateSignal (Id id, URI uri, MimeClass mimeClass, MimeType mimeType, Encoding encoding, Unit unit, Track track) |
Create a new signal and add it to the timeline. | |
bool | ExistsSignal (SignalId signalId) |
Test if a signal exists. | |
void | DeleteSignal (SignalId signalId) |
Delete a signal. | |
MimeClass | GetSignalMimeClass (SignalId signalId) |
Get the MimeClass of the specified signal. | |
MimeType | GetSignalMimeType (SignalId signalId) |
Get the MimeType of the specified signal. | |
Encoding | GetSignalEncoding (SignalId signalId) |
Get the encoding of the specified signal. | |
string | GetSignalXlinkType (SignalId signalId) |
Get the XlinkType of the specified signal. | |
string | GetSignalXlinkHref (SignalId signalId) |
Get the XlinkHref of the specified signal. | |
string | GetSignalUnit (SignalId signalId) |
Get the unit of the specified signal. | |
Track | GetSignalTrack (SignalId signalId) |
Get the track of the specified signal. | |
AG functions | |
AGId | CreateAG (Id id) |
Create a new AG and add it to the AGSet. | |
AGId | CreateAG (Id id, TimelineId timelineId) |
Create a new AG and add it to the AGSet. | |
bool | ExistsAG (AGId agId) |
Test if an AG exists. | |
void | DeleteAG (AGId agId) |
Delete an AG. | |
sequence< AnchorId > | GetAnchorSet (AGId agId) |
Get all the anchors in an AG. | |
sequence< AnchorId > | GetAnchorSetByOffset (AGId agId, Offset offset) |
Get all anchors which are anchored at the given offset. | |
sequence< AnchorId > | GetAnchorSetByOffset (AGId agId, Offset offset, float epsilon) |
Get all anchors which are anchored within specified distance of the given offset. | |
sequence< AnchorId > | GetAnchorSetNearestOffset (AGId agId, Offset offset) |
Get a list of all anchors which are anchored at the closest offset to the given offset. | |
sequence< AnnotationId > | GetAnnotationSet (AGId agId, AnnotationType type="") |
Get a list of all annotation ids in the given annotation graph. | |
sequence< AnnotationId > | GetAnnotationSetByFeature (AGId agId, FeatureName featureName, FeatureValue featureValue, AnnotationType type="") |
Get a list of all annotations whose specified feature equals to the specified value. | |
sequence< AnnotationId > | GetAnnotationSetByOffset (AGId agId, Offset offset, AnnotationType type="") |
Get a list of all annotations which hangs over a given offset. | |
sequence< AnnotationId > | GetAnnotationSeqByOffset (AGId agId, Offset begin=0.0, Offset end=0.0, AnnotationType type="") |
Get an ordered list of AnnotationIds within the given interval. | |
AnnotationId | GetAnnotationByOffset (AGId agId, Offset offset, AnnotationType type="") |
Get one of the annotations which overlap a particular time offset. | |
Annotation functions | |
AnnotationId | CreateAnnotation (Id id, AnchorId start, AnchorId end, AnnotationType annotationType) |
Create a new annotation. | |
bool | ExistsAnnotation (AnnotationId annotationId) |
Test if an annotation exists. | |
void | DeleteAnnotation (AnnotationId annotationId) |
Delete an annotation. | |
AnnotationId | CopyAnnotation (AnnotationId annotationId) |
Clone an annotation. | |
sequence< AnnotationId > | SplitAnnotation (AnnotationId annotationId) |
Split an annotation in two. | |
sequence< AnnotationId > | NSplitAnnotation (AnnotationId annotationId, short N) |
Split an annotation to n annotations. | |
AnnotationType | GetAnnotationType (AnnoationId annotationId) |
Get the type of the annotation. | |
AnchorId | GetStartAnchor (AnnotationId annotationId) |
Get the start anchor. | |
AnchorId | GetEndAnchor (AnnotationId annotationId) |
Get the end anchor. | |
string | GetAnnotationInfo (AnnoationId annotationId) |
Get all the information of the specified annotation. | |
void | SetStartAnchor (AnnotationId annotationId, AnchorId anchorId) |
Set the start of an annotation to the specified anchor. | |
void | SetEndAnchor (AnnotationId annotationId, AnchorId anchorId) |
Set the end of an annotation to the specified anchor. | |
Offset | GetStartOffset (AnnotationId annotationId) |
Get the offset of the start anchor of an annotatino. | |
Offset | GetEndOffset (AnnotationId annotationId) |
Get the offset of the end anchor of an annotation. | |
void | SetStartOffset (AnnotationId annotationId, Offset offset) |
Set the offset of the start anchor of an annotation. | |
void | SetEndOffset (AnnotationId annotationId, Offset offset) |
Set the offset of the end anchor of an annotation. | |
bool | SPrecedes (AnnotationId annotationId1, AnnotationId annotationId2) |
Test structural precedence of one annotation over the other. | |
Anchor functions | |
AnchorId | CreateAnchor (Id id, Offset offset, Unit unit, sequence< SignalId > signalIds) |
Create an anchor with specified offset, unit and signals. | |
AnchorId | CreateAnchor (Id id, sequence< SignalId > signalIds) |
Create an anchor with specified signals. | |
AnchorId | CreateAnchor (Id id) |
Create an anchor. | |
bool | ExistsAnchor (AnchorId anchorId) |
Test if an anchor exists. | |
void | DeleteAnchor (AnchorId anchorId) |
Delete an anchor. | |
void | SetAnchorOffset (AnchorId anchorId, Offset offset) |
Set the offset of an anchor. | |
void | UnsetAnchorOffset (AnchorId anchorId) |
Unset the offset of an anchor. | |
Offset | GetAnchorOffset (AnchorId anchorId) |
Get the offset of an anchor. | |
bool | GetAnchored (AnchorId anchorId) |
Test if an anchor is anchored (has offset). | |
void | SetOffsetUnit (AnchorId anchorId, Unit unit) |
Set the unit of the offset of an anchor. | |
Unit | GetOffsetUnit (AnchorId anchorId) |
Get the unit of the offset of an anchor. | |
void | SetAnchorSignalIds (AnchorId anchorId, sequence< SignalId > signalIds) |
Set the SignalIds associated with the given anchor. | |
sequence< SignalId > | GetAnchorSignalIds (AnchorId anchorId) |
Get a list of the signal Ids associated with the given anchor. | |
AnchorId | SplitAnchor (AnchorId anchorId) |
Split an anchor in two. | |
sequence< AnnotationId > | GetIncomingAnnotationSet (AnchorId anchorId, AnnotationType type="") |
Get the incoming annotations of an anchor. | |
sequence< AnnotationId > | GetOutgoingAnnotationSet (AnchorId anchorId, AnnotationType type="") |
Get the outgoing annotations of an anchor. | |
General functions for various objects | |
AGSetId | GetAGSetId (Id id) |
Get the AGSetId of the given id. | |
AGId | GetAGId (Id id) |
Get the AGId of the given id. | |
TimelineId | GetTimelineId (Id id) |
Get the TimelineId of the given id. | |
sequence< AnnotationType > | GetAnnotationTypes (Id id) |
Get a list of types of all annotations in an AGSet, AG, or Annotation. | |
sequence< FeatureName > | GetAnnotationFeatureNames (Id id, AnnotationType type="") |
Get a list of feature names of all annotations in an AGSet, AG, or Annotation. | |
void | SetFeature (Id id, FeatureName featureName, FeatureValue featureValue) |
Set the value of a feature. | |
bool | ExistsFeature (Id id, FeatureName featureName) |
Test if a feature exists. | |
void | DeleteFeature (Id id, FeatureName featureName) |
Delete a feature. | |
string | GetFeature (Id id, FeatureName featureName) |
Get the value of a feature. | |
void | UnsetFeature (Id id, FeatureName featureName) |
Unset a feature. | |
sequence< FeatureName > | GetFeatureNames (Id id) |
Get all feature names in a list. | |
void | SetFeatures (Id id, hash< FeatureName, FeatureValue > features) |
Set multiple features in a hash table. | |
hash< FeatureName, FeatureValue > | GetFeatures (Id id) |
Get all features and values in a hash table. | |
void | UnsetFeatures (Id id) |
Unset all features Set all features to empty. This is for both the features of an annotation, and for the metadata associated with AGSets, AGs, Timelines and Signals. | |
I/O functions | |
string | toXML (AGSetId id) |
Dump the specified AGSet in ATLAS Level 0 format. | |
string | toXML (AGId agId) |
Dump the specified AG in ATLAS Level 0 forma. | |
sequence< AGId > | Load (string format, string filename, Id id="", hash< string, string > signalInfo=NULL, hsah< string, string > options=NULL) |
Load an annotation file. | |
void | Store (string format, string filename, Id id, hash< string, string > options=NULL) |
Store an annotation graph in a given format. | |
void | Store2 (string format, string filename, sequence< Id > ids, hash< string, string > options=NULL) |
Store annotation graphs in a given format. | |
bool | LoadFromDB (string connStr, AGSetId agsetId) |
LoadFromDB loads the specified AGSet from the database server. | |
bool | StoreToDB (string connStr AGSetId agsetId) |
StoreToDB stores the specified AGSet to the database server. | |
sequence< string > | StoreSQLs (AGSetId agsetId) |
Return SQL queries needed to store the kernel to the database server. | |
Validation functions | |
bool | CheckAnchorOffsetTotal (Id agId, AnnotationType type) |
Check that all anchors of annotations of a given type have an offset. | |
bool | CheckAnchorOffsetBounded (Id agId, AnnotationType type) |
Check that all anchors of annotations of a given type are bounded by anchors that have an offset, following paths of this type. | |
bool | CheckFeatureExists (Id agId, AnnotationType type, FeatureName featureName) |
Check that all annotations of a given type have the specified feature. | |
bool | CheckFeatureIsAnnotationId (Id agId, AnnotationType type, FeatureName featureName) |
Check that all annotations of a given type have the specified feature and that its value is a valid AnnotationId. | |
bool | CheckLinear (Id agId, AnnotationType type) |
Check that all annotations of a given type form a connected linear sequence. | |
bool | CheckConnected (Id agId, AnnotationType type) |
Check that all annotations of a given type form a connected subgraph. | |
bool | CheckCoextensive (Id agId, AnnotationType type1, AnnotationType type2) |
Check that all annotations of type type1 are coextensive with an annotation of type type2, and vice versa (an existence not uniqueness test). | |
bool | CheckSpan (Id agId, AnnotationType spanType, AnnotationType spannedType) |
Check that all annotations of type spanType span annotations of type spannedType and that all annotations of type spannedType are spanned by annotations of type spanType. |
This is a description of AGAPI. In this description, although function signatures are represented in C++ style, it's straightforward to translate them to other languages. C++ programmers should check the exact argument types and return types in AGAPI.h for some functions return or accept pointer types, and set and list should be distinguished. Java programmers also should check the exact types to use in jag.java for the similar reasons.
Here is how functions are represented in this desctiption:
<return type> AGAPI::<function name> ( <arg list> ) <arg list> := _empty_string_ | <arg type> <arg name> | <arg type> <arg name> = <default value> | <arg type> <arg name> , <arg list> | <arg list> , <arg type> <arg name> = <default value> <arg type> := <base type> | <compound type> <return type> := <base type> | <compound type> <compound type> := sequence< <base type> > | hash< <base type> , <base type> > <base type> := (one of the types listed in typedef statements above) | bool | int | float | double | string |
<default value>
is the value assigned to the argument when the argument is not present in the function call. sequence<t1>
is a list type, in which elements are of t1 type. hash<t1,t2>
is a hash table type, in which keys are of t1 type and values are t2 type.
Here is an example:
sequence<AnnotationId> AGAPI::GetIncomingAnnotationSet( AnchorId anchorId, AnnotationType type="" ) |
Function GetIncomingAnnotationSet returns a sequence(list) of AnnotationIds. It takes an AnchorId as an argument. AnnotationType can be given optionally. If it is not given, default value for type is an empty string, which mean no type is given.
|
Check that all anchors of annotations of a given type are bounded by anchors that have an offset, following paths of this type.
|
|
Check that all anchors of annotations of a given type have an offset.
|
|
Check that all annotations of type type1 are coextensive with an annotation of type type2, and vice versa (an existence not uniqueness test).
|
|
Check that all annotations of a given type form a connected subgraph.
|
|
Check that all annotations of a given type have the specified feature.
|
|
Check that all annotations of a given type have the specified feature and that its value is a valid AnnotationId.
|
|
Check that all annotations of a given type form a connected linear sequence.
|
|
Check that all annotations of type spanType span annotations of type spannedType and that all annotations of type spannedType are spanned by annotations of type spanType.
|
|
Clone an annotation. Make a copy of the specified annotation, assign the new annotation a new AnnotationId.
|
|
Create a new AG and add it to the AGSet.
|
|
Create a new AG and add it to the AGSet.
|
|
Create a new AGSet.
|
|
Create an anchor.
|
|
Create an anchor with specified signals.
|
|
Create an anchor with specified offset, unit and signals.
|
|
Create a new annotation.
|
|
Create a new signal and add it to the timeline.
|
|
Create a new timeline and add it to the AGSet.
|
|
Delete an AGSet.
|
|
Delete a feature. This is for both the features of an annotation, and for the metadata associated with AGSets, AGs, Timelines and Signals.
|
|
Test if a feature exists. This is for both the features of an annotation, and for the metadata associated with AGSets, AGs, Timelines and Signals.
|
|
Get the AGId of the given id.
|
|
Get all the Ids of AGs which belong to the specified AGSet.
|
|
Get the AGSetId of the given id.
|
|
Get all the anchors in an AG.
|
|
Get all anchors which are anchored within specified distance of the given offset.
|
|
Get all anchors which are anchored at the given offset.
|
|
Get a list of all anchors which are anchored at the closest offset to the given offset. This function first finds the existing offset o which is nearest to the given offset, then returns all the anchors that anchor at offset o. |
|
Get one of the annotations which overlap a particular time offset. Should be favored over GetAnnotationSetByOffset whenever possible. If type is given, only the annotations of the given type is considered in the computation.
|
|
Get a list of feature names of all annotations in an AGSet, AG, or Annotation. If type is given, annotations of other types than the given type are filtered out in the return value. |
|
Get all the information of the specified annotation.
|
|
Get an ordered list of AnnotationIds within the given interval. If none of begin and end are given (if begin=end=0.0), get a list of all annotations of the given type. If only begin is given (if begin!=0.0 and end=0.0), get a list of all the annotations with start offset are greater than or equal to specified offset, sort by using start anchor offset as first sorting key and end anchor offset as the second. If both begin and end are given (if begin!=0.0 and end!=0.0), get a list of all the annotations with start anchor offset in between the specified offsets, sort by using start anchor offset as first sorting key and end anchor offset as the second. If type is given, only the annotations of the given type are included in the computation. |
|
Get a list of all annotation ids in the given annotation graph. If the annotation type is given, only the ids of annotations of the type will be returned.
|
|
Get a list of all annotations whose specified feature equals to the specified value. If type is given, only the annotations of the given type are considered in the computation. |
|
Get a list of all annotations which hangs over a given offset. Return all annotations whose start offset is smaller than or equal to the given offset AND whose end offset is greater than or equal to the given offset. If type is given, only the annotaions of the given type are concidered in the computation. |
|
Get the value of a feature. This is for both the features of an annotation, and for the metadata associated with AGSets, AGs, Timelines and Signals.
|
|
Get all feature names in a list. This is for both the features of an annotation, and for the metadata associated with AGSets, AGs, Timelines and Signals.
|
|
Get all features and values in a hash table.
|
|
Get the incoming annotations of an anchor. If type is given, annotations of other types than the given type are filtered out in the return value. |
|
Get the outgoing annotations of an anchor. If type is given, annotations of other types than the given type are filtered out in the return value. |
|
Get a list of all the Ids of sigals which belong to the specified timeline.
|
|
Get the TimelineId of the given id.
|
|
Load an annotation file.
|
|
LoadFromDB loads the specified AGSet from the database server.
DSN is the registered ODBC Data Source Name, it should be defined in the .odbc.ini file in your home directory. All other arguments can be either defined in the .odbc.ini file, or defined in the connect string itself. To gain access to most ODBC data sources, you must provide a valid user ID and corresponding password. These values are initially registered by the database administrator. Probably the easiest way is to define every argument in the .odbc.ini file in your home directory. The following is a sample driver section for DSN 'talkbank' in the configuration file for iODBC. To make the explanation easier, line numbers are included. Please notice that UID and PWD become USER and PASSWORD, respectively, in iODBC's configuration file.
1 [talkbank] 2 Driver = /pkg/ldc/lib/libmyodbc.so 3 DSN = talkbank 4 SERVER = talkbank.ldc.upenn.edu 5 USER = myuserid 6 PASSWORD = mypasswd 7 DATABASE = talkbank Line 1 is the name of the driver section, which is 'talkbank'. You can have multiple driver sections in one configuration file. Line 2 specifies the ODBC driver to use. Line 3 gives the name of the DSN, which is 'talkbank'. Line 4 specifies the hostname of the machine on which the database server is running. Line 5 is the user name to use to connect to the server. Line 6 is the password associated with the user name. Line 7 is the database to connect to. If you have all required arguments specified in your .odbc.ini file like the one above, the connect string can simply be: DSN=talkbank; If you have not specified some of the arguments, say USER and PASSWORD, in the configuration file, you can still specify them in your connect string: DSN=talkbank;UID=myuserid;PWD=mypasswd; |
|
Split an annotation to n annotations. A version of split which does the split operation n-1 times, i.e. split the original annotation into n annotations.
|
|
Set the value of a feature. This is for both the features of an annotation, and for the metadata associated with AGSets, AGs, Timelines and Signals.
|
|
Set multiple features in a hash table.
|
|
Split an anchor in two. Split an anchor a in two, creating a new anchor a' having the same offset as the original one. Anchor a has all the incoming annotations, while anchor a' has all the outgoing annotations.
|
|
Split an annotation in two. Split an annotation a in two, creating a new annotation a' having the same label data as the original one. The two annotations a, a' connect head-to-tail at a new anchor. The new annotation and anchor have identifiers assign from the specified identifier spaces. The new anchor is unanchored, i.e. has no offset.
|
|
Store an annotation graph in a given format.
|
|
Store annotation graphs in a given format.
|
|
StoreToDB stores the specified AGSet to the database server.
DSN is the registered ODBC Data Source Name, it should be defined in the .odbc.ini file in your home directory. All other arguments can be either defined in the .odbc.ini file, or defined in the connect string itself. To gain access to most ODBC data sources, you must provide a valid user ID and corresponding password. These values are initially registered by the database administrator. Probably the easiest way is to define every argument in the .odbc.ini file in your home directory. The following is a sample driver section for DSN 'talkbank' in the configuration file for iODBC. To make the explanation easier, line numbers are included. Please notice that UID and PWD become USER and PASSWORD, respectively, in iODBC's configuration file.
1 [talkbank] 2 Driver = /pkg/ldc/lib/libmyodbc.so 3 DSN = talkbank 4 SERVER = talkbank.ldc.upenn.edu 5 USER = myuserid 6 PASSWORD = mypasswd 7 DATABASE = talkbank Line 1 is the name of the driver section, which is 'talkbank'. You can have multiple driver sections in one configuration file. Line 2 specifies the ODBC driver to use. Line 3 gives the name of the DSN, which is 'talkbank'. Line 4 specifies the hostname of the machine on which the database server is running. Line 5 is the user name to use to connect to the server. Line 6 is the password associated with the user name. Line 7 is the database to connect to. If you have all required arguments specified in your .odbc.ini file like the one above, the connect string can simply be: DSN=talkbank; If you have not specified some of the arguments, say USER and PASSWORD, in the configuration file, you can still specify them in your connect string: DSN=talkbank;UID=myuserid;PWD=mypasswd; |
|
Unset the offset of an anchor. The anchor becomes unanchored after being unset. |
|
Unset a feature. Set the feature to empty. This is for both the features of an annotation, and for the metadata associated with AGSets, AGs, Timelines and Signals.
|
|
Unset all features Set all features to empty. This is for both the features of an annotation, and for the metadata associated with AGSets, AGs, Timelines and Signals.
|
![]() |