Git Product home page Git Product logo

swiftydictionaryinflater's Introduction

SwiftyDictionaryInflater

A flat structured dictionary like the following

let dic:[String: String] = [
    "auth/type":"saml2.web.post",
    "auth/config/saml2.web.post.authchallengeheader.name":"com.backend.example.cloud.security.login",
    "auth/config/saml2.web.post.finish.endpoint.redirectparam":"finishEndpointParam",
    "auth/config/saml2.web.post.finish.endpoint.uri":"/SAMLAuthLauncher",
    "host":"example.backend.com",
    "protocol":"https"
]

can describe a multi-level data structure in which the different levels are separated by / in the key

Each level is an array of dictionaries and for convenience reasons the index is omitted in the notation. Hence auth/type is actually representing auth[0]["type"]

To inflate the dictionary and re-construct the multi-level data structure can be achieved by using the inflate function which is available as Dictionary extension

let result = dic.inflate()

For the example above you will receive the following result

result: [String: Any] = [
    "host":"example.backend.com",
    "protocol":"https",
    "auth": [
        ["type": "saml2.web.post",
         "config":
            [
                [
                    "saml2.web.post.authchallengeheader.name": "com.backend.example.cloud.security.login",
                    "saml2.web.post.finish.endpoint.redirectparam" : "finishEndpointParam",
                    "saml2.web.post.finish.endpoint.uri": "/SAMLAuthLauncher"
                ]
            ]
        ]
    ]
]

Limitations

  • Index Notation is not (yet) supported

     let dic:[String: String] = [
     	"auth/type":"saml2.web.post",
     	"auth/config[0]/saml2.web.post.authchallengeheader.name":"com.backend.example.cloud.security.login",
     	"auth/config[0]/saml2.web.post.finish.endpoint.redirectparam":"finishEndpointParam",
     	"auth/config[0]/saml2.web.post.finish.endpoint.uri":"/SAMLAuthLauncher",
     	"host":"example.backend.com",
     	"protocol":"https"
     ]
     let result = dic.inflate() // will behave unexpectedly 

swiftydictionaryinflater's People

Contributors

marcoeidinger avatar

Watchers

James Cloos avatar  avatar  avatar

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.