9d19a1db0a7340a76f8ba6edb325f4876e64ed27
[kamenim/samba.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 static int failures;
40
41 static void usage(void)
42 {
43         printf("Usage: ldbadd <options> <ldif...>\n");
44         printf("Options:\n");
45         printf("  -H ldb_url       choose the database (or $LDB_URL)\n");
46         printf("  -o options       pass options like modules to activate\n");
47         printf("              e.g: -o modules:timestamps\n");
48         printf("\n");
49         printf("Adds records to a ldb, reading ldif the specified list of files\n\n");
50         exit(1);
51 }
52
53
54 /*
55   add records from an opened file
56 */
57 static int process_file(struct ldb_context *ldb, FILE *f)
58 {
59         struct ldb_ldif *ldif;
60         int ret, count=0;
61
62         while ((ldif = ldb_ldif_read_file(ldb, f))) {
63                 if (ldif->changetype != LDB_CHANGETYPE_ADD &&
64                     ldif->changetype != LDB_CHANGETYPE_NONE) {
65                         fprintf(stderr, "Only CHANGETYPE_ADD records allowed\n");
66                         break;
67                 }
68
69                 ret = ldb_add(ldb, &ldif->msg);
70                 if (ret != 0) {
71                         fprintf(stderr, "ERR: \"%s\" on DN %s\n", 
72                                 ldb_errstring(ldb), ldif->msg.dn);
73                         failures++;
74                 } else {
75                         count++;
76                 }
77                 ldb_ldif_read_free(ldb, ldif);
78         }
79
80         return count;
81 }
82
83
84
85  int main(int argc, char * const argv[])
86 {
87         struct ldb_context *ldb;
88         int count=0;
89         const char *ldb_url;
90         const char **options = NULL;
91         int ldbopts;
92         int opt, i;
93
94         ldb_url = getenv("LDB_URL");
95
96         ldbopts = 0;
97         while ((opt = getopt(argc, argv, "hH:o:")) != EOF) {
98                 switch (opt) {
99                 case 'H':
100                         ldb_url = optarg;
101                         break;
102
103                 case 'o':
104                         options = ldb_options_parse(options, &ldbopts, optarg);
105                         break;
106
107                 case 'h':
108                 default:
109                         usage();
110                         break;
111                 }
112         }
113
114         if (!ldb_url) {
115                 fprintf(stderr, "You must specify a ldb URL\n\n");
116                 usage();
117         }
118
119         argc -= optind;
120         argv += optind;
121
122         ldb = ldb_connect(ldb_url, 0, options);
123
124         if (!ldb) {
125                 perror("ldb_connect");
126                 exit(1);
127         }
128
129         ldb_set_debug_stderr(ldb);
130
131         if (argc == 0) {
132                 usage();
133         }
134
135         for (i=0;i<argc;i++) {
136                 FILE *f;
137                 if (strcmp(argv[i],"-") == 0) {
138                         f = stdin;
139                 } else {
140                         f = fopen(argv[i], "r");
141                 }
142                 if (!f) {
143                         perror(argv[i]);
144                         exit(1);
145                 }
146                 count += process_file(ldb, f);
147                 if (f != stdin) {
148                         fclose(f);
149                 }
150         }
151
152         ldb_close(ldb);
153
154         printf("Added %d records with %d failures\n", count, failures);
155         
156         return 0;
157 }