r6118: Make it so that we can do --with-zlib=no in configure and also a couple
[abartlet/samba.git/.git] / source4 / lib / ldb / tools / ldbadd.c
1 /* 
2    ldb database library
3
4    Copyright (C) Andrew Tridgell  2004
5
6      ** NOTE! The following LGPL license applies to the ldb
7      ** library. This does NOT imply that all of Samba is released
8      ** under the LGPL
9    
10    This library is free software; you can redistribute it and/or
11    modify it under the terms of the GNU Lesser General Public
12    License as published by the Free Software Foundation; either
13    version 2 of the License, or (at your option) any later version.
14
15    This library is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    Lesser General Public License for more details.
19
20    You should have received a copy of the GNU Lesser General Public
21    License along with this library; if not, write to the Free Software
22    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23 */
24
25 /*
26  *  Name: ldb
27  *
28  *  Component: ldbadd
29  *
30  *  Description: utility to add records - modelled on ldapadd
31  *
32  *  Author: Andrew Tridgell
33  */
34
35 #include "includes.h"
36 #include "ldb/include/ldb.h"
37 #include "ldb/include/ldb_private.h"
38
39 #ifdef _SAMBA_BUILD_
40 #include "system/filesys.h"
41 #endif
42
43 static int failures;
44
45 static void usage(void)
46 {
47         printf("Usage: ldbadd <options> <ldif...>\n");
48         printf("Options:\n");
49         printf("  -H ldb_url       choose the database (or $LDB_URL)\n");
50         printf("  -o options       pass options like modules to activate\n");
51         printf("              e.g: -o modules:timestamps\n");
52         printf("\n");
53         printf("Adds records to a ldb, reading ldif the specified list of files\n\n");
54         exit(1);
55 }
56
57
58 /*
59   add records from an opened file
60 */
61 static int process_file(struct ldb_context *ldb, FILE *f)
62 {
63         struct ldb_ldif *ldif;
64         int ret, count=0;
65
66         while ((ldif = ldb_ldif_read_file(ldb, f))) {
67                 if (ldif->changetype != LDB_CHANGETYPE_ADD &&
68                     ldif->changetype != LDB_CHANGETYPE_NONE) {
69                         fprintf(stderr, "Only CHANGETYPE_ADD records allowed\n");
70                         break;
71                 }
72
73                 ret = ldb_add(ldb, ldif->msg);
74                 if (ret != 0) {
75                         fprintf(stderr, "ERR: \"%s\" on DN %s\n", 
76                                 ldb_errstring(ldb), ldif->msg->dn);
77                         failures++;
78                 } else {
79                         count++;
80                 }
81                 ldb_ldif_read_free(ldb, ldif);
82         }
83
84         return count;
85 }
86
87
88
89  int main(int argc, char * const argv[])
90 {
91         struct ldb_context *ldb;
92         int count=0;
93         const char *ldb_url;
94         const char **options = NULL;
95         int ldbopts;
96         int opt, i;
97
98         ldb_url = getenv("LDB_URL");
99
100         ldbopts = 0;
101         while ((opt = getopt(argc, argv, "hH:o:")) != EOF) {
102                 switch (opt) {
103                 case 'H':
104                         ldb_url = optarg;
105                         break;
106
107                 case 'o':
108                         options = ldb_options_parse(options, &ldbopts, optarg);
109                         break;
110
111                 case 'h':
112                 default:
113                         usage();
114                         break;
115                 }
116         }
117
118         if (!ldb_url) {
119                 fprintf(stderr, "You must specify an ldb URL\n\n");
120                 usage();
121         }
122
123         argc -= optind;
124         argv += optind;
125
126         ldb = ldb_connect(ldb_url, 0, options);
127
128         if (!ldb) {
129                 perror("ldb_connect");
130                 exit(1);
131         }
132
133         ldb_set_debug_stderr(ldb);
134
135         if (argc == 0) {
136                 usage();
137         }
138
139         for (i=0;i<argc;i++) {
140                 FILE *f;
141                 if (strcmp(argv[i],"-") == 0) {
142                         f = stdin;
143                 } else {
144                         f = fopen(argv[i], "r");
145                 }
146                 if (!f) {
147                         perror(argv[i]);
148                         exit(1);
149                 }
150                 count += process_file(ldb, f);
151                 if (f != stdin) {
152                         fclose(f);
153                 }
154         }
155
156         talloc_free(ldb);
157
158         printf("Added %d records with %d failures\n", count, failures);
159         
160         return 0;
161 }