mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 20:42:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			131 lines
		
	
	
	
		
			5.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
	
		
			5.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  * All rights reserved.
 | |
|  *
 | |
|  * Redistribution and use in source and binary forms, with or without
 | |
|  * modification, are permitted provided that the following conditions are met:
 | |
|  *
 | |
|  * 1. Redistributions of source code must retain the above copyright notice, this
 | |
|  *    list of conditions and the following disclaimer.
 | |
|  *
 | |
|  * 2. Redistributions in binary form must reproduce the above copyright notice,
 | |
|  *    this list of conditions and the following disclaimer in the documentation
 | |
|  *    and/or other materials provided with the distribution.
 | |
|  *
 | |
|  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 | |
|  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 | |
|  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 | |
|  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
 | |
|  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 | |
|  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 | |
|  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 | |
|  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 | |
|  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 | |
|  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 | |
|  */
 | |
| 
 | |
| #include "MemoryStatsWidget.h"
 | |
| #include "GraphWidget.h"
 | |
| #include <AK/JsonObject.h>
 | |
| #include <LibCore/File.h>
 | |
| #include <LibGUI/BoxLayout.h>
 | |
| #include <LibGUI/Label.h>
 | |
| #include <LibGUI/Painter.h>
 | |
| #include <LibGfx/Font.h>
 | |
| #include <LibGfx/StylePainter.h>
 | |
| #include <stdio.h>
 | |
| #include <stdlib.h>
 | |
| 
 | |
| static MemoryStatsWidget* s_the;
 | |
| 
 | |
| MemoryStatsWidget* MemoryStatsWidget::the()
 | |
| {
 | |
|     return s_the;
 | |
| }
 | |
| 
 | |
| MemoryStatsWidget::MemoryStatsWidget(GraphWidget& graph)
 | |
|     : m_graph(graph)
 | |
| {
 | |
|     ASSERT(!s_the);
 | |
|     s_the = this;
 | |
| 
 | |
|     set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed);
 | |
|     set_preferred_size(0, 110);
 | |
| 
 | |
|     set_layout<GUI::VerticalBoxLayout>();
 | |
|     layout()->set_margins({ 0, 8, 0, 0 });
 | |
|     layout()->set_spacing(3);
 | |
| 
 | |
|     auto build_widgets_for_label = [this](const String& description) -> RefPtr<GUI::Label> {
 | |
|         auto& container = add<GUI::Widget>();
 | |
|         container.set_layout<GUI::HorizontalBoxLayout>();
 | |
|         container.set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fixed);
 | |
|         container.set_preferred_size(275, 12);
 | |
|         auto& description_label = container.add<GUI::Label>(description);
 | |
|         description_label.set_font(Gfx::Font::default_bold_font());
 | |
|         description_label.set_text_alignment(Gfx::TextAlignment::CenterLeft);
 | |
|         auto& label = container.add<GUI::Label>();
 | |
|         label.set_text_alignment(Gfx::TextAlignment::CenterRight);
 | |
|         return label;
 | |
|     };
 | |
| 
 | |
|     m_user_physical_pages_label = build_widgets_for_label("Userspace physical:");
 | |
|     m_supervisor_physical_pages_label = build_widgets_for_label("Supervisor physical:");
 | |
|     m_kmalloc_space_label = build_widgets_for_label("Kernel heap:");
 | |
|     m_kmalloc_count_label = build_widgets_for_label("Calls kmalloc:");
 | |
|     m_kfree_count_label = build_widgets_for_label("Calls kfree:");
 | |
|     m_kmalloc_difference_label = build_widgets_for_label("Difference:");
 | |
| 
 | |
|     refresh();
 | |
| }
 | |
| 
 | |
| MemoryStatsWidget::~MemoryStatsWidget()
 | |
| {
 | |
| }
 | |
| 
 | |
| static inline size_t page_count_to_kb(size_t kb)
 | |
| {
 | |
|     return (kb * 4096) / 1024;
 | |
| }
 | |
| 
 | |
| static inline size_t bytes_to_kb(size_t bytes)
 | |
| {
 | |
|     return bytes / 1024;
 | |
| }
 | |
| 
 | |
| void MemoryStatsWidget::refresh()
 | |
| {
 | |
|     auto proc_memstat = Core::File::construct("/proc/memstat");
 | |
|     if (!proc_memstat->open(Core::IODevice::OpenMode::ReadOnly))
 | |
|         ASSERT_NOT_REACHED();
 | |
| 
 | |
|     auto file_contents = proc_memstat->read_all();
 | |
|     auto json_result = JsonValue::from_string(file_contents);
 | |
|     ASSERT(json_result.has_value());
 | |
|     auto json = json_result.value().as_object();
 | |
| 
 | |
|     unsigned kmalloc_eternal_allocated = json.get("kmalloc_eternal_allocated").to_u32();
 | |
|     (void)kmalloc_eternal_allocated;
 | |
|     unsigned kmalloc_allocated = json.get("kmalloc_allocated").to_u32();
 | |
|     unsigned kmalloc_available = json.get("kmalloc_available").to_u32();
 | |
|     unsigned user_physical_allocated = json.get("user_physical_allocated").to_u32();
 | |
|     unsigned user_physical_available = json.get("user_physical_available").to_u32();
 | |
|     unsigned super_physical_alloc = json.get("super_physical_allocated").to_u32();
 | |
|     unsigned super_physical_free = json.get("super_physical_available").to_u32();
 | |
|     unsigned kmalloc_call_count = json.get("kmalloc_call_count").to_u32();
 | |
|     unsigned kfree_call_count = json.get("kfree_call_count").to_u32();
 | |
| 
 | |
|     size_t kmalloc_sum_available = kmalloc_allocated + kmalloc_available;
 | |
|     size_t user_pages_available = user_physical_allocated + user_physical_available;
 | |
|     size_t supervisor_pages_available = super_physical_alloc + super_physical_free;
 | |
| 
 | |
|     m_kmalloc_space_label->set_text(String::format("%uK/%uK", bytes_to_kb(kmalloc_allocated), bytes_to_kb(kmalloc_sum_available)));
 | |
|     m_user_physical_pages_label->set_text(String::format("%uK/%uK", page_count_to_kb(user_physical_allocated), page_count_to_kb(user_pages_available)));
 | |
|     m_supervisor_physical_pages_label->set_text(String::format("%uK/%uK", page_count_to_kb(super_physical_alloc), page_count_to_kb(supervisor_pages_available)));
 | |
|     m_kmalloc_count_label->set_text(String::format("%u", kmalloc_call_count));
 | |
|     m_kfree_count_label->set_text(String::format("%u", kfree_call_count));
 | |
|     m_kmalloc_difference_label->set_text(String::format("+%u", kmalloc_call_count - kfree_call_count));
 | |
| 
 | |
|     m_graph.set_max(page_count_to_kb(user_pages_available));
 | |
|     m_graph.add_value(page_count_to_kb(user_physical_allocated));
 | |
| }
 | 
