a6d63e78d565f32c47df9510d7d559af49cc5d50
[samba.git] / source4 / lib / ldb / ldb_tdb / ldbsearch.c
1  /* 
2    Unix SMB/CIFS implementation.
3
4    simple ldb search tool
5
6    Copyright (C) Andrew Tridgell 2004
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24
25  int main(int argc, const char *argv[])
26 {
27         static struct ldb_context *ldb;
28         struct ldb_message **msgs;
29         int ret, i;
30         const char *expression;
31         const char **attrs = NULL;
32
33         if (argc < 2) {
34                 printf("Usage: ldbsearch <expression> [attrs...]\n");
35                 exit(1);
36         }
37
38         if (argc > 2) {
39                 attrs = argv+2;
40         }
41
42         expression = argv[1];
43
44         ldb = ltdb_connect("tdb://test.ldb", 0, NULL);
45
46         if (!ldb) {
47                 perror("ldb_connect");
48                 exit(1);
49         }
50
51         ret = ldb->ops->search(ldb, expression, attrs, &msgs);
52
53         if (ret == -1) {
54                 printf("search failed\n");
55                 exit(1);
56         }
57
58         printf("# returned %d records\n", ret);
59
60         for (i=0;i<ret;i++) {
61                 printf("# record %d\n", i+1);
62                 ldif_write(stdout, msgs[i]);
63         }
64
65         ret = ldb->ops->search_free(ldb, msgs);
66         if (ret == -1) {
67                 fprintf(stderr, "search_free failed\n");
68                 exit(1);
69         }
70
71         ldb->ops->close(ldb);
72         return 0;
73 }