4 Copyright (C) Andrew Tridgell 2004
6 ** NOTE! The following LGPL license applies to the ldb
7 ** library. This does NOT imply that all of Samba is released
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.
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.
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
28 * Component: ldbmodify
30 * Description: utility to modify records - modelled on ldapmodify
32 * Author: Andrew Tridgell
36 #include "ldb/include/includes.h"
37 #include "ldb/tools/cmdline.h"
41 static void usage(void)
43 printf("Usage: ldbmodify <options> <ldif...>\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");
49 printf("Modifies a ldb based upon ldif change records\n\n");
54 process modifies for one file
56 static int process_file(struct ldb_context
*ldb
, FILE *f
, int *count
)
58 struct ldb_ldif
*ldif
;
59 int ret
= LDB_SUCCESS
;
61 while ((ldif
= ldb_ldif_read_file(ldb
, f
))) {
62 switch (ldif
->changetype
) {
63 case LDB_CHANGETYPE_NONE
:
64 case LDB_CHANGETYPE_ADD
:
65 ret
= ldb_add(ldb
, ldif
->msg
);
67 case LDB_CHANGETYPE_DELETE
:
68 ret
= ldb_delete(ldb
, ldif
->msg
->dn
);
70 case LDB_CHANGETYPE_MODIFY
:
71 ret
= ldb_modify(ldb
, ldif
->msg
);
74 if (ret
!= LDB_SUCCESS
) {
75 fprintf(stderr
, "ERR: \"%s\" on DN %s\n",
76 ldb_errstring(ldb
), ldb_dn_linearize(ldb
, ldif
->msg
->dn
));
81 ldb_ldif_read_free(ldb
, ldif
);
87 int main(int argc
, const char **argv
)
89 struct ldb_context
*ldb
;
91 int i
, ret
=LDB_SUCCESS
;
92 struct ldb_cmdline
*options
;
98 options
= ldb_cmdline_process(ldb
, argc
, argv
, usage
);
100 if (options
->argc
== 0) {
101 ret
= process_file(ldb
, stdin
, &count
);
103 for (i
=0;i
<options
->argc
;i
++) {
104 const char *fname
= options
->argv
[i
];
106 f
= fopen(fname
, "r");
111 ret
= process_file(ldb
, f
, &count
);
117 printf("Modified %d records with %d failures\n", count
, failures
);