core_set.h 5.43 KB
Newer Older
1
/*
Marcus Winter committed
2
 * Copyright (c) 2014-2016, Siemens AG. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef EMBB_BASE_CORE_SET_H_
#define EMBB_BASE_CORE_SET_H_

#include <embb/base/c/core_set.h>

namespace embb {
namespace base {

/**
 * \defgroup CPP_BASE_CORESET Core Set
 *
 * Core sets for thread-to-core affinities
 *
 * \ingroup CPP_BASE
 */

/**
 * Represents a set of processor cores, used to set thread-to-core affinities.
 *
 * An instance of this type represents a subset of processor cores. Core sets
 * can be used to set thread-to-core affinities. A core in a core set might
 * just represent a logical core (hyper-thread), depending on the underlying
 * hardware. Each core is identified by a unique integer starting with 0.
 * For example, the cores of a quad-core system are represented by the set
 * {0,1,2,3}.
 *
 * This class is essentially a wrapper for the underlying C implementation.
 *
 * \notthreadsafe
 * \ingroup CPP_BASE_CORESET
 */
class CoreSet {
 public:
  /**
   * Returns the number of available processor cores.
   *
   * If the processor supports hyper-threading, each hyper-thread is treated as
   * a separate processor core.
   *
   * \return Number of cores including hyper-threads
   */
  static unsigned int CountAvailable();

  /**
   * Constructs an empty core set.
   */
  CoreSet();

  /**
   * Constructs a core set with all or no cores.
   */
  explicit CoreSet(
    bool value
    /**< [IN] \c true includes all cores in the set, \c false excludes all */
    );

  /**
   * Constructs a copy of the specified core set.
   */
  CoreSet(
    const CoreSet& to_copy
    /**< [IN] Core set to copy */
    );

  /**
   * Assigns an existing core set.
   *
   * \return Reference to \c *this
   */
  CoreSet& operator=(
    const CoreSet& to_assign
    /**< [IN] Core set to assign */
    );

  /**
   * Resets the core set according to the specified value.
   */
  void Reset(
    bool value
    /**< [IN] \c true includes all cores in the set, \c false excludes all */
    );

  /**
   * Adds one core to the core set.
   */
  void Add(
    unsigned int core
    /**< [IN] Core to add (from 0 to number of cores - 1) */
    );

  /**
   * Removes one core from the core set.
   */
  void Remove(
    unsigned int core
    /** [IN] Core to remove (from 0 to number of cores - 1) */
    );

  /**
   * Checks whether the specified core is included in the set.
   *
   * \return \c true if core is included, otherwise \c false
   */
  bool IsContained(
    unsigned int core
    /**< [IN] Core to check (from 0 to number of cores - 1) */
    ) const;

  /**
   * Counts the number of cores in the set.
   *
   * \return Number of cores in the set
   */
  unsigned int Count() const;

  /**
   * Intersects this core set with the specified one.
   *
   * This core set is not modified by the operation.
   *
   * \return Copy of the result
   */
  CoreSet operator&(
    const CoreSet& rhs
    /** [IN] Core set on right-hand side of intersection operation */
    ) const;

  /**
   * Unites this core set with the specified one.
   *
   * This core set is not modified by the operation.
   *
   * \return Copy of the result
   */
  CoreSet operator|(
    const CoreSet& rhs
    /** [IN] Core set on right-hand side of union operation */
    ) const;

  /**
   * Intersects this core set with the specified one and overwrites this core
   * set.
   *
   * \return Reference to \c *this
   */
  CoreSet& operator&=(
    const CoreSet& rhs
    /** [IN] Core set on right-hand side of intersection operation */
    );

  /**
   * Unites this core set with the specified one an overwrites this core set.
   *
   * \return Reference to \c *this
   */
  CoreSet& operator|=(
    const CoreSet& rhs
    /** [IN] Core set on right-hand side of union operation */
    );

187 188
  /**
   * Provides access to internal representation to use it with C API.
189 190
   *
   * \return A reference to the internal embb_core_set_t structure.
191 192 193
   */
  embb_core_set_t const & GetInternal() const { return rep_; }

194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
 private:
  /**
   * Internal representation of core set.
   */
  embb_core_set_t rep_;

  /**
   * Needs access to internal representation to use it with C API.
   */
  friend class Thread;
};

} // namespace base
} // namespace embb



211
#endif  // EMBB_BASE_CORE_SET_H_