vattr_spi.h 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /** BEGIN COPYRIGHT BLOCK
  2. * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
  3. * Copyright (C) 2005 Red Hat, Inc.
  4. * All rights reserved.
  5. *
  6. * License: GPL (version 3 or any later version).
  7. * See LICENSE for details.
  8. * END COPYRIGHT BLOCK **/
  9. #ifdef HAVE_CONFIG_H
  10. # include <config.h>
  11. #endif
  12. /* Defines the vattr SPI interface, used by COS and Roles at present */
  13. /* Also needs to be included by any code which participates in the vattr
  14. loop detection scheme (e.g. filter test code)
  15. */
  16. /* Loop context structure */
  17. typedef struct _vattr_context vattr_context;
  18. typedef struct _vattr_sp_handle vattr_sp_handle;
  19. typedef struct _vattr_type_list_context vattr_type_list_context;
  20. typedef int (*vattr_get_fn_type)(vattr_sp_handle *handle, vattr_context *c, Slapi_Entry *e, char *type, Slapi_ValueSet** results,int *type_name_disposition, char** actual_type_name, int flags, int *free_flags, void *hint);
  21. typedef int (*vattr_get_ex_fn_type)(vattr_sp_handle *handle, vattr_context *c, Slapi_Entry *e, char **type, Slapi_ValueSet*** results,int **type_name_disposition, char*** actual_type_name, int flags, int *free_flags, void **hint);
  22. typedef int (*vattr_compare_fn_type)(vattr_sp_handle *handle, vattr_context *c, Slapi_Entry *e, char *type, Slapi_Value *test_this, int* result, int flags, void *hint);
  23. typedef int (*vattr_types_fn_type)(vattr_sp_handle *handle,Slapi_Entry *e,vattr_type_list_context *type_context,int flags);
  24. vattr_context *vattr_context_new( Slapi_PBlock *pb );
  25. int slapi_vattrspi_register(vattr_sp_handle **h, vattr_get_fn_type get_fn, vattr_compare_fn_type compare_fn, vattr_types_fn_type types_fn);
  26. /* options must be set to null */
  27. int slapi_vattrspi_register_ex(vattr_sp_handle **h, vattr_get_ex_fn_type get_fn, vattr_compare_fn_type compare_fn, vattr_types_fn_type types_fn, void *options);
  28. int slapi_vattrspi_regattr(vattr_sp_handle *h,char *type_name_to_register, char* DN /* Is there a DN type ?? */, void *hint);
  29. /* Type thang structure used by slapi_vattrspi_add_type() */
  30. struct _vattr_type_thang {
  31. char *type_name;
  32. unsigned long type_flags; /* Same values as Slapi_Attr->a_flags */
  33. Slapi_ValueSet *type_values; /* for slapi_vattr_list_attrs() use only */
  34. };
  35. int slapi_vattrspi_add_type(vattr_type_list_context *c, vattr_type_thang *thang, int flags);
  36. /* get thang structure used by slapi_vattr_values_get_sp() */
  37. struct _vattr_get_thang {
  38. int get_present;
  39. char *get_type_name;
  40. int get_name_disposition;
  41. Slapi_ValueSet *get_present_values;
  42. Slapi_Attr *get_attr;
  43. };
  44. /* Loop-detection-aware versions of the functions, to be called by service providers and their ilk */
  45. SLAPI_DEPRECATED int slapi_vattr_values_get_sp(vattr_context *c, /* Entry we're interested in */ Slapi_Entry *e, /* attr type name */ char *type, /* pointer to result set */ Slapi_ValueSet** results,int *type_name_disposition, char **actual_type_name, int flags, int *free_flags);
  46. int slapi_vattr_values_get_sp_ex(vattr_context *c, /* Entry we're interested in */ Slapi_Entry *e, /* attr type name */ char *type, /* pointer to result set */ Slapi_ValueSet*** results,int **type_name_disposition, char ***actual_type_name, int flags, int *free_flags, int *subtype_count);
  47. int slapi_vattr_namespace_values_get_sp(vattr_context *c, /* Entry we're interested in */ Slapi_Entry *e, /* backend namespace dn */ Slapi_DN *namespace_dn, /* attr type name */ char *type, /* pointer to result set */ Slapi_ValueSet*** results,int **type_name_disposition, char ***actual_type_name, int flags, int *free_flags, int *subtype_count);
  48. int slapi_vattr_value_compare_sp(vattr_context *c, Slapi_Entry *e,char *type, Slapi_Value *test_this, int *result, int flags);
  49. int slapi_vattr_namespace_value_compare_sp(vattr_context *c,/* Entry we're interested in */ Slapi_Entry *e, /* backend namespace dn*/Slapi_DN *namespace_dn, /* attr type name */ const char *type, Slapi_Value *test_this,/* pointer to result */ int *result, int flags);
  50. Slapi_PBlock *slapi_vattr_get_pblock_from_context( vattr_context *c );