ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/java/DecodeCPU_TXT.java
(Generate patch)

Comparing projects/cms/source/host/java/DecodeCPU_TXT.java (file contents):
Revision 1.2 by tdb, Thu Dec 7 23:19:49 2000 UTC vs.
Revision 1.12 by tdb, Sat May 18 18:15:57 2002 UTC

# Line 1 | Line 1
1 + /*
2 + * i-scream central monitoring system
3 + * Copyright (C) 2000-2002 i-scream
4 + *
5 + * This program is free software; you can redistribute it and/or
6 + * modify it under the terms of the GNU General Public License
7 + * as published by the Free Software Foundation; either version 2
8 + * of the License, or (at your option) any later version.
9 + *
10 + * This program is distributed in the hope that it will be useful,
11 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 + * GNU General Public License for more details.
14 + *
15 + * You should have received a copy of the GNU General Public License
16 + * along with this program; if not, write to the Free Software
17 + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 + */
19 +
20   import java.io.*;
21   import java.util.*;
22  
23   class DecodeCPU_TXT {
24  
25 <        XMLFormatter packet;
25 >    XMLFormatter packet;
26  
27 <        public DecodeCPU_TXT(){
27 >    public DecodeCPU_TXT(){
28 >        HashMap data;
29 >        try {
30 >            String[] cmd = {"statgrab.pl"};
31 >            Process proc = Runtime.getRuntime().exec(cmd);
32 >            BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream()));
33 >            
34 >            data = new HashMap();
35 >            
36 >            // Messy, but it'll keep going until no more data :/
37 >            try {
38 >                String line = new String();
39 >                while(true) {
40 >                    line = in.readLine();
41 >                    int split = line.indexOf(' ');
42 >                    data.put(line.substring(0, split), line.substring(split+1));
43 >                }
44 >            }
45 >            catch (Exception e) {}
46 >            
47 >            String load1 = (String) data.get("packet.load.load1");
48 >            String load5 = (String) data.get("packet.load.load5");
49 >            String load15 = (String) data.get("packet.load.load15");
50 >            
51 >            String totalProcesses = (String) data.get("packet.processes.total");
52 >            String sleeping = (String) data.get("packet.processes.sleeping");
53 >            String zombie = (String) data.get("packet.processes.zombie");
54 >            String stopped = (String) data.get("packet.processes.stopped");
55 >            String onCPU = (String) data.get("packet.processes.cpu");
56 >            
57 >            String idle = (String) data.get("packet.cpu.idle");
58 >            String user = (String) data.get("packet.cpu.user");
59 >            String kernel = (String) data.get("packet.cpu.kernel");
60 >            String iowait = (String) data.get("packet.cpu.iowait");
61 >            String swap = (String) data.get("packet.cpu.swap");
62 >            
63 >            String real = (String) data.get("packet.memory.real");
64 >            String free = (String) data.get("packet.memory.free");
65 >            String swapTotal = (String) data.get("packet.memory.swap_total");
66 >            String swapFree = (String) data.get("packet.memory.swap_free");
67 >            
68 >            String osname = (String) data.get("packet.os.name");
69 >            String osrelease = (String) data.get("packet.os.release");
70 >            String osplatform = (String) data.get("packet.os.platform");
71 >            String ossysname = (String) data.get("packet.os.sysname");
72 >            String osversion = (String) data.get("packet.os.version");
73 >            
74 >            String usercount = (String) data.get("packet.users.count");
75 >            String userlist = (String) data.get("packet.users.list");
76 >            
77 >            packet = new XMLFormatter();
78 >            packet.addNest("os");
79 >                packet.addElement("name",osname);
80 >                packet.addElement("release",osrelease);
81 >                packet.addElement("platform",osplatform);
82 >                packet.addElement("sysname",ossysname);
83 >                packet.addElement("version",osversion);
84 >            packet.closeNest();
85 >            packet.addNest("load");
86 >                packet.addElement("load1",load1);
87 >                packet.addElement("load5",load5);
88 >                packet.addElement("load15",load15);
89 >            packet.closeNest();
90 >            packet.addNest("processes");
91 >                packet.addElement("total",totalProcesses);
92 >                packet.addElement("sleeping",sleeping);
93 >                packet.addElement("zombie",zombie);
94 >                packet.addElement("stopped",stopped);
95 >                packet.addElement("cpu",onCPU);
96 >            packet.closeNest();
97 >            packet.addNest("cpu");
98 >                packet.addElement("idle",idle);
99 >                packet.addElement("user",user);
100 >                packet.addElement("kernel",kernel);
101 >                packet.addElement("iowait",iowait);
102 >                packet.addElement("swap",swap);
103 >            packet.closeNest();
104 >            packet.addNest("memory");
105 >                packet.addElement("total",real);
106 >                packet.addElement("free",free);
107 >            packet.closeNest();
108 >            packet.addNest("swap");
109 >                packet.addElement("total",swapTotal);
110 >                packet.addElement("free",swapFree);
111 >            packet.closeNest();
112 >            packet.addNest("users");
113 >                packet.addElement("count",usercount);
114 >                packet.addElement("list",userlist);
115 >            packet.closeNest();
116 >            packet.addNest("disk");
117 >                int i=0;
118 >                while(true) {
119 >                    String check = (String) data.get("packet.disk.p"+i+".attributes.name");
120 >                    if(check == null) {
121 >                        break;
122 >                    }
123 >                    packet.addNest("p"+i);
124 >                        packet.addElement("name",check);
125 >                        packet.addElement("kbytes",(String) data.get("packet.disk.p"+i+".attributes.kbytes"));
126 >                        packet.addElement("used",(String) data.get("packet.disk.p"+i+".attributes.used"));
127 >                        packet.addElement("avail",(String) data.get("packet.disk.p"+i+".attributes.avail"));
128 >                        packet.addElement("mount",(String) data.get("packet.disk.p"+i+".attributes.mount"));
129 >                    packet.closeNest();
130 >                    i++;
131 >                }
132 >            packet.closeNest();
133 >            in.close();
134 >            
135 >        }
136 >        catch(Exception e) {
137 >            System.out.println("ERROR IN DECODE: "+e);
138 >            e.printStackTrace();
139 >        }
140  
141 <                // open the file and read in all the relevant details
11 <                try {
12 <            String[] cmd = {"/usr/local/sbin/top","-s1","-d2","0"};
13 <                Process proc = Runtime.getRuntime().exec(cmd);
14 <                // this process will take atleast 2 seconds to complete
15 <                BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream()));
141 >    }
142  
143 <            String line = new String();
144 <
145 <                        // get rid of the first output (it doesn't contain cpu info)
146 <                        for ( int i=0; i < 7; i++ ){
147 <                                line = in.readLine();
22 <                                //System.out.println("Throwing away line: "+line);
23 <                        }
24 <                        // first line has the format: load averages:  0.30,  0.27,  0.29    16:58:10
25 <                        // tokenize it using spaces as delimiters?
26 <                        line = in.readLine();
27 <                            System.out.println("line1: "+line);
28 <                        StringTokenizer tok = new StringTokenizer(line,":",false);
29 <                        tok.nextToken(); // load averages
30 <                        tok.nextToken("  ,"); // :
31 <                        String load1 = tok.nextToken(); // "0.30"
32 <                            System.out.println("load1: "+load1);
33 <                        String load5 = tok.nextToken(); // "0.27"
34 <                            System.out.println("load5: "+load5);
35 <                        String load15 = tok.nextToken(); // "0.29"
36 <                            System.out.println("load15: "+load15);
37 <                        String sTime = tok.nextToken(); // "16:58:10"
38 <                            System.out.println("sTime: "+sTime);
39 <                        
40 <                        // get the next line
41 <                        line = in.readLine(); // 632 processes: 591 sleeping, 10 zombie, 30 stopped, 1 on cpu
42 <                            System.out.println("line2: "+line);
43 <                        tok = new StringTokenizer(line," ",false);
44 <                        String totalProcesses = tok.nextToken(); // "632"
45 <                            System.out.println("totalProcesses: "+totalProcesses);
46 <                        tok.nextToken(); // processes
47 <                        String sleeping = tok.nextToken(": ,"); // "591"        
48 <                            System.out.println("sleeping: "+sleeping);
49 <                        tok.nextToken(); // sleeping
50 <                        String zombie = tok.nextToken(); // "10"
51 <                            System.out.println("zombie: "+zombie);
52 <                        tok.nextToken(); // zombie
53 <                        String stopped = tok.nextToken(); // "30"
54 <                            System.out.println("stopped: "+stopped);
55 <                        tok.nextToken(); // stopped
56 <                        String onCPU = tok.nextToken(); // "1"
57 <                            System.out.println("onCPU: "+onCPU);
58 <                        
59 <                        // get the next line
60 <                        line = in.readLine(); // CPU states: 71.1% idle,  1.8% user,  4.8% kernel, 22.2% iowait,  0.0% swap
61 <                            System.out.println("line3: "+line);
62 <                        tok = new StringTokenizer(line,":%,",false);
63 <                        tok.nextToken(); // CPU states
64 <                        String idle = tok.nextToken(); // "71.1"
65 <                            System.out.println("idle: "+idle);
66 <                        tok.nextToken(); // idle
67 <                        String user = tok.nextToken(",%"); // "  1.8"
68 <                            System.out.println("user: "+user);
69 <                        tok.nextToken(); // user
70 <                        String kernel = tok.nextToken(); // "  4.8"
71 <                            System.out.println("kernel: "+kernel);
72 <                        tok.nextToken(); // kernel
73 <                        String iowait = tok.nextToken(); // " 22.2"
74 <                            System.out.println("iowait: "+iowait);
75 <                        tok.nextToken(); // iowait
76 <                        String swap = tok.nextToken(); // "  0.0"
77 <                            System.out.println("swap: "+swap);
78 <                        
79 <                        line = in.readLine(); // Memory: 4096M real, 2380M free, 1237M swap in use, 9774M swap free
80 <                            System.out.println("line4: "+line);
81 <                        tok = new StringTokenizer(line,": ,",false);
82 <                        tok.nextToken(); // Memory:
83 <                        String real = tok.nextToken(); // "4096M"
84 <                            System.out.println("real: "+real);
85 <                        tok.nextToken(); // real
86 <                        String free = tok.nextToken(", "); // "2380M"
87 <                            System.out.println("free: "+free);
88 <                        tok.nextToken(); // free
89 <                        String swapInUse = tok.nextToken(); // "1237M"
90 <                            System.out.println("swapInUse: "+swapInUse);
91 <                        tok.nextToken(); // swap
92 <                        tok.nextToken(); // in
93 <                        tok.nextToken(); // use
94 <                        String swapFree = tok.nextToken(", "); // "9774M"
95 <                            System.out.println("swapFree: "+swapFree);
96 <                        
97 <                        // done now make it into an xml packet ;)
98 <                      
99 <                        packet = new XMLFormatter();
100 <                        packet.addNest("load");
101 <                                packet.addElement("load1",load1);
102 <                                packet.addElement("load5",load5);
103 <                                packet.addElement("load15",load15);
104 <                        packet.closeNest();    
105 <                        packet.addNest("processes");
106 <                                packet.addElement("total",totalProcesses);
107 <                                packet.addElement("sleeping",sleeping);
108 <                                packet.addElement("zombie",zombie);
109 <                                packet.addElement("stopped",stopped);
110 <                        packet.closeNest();
111 <                        packet.addNest("cpu");
112 <                                packet.addElement("idle",idle.trim());
113 <                                packet.addElement("user",user.trim());
114 <                                packet.addElement("kernel",kernel.trim());
115 <                                packet.addElement("iowait",iowait.trim());
116 <                                packet.addElement("swap",swap.trim());
117 <                        packet.closeNest();
118 <                        packet.addNest("memory");
119 <                                packet.addElement("real",real);
120 <                                packet.addElement("free",free);
121 <                                packet.addElement("swapinuse",swapInUse);
122 <                                packet.addElement("swapfree",swapFree);
123 <                        packet.closeNest();
124 <                        
125 <                        in.close();
126 <                }
127 <                catch (Exception e ){
128 <                    // probably couldn't find the file  
129 <                    System.out.println(e);
130 <                }
131 <        
132 <                
133 <        }
134 <
135 <        public String getItems(){
136 <                // return the xml
137 <                return packet.returnXML();
138 <        }
139 <        
143 >    public String getItems(){
144 >        // return the xml
145 >        return packet.returnXML();
146 >    }
147 >    
148  
149 < } // class
149 > } // class

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines