ldif.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
  3. * Copyright (C) 2001-2009 Match Grun and the Claws Mail team
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. */
  19. /*
  20. * Definitions necessary to access LDIF files (LDAP Data Interchange Format
  21. * files). These files are used to load LDAP servers and to interchange data
  22. * between servers. They are also used by several E-Mail client programs and
  23. * other programs as a means of interchange address book data.
  24. */
  25. #ifndef __LDIF_H__
  26. #define __LDIF_H__
  27. #include <stdio.h>
  28. #include <glib.h>
  29. #include "addrcache.h"
  30. #define LDIFBUFSIZE 2048
  31. /* Common tag names - for address book import/export */
  32. #define LDIF_TAG_DN "dn"
  33. #define LDIF_TAG_COMMONNAME "cn"
  34. #define LDIF_TAG_FIRSTNAME "givenName"
  35. #define LDIF_TAG_LASTNAME "sn"
  36. #define LDIF_TAG_NICKNAME "displayName"
  37. #define LDIF_TAG_EMAIL "mail"
  38. #define LDIF_TAG_OBJECTCLASS "objectClass"
  39. /* Object classes */
  40. #define LDIF_CLASS_PERSON "person"
  41. #define LDIF_CLASS_INET_PERSON "inetOrgPerson"
  42. /*
  43. * Typical LDIF entry (similar to that generated by Netscape):
  44. *
  45. * dn: uid=axel, dc=axel, dc=com
  46. * cn: Axel Rose
  47. * sn: Rose
  48. * givenname: Arnold
  49. * xmozillanickname: Axel
  50. * mail: axel@axelrose.com
  51. * mail: axelrose@aol.com
  52. * mail: axel@netscape.net
  53. * mail: axel@hotmail.com
  54. * uid: axelrose
  55. * o: The Company
  56. * locality: Denver
  57. * st: CO
  58. * streetaddress: 777 Lexington Avenue
  59. * postalcode: 80298
  60. * countryname: USA
  61. * telephonenumber: 303-555-1234
  62. * homephone: 303-555-2345
  63. * cellphone: 303-555-3456
  64. * homeurl: http://www.axelrose.com
  65. * objectclass: top
  66. * objectclass: person
  67. *
  68. * Note that first entry is always dn. An empty line defines end of
  69. * record. Note that attribute names are case insensitive. There may
  70. * also be several occurrences of an attribute, for example, as
  71. * illustrated for "mail" and "objectclass" attributes. LDIF files
  72. * can also use binary data using base-64 encoding.
  73. *
  74. */
  75. /* LDIF file object */
  76. typedef struct _LdifFile LdifFile;
  77. struct _LdifFile {
  78. FILE *file;
  79. gchar *path;
  80. gchar *bufptr;
  81. gint retVal;
  82. GHashTable *hashFields;
  83. GList *tempList;
  84. gboolean dirtyFlag;
  85. gboolean accessFlag;
  86. void (*cbProgress)( void *, void *, void * );
  87. gint importCount;
  88. };
  89. /* LDIF field record structure */
  90. typedef struct _Ldif_FieldRec_ Ldif_FieldRec;
  91. struct _Ldif_FieldRec_ {
  92. gchar *tagName;
  93. gchar *userName;
  94. gboolean reserved;
  95. gboolean selected;
  96. };
  97. /* Function prototypes */
  98. LdifFile *ldif_create ( void );
  99. void ldif_set_file ( LdifFile* ldifFile, const gchar *value );
  100. void ldif_set_accessed ( LdifFile* ldifFile, const gboolean value );
  101. void ldif_field_set_name ( Ldif_FieldRec *rec, const gchar *value );
  102. void ldif_field_set_selected ( Ldif_FieldRec *rec, const gboolean value );
  103. void ldif_field_toggle ( Ldif_FieldRec *rec );
  104. void ldif_free ( LdifFile *ldifFile );
  105. void ldif_print_file ( LdifFile *ldifFile, FILE *stream );
  106. gint ldif_import_data ( LdifFile *ldifFile, AddressCache *cache );
  107. gint ldif_read_tags ( LdifFile *ldifFile );
  108. GList *ldif_get_fieldlist ( LdifFile *ldifFile );
  109. gboolean ldif_write_value ( FILE *stream, const gchar *name,
  110. const gchar *value );
  111. void ldif_write_eor ( FILE *stream );
  112. #endif /* __LDIF_H__ */