Blob Blame History Raw
// Generated by gmmproc 2.54.1 -- DO NOT MODIFY!


#include <glibmm.h>

#include <giomm/socketservice.h>
#include <giomm/private/socketservice_p.h>


/* Copyright (C) 2010 Jonathon Jongsma
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <gio/gio.h>
#include <glibmm/exceptionhandler.h>

namespace Gio
{
} // namespace Gio

namespace
{


static gboolean SocketService_signal_incoming_callback(GSocketService* self, GSocketConnection* p0,GObject* p1,void* data)
{
  using namespace Gio;
  using SlotType = sigc::slot< bool,const Glib::RefPtr<SocketConnection>&,const Glib::RefPtr<Glib::Object>& >;

  auto obj = dynamic_cast<SocketService*>(Glib::ObjectBase::_get_current_wrapper((GObject*) self));
  // Do not try to call a signal on a disassociated wrapper.
  if(obj)
  {
    try
    {
      if(const auto slot = Glib::SignalProxyNormal::data_to_slot(data))
        return static_cast<int>((*static_cast<SlotType*>(slot))(Glib::wrap(p0, true)
, Glib::wrap(p1, true)
));
    }
    catch(...)
    {
       Glib::exception_handlers_invoke();
    }
  }

  using RType = gboolean;
  return RType();
}

static gboolean SocketService_signal_incoming_notify_callback(GSocketService* self, GSocketConnection* p0,GObject* p1, void* data)
{
  using namespace Gio;
  using SlotType = sigc::slot< void,const Glib::RefPtr<SocketConnection>&,const Glib::RefPtr<Glib::Object>& >;

  auto obj = dynamic_cast<SocketService*>(Glib::ObjectBase::_get_current_wrapper((GObject*) self));
  // Do not try to call a signal on a disassociated wrapper.
  if(obj)
  {
    try
    {
      if(const auto slot = Glib::SignalProxyNormal::data_to_slot(data))
        (*static_cast<SlotType*>(slot))(Glib::wrap(p0, true)
, Glib::wrap(p1, true)
);
    }
    catch(...)
    {
      Glib::exception_handlers_invoke();
    }
  }

  using RType = gboolean;
  return RType();
}

static const Glib::SignalProxyInfo SocketService_signal_incoming_info =
{
  "incoming",
  (GCallback) &SocketService_signal_incoming_callback,
  (GCallback) &SocketService_signal_incoming_notify_callback
};


} // anonymous namespace


namespace Glib
{

Glib::RefPtr<Gio::SocketService> wrap(GSocketService* object, bool take_copy)
{
  return Glib::RefPtr<Gio::SocketService>( dynamic_cast<Gio::SocketService*> (Glib::wrap_auto ((GObject*)(object), take_copy)) );
  //We use dynamic_cast<> in case of multiple inheritance.
}

} /* namespace Glib */


namespace Gio
{


/* The *_Class implementation: */

const Glib::Class& SocketService_Class::init()
{
  if(!gtype_) // create the GType if necessary
  {
    // Glib::Class has to know the class init function to clone custom types.
    class_init_func_ = &SocketService_Class::class_init_function;

    // This is actually just optimized away, apparently with no harm.
    // Make sure that the parent type has been created.
    //CppClassParent::CppObjectType::get_type();

    // Create the wrapper type, with the same class/instance size as the base type.
    register_derived_type(g_socket_service_get_type());

    // Add derived versions of interfaces, if the C type implements any interfaces:

  }

  return *this;
}


void SocketService_Class::class_init_function(void* g_class, void* class_data)
{
  const auto klass = static_cast<BaseClassType*>(g_class);
  CppClassParent::class_init_function(klass, class_data);


  klass->incoming = &incoming_callback;
}


gboolean SocketService_Class::incoming_callback(GSocketService* self, GSocketConnection* p0, GObject* p1)
{
  const auto obj_base = static_cast<Glib::ObjectBase*>(
      Glib::ObjectBase::_get_current_wrapper((GObject*)self));

  // Non-gtkmmproc-generated custom classes implicitly call the default
  // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc-
  // generated classes can use this optimisation, which avoids the unnecessary
  // parameter conversions if there is no possibility of the virtual function
  // being overridden:
  if(obj_base && obj_base->is_derived_())
  {
    const auto obj = dynamic_cast<CppObjectType* const>(obj_base);
    if(obj) // This can be NULL during destruction.
    {
      try // Trap C++ exceptions which would normally be lost because this is a C callback.
      {
        // Call the virtual member method, which derived classes might override.
        return static_cast<int>(obj->on_incoming(Glib::wrap(p0, true)
, Glib::wrap(p1, true)
));
      }
      catch(...)
      {
        Glib::exception_handlers_invoke();
      }
    }
  }

  const auto base = static_cast<BaseClassType*>(
        g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class).
    );

