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