Public Member Functions | |
void | categoryLoaded (String userId, String botId, String endUserId) |
During the load time of AIML data this is called after each AIML category is loaded. | |
void | filePostLoad (String fileName, String userId, String botId, String endUserId) |
During the load time of AIML data this is called after a file is parsed for AIML tags. | |
void | filePreLoad (String fileName, String userId, String botId, String endUserId) |
During the load time of AIML data this is called before a file is parsed for AIML tags. | |
void | infiniteSymbolicReduction (String userId, String botId, String endUserId) |
When srai AIML tags cause an infinite recursion, the infinite recursion is automatically terminated and this method is called. | |
void | inputTagNumericConversionError (String message, String userId, String botId, String endUserId) |
When the AIML tag Input has a value inside of its index attribute which is not a numeric value, this method is called. | |
void | inputTagSizeExceeded (String userId, String botId, String endUserId) |
When the AIML tag Input's index exceeds its size, this method is called. | |
void | learnTagFileNotFound (String message, String userId, String botId, String endUserId) |
When the AIML tag Learn points to a file that cannot be found this method is called. | |
void | starTagNumericConversionError (String message, String userId, String botId, String endUserId) |
When the AIML tag Star has a value inside of its index attribute which is not a numeric value, this method is called. | |
void | starTagSizeExceeded (String userId, String botId, String endUserId) |
When the AIML tag Star's index exceeds its size, this method is called. | |
void | storeGossip (String gossip, String userId, String botId, String endUserId) |
Stores gossip from the aiml gossip tag. | |
void | symbolicReduction (String symbol, String userId, String botId, String endUserId) |
After text in between srai tags is constructed, the text is sent to this callback. | |
void | thatStarTagNumericConversionError (String message, String userId, String botId, String endUserId) |
When the AIML tag ThatStar has a value inside of its index attribute which is not a numeric value, this method is called. | |
void | thatStarTagSizeExceeded (String userId, String botId, String endUserId) |
When the AIML tag ThatStar's index exceeds its size, this method is called. | |
void | thatTagNumericConversionError (String message, String userId, String botId, String endUserId) |
When the AIML tag That has a value inside of its index attribute which is not a numeric value, this method is called. | |
void | thatTagSizeExceeded (String userId, String botId, String endUserId) |
When the AIML tag That's index exceeds its size, this method is called. | |
void | topicStarTagNumericConversionError (String message, String userId, String botId, String endUserId) |
When the AIML tag Topic has a value inside of its index attribute which is not a numeric value, this method is called. | |
void | topicStarTagSizeExceeded (String userId, String botId, String endUserId) |
When the AIML tag TopicStar's index exceeds its size, this method is called. | |
void | XMLParseError (String message, String userId, String botId, String endUserId) |
When a XML Parse Error is encountered during the parsing of the AIML tags this method will be called. | |
void | XMLParseFatalError (String message, String userId, String botId, String endUserId) |
When a XML Parse Fatal Error is encountered during the parsing of the AIML tags this method will be called. | |
void | XMLParseWarning (String message, String userId, String botId, String endUserId) |
When a XML Parse Warning is encountered during the parsing of the AIML tags this method will be called. |
You can pick and choose which callbacks you want to do something about by only overriding the callback methods that you feel like doing something about. The remaining methods you do not override will then just remain the default no-ops (no operations) and do nothing.
After you create your custom subclass of CallBacks, you instantiate it and call GraphBuilder's method setCallBacks GraphBuilder.setCallBacks() giving it the address of your custom subclass of CallBacks. GraphBuilder will NOT try to delete your subclass. You are responsible for the memory management of your CallBacks subclass.
If you do not override this class and call GraphBuilder's setCallBacks with the address of your instance, then the default one inside GraphBuilder will be used. The default CallBacks is an instantiation of this no-ops (No operations) class. Therefore nothing will happen when each method is called and is thus the default behavior.
void categoryLoaded | ( | String | userId, | |
String | botId, | |||
String | endUserId | |||
) | [inline] |
During the load time of AIML data this is called after each AIML category is loaded.
This enables an action to be performed after each category is loaded such as counting the categories and periodically outputting that "x" number of categories has been loaded so far.
This callback will only be called during a call to GraphBuilder.createGraph().
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void filePostLoad | ( | String | fileName, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
During the load time of AIML data this is called after a file is parsed for AIML tags.
This enables an action to be performed after each file is loaded such as outputting that "file x" was loaded or to count the amount of time a file takes to load using CallBacks.filePreLoad in conjunction.
This callback will only be called during a call to GraphBuilder.createGraph().
fileName | The name of the file that was just parsed for AIML tags. | |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void filePreLoad | ( | String | fileName, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
During the load time of AIML data this is called before a file is parsed for AIML tags.
This enables an action to be performed before each file is loaded such as outputting that "file x" is loading or to count the amount of time a file takes to load using CallBacks.filePostLoad in conjunction.
This callback will only be called during a call to GraphBuilder.createGraph().
fileName | The name of the file that is about to be parsed for AIML tags. | |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void infiniteSymbolicReduction | ( | String | userId, | |
String | botId, | |||
String | endUserId | |||
) | [inline] |
When srai AIML tags cause an infinite recursion, the infinite recursion is automatically terminated and this method is called.
This method can be used to send an informative message that the AIML tags have infinite recursion with the srai tags or to just detect the issue. You DO NOT have to worry about trying to terminate the recursion yourself. The recursion is automatically terminated.
This callback will only be called during a call to GraphBuilder.getResponse().
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void inputTagNumericConversionError | ( | String | message, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag Input has a value inside of its index attribute which is not a numeric value, this method is called.
This is useful to output when the AIML tag Input during load time has invalid numeric values for its index.
This callback will only be called during a call to GraphBuilder.createGraph()
message | A informative message of the error for humans | |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void inputTagSizeExceeded | ( | String | userId, | |
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag Input's index exceeds its size, this method is called.
This is useful to output when the AIML tag Input during runtime is exceeding its size for informational purposes or to aid in debugging AIML tags.
This callback will only be called during a call to GraphBuilder.getResponse()
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void learnTagFileNotFound | ( | String | message, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag Learn points to a file that cannot be found this method is called.
This is useful to output when the AIML tag Learn cannot find the file it was searching for to load.
message | A informative message of the error for humans | |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void starTagNumericConversionError | ( | String | message, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag Star has a value inside of its index attribute which is not a numeric value, this method is called.
This is useful to output when the AIML tag Star during load time has invalid numeric values for its index.
This callback will only be called during a call to GraphBuilder.createGraph()
message | A informative message of the error for humans | |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void starTagSizeExceeded | ( | String | userId, | |
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag Star's index exceeds its size, this method is called.
This is useful to output when the AIML tag Star during runtime is exceeding its size for informational purposes or to aid in debugging AIML tags.
This callback will only be called during a call to GraphBuilder.getResponse()
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void storeGossip | ( | String | gossip, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
Stores gossip from the aiml gossip tag.
Whenever the gossip tag is encountered during the runtime of rebecca aiml, this callback is called. This gives the opportunity to store gossip into a flat file, or something else deemed appropriate.
The possibility of this callback being called is only during a call to GraphBuilder.getResponse().
gossip | The final constructed text between a gossip AIML tag. | |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void symbolicReduction | ( | String | symbol, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
After text in between srai tags is constructed, the text is sent to this callback.
Usually srai is used for symbolicReduction, hence the name of this callback method. This method is called before the GraphBuilder.getResponse() is called with the constructed srai text. This method is mostly useful for informative purposes of seeing what the AIML is recalling its self with during calls to GraphBuilder.getResponse().
This callback will only be called during a call to GraphBuilder.getResponse().
symbol | The final constructed text that was constructed from between a srai AIML tag encountered. | |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void thatStarTagNumericConversionError | ( | String | message, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag ThatStar has a value inside of its index attribute which is not a numeric value, this method is called.
This is useful to output when the AIML tag ThatStar during load time has invalid numeric values for its index.
This callback will only be called during a call to GraphBuilder.createGraph()
message | A informative message of the error for humans | |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void thatStarTagSizeExceeded | ( | String | userId, | |
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag ThatStar's index exceeds its size, this method is called.
This is useful to output when the AIML tag ThatStar during runtime is exceeding its size for informational purposes or to aid in debugging AIML tags.
This callback will only be called during a call to GraphBuilder.getResponse()
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void thatTagNumericConversionError | ( | String | message, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag That has a value inside of its index attribute which is not a numeric value, this method is called.
This is useful to output when the AIML tag That during load time has invalid numeric values for its index.
This callback will only be called during a call to GraphBuilder.createGraph()
message | A informative message of the error for humans | |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void thatTagSizeExceeded | ( | String | userId, | |
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag That's index exceeds its size, this method is called.
This is useful to output when the AIML tag That during runtime is exceeding its size for informational purposes or to aid in debugging AIML tags.
This callback will only be called during a call to GraphBuilder.getResponse()
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void topicStarTagNumericConversionError | ( | String | message, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag Topic has a value inside of its index attribute which is not a numeric value, this method is called.
This is useful to output when the AIML tag Topic during load time has invalid numeric values for its index.
This callback will only be called during a call to GraphBuilder.createGraph()
message | A informative message of the error for humans | |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void topicStarTagSizeExceeded | ( | String | userId, | |
String | botId, | |||
String | endUserId | |||
) | [inline] |
When the AIML tag TopicStar's index exceeds its size, this method is called.
This is useful to output when the AIML tag TopicStar during runtime is exceeding its size for informational purposes or to aid in debugging AIML tags.
This callback will only be called during a call to GraphBuilder.getResponse()
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void XMLParseError | ( | String | message, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
When a XML Parse Error is encountered during the parsing of the AIML tags this method will be called.
message | The XML Error Message |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void XMLParseFatalError | ( | String | message, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
When a XML Parse Fatal Error is encountered during the parsing of the AIML tags this method will be called.
message | The XML Fatal Error Message |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |
void XMLParseWarning | ( | String | message, | |
String | userId, | |||
String | botId, | |||
String | endUserId | |||
) | [inline] |
When a XML Parse Warning is encountered during the parsing of the AIML tags this method will be called.
message | The XML Warning Message |
userId | The user that caused this | |
botId | The bot that caused this | |
endUserId | The end user that caused this |
Any | can be thrown. |