summaryrefslogtreecommitdiffstats
path: root/docs/featuresbyrelease
ModeNameSize
-rw-r--r--index.rst427logstatsplain
-rw-r--r--vpp16.06.rst1771logstatsplain
-rw-r--r--vpp16.09.rst3036logstatsplain
-rw-r--r--vpp17.01.rst1896logstatsplain
-rw-r--r--vpp17.04.rst3534logstatsplain
-rw-r--r--vpp17.07.rst1650logstatsplain
-rw-r--r--vpp17.10.rst1611logstatsplain
-rw-r--r--vpp18.01.rst1447logstatsplain
-rw-r--r--vpp18.04.rst1974logstatsplain
-rw-r--r--vpp18.07.rst2287logstatsplain
-rw-r--r--vpp18.10.rst1638logstatsplain
-rw-r--r--vpp1901.md2828logstatsplain
-rw-r--r--vpp1904.md1623logstatsplain
-rw-r--r--vpp1908.md4786logstatsplain
/* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef __VOM_EVENT_CMD_H__
#define __VOM_EVENT_CMD_H__

#include <mutex>

#include "vom/rpc_cmd.hpp"

#include <vapi/vapi.hpp>

namespace VOM {
/**
 * An Event command base class.
 * Events are one of the sub-set of command type to VPP.
 * A client performs a one time 'registration/subsription' to VPP for the
 * event in question and then is notified asynchronously when those events
 * occur.
 * The model here then is that the lifetime of the event command represensts
 * the during of the clients subscription. When the command is 'issued' the
 * subscription begins, when it is 'retired' the subscription ends. For the
 * subscription duration the client will be notified as events are recieved.
 * The client can then 'pop' these events from this command object.
 */
template <typename WANT, typename EVENT>
class event_cmd : public rpc_cmd<HW::item<bool>, WANT>
{
public:
  /**
   * Default constructor
   */
  event_cmd(HW::item<bool>& b)
    : rpc_cmd<HW::item<bool>, WANT>(b)
  {
  }

  /**
   * Default destructor
   */
  virtual ~event_cmd() {}

  /**
   * Typedef for the event type
   */
  typedef typename vapi::Event_registration<EVENT>::resp_type event_t;
  typedef typename vapi::Event_registration<EVENT> reg_t;

  typedef typename vapi::Result_set<typename reg_t::resp_type>::const_iterator
    const_iterator;

  const_iterator begin() { return (m_reg->get_result_set().begin()); }

  const_iterator end() { return (m_reg->get_result_set().end()); }

  void lock() { m_mutex.lock(); }
  void unlock() { m_mutex.unlock(); }

  /**
   * flush/free all the events thus far reeived.
   * Call with the lock held!
   */
  void flush() { m_reg->get_result_set().free_all_responses(); }

  /**
   * Retire the command. This is only appropriate for Event Commands
   * As they persist until retired.
   */
  virtual void retire(connection& con) = 0;

  vapi_error_e operator()(reg_t& dl)
  {
    notify();

    return (VAPI_OK);
  }

protected:
  /**
   * Notify the command that data from VPP has arrived and been stored.
   * The command should now inform its clients/listeners.
   */
  virtual void notify() = 0;

  /**
   * The VAPI event registration
   */
  std::unique_ptr<vapi::Event_registration<EVENT>> m_reg;

  /**
   * Mutex protection for the events
   */
  std::mutex m_mutex;
};
};

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "mozilla")
 * End:
 */

#endif