Giter Club home page Giter Club logo

Comments (4)

tomc603 avatar tomc603 commented on June 13, 2024 1

Yeah, these all sound like they have a real chance to break existing code that relies on the existing behavior. Given it's an array of strings, if a change were to be implemented I think iterating through each element to check for NULL is the safest rather than assuming no further items will be valid. But the question of whether to add an empty string or skip the item entirely is probably fraught with edge cases.

I'm absolutely okay with working around the current behavior, because it gives me the most control over behavior. I just wasn't totally sure if there was already a helper somewhere, or if I was missing something more obvious. Thanks for the reply!

from cjson.

mbratch avatar mbratch commented on June 13, 2024 1

I agree. I think cJSON was intended to be a fairly simple or vanilla interface. I've seen a lot of other more special requests go by with different needs for this or that application, but for me, if I need a particular functionality, I just write my own small wrapper function and use that everywhere I need it.

from cjson.

mbratch avatar mbratch commented on June 13, 2024

As another work-around, you could find the actual number of strings in your allowed_values array and pass that as the count parameter instead of the full size of the array. Perhaps a little more convenient than calling cJSON_AddItemToObject for each actual string.

That said, I do think it would be most convenient if cJSON_CreateStringArray were smarter. The question would be: what behavior would be most expected?

If all of the pointers after a certain point in the array are NULL, then an obvious approach would be for cJSON_CreateStringArray to quit adding strings when it sees the first null pointer in the array, or if it has reached the count, whichever comes first.

But what if you pass an array of strings where there are spurious NULL pointers sprinkled throughout the array? Would the expected behavior be then to pluck out the non-null pointers and add those strings in, direct order, to the cJSON array object?

Or perhaps it should put blank (empty) strings in the locations where NULL values occur?

from cjson.

tomc603 avatar tomc603 commented on June 13, 2024

Thanks for the input and advice. I'll close this so it doesn't attract any further attention.

from cjson.

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.