Skip to content
Snippets Groups Projects
  1. May 29, 2020
    • George Kiagiadakis's avatar
      props: refactor WpSpaProps into WpProps · 9ae70711
      George Kiagiadakis authored
      - make it a GObject so that it can emit its own signals
      and so that it can be shared between multiple proxies
      - share the WpProps instance between endpoints, endpoint-streams
      and their underlying nodes
      - introduce the concept of the caching mode that redirects _set
      to _set_param of the proxy that actually has the props; this allows
      shared WpProps to actually set changes on the correct proxy
      in a transparent way
      - change methods to consume the ref of the pod and reflect that
      also on wp_proxy_set_prop()
      - refactor the export process on endpoints & endpoint-streams
      so that they always get all the required features (info, props, bound)
      and make it async so that we can take time to prepare the underlying
      node to have FEATURE_PROPS
      - update the props & endpoint unit tests, bringing back all the
      checks that the endpoint unit test used to have
      9ae70711
  2. May 25, 2020
  3. May 20, 2020
  4. May 19, 2020
  5. May 14, 2020
  6. May 13, 2020
  7. May 12, 2020
    • George Kiagiadakis's avatar
      lib: use WP_PROXY_FEATURE_LAST with a shift when declaring additional features · d13e411d
      George Kiagiadakis authored
      Features are flags, therefore we must NEVER use them without a shift,
      otherwise bad mistakes happen, like the previous mistake of declaring
      WP_SESSION_FEATURE_LINKS as the number after WP_SESSION_FEATURE_ENDPOINTS,
      which ended up being (WP_SESSION_FEATURE_ENDPOINTS | WP_PROXY_FEATURE_PW_PROXY)
      and it was always becoming available together with the ENDPOINTS feature.
      d13e411d
  8. May 11, 2020
  9. May 03, 2020
  10. May 01, 2020
  11. Apr 22, 2020
  12. Apr 21, 2020
  13. Apr 16, 2020
  14. Apr 15, 2020
  15. Apr 14, 2020
  16. Apr 13, 2020
  17. Apr 09, 2020
  18. Apr 01, 2020
  19. Mar 31, 2020
  20. Mar 29, 2020
  21. Feb 25, 2020
  22. Feb 14, 2020
    • George Kiagiadakis's avatar
      object-manager: refactor to be able to track locally created proxies · 753e7085
      George Kiagiadakis authored
      There are 3 kinds of WpProxy objects:
       * the ones that are created as a result of binding a global
         from the registry
       * the ones that are created as a result of calling into a remote
         factory (wp_node_new_from_factory, etc...)
       * the ones that are a local implementation of an object
         (WpImplNode, etc...) and are exported
      
      Previously the object manager was only able to track the first kind.
      With these changes we can now also have globals associated with
      WpProxies that were created earlier (and caused the creation of the global).
      This saves some resources and reduces round-trips (in case client
      code wants to change properties of an object that is locally
      implemented, it shouldn't need to do a round-trip through the server)
      753e7085
  23. Feb 12, 2020
  24. Feb 11, 2020
    • George Kiagiadakis's avatar
      proxy/core: refactor object creation · 9330208a
      George Kiagiadakis authored
      * core no longer exposes create_remote/local_object
      * node, device & link have constructor methods
        to enable the create_remote_object functionality
      * added WpImplNode to wrap pw_impl_node and allow creating
        "local" node instances
      * added WpSpaDevice to wrap spa_device and allow creating
        "local" device instances
      * exporting objects in all cases now happens by requesting
        FEATURE_BOUND from the proxy, eliminating the need for WpExported
      * replaced WpMonitor by new, simpler code directly in module-monitor
      * the proxy type lookup table in WpProxy is gone, we now
        use a field on the class structure of every WpProxy subclass
        and iterate through all the class structures instead; this is
        more flexible and extensible
      9330208a
Loading