Sponsored Content
Special Forums News, Links, Events and Announcements Software Releases - RSS News libferris 1.2.6 (Default branch) Post 302271875 by Linux Bot on Sunday 28th of December 2008 08:40:15 PM
Old 12-28-2008
libferris 1.2.6 (Default branch)

libferris is a virtual filesystem that exposeshierarchical data of all kinds through a commonC++ interface. Access to data is performed usingC++ IOStreams and Extended Attributes (EA) can beattached to each file or directory to presentmetadata. Ferris uses a plugin API to read variousdata sources and expose them as filesystems and togenerate interesting EA. Current implementationsinclude native (kernel disk IO with fam), XML (mount an XML file as a filesystem), DB4, xmldb, Evolution, Firefox, Emacs, LDAP, HTTP, FTP, eet,sockets, RDF/XML, RDF/bdb, and mbox. EA generatorsinclude image, audio, and animation decoders.License: GNU General Public License (GPL)Changes:
HAL support was improved, including a volumemanager, configuration wizard, and hal://filesystem. Switching between many fulltext andmetadata indexes is easier. Support was added foreasy async searches, and for building temporaryindex federations to complement the existingpermanent federations. The fdu command, acopy-append feature in gfcp, the precache sizeoption for tree walkers, and the gfindexaddclient, which can add to both metadata andfulltext indexes, were added. Improvements weremade to hidden symbol support.Image

Image

More...
 
delproplist(3)						     Library Functions Manual						    delproplist(3)

NAME
delproplist, fdelproplist - Removes Extended File Attributes from a file SYNOPSIS
#include <sys/proplist.h> int delproplist ( char *path, int follow, struct proplistname_args *args ); int fdelproplist ( int fd, struct proplistname_args *args ); PARAMETERS
Points to a file whose Extended File Attributes are to be removed from its Property List. If non-zero, specifies that if the last component in *path is a symbolic link, then the link should be traversed. Points to the proplistname_args structure, defined in sys/proplist.h, that contains the following members: pl_mask Contains system-wide Extended File Attributes. Note that if you are deleting all the Extended File Attributes of a file, pl_mask must equal PLE_FLAG_ALL defined in sys/proplist.h. Also, if you are deleting Extended File Attribute flags that match certain system-wide Extended File Attributes, the value of pl_mask should be formed by ORing the desired values of the system-wide Extended File Attributes. pl_numnames Contains the number of Extended File Attributes names held in the names array, pl_names. pl_names Contains a counted array of Extended File Attribute names. Note that the Extended File Attribute names are null terminated ASCII strings and that the last element of the array must be a null pointer. Also, a null array pointer indicates all Extended File Attributes. Specifies a file descriptor that points to a file whose Extended File Attributes are to be removed from its Property List. This parameter is used with the fdelproplist function. DESCRIPTION
The delproplist function removes one or more Extended File Attributes, whose names are specified in the structure pointed to by *args, from the Property List of the file pointed to by *path. An Extended File Attribute is a name and value pair that is contained in a variable- sized structure called a Property List. A Property List is part of a file's metadata and can contain abstract name and value pairs (Extended File Attributes) that can be set either by the operating system (for example, ACLs and privileges) or by a user-level application (for example, PC File Attributes). Note that if you specify a non-existent Extended File Attribute name, the function will return success- fully. The fdelproplist function behaves the same as delproplist, except that it operates on a file descriptor rather than a pointer to a file. RESTRICTIONS
If a system failure occurs when the Extended File Attributes are being removed from disk, one of the three following conditions may apply to each Extended File Attribute, since there are no ordering guarantees when several Extended File Attributes are being updated: The Extended File Attribute was not removed from the disk. The Extended File Attribute was removed from the disk. EXAMPLES
#include <sys/proplist.h> main() { char *ptr, *buf, *name, *value; int *value_len, *flags, buffer_size, min_buffer_size, ret, nbytes; struct pro- plistname_args entry_names; static char *names[] = { "primary_name", "secondary_name", "" }; . . . /* * Delete the property list entries */ if (delproplist("/tmp/foo", 1, entry_names)) perror("delproplist"); free(buf); } RETURN VALUES
If successful, zero is returned, the specified Extended File Attribute is deleted from disk, and the change time of the file pointed to by *path is marked for update. If unsuccessful, the integer -1 is returned and errno is set to indicate the error. ERRORS
In addition to errors associated with open(2), the function will fail if: Search permission was denied for a directory in *path. The calling program was not the owner of the file and the process does not have the appropriate system privilige. A problem was encountered with the Extended File Attribute name. A problem was encountered with the Extended File Attribute name. There was an error reading or writing some portion of the Property List. The Extended File Attribute could not be associated with the file pointed to by *path. The calling program did not have the appropriate system privilige to access the requested Extended File Attribute, for example, DEC_AUDIT_PROPLISTFLAG. The file system is mounted read-only. RELATED INFORMATION
Functions: open(2), add_proplist_entry(3), delproplist(3), fdelproplist(3), fgetproplist(3), fsetproplist(3), get_proplist_entry(3), get- proplist(3), setproplist(3), sizeof_proplist_entry(3). Files: proplist(4), sys/proplist.h. delim off delproplist(3)
All times are GMT -4. The time now is 08:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy