OpenIndiana and Solaris port
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / oliasdb / c_api_stylesheet_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_stylesheet_test.C /main/5 1996/08/21 15:53:25 drk $ */
24
25 #include "oliasdb/DtMmdb.h"
26 #include <stdio.h>
27
28 extern "C"
29 void showStyleSheet(DtMmdbInfoRequest* req)
30 {
31    const char* str ;
32    unsigned int l;
33
34    if ( req == 0 ) return ;
35
36    str = DtMmdbStylesheetGetName(req); 
37    if ( str )
38      fprintf(stderr, "  StylesheetInfo: name =%s\n", str);
39
40    str = DtMmdbStylesheetGetata(req, &l);
41    if ( str ) {
42      fprintf(stderr, "  StylesheetInfo: data =%s\n", str);
43      fprintf(stderr, "  StylesheetInfo: length =%d\n", l);
44    }
45 }
46
47 extern "C"
48 int test_ss1(int argc, char** argv)
49 {
50    int j = 0;
51    int i = 0;
52    DtMmdbInfoRequest* req ;
53
54    switch ( argc ) {
55      case 5:
56       {
57        i = DtMmdbOpenInfoLib(argv[2], argv[3], DtMmdbFalse);
58        j = DtMmdbGetBookCaseByName(i, argv[3]);
59
60        req = newDtMmdbInfoRequestWithLoc(j, argv[4]);
61        showStyleSheet(req);
62
63        DtMmdbFreeInfoRequest(req);
64        DtMmdbCloseInfoLib(i);
65
66        break;
67       }
68       default:
69        fprintf(stderr, "invalid arguments\n");
70    }
71
72    fprintf(stderr, "infolib desc=%d\n", i);
73    return 0;
74 }
75
76
77 extern "C"
78 int test_ss2(int argc, char** argv)
79 {
80    int j = 0;
81    int i = 0;
82    DtMmdbInfoRequest* req ;
83
84    switch ( argc ) {
85      case 5:
86       {
87        i = DtMmdbOpenInfoLib(argv[2], argv[3], DtMmdbFalse);
88        j = DtMmdbGetBookCaseByName(i, argv[3]);
89
90        req = newDtMmdbInfoRequestWithPrimaryOid(j, argv[4]);
91        showStyleSheet(req);
92
93        DtMmdbFreeInfoRequest(req);
94        DtMmdbCloseInfoLib(i);
95
96        break;
97       }
98       default:
99        fprintf(stderr, "invalid arguments\n");
100    }
101
102    fprintf(stderr, "infolib desc=%d\n", i);
103    return 0;
104 }
105
106
107