1
0
mirror of synced 2024-11-27 17:10:51 +01:00
ImHex/plugins/builtin/include/content/views/view_information.hpp

57 lines
1.4 KiB
C++
Raw Normal View History

#pragma once
#include <hex/ui/view.hpp>
#include <hex/api/task.hpp>
#include "content/helpers/diagrams.hpp"
#include <array>
#include <atomic>
#include <cstdio>
#include <string>
#include <vector>
2021-12-07 22:47:41 +01:00
namespace hex::plugin::builtin {
class ViewInformation : public View {
public:
explicit ViewInformation();
~ViewInformation() override;
void drawContent() override;
private:
bool m_dataValid = false;
u32 m_blockSize = 0;
double m_averageEntropy = -1.0;
2022-12-28 23:06:49 +01:00
double m_highestBlockEntropy = -1.0;
u64 m_highestBlockEntropyAddress = 0x00;
double m_lowestBlockEntropy = -1.0;
u64 m_lowestBlockEntropyAddress = 0x00;
2022-12-28 23:06:49 +01:00
double m_plainTextCharacterPercentage = -1.0;
TaskHolder m_analyzerTask;
Region m_analyzedRegion = { 0, 0 };
std::string m_dataDescription;
std::string m_dataMimeType;
DiagramDigram m_digram;
DiagramLayeredDistribution m_layeredDistribution;
DiagramByteDistribution m_byteDistribution;
DiagramByteTypesDistribution m_byteTypesDistribution;
DiagramChunkBasedEntropyAnalysis m_chunkBasedEntropy;
void analyze();
// User controlled input (referenced by ImgGui)
int m_inputChunkSize = 0;
u64 m_inputStartAddress = 0;
u64 m_inputEndAddress = 0;
};
}