summaryrefslogtreecommitdiff
path: root/sys/applemedia/dynapi.c
blob: 2317f80d2957fe55181d241f295bb1e0d11b3691 (plain)
1
2
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
187
188
189
190
191
192
193
/*
 * Copyright (C) 2010 Ole André Vadla Ravnås <oleavr@soundrop.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#include "dynapi.h"

#include "dynapi-internal.h"

#include <gmodule.h>
#include <gst/gst.h>

GST_DEBUG_CATEGORY (gst_dyn_api_debug);
#define GST_CAT_DEFAULT gst_dyn_api_debug

enum
{
  PROP_0,
  PROP_FILENAME
};

struct _GstDynApiPrivate
{
  gchar *filename;
  GModule *module;
};

G_DEFINE_TYPE (GstDynApi, gst_dyn_api, G_TYPE_OBJECT);

static void
gst_dyn_api_init (GstDynApi * self)
{
  self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, GST_TYPE_DYN_API,
      GstDynApiPrivate);
}

static void
gst_dyn_api_dispose (GObject * object)
{
  GstDynApi *self = GST_DYN_API_CAST (object);
  GstDynApiPrivate *priv = self->priv;

  if (priv->module != NULL) {
    g_module_close (priv->module);
    priv->module = NULL;
  }

  G_OBJECT_CLASS (gst_dyn_api_parent_class)->dispose (object);
}

static void
gst_dyn_api_finalize (GObject * object)
{
  GstDynApi *self = GST_DYN_API_CAST (object);
  GstDynApiPrivate *priv = self->priv;

  g_free (priv->filename);

  G_OBJECT_CLASS (gst_dyn_api_parent_class)->finalize (object);
}

static void
gst_dyn_api_get_property (GObject * object, guint prop_id,
    GValue * value, GParamSpec * pspec)
{
  GstDynApi *self = GST_DYN_API (object);

  switch (prop_id) {
    case PROP_FILENAME:
      g_value_set_string (value, self->priv->filename);
      break;
    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
      break;
  }
}

static void
gst_dyn_api_set_property (GObject * object, guint prop_id,
    const GValue * value, GParamSpec * pspec)
{
  GstDynApi *self = GST_DYN_API (object);

  switch (prop_id) {
    case PROP_FILENAME:
      g_free (self->priv->filename);
      self->priv->filename = g_value_dup_string (value);
      break;
    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
      break;
  }
}

static void
gst_dyn_api_class_init (GstDynApiClass * klass)
{
  GObjectClass *gobject_class = G_OBJECT_CLASS (klass);

  gobject_class->dispose = gst_dyn_api_dispose;
  gobject_class->finalize = gst_dyn_api_finalize;
  gobject_class->get_property = gst_dyn_api_get_property;
  gobject_class->set_property = gst_dyn_api_set_property;

  g_type_class_add_private (klass, sizeof (GstDynApiPrivate));

  g_object_class_install_property (gobject_class, PROP_FILENAME,
      g_param_spec_string ("filename", "Filename", "Filename", NULL,
          G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
}

gpointer
_gst_dyn_api_new (GType derived_type, const gchar * filename,
    const GstDynSymSpec * symbols, GError ** error)
{
  GstDynApi *api;
  GstDynApiPrivate *priv;
  guint i;
  GArray *names_not_found;

  api = g_object_new (derived_type, "filename", filename, NULL);
  priv = api->priv;

  priv->module = g_module_open (priv->filename, 0);
  if (priv->module == NULL)
    goto open_failed;

  names_not_found = g_array_new (TRUE, FALSE, sizeof (gchar *));

  for (i = 0; symbols[i].name != NULL; i++) {
    const GstDynSymSpec *s = &symbols[i];
    if (!g_module_symbol (priv->module, s->name,
            (gpointer *) (((guint8 *) api) + s->offset)) && s->is_required) {
      g_array_append_val (names_not_found, s->name);
    }
  }

  if (names_not_found->len > 0)
    goto one_or_more_name_not_found;

  g_array_free (names_not_found, TRUE);

  return api;

  /* ERRORS */
open_failed:
  {
    gchar *basename;

    basename = g_path_get_basename (filename);
    g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_FAILED,
        "failed to open %s", basename);
    g_free (basename);

    goto any_error;
  }
one_or_more_name_not_found:
  {
    gchar *basename, *names_joined;

    basename = g_path_get_basename (filename);
    names_joined = g_strjoinv (", ", (gchar **) names_not_found->data);
    g_set_error (error, GST_RESOURCE_ERROR, GST_RESOURCE_ERROR_FAILED,
        "missing %u symbol%s in %s: %s",
        names_not_found->len, (names_not_found->len == 1) ? "" : "s",
        basename, names_joined);
    g_free (names_joined);
    g_free (basename);
    g_array_free (names_not_found, TRUE);

    goto any_error;
  }
any_error:
  {
    g_object_unref (api);

    return NULL;
  }
}