Convert uses of XKeycodeToKeysym (deprecated) to XkbKeycodeToKeysym
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / UAS / DtSR / TextTest.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 libraries 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: TextTest.cc /main/3 1996/06/11 17:41:57 cde-hal $
24 /*      Copyright (c) 1995 FUJITSU LIMITED      */
25 /*      All Rights Reserved                     */
26
27 #include <locale.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31
32 #include <iostream>
33 #include <sstream>
34 using namespace std;
35
36 #include "TextParser.hh"
37
38 main(int argc, char** argv)
39 {
40     char* patterns = NULL;
41
42     setlocale(LC_CTYPE, "");
43
44     if (! (argc > 1)) {
45         fprintf(stderr, "Usage: %s pattern1 pattern2 ...\n", argv[0]);
46         return 1;
47     }
48
49     int size = 256;
50     patterns = (char*) malloc(size);
51     *patterns = '\0';
52     int npat = argc - 1, i;
53     for (i = 1; i <= npat; i++) {
54         if (strlen(patterns) + strlen(argv[i]) + 2 > size) { // 2 = '\n'+'\0'
55             size += 256;
56             patterns = (char*) realloc(patterns, size);
57         }
58         snprintf(patterns, size, "%s%s\n", patterns, argv[i]);
59     }
60
61     ostringstream text;
62
63     char ch;
64     while (cin.get(ch)) text << ch;
65
66     string textstr = text.str();
67     char* buf = (char *)textstr.c_str();
68
69     char* match = StringParser::brute_force(buf, npat, patterns);
70
71     if (match) {
72         cout << match;
73         delete[] match;
74     }
75     else
76         fprintf(stderr, "match not found for \"%s\"\n", patterns);
77         
78 }