blob: c60835d7d3d59b28e37c2efdb9641e1978cb5aed [file] [log] [blame]
Zane Shelley5a266612019-08-15 16:23:53 -05001#pragma once
2
3#include <hei_includes.hpp>
4#include <hei_isolation_data.hpp>
Zane Shelley11b89942019-11-07 11:07:28 -06005#include <isolator/hei_isolation_node.hpp>
Zane Shelley5a266612019-08-15 16:23:53 -05006
7namespace 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 Shelleyb406de42019-09-09 16:10:38 -050018 * - Call isolate() to find all active errors being reported by the given list
19 * of chips.
Zane Shelley5a266612019-08-15 16:23:53 -050020 * - 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 */
30class Isolator
31{
32 private: // This class cannot be instantiated. Use getSingleton() instead.
Zane Shelley5a266612019-08-15 16:23:53 -050033 /** @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 Shelleyfe27b652019-10-28 11:33:07 -050044 Isolator(const Isolator&) = delete;
Zane Shelley5a266612019-08-15 16:23:53 -050045
46 /** @brief Assignment operator. */
Zane Shelleyfe27b652019-10-28 11:33:07 -050047 Isolator& operator=(const Isolator&) = delete;
Zane Shelley5a266612019-08-15 16:23:53 -050048
49 public:
Zane Shelley5a266612019-08-15 16:23:53 -050050 /** @brief Provides access to a singleton instance of this object. */
Zane Shelleyfe27b652019-10-28 11:33:07 -050051 static Isolator& getSingleton()
Zane Shelley5a266612019-08-15 16:23:53 -050052 {
53 static Isolator theIsolator;
54 return theIsolator;
55 }
56
57 /** @brief See API wrapper description in hei_main.hpp. */
Zane Shelleyfe27b652019-10-28 11:33:07 -050058 ReturnCode initialize(void* i_buffer, size_t i_bufferSize,
Zane Shelley83da2452019-10-25 15:45:34 -050059 bool i_forceInit = false);
Zane Shelley5a266612019-08-15 16:23:53 -050060
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 Shelleyfe27b652019-10-28 11:33:07 -050070 ReturnCode isolate(const std::vector<Chip>& i_chipList,
71 IsolationData& o_isoData) const;
Zane Shelley11b89942019-11-07 11:07:28 -060072
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 Shelley5a266612019-08-15 16:23:53 -050084}; // end class Isolator
85
86} // end namespace libhei