You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.3 KiB
63 lines
2.3 KiB
13 years ago
|
// Threaddump_p.java
|
||
17 years ago
|
// -----------------------
|
||
|
// part of YACY
|
||
17 years ago
|
// (C) by Michael Peter Christen; mc@yacy.net
|
||
17 years ago
|
// first published on http://www.anomic.de
|
||
|
// Frankfurt, Germany, 2004
|
||
|
//
|
||
|
// This File is contributed by Alexander Fieger
|
||
|
//
|
||
15 years ago
|
// $LastChangedDate$
|
||
|
// $LastChangedRevision$
|
||
|
// $LastChangedBy$
|
||
17 years ago
|
//
|
||
|
// This program is free software; you can redistribute it and/or modify
|
||
|
// it under the terms of the GNU General Public License as published by
|
||
|
// the Free Software Foundation; either version 2 of the License, or
|
||
|
// (at your option) any later version.
|
||
|
//
|
||
|
// This program is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
// GNU General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU General Public License
|
||
|
// along with this program; if not, write to the Free Software
|
||
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
|
||
2 years ago
|
package net.yacy.htroot;
|
||
|
|
||
14 years ago
|
import net.yacy.cora.protocol.RequestHeader;
|
||
14 years ago
|
import net.yacy.kelondro.logging.ThreadDump;
|
||
13 years ago
|
import net.yacy.search.Switchboard;
|
||
12 years ago
|
import net.yacy.server.serverObjects;
|
||
|
import net.yacy.server.serverSwitch;
|
||
17 years ago
|
|
||
|
public class Threaddump_p {
|
||
|
|
||
13 years ago
|
public static serverObjects respond(@SuppressWarnings("unused") final RequestHeader header, final serverObjects post, final serverSwitch env) {
|
||
13 years ago
|
|
||
2 years ago
|
final serverObjects prop = new serverObjects();
|
||
|
final Switchboard sb = (Switchboard) env;
|
||
13 years ago
|
|
||
4 years ago
|
final boolean plain = post != null && post.getBoolean("plain");
|
||
|
final int sleep = (post == null) ? 0 : post.getInt("sleep", 0); // a sleep before creation of a thread dump can be used for profiling
|
||
|
if (sleep > 0) try {Thread.sleep(sleep);} catch (final InterruptedException e) {}
|
||
|
prop.put("dump", "1");
|
||
13 years ago
|
|
||
4 years ago
|
int multipleCount = 100;
|
||
2 years ago
|
final boolean multiple = post != null && post.containsKey("multipleThreaddump");
|
||
4 years ago
|
if (multiple) {
|
||
|
multipleCount = post.getInt("count", multipleCount);
|
||
16 years ago
|
}
|
||
13 years ago
|
|
||
2 years ago
|
final String threaddump = ThreadDump.threaddump(sb, plain, sleep, multiple, multipleCount);
|
||
4 years ago
|
prop.put("plain_count", multipleCount);
|
||
|
prop.put("plain_content", threaddump);
|
||
|
prop.put("plain", (plain) ? 1 : 0);
|
||
13 years ago
|
|
||
4 years ago
|
return prop;
|
||
13 years ago
|
}
|
||
|
|
||
17 years ago
|
}
|