Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <hei_includes.hpp> |
| 4 | #include <hei_isolation_data.hpp> |
Zane Shelley | 11b8994 | 2019-11-07 11:07:28 -0600 | [diff] [blame] | 5 | #include <isolator/hei_isolation_node.hpp> |
Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame] | 6 | |
| 7 | namespace libhei |
| 8 | { |
| 9 | |
| 10 | /** |
| 11 | * @brief This class is a complement to the main APIs. Its purpose is to store |
| 12 | * and maintain all of the objects necessary for isolation. |
| 13 | * |
| 14 | * The intended flow is to: |
| 15 | * - Create a singleton instance of an Isolator object via getSingleton(). |
| 16 | * - Use initialize() to input each necessary Chip Data File provided by the |
| 17 | * user application. |
Zane Shelley | b406de4 | 2019-09-09 16:10:38 -0500 | [diff] [blame] | 18 | * - Call isolate() to find all active errors being reported by the given list |
| 19 | * of chips. |
Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame] | 20 | * - Once isolation is no longer needed, use uninitialize() to free up |
| 21 | * internal resources. |
| 22 | * |
| 23 | * The purpose of the singleton instance is to avoid initializing the object |
| 24 | * each time isolation is required. The data provided by the Chip Data Files is |
| 25 | * static. So reinitializing would be a waste of time, unless for some reason |
| 26 | * the Chip Data Files themselves are updated, which would require |
| 27 | * reinitialization anyway. Of course, leaving the object in memory chews up |
| 28 | * resources. So, some users may need to weigh performance vs. memory usage. |
| 29 | */ |
| 30 | class Isolator |
| 31 | { |
| 32 | private: // This class cannot be instantiated. Use getSingleton() instead. |
Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame] | 33 | /** @brief Default constructor. */ |
| 34 | Isolator() = default; |
| 35 | |
| 36 | /** @brief Destructor. */ |
| 37 | ~Isolator() |
| 38 | { |
| 39 | // Clear out all of the internal isolation objects. |
| 40 | uninitialize(); |
| 41 | } |
| 42 | |
| 43 | /** @brief Copy constructor. */ |
Zane Shelley | fe27b65 | 2019-10-28 11:33:07 -0500 | [diff] [blame] | 44 | Isolator(const Isolator&) = delete; |
Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame] | 45 | |
| 46 | /** @brief Assignment operator. */ |
Zane Shelley | fe27b65 | 2019-10-28 11:33:07 -0500 | [diff] [blame] | 47 | Isolator& operator=(const Isolator&) = delete; |
Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame] | 48 | |
| 49 | public: |
Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame] | 50 | /** @brief Provides access to a singleton instance of this object. */ |
Zane Shelley | fe27b65 | 2019-10-28 11:33:07 -0500 | [diff] [blame] | 51 | static Isolator& getSingleton() |
Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame] | 52 | { |
| 53 | static Isolator theIsolator; |
| 54 | return theIsolator; |
| 55 | } |
| 56 | |
| 57 | /** @brief See API wrapper description in hei_main.hpp. */ |
Zane Shelley | fe27b65 | 2019-10-28 11:33:07 -0500 | [diff] [blame] | 58 | ReturnCode initialize(void* i_buffer, size_t i_bufferSize, |
Zane Shelley | 83da245 | 2019-10-25 15:45:34 -0500 | [diff] [blame] | 59 | bool i_forceInit = false); |
Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame] | 60 | |
| 61 | /** |
| 62 | * @brief See API wrapper description in hei_main.hpp. |
| 63 | * |
| 64 | * This function is called in the destructor. Therefore, it should never |
| 65 | * throw an exception. |
| 66 | */ |
| 67 | void uninitialize(); |
| 68 | |
| 69 | /** @brief See API wrapper description in hei_main.hpp. */ |
Zane Shelley | fe27b65 | 2019-10-28 11:33:07 -0500 | [diff] [blame] | 70 | ReturnCode isolate(const std::vector<Chip>& i_chipList, |
| 71 | IsolationData& o_isoData) const; |
Zane Shelley | 11b8994 | 2019-11-07 11:07:28 -0600 | [diff] [blame] | 72 | |
| 73 | private: |
| 74 | // BEGIN temporary code |
| 75 | /** |
| 76 | * Provides a list of isolation tree nodes used to start analysis based on |
| 77 | * the chip type and attention type. |
| 78 | */ |
| 79 | std::map<ChipType_t, |
| 80 | std::vector<std::pair<const IsolationNode*, AttentionType_t>>> |
| 81 | iv_isoStart; |
| 82 | // END temporary code |
| 83 | |
Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame] | 84 | }; // end class Isolator |
| 85 | |
| 86 | } // end namespace libhei |