OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/at_exit.h" | 5 #include "base/at_exit.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "base/singleton.h" | 8 #include "base/singleton.h" |
9 #include "base/stats_counters.h" | 9 #include "base/stats_counters.h" |
10 #include "net/base/completion_callback.h" | 10 #include "net/base/completion_callback.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 #endif // defined(OS_WIN) | 32 #endif // defined(OS_WIN) |
33 | 33 |
34 CommandLine::Init(0, NULL); | 34 CommandLine::Init(0, NULL); |
35 const CommandLine& parsed_command_line = *CommandLine::ForCurrentProcess(); | 35 const CommandLine& parsed_command_line = *CommandLine::ForCurrentProcess(); |
36 | 36 |
37 // Do work here. | 37 // Do work here. |
38 MessageLoop loop; | 38 MessageLoop loop; |
39 HttpServer server("", 80); // TODO(mbelshe): make port configurable | 39 HttpServer server("", 80); // TODO(mbelshe): make port configurable |
40 MessageLoop::current()->Run(); | 40 MessageLoop::current()->Run(); |
41 | 41 |
42 if (parsed_command_line.HasSwitch(L"stats")) { | 42 if (parsed_command_line.HasSwitch("stats")) { |
43 // Dump the stats table. | 43 // Dump the stats table. |
44 printf("<stats>\n"); | 44 printf("<stats>\n"); |
45 int counter_max = table.GetMaxCounters(); | 45 int counter_max = table.GetMaxCounters(); |
46 for (int index=0; index < counter_max; index++) { | 46 for (int index=0; index < counter_max; index++) { |
47 std::string name(table.GetRowName(index)); | 47 std::string name(table.GetRowName(index)); |
48 if (name.length() > 0) { | 48 if (name.length() > 0) { |
49 int value = table.GetRowValue(index); | 49 int value = table.GetRowValue(index); |
50 printf("%s:\t%d\n", name.c_str(), value); | 50 printf("%s:\t%d\n", name.c_str(), value); |
51 } | 51 } |
52 } | 52 } |
53 printf("</stats>\n"); | 53 printf("</stats>\n"); |
54 } | 54 } |
55 | 55 |
56 } | 56 } |
OLD | NEW |