shithub: vcardfs

ref: 5e39bdc9f4f8117890494e8a8ce632e77c6aaf46
dir: /README.md/

View raw version
# VCARD filesystem and library

## Contents

- `libvcard`: library for parsing and writing vcard data
- `vcardfs`: vcard filesystem

## Usage

### vcardfs

Usage: `vcardfs [-m mtpt] [-s srv] [database.vcf]`

Default database is at: /usr/$user/lib/vcarddb.vcf

	/mnt/vard/
	   ctl
	   import
	   export
	   John_Doe/
	      export
	      0:groupname.fn/
	         data
	         group
	         params/
	            ...
	      0:n/
	         data
	         ...
	      0:tel/
	         data
	         ...
	   Jane_Doe/
	      ...

Interaction:

- `rm /mnt/vcard/John_Doe` deletes the whole card
- `rm /mnt/vcard/John_Doe/fn` deletes the selected line
- `rm /mnt/vcard/John_Doe/fn/params/type` deletes the param
- `rm /mnt/vcard/John_Doe/fn/group` will delete the group association (not implemented yet)
- `mkdir /mnt/vcard/John_Doe/tel` will create a new phone number field

Future plans:

- import: update existing entries (how?)
- files: output with newline at the end?

### libvcard

- see `libvcard/vcard.h`
- `Vcard* vcparse(char *str)`
- `Vcard* vcparsefile(char *file)`
- `char* vcmserialize(Vcard*)`
- ...