Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / oliasdb / c_api_toc_test.C
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: c_api_toc_test.C /main/5 1996/08/21 15:53:29 drk $ */
24
25 #include "oliasdb/DtMmdb.h"
26 #include <stdio.h>
27
28 extern "C"
29 void showTOC(DtMmdbInfoRequest* req)
30 {
31    DtMmdbHandle* id = 0;
32    unsigned int ct = 0;
33    int i = 0;
34    DtMmdbHandle** ids = 0;
35
36    if ( req == 0 ) return ;
37
38    id = DtMmdbTocGetParentId(req);
39    if (id)
40       fprintf(stderr, "        TOC: parentId=%s\n", DtMmdbHandleToString(id));
41    DtMmdbFreeHandle(id);
42
43
44    ids = DtMmdbTocGetChildIds(req, &ct);
45    if ( ids ) {
46      fprintf(stderr, "ct=%d\n", ct);
47      for ( i=0; i<ct; i++ )
48         fprintf(stderr, "        TOC: childid[%d]=%s\n", i, DtMmdbHandleToString(ids[i]
49 ));
50    }
51    DtMmdbFreeHandleList(ids);
52
53    i = DtMmdbTocGetNumOfChildren(req);
54    fprintf(stderr, "        TOC: NumOfChildren=%d\n", i);
55 }
56
57 extern "C"
58 int test4(int argc, char** argv)
59 {
60    int j = 0;
61    int i = 0;
62    const char* str;
63    DtMmdbInfoRequest* req = 0;
64
65    switch ( argc ) {
66      case 5:
67       {
68        i = DtMmdbOpenInfoLib(argv[2], argv[3], DtMmdbFalse);
69        j = DtMmdbGetBookCaseByName(i, argv[3]);
70
71        req = newDtMmdbInfoRequestWithPrimaryOid(j, argv[4]);
72        showTOC(req);
73
74        DtMmdbFreeInfoRequest(req);
75        DtMmdbCloseInfoLib(i);
76
77        break;
78       }
79       default:
80        fprintf(stderr, "invalid arguments\n");
81    }
82
83    fprintf(stderr, "infolib desc=%d\n", i);
84    return 0;
85 }
86
87