  // Call the original underlying C function:
  if(base && base->incoming)
    return (*base->incoming)(self, p0, p1);

  using RType = gboolean;
  return RType();
}


Glib::ObjectBase* SocketService_Class::wrap_new(GObject* object)
{
  return new SocketService((GSocketService*)object);
}


/* The implementation: */

GSocketService* SocketService::gobj_copy()
{
  reference();
  return gobj();
}

SocketService::SocketService(const Glib::ConstructParams& construct_params)
:
  Gio::SocketListener(construct_params)
{

}

SocketService::SocketService(GSocketService* castitem)
:
  Gio::SocketListener((GSocketListener*)(castitem))
{}


SocketService::SocketService(SocketService&& src) noexcept
: Gio::SocketListener(std::move(src))
{}

SocketService& SocketService::operator=(SocketService&& src) noexcept
{
  Gio::SocketListener::operator=(std::move(src));
  return *this;
}


SocketService::~SocketService() noexcept
{}


SocketService::CppClassType SocketService::socketservice_class_; // initialize static member

GType SocketService::get_type()
{
  return socketservice_class_.init().get_type();
}


GType SocketService::get_base_type()
{
  return g_socket_service_get_type();
}


SocketService::SocketService()
:
  // Mark this class as non-derived to allow C++ vfuncs to be skipped.
  Glib::ObjectBase(nullptr),
  Gio::SocketListener(Glib::ConstructParams(socketservice_class_.init()))
{
  

}

Glib::RefPtr<SocketService> SocketService::create()
{
  return Glib::RefPtr<SocketService>( new SocketService() );
}

void SocketService::start()
{
  g_socket_service_start(gobj());
}

void SocketService::stop()
{
  g_socket_service_stop(gobj());
}

bool SocketService::is_active()
{
  return g_socket_service_is_active(gobj());
}


Glib::SignalProxy< bool,const Glib::RefPtr<SocketConnection>&,const Glib::RefPtr<Glib::Object>& > SocketService::signal_incoming()
{
  return Glib::SignalProxy< bool,const Glib::RefPtr<SocketConnection>&,const Glib::RefPtr<Glib::Object>& >(this, &SocketService_signal_incoming_info);
}


Glib::PropertyProxy< bool > SocketService::property_active() 
{
  return Glib::PropertyProxy< bool >(this, "active");
}

Glib::PropertyProxy_ReadOnly< bool > SocketService::property_active() const
{
  return Glib::PropertyProxy_ReadOnly< bool >(this, "active");
}


bool Gio::SocketService::on_incoming(const Glib::RefPtr<SocketConnection>& connection, const Glib::RefPtr<Glib::Object>& source_object)
{
  const auto base = static_cast<BaseClassType*>(
      g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class).
  );

  if(base && base->incoming)
    return (*base->incoming)(gobj(),const_cast<GSocketConnection*>(Glib::unwrap(connection)),Glib::unwrap(source_object));

  using RType = bool;
  return RType();
}


} // namespace Gio