 |
Index for Section 3 |
|
 |
Alphabetical listing for C |
|
csa_restore(3)
CDE
NAME
csa_restore - restores calendar entries from an archive file
SYNOPSIS
#include <xcsa.h>
CSA_return_code csa_restore(CSA_session_handle session,
CSA_string archive_name,
CSA_uint32 number_attributes,
CSA_attribute *attributes,
CSA_enum *operators,
CSA_extension *restore_extensions);
DESCRIPTION
This optional function is not implemented in the Cde 1.0 Sample
Implementation. The csa_restore function restores entries from the
specified archive file into the calendar that is currently logged on to.
Only calendar entries that match all the given criteria are restored. It
is implementation specific whether new entry handles will be assigned to
the entries restored. If attributes is NULL, all the entries in the
archive file will be restored. If operators is NULL, this specifies a
short hand for an array of operators of CSA_MATCH_EQUAL_TO. Only the owner
of the calendar or users with CSA_OWNER_RIGHTS can restore an archive file.
The matching criteria are specified by the array of attributes and the
array of operators. Each operator in operators specifies how the
corresponding attribute value is to be matched. The following operators
are supported:
Matches an entry that contains the corresponding attribute regardless of
the value.
Matches an entry that contains an attribute with a value equal to the
corresponding value.
Matches an entry that contains an attribute with a value not equal to the
corresponding value.
Matches an entry that contains an attribute with a value greater than the
corresponding value.
Matches an entry that contains an attribute with a value less than the
corresponding value.
Matches an entry that contains an attribute with a value greater than or
equal to the corresponding value.
Matches an entry that contains an attribute with a value less than or equal
to the corresponding value.
Applies to character string values only. It matches an entry that contains
the corresponding substring value. The only operators supported for
reminder type attributes are CSA_MATCH_ANY and CSA_MATCH_EQUAL_TO.
Searching of attributes with opaque data type is not supported.
ARGUMENTS
Session (Session Handle)
Opaque session handle that represents a session with the calendar service.
Session handles are created by a logon function call and invalidate with a
logoff function call. If the session handle is invalid then, the error
CSA_E_INVALID_SESSION_HANDLE is returned.
Archive Name (String)
A string containing the name of the archive file on the local system.
Number Attributes (Uint32)
Specifies the size of the arrays pointed to by attributes and operators.
If the attributes argument is NULL, then this must be zero.
Attributes (Attribute)
A pointer to an array of attribute structures specifying the matching
criteria. If the number_attributes argument is zero, then this must be
NULL.
Operators (Enum)
A pointer to an array of matching operator flags for the corresponding
attribute in attributes.
Restore Extensions (Extension)
A pointer to an array of CSA_extension structures for this function. The
array may contain both input extensions for providing additional
information to the function and output extensions for receiving information
from the function. A value of NULL indicates that the caller is not using
any extensions. See the extensions structure for more information.
RETURN VALUE
Restore Extensions (Extension)
If output extensions were passed to the function in the extensions list,
the results from the service will be available in the extension. See the
extensions structure for more information. Whether the function succeeded
or not, and, if not, why. It may be success or one of the values listed
under ERRORS below.
ERRORS
The csa_restore function returns the following error values:
Insufficient disk space was available to complete the requested operation
(this may refer to local or shared disk space).
There was a general failure that does not fit the description of any other
error code.
The specified file in csa_restore does not exist.
Insufficient memory was available to complete the requested operation.
An attribute was specified that was not defined by this specification and
the implementation does not support the attribute as an application
specific attribute.
An invalid attribute value was specified for an attribute.
The data extension requested is invalid.
A CSA_enum value is invalid.
A flag value in the flags argument was invalid.
An invalid file name was specified.
The function extension requested is invalid.
A function parameter was invalid.
The implementation does not understand the exception or recurrence rule.
The specified Session Handle is invalid or no longer valid (e.g., after
logging off).
The user has insufficient authority for this function.
The operation requested is not supported by this implementation.
The requested calendar service is unavailable.
The size of the text string passed to the implementation is too large.
Unable to open the specified file.
An attribute was encountered that is unsupported by the calendar service.
The character set requested is not supported.
The data extension requested is not supported.
The flag requested is not supported.
The specified function extension is not supported or CSA_EXT_REQUIRED is
set.
The specification version specified in the call cannot be supported by this
CSA implementation.
SEE ALSO
csa/csa.h5, csa_add_calendar3, csa_add_entry3, csa_call_callbacks3,
csa_delete_calendar3, csa_delete_entry3, csa_free3, csa_free_time_search3,
csa_list_calendar_attributes3, csa_list_calendars3, csa_list_entries3,
csa_list_entry_attributes3, csa_list_entry_sequence3, csa_logoff3,
csa_logon3, csa_look_up3, csa_query_configuration3,
csa_read_calendar_attributes3, csa_read_entry_attributes3,
csa_read_next_reminder3, csa_register_callback3, csa_save3,
csa_unregister_callback3, csa_update_calendar_attributes3,
csa_update_entry_attributes3.