Giter VIP home page Giter VIP logo

Comments (1)

hypfvieh avatar hypfvieh commented on August 17, 2024

This was a little bigger problem than previously assumed and should be fixed now.

The "GetAll" method did fail when the annotation were used. But it was also failing without annotations when using types which are also available as primitives (e.g. Integer/int).

In that case some optimization transformed the de-serialized list of Integer to an int array.
This always happened when a collection or map was used in a Variant<?>, therefore this was an really big issue.

The problem is, that DBus itself does not know Collections of any sort, it only support arrays. So it is impossible to know if a Variant should be containing a Collection or an array when de-serializing it from the bus.

After some brainstorming I decided to change the behavior of Variant to always use a List instead of an array.
First argument to do so is to get the GetAll call working correctly.
Second argument is that Collections are more commonly used in Java than arrays.
I assume that Variant will be used as Variant<List<X>> more often than Variant<X[]>.

I am aware that this change may break code which expects to receive an array but I think the behavior of Variant is now more consistent.
I also decided to bump the version to 5.1.0 to show that this version will contain more than just some bugfixes.

from dbus-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.