Merge branch 'cde-fixups-1' of ssh://git.code.sf.net/p/cdesktopenv/code into cde...
[oweals/cde.git] / cde / programs / dtprintinfo / objects / PrintObj / PrintSubSys.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: PrintSubSys.C /main/4 1996/01/17 18:02:47 lehors $ */
24 /*                                                                      *
25  * (c) Copyright 1993, 1994 Hewlett-Packard Company                     *
26  * (c) Copyright 1993, 1994 International Business Machines Corp.       *
27  * (c) Copyright 1993, 1994 Sun Microsystems, Inc.                      *
28  * (c) Copyright 1993, 1994 Novell, Inc.                                *
29  */
30
31 #include "PrintSubSys.h"
32 #include "Queue.h"
33
34 #include <string.h>
35
36 #ifdef aix
37 const char *LIST_QUEUES = "lsallq | grep -v '^bsh$' | sort";
38 #else
39 #ifdef hpux
40 const char *LIST_QUEUES = "LANG=C lpstat -v | "
41                             "awk '"
42                             " $2 == \"for\" "
43                             "   { "
44                             "      x = match($3, /:/); "
45                             "      print substr($3, 1, x-1)"
46                             "   }' | sort";
47 #else
48 #ifdef __osf__
49   const char *LIST_QUEUES = "LANG=C lpstat -v | "
50                             "nawk '"
51                             " $2 == \"for\"    "
52                             "   { print $10 }' "
53                             "   | sort";
54 #else
55 #ifdef __uxp__
56 const char *LIST_QUEUES = "LANG=C lpstat -v | "
57                             "nawk '"
58                             " $4 == \"for\" "
59                             "   { "
60                             "      x = match($5, /:/); "
61                             "      print substr($5, 1, x-1)"
62                             "   }' | sort";
63 #else
64 const char *LIST_QUEUES = "LANG=C lpstat -v | "
65                             "nawk '"
66                             " $2 == \"for\" "
67                             "   { "
68                             "      x = match($3, /:/); "
69                             "      print substr($3, 1, x-1)"
70                             "   }' | sort";
71 #endif
72 #endif
73 #endif
74 #endif
75
76 // Object Class Name
77 const char *PRINTSUBSYSTEM = "PrintSubSystem";
78
79 PrintSubSystem::PrintSubSystem(BaseObj *parent)
80         : BaseObj(parent, "PrintSubSystem")
81 {
82    _displayName = strdup(MESSAGE(PrinterMenuL));
83    _details = strdup("Status   Number   Owner      Date       Time       Size");
84 }
85
86 PrintSubSystem::~PrintSubSystem()
87 {
88    // Empty
89 }
90
91 void PrintSubSystem::InitChildren()
92 {
93    char *std_out;
94    if (RunCommand(LIST_QUEUES, &std_out))
95     {
96       Error("InitChildren method could not list queues.");
97     }
98    else
99     {
100       char *queue = strtok(std_out, " \n");
101       while (queue && *queue)
102        {
103          new Queue(this, queue);
104          queue = strtok(NULL, " \n");
105        }
106     }
107    delete std_out;
108 }