暫無描述

Nikias Bassen 22618ce58b docs: Updated manpage 2 年之前
.github 4dbf9de969 [github-actions] Fix build for CodeQL workflow again 2 年之前
cython d886885b0e Rename PLIST_UINT to PLIST_INT and add plist_new_int() and plist_get_int_val() 2 年之前
docs 22618ce58b docs: Updated manpage 2 年之前
fuzz 85f5cbd370 oplist: Fix another OOB read 2 年之前
include 8aeda7886c C++: Remove deprecated Insert() 2 年之前
libcnary d390800634 libcnary: Updated typedefs of node_t and node_list_t to contain pointer 2 年之前
m4 b6e60a33d3 Update deprecated autoconf macros and update m4 files 3 年之前
src 8aeda7886c C++: Remove deprecated Insert() 2 年之前
test 6e65e1bfb4 Fix build 2 年之前
tools 4af7c9accb plistutil: Add -p command line switch to print plist in human-readable format 2 年之前
.gitattributes c035c6bcea [github-actions] Windows: Prevent -dirty suffix in version string by disabling CRLF conversion 3 年之前
.gitignore 56c59b7ec7 Update .gitignore 2 年之前
AUTHORS 3ed4cc2583 Updated AUTHORS from commit history 8 年之前
COPYING 47d60e2b9f Added documentation and licensing information. 16 年之前
COPYING.LESSER 47d60e2b9f Added documentation and licensing information. 16 年之前
Makefile.am 323009bfd0 autoconf: Automatically derive version number from latest git tag 3 年之前
NEWS c5a30e9267 Update NEWS with latest changes 4 年之前
README.md f31ab3835b Updated README.md with CodeQL badge 2 年之前
autogen.sh b7dde5fd3d Apply changes towards a project wide common "autogen.sh" file 4 年之前
configure.ac 99cd35bd12 configure: Fix clang detection when configuring --with-fuzzers 3 年之前
doxygen.cfg.in 82a6acc447 Add generation of documentation using "make docs" 10 年之前
git-version-gen f5dca59b72 Allow using libplist as a submodule 2 年之前

README.md

libplist

A small portable C library to handle Apple Property List files in binary, XML, JSON, or OpenStep format.

Features

The project provides an interface to read and write plist files in binary, XML, JSON, or OpenStep format alongside a command-line utility named plistutil.

Some key features are:

  • Formats: Supports binary, XML, JSON, and OpenStep format
  • Utility: Provides a plistutil utility for the command-line
  • Python: Provides Cython based bindings for Python
  • Tested: Uses fuzzing and data compliance tests
  • Efficient: Lean library with performance and resources in mind

Installation / Getting started

Debian / Ubuntu Linux

First install all required dependencies and build tools:

sudo apt-get install \
	build-essential \
	checkinstall \
	git \
	autoconf \
	automake \
	libtool-bin

If you want to optionally build the documentation or Python bindings use:

sudo apt-get install \
	doxygen \
	cython

Then clone the actual project repository:

git clone https://github.com/libimobiledevice/libplist.git
cd libplist

Now you can build and install it:

./autogen.sh
make
sudo make install

Usage

Then simply run:

plistutil -i foobar.plist -o output.plist

This converts the foobar.plist file to the opposite format, e.g. binary to XML or vice versa, and outputs it to the output.plist file.

To convert to a specific format - and also to convert from JSON or OpenStep format - use the -f command line switch:

plistutil -i input.plist -f json

This will convert input.plist, regardless of the input format, to JSON. The code auto-detects the input format and parses it accordingly.

Please consult the usage information or manual page for a full documentation of available command line options:

plistutil --help
man plistutil

Contributing

We welcome contributions from anyone and are grateful for every pull request!

If you'd like to contribute, please fork the master branch, change, commit and send a pull request for review. Once approved it can be merged into the main code base.

If you plan to contribute larger changes or a major refactoring, please create a ticket first to discuss the idea upfront to ensure less effort for everyone.

Please make sure your contribution adheres to:

  • Try to follow the code style of the project
  • Commit messages should describe the change well without being too short
  • Try to split larger changes into individual commits of a common domain
  • Use your real name and a valid email address for your commits

We are still working on the guidelines so bear with us!

Links

License

This project is licensed under the GNU Lesser General Public License v2.1, also included in the repository in the COPYING file.

Credits

Apple, iPhone, iPad, iPod, iPod Touch, Apple TV, Apple Watch, Mac, iOS, iPadOS, tvOS, watchOS, and macOS are trademarks of Apple Inc.

This project is an independent software library and has not been authorized, sponsored, or otherwise approved by Apple Inc.

README Updated on: 2023-01-08