ctaggart / octh

Rust bindings for GNU Octave oct.h
14 stars 4 forks source link

root::octave::refcount<T>; not found in this scope #33

Closed ctaggart closed 5 years ago

ctaggart commented 5 years ago

This is the second of two errors that need to be fixed to build automatically against oct.h.

error[E0412]: cannot find type `T` in this scope
    --> src/lib.rs:6298:55
     |
6298 |     pub type octave_refcount = root::octave::refcount<T>;
     |                                                       ^ not found in this scope
ctaggart commented 5 years ago

C:\Octave\Octave-5.1.0.0\mingw64\include\octave-5.1.0\octave\oct-refcount.h

/*

Copyright (C) 2012-2019 Jaroslav Hajek

This file is part of Octave.

Octave is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Octave is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING.  If not, see
<https://www.gnu.org/licenses/>.

*/

#if ! defined (octave_oct_refcount_h)
#define octave_oct_refcount_h 1

#include "octave-config.h"

#if (defined (OCTAVE_ENABLE_ATOMIC_REFCOUNT) \
     && (defined (__GNUC__) || defined (_MSC_VER)))

#  if defined (__GNUC__)

#    define OCTAVE_ATOMIC_INCREMENT(x) __sync_add_and_fetch (x,  1)
#    define OCTAVE_ATOMIC_DECREMENT(x) __sync_add_and_fetch (x, -1)
#    define OCTAVE_ATOMIC_POST_INCREMENT(x) __sync_fetch_and_add (x,  1)
#    define OCTAVE_ATOMIC_POST_DECREMENT(x) __sync_fetch_and_add (x, -1)

#  elif defined (_MSC_VER)

#    include <intrin.h>

#    define OCTAVE_ATOMIC_INCREMENT(x)                  \
  _InterlockedIncrement (static_cast<long *> (x))

#    define OCTAVE_ATOMIC_DECREMENT(x)                  \
  _InterlockedDecrement (static_cast<long *> (x))

#    define OCTAVE_ATOMIC_POST_INCREMENT(x)             \
  _InterlockedExchangeAdd (static_cast<long *> (x))

#    define OCTAVE_ATOMIC_POST_DECREMENT(x)             \
  _InterlockedExchangeAdd (static_cast<long *> (x))

#  endif

#else

// Generic non-locking versions

#  define OCTAVE_ATOMIC_INCREMENT(x) ++(*(x))
#  define OCTAVE_ATOMIC_DECREMENT(x) --(*(x))
#  define OCTAVE_ATOMIC_POST_INCREMENT(x) (*(x))++
#  define OCTAVE_ATOMIC_POST_DECREMENT(x) (*(x))--

#endif

namespace octave
{

  // Encapsulates a reference counter.

  template <typename T>
  class refcount
  {
  public:

    typedef T count_type;

    refcount (count_type initial_count)
      : count (initial_count)
    { }

    // Increment/Decrement.  int is postfix.
    count_type operator++ (void)
    {
      return OCTAVE_ATOMIC_INCREMENT (&count);
    }

    count_type operator++ (int)
    {
      return OCTAVE_ATOMIC_POST_INCREMENT (&count);
    }

    count_type operator-- (void)
    {
      return OCTAVE_ATOMIC_DECREMENT (&count);
    }

    count_type operator-- (int)
    {
      return OCTAVE_ATOMIC_POST_DECREMENT (&count);
    }

    count_type value (void) const
    {
      return static_cast<count_type const volatile&> (count);
    }

    operator count_type (void) const
    {
      return value ();
    }

    count_type * get (void)
    {
      return &count;
    }

  private:

    count_type count;
  };
}

template <typename T>
using octave_refcount OCTAVE_DEPRECATED (4.4, "use 'octave::refcount' instead") = octave::refcount<T>;

#endif
ctaggart commented 5 years ago

.opaque_type("io_base::.*") didn't work after all.

[📦 org.octave.Octave octh]$ cat /usr/include/c++/8.3.0/bits/ios_base.h | grep openmode

      _S_ios_openmode_end = 1L << 16,
      _S_ios_openmode_max = __INT_MAX__,
      _S_ios_openmode_min = ~__INT_MAX__
   *  name of the various I/O flags (e.g., the openmodes).
    // 27.4.2.1.4  Type ios_base::openmode
     *  Thing to happen.  Defined objects of type openmode are:
    typedef _Ios_Openmode openmode;
    static const openmode app =         _S_app;
    static const openmode ate =         _S_ate;
    static const openmode binary =      _S_bin;
    static const openmode in =          _S_in;
    static const openmode out =         _S_out;
    static const openmode trunc =       _S_trunc;