aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/VppEndPointManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/VppEndPointManager.hpp')
-rw-r--r--src/include/VppEndPointManager.hpp63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/include/VppEndPointManager.hpp b/src/include/VppEndPointManager.hpp
new file mode 100644
index 0000000..33ec5b2
--- /dev/null
+++ b/src/include/VppEndPointManager.hpp
@@ -0,0 +1,63 @@
+/* -*- C++ -*-; c-basic-offset: 4; indent-tabs-mode: nil */
+/*
+ * Copyright (c) 2017-2018 Cisco Systems, Inc. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+#include <string>
+
+#include "opflexagent/Agent.h"
+
+#include "VppRuntime.hpp"
+
+namespace VOM
+{
+class bridge_domain;
+class route_domain;
+class interface;
+};
+
+namespace VPP
+{
+class EndPointManager : public VOM::interface::stat_listener
+{
+ public:
+ struct NoEpInterfaceException
+ {
+ };
+
+ EndPointManager(Runtime &runtime);
+ virtual ~EndPointManager();
+
+ void handle_update(const std::string &uuid);
+ void handle_external_update(const std::string &uuid);
+ void handle_remote_update(const std::string &uuid);
+
+ static std::string get_ep_interface_name(
+ const opflexagent::Endpoint &ep) throw(NoEpInterfaceException);
+
+ virtual void handle_interface_stat(const interface &);
+
+ private:
+ void handle_update_i(const std::string &uuid, bool is_external);
+
+ /**
+ * Event listener override to get Interface stats
+ */
+ void handle_interface_stat_i(const interface &);
+
+ static std::shared_ptr<interface> mk_bd_interface(
+ const opflexagent::Endpoint &ep,
+ const std::shared_ptr<bridge_domain> bd,
+ const std::shared_ptr<route_domain> rd) throw(NoEpInterfaceException);
+
+ /**
+ * Referene to runtime data.
+ */
+ Runtime &m_runtime;
+};
+
+}; // namespace VPP