Skip to content
Snippets Groups Projects
  1. Feb 03, 2021
    • George Kiagiadakis's avatar
      plugin: inherit from WpObject · f61e2929
      George Kiagiadakis authored
      * use the activate/deactivate system from WpObject,
        which allows async activation and error reporting
      * drop 'module' property, use 'core' from WpObject
      f61e2929
  2. Jan 26, 2021
  3. Jan 22, 2021
  4. Jan 21, 2021
  5. Jan 15, 2021
    • George Kiagiadakis's avatar
      spa-pod: add the ability to specify Id properties as strings · aa93ecf7
      George Kiagiadakis authored
      Use the unused 'K' format letter in the varargs builder & parser methods
      aa93ecf7
    • George Kiagiadakis's avatar
      spa-type: refactor · 37623888
      George Kiagiadakis authored
      * Use a more complete API to introspect SPA types
      * Avoid the need for the Tables enumeration; the tables
        are now registered with a string
      * Avoid the need for initialization, work directly on spa_types
        and other static data
      * Allow working with Object pods that are not Params;
        the PARAMS table was previously hardcoded in the pod implementation
      * Add a different dynamic type registration system, closer to
        how spa type works. The only regression is that we can no longer
        register additional custom object fields (custom SPA_PROP_* for example),
        but this feature can be re-added later
      37623888
  6. Jan 11, 2021
  7. Jan 08, 2021
  8. Jan 05, 2021
  9. Jan 04, 2021
  10. Dec 30, 2020
  11. Dec 21, 2020
  12. Dec 20, 2020
  13. Dec 16, 2020
  14. Dec 01, 2020
  15. Nov 25, 2020
    • George Kiagiadakis's avatar
      lib: delete WpProps · 3d032cc2
      George Kiagiadakis authored
      This is no longer useful, we are going to use WpSpaPod directly
      in combination with the param caching for WpPwObjectMixin
      3d032cc2
    • George Kiagiadakis's avatar
      pw-object-mixin: refactor, implement param caching and features for impl objects · bd65517b
      George Kiagiadakis authored
      Now the WpPipewireObject interface is directly implemented by the mixin
      and there is another interface that users of the mixin must implement
      in order for the mixin to work proprely.
      
      A lot of manual stuff that proxy classes had to do before are now
      in the mixin. Also most of the data that would normally reside in Private
      structures is now in the mixin data structure (stored as qdata on the object).
      This is achieving the best amount of code reuse so far.
      
      For impl objects (WpImpl*) there are also default implementations of the
      standard pipewire object methods and the INFO & PARAM_* features are
      more coherently enabled during the whole lifetime of these objects.
      bd65517b
  16. Nov 16, 2020
  17. Nov 15, 2020
  18. Nov 14, 2020
  19. Nov 13, 2020
    • Julian Bouzas's avatar
    • George Kiagiadakis's avatar
      lib: refactor WpProxy · 2f3f5f8e
      George Kiagiadakis authored
      This is an attempt to unclutter the API of WpProxy and
      split functionality into smaller pieces, making it easier
      to work with.
      
      In this new class layout, we have the following classes:
      
      - WpObject: base class for everything; handles activating
      |           and deactivating "features"
      |- WpProxy: base class for anything that wraps a pw_proxy;
       |          handles events from pw_proxy and nothing more
       |- WpGlobalProxy: handles integration with the registry
      
      All the other classes derive from WpGlobalProxy. The reason
      for separating WpGlobalProxy from WpProxy, though, is that
      classes such as WpImplNode / WpSpaDevice can also derive from
      WpProxy now, without interfacing with the registry.
      
      All objects that come with an "info" structure and have properties
      and/or params also implement the WpPipewireObject interface. This
      provides the API to query properties and get/set params. Essentially,
      this is implemented by all classes except WpMetadata (pw_metadata
      does not have info)
      
      This interface is implemented on each object separately, using
      a private "mixin", which is a set of vfunc implementations and helper
      functions (and macros) to facilitate the implementation of this interface.
      
      A notable difference to the old WpProxy is that now features can be
      deactivated, so it is possible to enable something and later disable
      it again.
      
      This commit disables modules, tests, tools, etc, to avoid growing the
      patch more, while ensuring that the project compiles.
      2f3f5f8e
    • George Kiagiadakis's avatar
    • George Kiagiadakis's avatar
    • George Kiagiadakis's avatar
      lib: add new WpObject base class · 36538a54
      George Kiagiadakis authored
      A base class for objects that can have optional
      features enabled and disabled. The intention is to make
      this the superclass of WpProxy.
      
      Instead of following the augment() pattern of WpProxy,
      this one follows the more advanced transition pattern
      that has been previously implemented in WpSessionItem.
      36538a54
  20. Oct 22, 2020
Loading