-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add gobject and wrap it into C++ object
- Loading branch information
Eduard Čuba
committed
Oct 31, 2017
1 parent
1bf57a0
commit 1a6cfa1
Showing
10 changed files
with
366 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# - Try to find Glib and its components (gio, gobject etc) | ||
# Once done, this will define | ||
# | ||
# GLIB_FOUND - system has Glib | ||
# GLIB_INCLUDE_DIRS - the Glib include directories | ||
# GLIB_LIBRARIES - link these to use Glib | ||
# | ||
# Optionally, the COMPONENTS keyword can be passed to find_package() | ||
# and Glib components can be looked for. Currently, the following | ||
# components can be used, and they define the following variables if | ||
# found: | ||
# | ||
# gio: GLIB_GIO_LIBRARIES | ||
# gobject: GLIB_GOBJECT_LIBRARIES | ||
# gmodule: GLIB_GMODULE_LIBRARIES | ||
# gthread: GLIB_GTHREAD_LIBRARIES | ||
# | ||
# Note that the respective _INCLUDE_DIR variables are not set, since | ||
# all headers are in the same directory as GLIB_INCLUDE_DIRS. | ||
# | ||
# Copyright (C) 2012 Raphael Kubo da Costa <[email protected]> | ||
# | ||
# 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 HOLDER AND ITS 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 ITS | ||
# 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. | ||
|
||
find_package(PkgConfig) | ||
pkg_check_modules(PC_GLIB QUIET glib-2.0) | ||
|
||
find_library(GLIB_LIBRARIES | ||
NAMES glib-2.0 | ||
HINTS ${PC_GLIB_LIBDIR} | ||
${PC_GLIB_LIBRARY_DIRS} | ||
) | ||
|
||
# Files in glib's main include path may include glibconfig.h, which, | ||
# for some odd reason, is normally in $LIBDIR/glib-2.0/include. | ||
get_filename_component(_GLIB_LIBRARY_DIR ${GLIB_LIBRARIES} PATH) | ||
find_path(GLIBCONFIG_INCLUDE_DIR | ||
NAMES glibconfig.h | ||
HINTS ${PC_LIBDIR} ${PC_LIBRARY_DIRS} ${_GLIB_LIBRARY_DIR} | ||
${PC_GLIB_INCLUDEDIR} ${PC_GLIB_INCLUDE_DIRS} | ||
PATH_SUFFIXES glib-2.0/include | ||
) | ||
|
||
find_path(GLIB_INCLUDE_DIR | ||
NAMES glib.h | ||
HINTS ${PC_GLIB_INCLUDEDIR} | ||
${PC_GLIB_INCLUDE_DIRS} | ||
PATH_SUFFIXES glib-2.0 | ||
) | ||
|
||
set(GLIB_INCLUDE_DIRS ${GLIB_INCLUDE_DIR} ${GLIBCONFIG_INCLUDE_DIR}) | ||
|
||
# Version detection | ||
file(READ "${GLIBCONFIG_INCLUDE_DIR}/glibconfig.h" GLIBCONFIG_H_CONTENTS) | ||
string(REGEX MATCH "#define GLIB_MAJOR_VERSION ([0-9]+)" _dummy "${GLIBCONFIG_H_CONTENTS}") | ||
set(GLIB_VERSION_MAJOR "${CMAKE_MATCH_1}") | ||
string(REGEX MATCH "#define GLIB_MINOR_VERSION ([0-9]+)" _dummy "${GLIBCONFIG_H_CONTENTS}") | ||
set(GLIB_VERSION_MINOR "${CMAKE_MATCH_1}") | ||
string(REGEX MATCH "#define GLIB_MICRO_VERSION ([0-9]+)" _dummy "${GLIBCONFIG_H_CONTENTS}") | ||
set(GLIB_VERSION_MICRO "${CMAKE_MATCH_1}") | ||
set(GLIB_VERSION "${GLIB_VERSION_MAJOR}.${GLIB_VERSION_MINOR}.${GLIB_VERSION_MICRO}") | ||
|
||
# Additional Glib components. We only look for libraries, as not all of them | ||
# have corresponding headers and all headers are installed alongside the main | ||
# glib ones. | ||
SET(GLIB_FIND_COMPONENTS gobject; gio; gio-unix;) | ||
foreach (_component ${GLIB_FIND_COMPONENTS}) | ||
if (${_component} STREQUAL "gio") | ||
find_library(GLIB_GIO_LIBRARIES NAMES gio-2.0 HINTS ${_GLIB_LIBRARY_DIR}) | ||
set(ADDITIONAL_REQUIRED_VARS ${ADDITIONAL_REQUIRED_VARS} GLIB_GIO_LIBRARIES) | ||
elseif (${_component} STREQUAL "gobject") | ||
find_library(GLIB_GOBJECT_LIBRARIES NAMES gobject-2.0 HINTS ${_GLIB_LIBRARY_DIR}) | ||
set(ADDITIONAL_REQUIRED_VARS ${ADDITIONAL_REQUIRED_VARS} GLIB_GOBJECT_LIBRARIES) | ||
elseif (${_component} STREQUAL "gmodule") | ||
find_library(GLIB_GMODULE_LIBRARIES NAMES gmodule-2.0 HINTS ${_GLIB_LIBRARY_DIR}) | ||
set(ADDITIONAL_REQUIRED_VARS ${ADDITIONAL_REQUIRED_VARS} GLIB_GMODULE_LIBRARIES) | ||
elseif (${_component} STREQUAL "gthread") | ||
find_library(GLIB_GTHREAD_LIBRARIES NAMES gthread-2.0 HINTS ${_GLIB_LIBRARY_DIR}) | ||
set(ADDITIONAL_REQUIRED_VARS ${ADDITIONAL_REQUIRED_VARS} GLIB_GTHREAD_LIBRARIES) | ||
elseif (${_component} STREQUAL "gio-unix") | ||
# gio-unix is compiled as part of the gio library, but the include paths | ||
# are separate from the shared glib ones. Since this is currently only used | ||
# by WebKitGTK+ we don't go to extraordinary measures beyond pkg-config. | ||
pkg_check_modules(GIO_UNIX QUIET gio-unix-2.0) | ||
include_directories(${GIO_UNIX_INCLUDE_DIRS}) | ||
endif () | ||
endforeach () | ||
|
||
include(FindPackageHandleStandardArgs) | ||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(GLIB REQUIRED_VARS GLIB_INCLUDE_DIRS GLIB_LIBRARIES ${ADDITIONAL_REQUIRED_VARS} | ||
VERSION_VAR GLIB_VERSION) | ||
|
||
mark_as_advanced( | ||
GLIBCONFIG_INCLUDE_DIR | ||
GLIB_GIO_LIBRARIES | ||
GLIB_GIO_UNIX_LIBRARIES | ||
GLIB_GMODULE_LIBRARIES | ||
GLIB_GOBJECT_LIBRARIES | ||
GLIB_GTHREAD_LIBRARIES | ||
GLIB_INCLUDE_DIR | ||
GLIB_INCLUDE_DIRS | ||
GLIB_LIBRARIES | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#include "package.hpp" | ||
|
||
SwdbPackage::SwdbPackage(const char *n, int e, const char *v, const char *r, const char *a) | ||
{ | ||
pkg = dnf_swdb_pkg_new(n, e, v, r, a); | ||
} | ||
|
||
SwdbPackage::~SwdbPackage() | ||
{ | ||
if (pkg) { | ||
g_object_unref(pkg); | ||
} | ||
} | ||
|
||
char * | ||
SwdbPackage::nevra() | ||
{ | ||
|
||
if (pkg) { | ||
return dnf_swdb_pkg_nevra(pkg); | ||
} | ||
else { | ||
return NULL; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,43 @@ | ||
#ifndef DNF_PACKAGE_HPP | ||
#define DNF_PACKAGE_HPP | ||
|
||
|
||
#include "swdbpkg.hpp" | ||
#include <glib-object.h> | ||
#include <string> | ||
using namespace std; | ||
|
||
using namespace std; | ||
|
||
class Package { | ||
public: | ||
Package() {}; | ||
virtual ~Package() = default; | ||
string name; | ||
class Package | ||
{ | ||
public: | ||
Package(){}; | ||
virtual ~Package() = default; | ||
string name; | ||
}; | ||
|
||
|
||
class RPMPackage : public Package { | ||
public: | ||
RPMPackage() {}; | ||
string version; | ||
string release; | ||
class RPMPackage : public Package | ||
{ | ||
public: | ||
RPMPackage(){}; | ||
string version; | ||
string release; | ||
}; | ||
|
||
|
||
class ModulePackage : public Package { | ||
public: | ||
ModulePackage() {}; | ||
string stream; | ||
long long version; | ||
class ModulePackage : public Package | ||
{ | ||
public: | ||
ModulePackage(){}; | ||
string stream; | ||
long long version; | ||
}; | ||
|
||
class SwdbPackage : public Package | ||
{ | ||
public: | ||
SwdbPackage(const char *n, int e, const char *v, const char *r, const char *a); | ||
~SwdbPackage(); | ||
char *nevra(); | ||
DnfSwdbPkg *pkg = NULL; | ||
}; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#include "swdbpkg.hpp" | ||
|
||
G_DEFINE_TYPE(DnfSwdbPkg, dnf_swdb_pkg, G_TYPE_OBJECT) | ||
|
||
static void | ||
dnf_swdb_pkg_finalize(GObject *object) | ||
{ | ||
DnfSwdbPkg *pkg = (DnfSwdbPkg *)object; | ||
g_free(pkg->name); | ||
g_free(pkg->version); | ||
g_free(pkg->release); | ||
g_free(pkg->arch); | ||
G_OBJECT_CLASS(dnf_swdb_pkg_parent_class)->finalize(object); | ||
} | ||
|
||
// SWDB Package Class initialiser | ||
static void | ||
dnf_swdb_pkg_class_init(DnfSwdbPkgClass *klass) | ||
{ | ||
GObjectClass *object_class = G_OBJECT_CLASS(klass); | ||
object_class->finalize = dnf_swdb_pkg_finalize; | ||
} | ||
|
||
// SWDB Package object initialiser | ||
static void | ||
dnf_swdb_pkg_init(DnfSwdbPkg *self) | ||
{ | ||
} | ||
|
||
gchar * | ||
dnf_swdb_pkg_nevra(DnfSwdbPkg *self) | ||
{ | ||
return g_strdup_printf("%s-%d:%s-%s.%s", self->name, self->epoch, self->version, self->release, self->arch); | ||
} | ||
|
||
/** | ||
* dnf_swdb_pkg_new: | ||
* | ||
* Creates a new #DnfSwdbPkg. | ||
* | ||
* Returns: a #DnfSwdbPkg | ||
**/ | ||
DnfSwdbPkg * | ||
dnf_swdb_pkg_new(const gchar *name, gint epoch, const gchar *version, const gchar *release, const gchar *arch) | ||
{ | ||
DnfSwdbPkg *swdbpkg = (DnfSwdbPkg *)g_object_new(DNF_TYPE_SWDB_PKG, NULL); | ||
swdbpkg->name = g_strdup(name); | ||
swdbpkg->epoch = epoch; | ||
swdbpkg->version = g_strdup(version); | ||
swdbpkg->release = g_strdup(release); | ||
swdbpkg->arch = g_strdup(arch); | ||
return swdbpkg; | ||
} |
Oops, something went wrong.