1d7a65938864b3d84fe45b13f4350f29f44a56a6
[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 const char *LIST_QUEUES = "LANG=C lpstat -v | "
49                             "nawk '"
50                             " $2 == \"for\" "
51                             "   { "
52                             "      x = match($3, /:/); "
53                             "      print substr($3, 1, x-1)"
54                             "   }' | sort";
55 #endif
56 #endif
57
58 // Object Class Name
59 const char *PRINTSUBSYSTEM = "PrintSubSystem";
60
61 PrintSubSystem::PrintSubSystem(BaseObj *parent)
62         : BaseObj(parent, "PrintSubSystem")
63 {
64    _displayName = strdup(MESSAGE(PrinterMenuL));
65    _details = strdup("Status   Number   Owner      Date       Time       Size");
66 }
67
68 PrintSubSystem::~PrintSubSystem()
69 {
70    // Empty
71 }
72
73 void PrintSubSystem::InitChildren()
74 {
75    char *std_out;
76    if (RunCommand(LIST_QUEUES, &std_out))
77     {
78       Error("InitChildren method could not list queues.");
79     }
80    else
81     {
82       char *queue = strtok(std_out, " \n");
83       while (queue && *queue)
84        {
85          new Queue(this, queue);
86          queue = strtok(NULL, " \n");
87        }
88     }
89    delete std_out;
90 }