r5298: - got rid of pstring.h from includes.h. This at least makes it a bit
[kai/samba.git] / source4 / lib / ldb / tools / ldbmodify.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: ldbmodify
29  *
30  *  Description: utility to modify records - modelled on ldapmodify
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: ldbmodify <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("Modifies a ldb based upon ldif change records\n\n");
54         exit(1);
55 }
56
57 /*
58   process modifies for one file
59 */
60 static int process_file(struct ldb_context *ldb, FILE *f)
61 {
62         struct ldb_ldif *ldif;
63         int ret = -1, count = 0;
64         
65         while ((ldif = ldb_ldif_read_file(ldb, f))) {
66                 switch (ldif->changetype) {
67                 case LDB_CHANGETYPE_NONE:
68                 case LDB_CHANGETYPE_ADD:
69                         ret = ldb_add(ldb, ldif->msg);
70                         break;
71                 case LDB_CHANGETYPE_DELETE:
72                         ret = ldb_delete(ldb, ldif->msg->dn);
73                         break;
74                 case LDB_CHANGETYPE_MODIFY:
75                         ret = ldb_modify(ldb, ldif->msg);
76                         break;
77                 }
78                 if (ret != 0) {
79                         fprintf(stderr, "ERR: \"%s\" on DN %s\n", 
80                                 ldb_errstring(ldb), ldif->msg->dn);
81                         failures++;
82                 } else {
83                         count++;
84                 }
85                 ldb_ldif_read_free(ldb, ldif);
86         }
87
88         return count;
89 }
90
91  int main(int argc, char * const argv[])
92 {
93         struct ldb_context *ldb;
94         int count=0;
95         const char *ldb_url;
96         const char **options = NULL;
97         int ldbopts;
98         int opt, i;
99
100         ldb_url = getenv("LDB_URL");
101
102         ldbopts = 0;
103         while ((opt = getopt(argc, argv, "hH:o:")) != EOF) {
104                 switch (opt) {
105                 case 'H':
106                         ldb_url = optarg;
107                         break;
108
109                 case 'o':
110                         options = ldb_options_parse(options, &ldbopts, optarg);
111                         break;
112
113                 case 'h':
114                 default:
115                         usage();
116                         break;
117                 }
118         }
119
120         if (!ldb_url) {
121                 fprintf(stderr, "You must specify a ldb URL\n\n");
122                 usage();
123         }
124
125         argc -= optind;
126         argv += optind;
127
128         ldb = ldb_connect(ldb_url, 0, options);
129
130         if (!ldb) {
131                 perror("ldb_connect");
132                 exit(1);
133         }
134
135         ldb_set_debug_stderr(ldb);
136
137         if (argc == 0) {
138                 usage();
139                 exit(1);
140         }
141
142         for (i=0;i<argc;i++) {
143                 FILE *f;
144                 if (strcmp(argv[i],"-") == 0) {
145                         f = stdin;
146                 } else {
147                         f = fopen(argv[i], "r");
148                 }
149                 if (!f) {
150                         perror(argv[i]);
151                         exit(1);
152                 }
153                 count += process_file(ldb, f);
154                 if (f != stdin) {
155                         fclose(f);
156                 }
157         }
158
159         ldb_close(ldb);
160
161         printf("Modified %d records with %d failures\n", count, failures);
162
163         if (failures != 0) {
164                 return -1;
165         }
166         
167         return 0;
168 }