Без опису

Nikias Bassen cb38f7271a Updated NEWS for release 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 7b94db8122 Remove unnecessary const to silence compiler warning 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 7b94db8122 Remove unnecessary const to silence compiler warning 2 роки тому
test bddb061bd6 test: Fix tests for distcheck 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 72480212cd Updated NEWS for release 2 роки тому
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 8c2844c2c2 Update soversion 2 роки тому
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