/usr/include/gstreamermm-1.0/gstreamermm/plugin.h is in libgstreamermm-1.0-dev 1.4.3+dfsg-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 | // -*- c++ -*-
// Generated by gmmproc 2.42.0 -- DO NOT MODIFY!
#ifndef _GSTREAMERMM_PLUGIN_H
#define _GSTREAMERMM_PLUGIN_H
#include <glibmm/ustring.h>
#include <sigc++/sigc++.h>
/* gstreamermm - a C++ wrapper for gstreamer
*
* Copyright 2008 The gstreamermm Development Team
*
* 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, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <gst/gst.h>
#include <gstreamermm/object.h>
#include <glibmm/arrayhandle.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GstPlugin GstPlugin;
typedef struct _GstPluginClass GstPluginClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gst
{ class Plugin_Class; } // namespace Gst
namespace Gst
{
/** @addtogroup gstreamermmEnums gstreamermm Enums and Flags */
/**
* @var PluginDependencyFlags PLUGIN_DEPENDENCY_FLAG_NONE
* No special flags.
*
* @var PluginDependencyFlags PLUGIN_DEPENDENCY_FLAG_RECURSE
* Recurse into subdirectories.
*
* @var PluginDependencyFlags PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY
* Use paths argument only if none of the environment variables is set.
*
* @var PluginDependencyFlags PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX
* Interpret filename argument as filter suffix and check all matching files in the directory.
*
* @enum PluginDependencyFlags
*
* Flags used in connection with Gst::Plugin::add_dependency().
* @ingroup gstreamermmEnums
* @par Bitwise operators:
* <tt>%PluginDependencyFlags operator|(PluginDependencyFlags, PluginDependencyFlags)</tt><br>
* <tt>%PluginDependencyFlags operator&(PluginDependencyFlags, PluginDependencyFlags)</tt><br>
* <tt>%PluginDependencyFlags operator^(PluginDependencyFlags, PluginDependencyFlags)</tt><br>
* <tt>%PluginDependencyFlags operator~(PluginDependencyFlags)</tt><br>
* <tt>%PluginDependencyFlags& operator|=(PluginDependencyFlags&, PluginDependencyFlags)</tt><br>
* <tt>%PluginDependencyFlags& operator&=(PluginDependencyFlags&, PluginDependencyFlags)</tt><br>
* <tt>%PluginDependencyFlags& operator^=(PluginDependencyFlags&, PluginDependencyFlags)</tt><br>
*/
enum PluginDependencyFlags
{
PLUGIN_DEPENDENCY_FLAG_NONE = 0x0,
PLUGIN_DEPENDENCY_FLAG_RECURSE = (1 << 0),
PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_DEFAULT_ONLY = (1 << 1),
PLUGIN_DEPENDENCY_FLAG_FILE_NAME_IS_SUFFIX = (1 << 2)
};
/** @ingroup gstreamermmEnums */
inline PluginDependencyFlags operator|(PluginDependencyFlags lhs, PluginDependencyFlags rhs)
{ return static_cast<PluginDependencyFlags>(static_cast<unsigned>(lhs) | static_cast<unsigned>(rhs)); }
/** @ingroup gstreamermmEnums */
inline PluginDependencyFlags operator&(PluginDependencyFlags lhs, PluginDependencyFlags rhs)
{ return static_cast<PluginDependencyFlags>(static_cast<unsigned>(lhs) & static_cast<unsigned>(rhs)); }
/** @ingroup gstreamermmEnums */
inline PluginDependencyFlags operator^(PluginDependencyFlags lhs, PluginDependencyFlags rhs)
{ return static_cast<PluginDependencyFlags>(static_cast<unsigned>(lhs) ^ static_cast<unsigned>(rhs)); }
/** @ingroup gstreamermmEnums */
inline PluginDependencyFlags operator~(PluginDependencyFlags flags)
{ return static_cast<PluginDependencyFlags>(~static_cast<unsigned>(flags)); }
/** @ingroup gstreamermmEnums */
inline PluginDependencyFlags& operator|=(PluginDependencyFlags& lhs, PluginDependencyFlags rhs)
{ return (lhs = static_cast<PluginDependencyFlags>(static_cast<unsigned>(lhs) | static_cast<unsigned>(rhs))); }
/** @ingroup gstreamermmEnums */
inline PluginDependencyFlags& operator&=(PluginDependencyFlags& lhs, PluginDependencyFlags rhs)
{ return (lhs = static_cast<PluginDependencyFlags>(static_cast<unsigned>(lhs) & static_cast<unsigned>(rhs))); }
/** @ingroup gstreamermmEnums */
inline PluginDependencyFlags& operator^=(PluginDependencyFlags& lhs, PluginDependencyFlags rhs)
{ return (lhs = static_cast<PluginDependencyFlags>(static_cast<unsigned>(lhs) ^ static_cast<unsigned>(rhs))); }
} // namespace Gst
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Glib
{
template <>
class Value<Gst::PluginDependencyFlags> : public Glib::Value_Flags<Gst::PluginDependencyFlags>
{
public:
static GType value_type() G_GNUC_CONST;
};
} // namespace Glib
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gst
{
/** The plugin loading errors.
*
* - MODULE - The plugin could not be loaded
* - DEPENDENCIES - The plugin has unresolved dependencies
* - NAME_MISMATCH - The plugin has already be loaded from a different file
*/
class PluginError : public Glib::Error
{
public:
enum Code
{
MODULE,
DEPENDENCIES,
NAME_MISMATCH
};
PluginError(Code error_code, const Glib::ustring& error_message);
explicit PluginError(GError* gobject);
Code code() const;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
private:
static void throw_func(GError* gobject);
friend void wrap_init(); // uses throw_func()
#endif //DOXYGEN_SHOULD_SKIP_THIS
};
} // namespace Gst
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Glib
{
template <>
class Value<Gst::PluginError::Code> : public Glib::Value_Enum<Gst::PluginError::Code>
{
public:
static GType value_type() G_GNUC_CONST;
};
} // namespace Glib
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gst
{
class Structure;
/** A container for features loaded from a shared object module.
* GStreamer is extensible, so Gst::Element instances can be loaded at runtime.
* A plugin system can provide one or more of the basic GStreamer
* Gst::PluginFeature subclasses.
*
* TODO: Edit following paragraph to use gstreamermm classes/methods:
*
* A plugin should export a symbol gst_plugin_desc that is a struct of type
* PluginDesc. the plugin loader will check the version of the core library
* the plugin was linked against and will create a new Gst::Plugin. It will
* then call the PluginInitFunc function that was provided in the
* gst_plugin_desc.
*
* Once you have a handle to a Gst::Plugin (e.g. from the RegistryPool), you
* can add any object that subclasses Gst::PluginFeature.
*
* Usually plugins are always automaticlly loaded so you don't need to call
* gst_plugin_load() explicitly to bring it into memory. There are options to
* statically link plugins to an app or even use GStreamer without a plugin
* repository in which case load() can be needed to bring the plugin
* into memory.
*/
class Plugin : public Object
{
#ifndef DOXYGEN_SHOULD_SKIP_THIS
public:
typedef Plugin CppObjectType;
typedef Plugin_Class CppClassType;
typedef GstPlugin BaseObjectType;
typedef GstPluginClass BaseClassType;
private: friend class Plugin_Class;
static CppClassType plugin_class_;
private:
// noncopyable
Plugin(const Plugin&);
Plugin& operator=(const Plugin&);
protected:
explicit Plugin(const Glib::ConstructParams& construct_params);
explicit Plugin(GstPlugin* castitem);
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
virtual ~Plugin();
/** Get the GType for this class, for use with the underlying GObject type system.
*/
static GType get_type() G_GNUC_CONST;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GObject.
GstPlugin* gobj() { return reinterpret_cast<GstPlugin*>(gobject_); }
///Provides access to the underlying C GObject.
const GstPlugin* gobj() const { return reinterpret_cast<GstPlugin*>(gobject_); }
///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
GstPlugin* gobj_copy();
private:
public:
/** For example,
* bool on_plugin_init(const Glib::RefPtr<Gst::Plugin>& plugin);.
* The init function should return true if plugin was initialized
* successfully, false otherwise.
*/
typedef sigc::slot< bool, const Glib::RefPtr<Gst::Plugin>& > SlotInit;
/** For example,
* bool on_plugin_filter(const Glib::RefPtr<Gst::Plugin>& plugin);.
* The filter function should return true if plugin is a match, false
* otherwise.
*/
typedef sigc::slot< bool, const Glib::RefPtr<Gst::Plugin>& > SlotFilter;
/** Get the error quark.
*
* @return The error quark used in GError messages.
*/
static Glib::QueryQuark error_quark();
/** Get the short name of the plugin
*
* @return The name of the plugin.
*/
Glib::ustring get_name() const;
/** Get the long descriptive name of the plugin
*
* @return The long name of the plugin.
*/
Glib::ustring get_description() const;
/** get the filename of the plugin
*
* @return The filename of the plugin.
*/
Glib::ustring get_filename() const;
/** get the license of the plugin
*
* @return The license of the plugin.
*/
Glib::ustring get_license() const;
/** get the package the plugin belongs to.
*
* @return The package of the plugin.
*/
Glib::ustring get_package() const;
/** get the URL where the plugin comes from
*
* @return The origin of the plugin.
*/
Glib::ustring get_origin() const;
/** get the source module the plugin belongs to.
*
* @return The source of the plugin.
*/
Glib::ustring get_source() const;
/** get the version of the plugin
*
* @return The version of the plugin.
*/
Glib::ustring get_version() const;
/** Get the release date (and possibly time) in form of a string, if available.
*
* For normal GStreamer plugin releases this will usually just be a date in
* the form of "YYYY-MM-DD", while pre-releases and builds from git may contain
* a time component after the date as well, in which case the string will be
* formatted like "YYYY-MM-DDTHH:MMZ" (e.g. "2012-04-30T09:30Z").
*
* There may be plugins that do not have a valid release date set on them.
*
* @return The date string of the plugin, or <tt>0</tt> if not available.
*/
Glib::ustring get_release_date_string() const;
/** queries if the plugin is loaded into memory
*
* @return <tt>true</tt> is loaded, <tt>false</tt> otherwise.
*/
bool is_loaded() const;
// A copy is taken so that the original is not freed by the wrapper.
/** Gets the plugin specific data cache. If it is <tt>0</tt> there is no cached data
* stored. This is the case when the registry is getting rebuilt.
*
* @return The cached data as a Gst::Structure or <tt>0</tt>.
*/
Gst::Structure get_cache_data() const;
/** Adds plugin specific data to cache. Passes the ownership of the structure to
* the @a plugin.
*
* The cache is flushed every time the registry is rebuilt.
*
* @param cache_data A structure containing the data to cache.
*/
void set_cache_data(Gst::Structure& cache_data);
//gst_plugin_name_filter is a C API convenience function which tells if a
//plugin has a given name so ignore it.
//gtkmmproc error: gst_plugin_name_filter : ignored method defs lookup failed
/** @throw Gst::PluginError.
*/
static Glib::RefPtr<Gst::Plugin> load_file(const Glib::ustring& filename);
/** Loads @a plugin. Note that the *return value* is the loaded plugin; @a plugin is
* untouched. The normal use pattern of this function goes like this:
*
*
* GstPlugin *loaded_plugin;
* loaded_plugin = gst_plugin_load (plugin);
* // presumably, we're no longer interested in the potentially-unloaded plugin
* gst_object_unref (plugin);
* plugin = loaded_plugin;
*
*
* @return A reference to a loaded plugin, or <tt>0</tt> on error.
*/
Glib::RefPtr<Gst::Plugin> load();
/** Load the named plugin. Refs the plugin.
*
* @param name Name of plugin to load.
* @return A reference to a loaded plugin, or <tt>0</tt> on error.
*/
static Glib::RefPtr<Gst::Plugin> load_by_name(const Glib::ustring& name);
// Don't wrap gst_plugin_list_free because Glib::ListHandle<> already takes
// care of freeing.
static bool register_static(int major_version, int minor_version,
const Glib::ustring& name, const Glib::ustring& description,
const SlotInit& init_slot, const Glib::ustring& version,
const Glib::ustring& license, const Glib::ustring& source,
const Glib::ustring& package, const Glib::ustring& origin);
/** Make GStreamer aware of external dependencies which affect the feature
* set of this plugin (ie. the elements or typefinders associated with it).
*
* GStreamer will re-inspect plugins with external dependencies whenever any
* of the external dependencies change. This is useful for plugins which wrap
* other plugin systems, e.g. a plugin which wraps a plugin-based visualisation
* library and makes visualisations available as GStreamer elements, or a
* codec loader which exposes elements and/or caps dependent on what external
* codec libraries are currently installed.
*
* @param env_vars <tt>0</tt>-terminated array of environment variables affecting the
* feature set of the plugin (e.g. an environment variable containing
* paths where to look for additional modules/plugins of a library),
* or <tt>0</tt>. Environment variable names may be followed by a path component
* which will be added to the content of the environment variable, e.g.
* "HOME/.mystuff/plugins".
* @param paths <tt>0</tt>-terminated array of directories/paths where dependent files
* may be, or <tt>0</tt>.
* @param names <tt>0</tt>-terminated array of file names (or file name suffixes,
* depending on @a flags) to be used in combination with the paths from
* @a paths and/or the paths extracted from the environment variables in
* @a env_vars, or <tt>0</tt>.
* @param flags Optional flags, or Gst::PLUGIN_DEPENDENCY_FLAG_NONE.
*/
void add_dependency(const Glib::StringArrayHandle& env_vars, const Glib::StringArrayHandle& paths, const Glib::StringArrayHandle& names, Gst::PluginDependencyFlags flags);
/** Make GStreamer aware of external dependencies which affect the feature
* set of this plugin (ie. the elements or typefinders associated with it).
*
* GStreamer will re-inspect plugins with external dependencies whenever any
* of the external dependencies change. This is useful for plugins which wrap
* other plugin systems, e.g. a plugin which wraps a plugin-based visualisation
* library and makes visualisations available as GStreamer elements, or a
* codec loader which exposes elements and/or caps dependent on what external
* codec libraries are currently installed.
*
* Convenience wrapper function for add_dependency() which
* takes simple strings as arguments instead of string arrays, with multiple
* arguments separated by predefined delimiters (see above).
*
* @param env_vars One or more environment variables (separated by ':', ';' or ','),
* or <tt>0</tt>. Environment variable names may be followed by a path component
* which will be added to the content of the environment variable, e.g.
* "HOME/.mystuff/plugins:MYSTUFF_PLUGINS_PATH".
* @param paths One ore more directory paths (separated by ':' or ';' or ','),
* or <tt>0</tt>. Example: "/usr/lib/mystuff/plugins".
* @param names One or more file names or file name suffixes (separated by commas),
* or <tt>0</tt>.
* @param flags Optional flags, or Gst::PLUGIN_DEPENDENCY_FLAG_NONE.
*/
void add_dependency(const Glib::ustring& env_vars, const Glib::ustring& paths, const Glib::ustring& names, Gst::PluginDependencyFlags flags);
public:
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
};
} // namespace Gst
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gst::Plugin
*/
Glib::RefPtr<Gst::Plugin> wrap(GstPlugin* object, bool take_copy = false);
}
#endif /* _GSTREAMERMM_PLUGIN_H */
|