New Entity AI

Draft 1.0:
Index


dugout-> navigation_methods_special.dugout



Provide special label-based responses to the environment. These special navigation methods can be expanded, but they should follow the provided convention to keep them uniform in structure. Special methods are to be provided a LABEL_* that is set in /dugout/static_variables/. All labels are to be housed there as a LABEL GROUP. Out of convention, if the group exceeds 50 entries, it should be made into a LABEL SLUG and read in a dynamic fashion. This can be done using a database, no-sql methods, or just by providing a text file. Special locations are usually only available at certain points during operations. Such as if a backup drive is available or a network location is available for discovery.


           
#!/bin/sh
###############################################################################
## COPYRIGHT (C) 2023-2024 NEW ENTITY OPERATIONS INC.
## CREATED: 2023/11/17
## INSTANCE: navigation_methods_special.dugout
## MODIFIED: 2024/01/24
## OVERVIEW: Provide special label-based responses to the environment
## HISTORY: VERSION 1.4
## -> 2023/11/17 (VERSION 1.0) Development
## -> 2023/12/17 (VERSION 1.1)
## -> 2023/12/20 (VERSION 1.2)
## -> 2024/01/01 (VERSION 1.3)
## -> 2024/01/24 (VERSION 1.4) Production
###############################################################################
## Storage Locations: Non-standard
###############################################################################
## Source the wrappers
. "$wrappers_generic"

NAVIGATION_MOCK_FAILURE_SPECIAL() {
 if [ -d "/THIS_DIR_WILL_FAIL_TEST" ]; then
  perform_tree_walk "/THIS_DIR_WILL_FAIL_TEST"
 else
  alert_location_special_not_found "/THIS_DIR_WILL_FAIL_TEST"
 fi
}

NAVIGATION_*SPECIAL_LOCATION_ENDPOINT_LABEL_NAME*_SPECIAL() {
 ## /run/*VIRTUAL_BACKUP_LOCATION*/*SEGMENT_ID_LOCATION*/*SPECIAL_LOCATION_ENDPOINT*
 if [ -d "${LABEL_*SPECIAL_LOCATION_ENDPOINT_LABEL_NAME*}" ]; then
  perform_tree_walk "${LABEL_*SPECIAL_LOCATION_ENDPOINT_LABEL_NAME*}"
 else
  alert_location_special_not_found "${LABEL_*SPECIAL_LOCATION_ENDPOINT_LABEL_NAME*}"
 fi
}