OS4 DepotLogo by Kicko 
(anonymous IP: 3.145.23.123,2194) 
 HomeRecentStatsSearchSubmitUploadsMirrorsContactInfoDisclaimerConfigAdmin
 Menu

 Features
   Crashlogs
   Bug tracker
   Locale browser
 

 Categories

   o Audio (343)
   o Datatype (51)
   o Demo (203)
   o Development (596)
   o Document (22)
   o Driver (97)
   o Emulation (147)
   o Game (1005)
   o Graphics (497)
   o Library (115)
   o Network (232)
   o Office (66)
   o Utility (924)
   o Video (69)

Total files: 4367

Full index file
Recent index file

 Links

  Amigans.net
  OpenAmiga
  Aminet
  IntuitionBase


Support the site


 Readme for:  Development » Library » Misc » jansson_library.lha

jansson.library

Description: A native library for manipulating JSON data
Download: jansson_library.lha       (TIPS: Use the right click menu if your browser takes you back here all the time)
Size: 215kb
Version: 2.12.1
Date: 08 Apr 2021
Author: Petri Lehtinen, Simon Tyrrell
Submitter: Samir Hawamdeh
Requirements: 0S 4.0
Category: development/library/misc
Replaces: development/library/misc/jansson_library.lha
License: Other
Distribute: yes
Min OS Version: 4.0
FileID: 11629
 
Comments: 0
Snapshots: 0
Videos: 0
Downloads: 132  (Current version)
223  (Accumulated)
Votes: 10 (0/0)  (30 days/7 days)

Show comments Show snapshots Show videos Show content Show crashlogs Replace file 
This is a port of the original Jansson library by Petri Lehtinin which is
available at http://www.digip.org/jansson/. This is the current latest
version, 2.12, and was made using my libgen program with a bit of tweaking.
This reupload fixes a typo in the return type for json_object_get () which
was incorrevtly set to "json_t" rather than "json_t *".


This port is as a dynamically-loaded shared library (.library) as opposed to
dynamically-linked shared object (.so), which already has a port of version
2.7 previously ported by Fredrik Wikstrom and is available at
http://os4depot.net/share/development/library/misc/libjansson.lha.

As a standard library, its interface is IJansson and all of its functions
match the standard jannson functions. For instance,

	* IJannson->json_object_set_new () is the matching function for
          json_object_set_new ()
	* IJansson->json_dumps () is the matching function for json_dumps ()

etc.

There are *no* inline function defines as they would have a nameclash with the
actual jansson function names.

The include/jansson directory contains the original jansson header files with
some minor tweaks for compatibility.

If you wish to test it prior to installing, there is a small test program and
its source code included in the archive which can be compiled using

	gcc amiga_test.c -o amiga_test -Wall -O3 -Iinclude -Iinclude/jansson

To run it, you'll need to add the jansson library to the library search path
which you can do with

	assign libs: lib/ add

Then you can run it by typing

	amiga_test

which should give output similar to

------------------------------------
json: {"string_key": "string_value"}
loaded json is equal to saved json
packed successfully:
[
  {
    "key": 4,
    "my": {
      "nested": "value",
      "boolean false": false
    }
  },
  {
    "real pi": 3.1415920000000002
  }
]
results: [3/3] tests ran successfully
-------------------------------------


Any questions or bug reports, email me at tyrrell.simon()gmail.com


Copyright © 2004-2024 by Björn Hagström All Rights Reserved