From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wr1-f42.google.com (mail-wr1-f42.google.com [209.85.221.42]) by mx.groups.io with SMTP id smtpd.web12.8370.1608290364795876854 for ; Fri, 18 Dec 2020 03:19:25 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@nuviainc-com.20150623.gappssmtp.com header.s=20150623 header.b=Jw8v/hQ/; spf=pass (domain: nuviainc.com, ip: 209.85.221.42, mailfrom: leif@nuviainc.com) Received: by mail-wr1-f42.google.com with SMTP id q18so1756717wrn.1 for ; Fri, 18 Dec 2020 03:19:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nuviainc-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=865FkUGb5mt9mA5uWQ2V/H0PApYqVRD8gAX0VHr9Iaw=; b=Jw8v/hQ/2vlcmFaKthKB18LkxFFJaz+n/9GIrnAn5qLUbZ1S7l7jR4oRA3jG9rg+Ci 0eT5VGNwHS+D0KJMLxw5CkweZrGN+60MoJ6v00xfeLD8yIkCxq+bxj5rnvRVa4ro052y SqASQO1bC2rBk3XxR6M5MQxIXvo3GBmEuw4XKOUahn5j+EbAHTsCuNJy1PaSrTvayx91 Ay6RLTGUkUzo1lErn94soumKfXzjsSD1K7shra2n5PK8Hc6pyBNhzCryy5wcnZcLwXbc 4RdXSntZdZlybGCvBJkd1bHpYrBA6FOpSFE9kF6QKC5MVqBlLFdz5SfgVVy5tax5IJga HO2w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=865FkUGb5mt9mA5uWQ2V/H0PApYqVRD8gAX0VHr9Iaw=; b=W7IyNGoF/QZOyd0/o8dnWu7+DIn/CH+K951b+RMlKLs2157dTKNM+/71GkL/tjAi7y VKLLgwZx4Sf/+g7zCiuDJMUEz+eL9B6gN6GbKUi2NGPnib55T95JFk8KNJnCF5Fsv4eb MC7LYA6I6BY8KoP++fVQ6YTx9iOwaHGXxXry9z4dffSI3kB3x0tHKNfp35TrN1ZfBqP8 SEdAqa0w5++xzjGxgf4/wA2A/p9J9xuwo44O/zlMR8nkpK6Yc1WziOjXoau2exIcrSr1 VlHf1/qYVGDgn/rW5HnPvhMv7C7zDjlgMt06Riyh7FLhH5ARrdHDAFrWvfz9HFZj9ssS vu6Q== X-Gm-Message-State: AOAM532k5TVpgp/YW76s4hhDK4NDg64zjKnjfYym8nNYcd50EmaTqot0 QYiF2WvIhvyzZcHT+2MyjmaoJg== X-Google-Smtp-Source: ABdhPJw7JzeMXiF2o4yWxXCFz2aAlmpKddFbEXJvkIfkAX7OC4JqvWhAuvdlXhwUkxpy6EVI4QSRyA== X-Received: by 2002:a5d:4e86:: with SMTP id e6mr3926334wru.33.1608290363457; Fri, 18 Dec 2020 03:19:23 -0800 (PST) Return-Path: Received: from vanye (cpc1-cmbg19-2-0-cust915.5-4.cable.virginm.net. [82.27.183.148]) by smtp.gmail.com with ESMTPSA id j59sm13755400wrj.13.2020.12.18.03.19.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 18 Dec 2020 03:19:23 -0800 (PST) Date: Fri, 18 Dec 2020 11:19:21 +0000 From: "Leif Lindholm" To: Abner Chang Cc: devel@edk2.groups.io, Nickle Wang , Peter O'Hanley Subject: Re: [PATCH v8 4/6] RedfishPkg/library: EDK2 port of jansson library Message-ID: <20201218111921.GT1664@vanye> References: <20201217131839.3762-1-abner.chang@hpe.com> <20201217131839.3762-5-abner.chang@hpe.com> MIME-Version: 1.0 In-Reply-To: <20201217131839.3762-5-abner.chang@hpe.com> User-Agent: Mutt/1.10.1 (2018-07-13) Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Dec 17, 2020 at 21:18:37 +0800, Abner Chang wrote: > edk2 JsonLib which is the edk2 port of open source > jansson library. > (https://github.com/akheron/jansson) > jansson library is the open source project to manipulate > JSON data structure. > > Signed-off-by: Abner Chang Acked-by: Leif Lindholm > Cc: Leif Lindholm > Cc: Nickle Wang > Cc: Peter O'Hanley > Reviewed-by: Nickle Wang > --- > RedfishPkg/RedfishPkg.dec | 11 + > RedfishPkg/Library/JsonLib/JsonLib.inf | 89 ++ > RedfishPkg/Include/Library/JsonLib.h | 763 +++++++++++ > RedfishPkg/Library/JsonLib/jansson_config.h | 41 + > .../Library/JsonLib/jansson_private_config.h | 19 + > RedfishPkg/Library/JsonLib/JsonLib.c | 964 ++++++++++++++ > RedfishPkg/Library/JsonLib/load.c | 1111 +++++++++++++++++ > RedfishPkg/Library/JsonLib/Readme.rst | 40 + > RedfishPkg/RedfishPkg.ci.yaml | 8 +- > 9 files changed, 3045 insertions(+), 1 deletion(-) > create mode 100644 RedfishPkg/Library/JsonLib/JsonLib.inf > create mode 100644 RedfishPkg/Include/Library/JsonLib.h > create mode 100644 RedfishPkg/Library/JsonLib/jansson_config.h > create mode 100644 RedfishPkg/Library/JsonLib/jansson_private_config.h > create mode 100644 RedfishPkg/Library/JsonLib/JsonLib.c > create mode 100644 RedfishPkg/Library/JsonLib/load.c > create mode 100644 RedfishPkg/Library/JsonLib/Readme.rst