mirror of
https://github.com/jakcron/nstool.git
synced 2024-12-22 18:55:29 +00:00
68 lines
1.7 KiB
C++
68 lines
1.7 KiB
C++
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
#include <fnd/types.h>
|
|
#include <fnd/Vec.h>
|
|
|
|
#include <nn/hac/define/meta.h>
|
|
|
|
#include "common.h"
|
|
#include "SdkApiString.h"
|
|
#include "ElfSymbolParser.h"
|
|
|
|
class RoMetadataProcess
|
|
{
|
|
public:
|
|
RoMetadataProcess();
|
|
|
|
void process();
|
|
|
|
void setRoBinary(const fnd::Vec<byte_t>& bin);
|
|
void setApiInfo(size_t offset, size_t size);
|
|
void setDynSym(size_t offset, size_t size);
|
|
void setDynStr(size_t offset, size_t size);
|
|
|
|
void setCliOutputMode(CliOutputMode type);
|
|
|
|
void setInstructionType(nn::hac::meta::InstructionType type);
|
|
void setListApi(bool listApi);
|
|
void setListSymbols(bool listSymbols);
|
|
|
|
const std::vector<SdkApiString>& getSdkVerApiList() const;
|
|
const std::vector<SdkApiString>& getPublicApiList() const;
|
|
const std::vector<SdkApiString>& getDebugApiList() const;
|
|
const std::vector<SdkApiString>& getPrivateApiList() const;
|
|
const fnd::List<ElfSymbolParser::sElfSymbol>& getSymbolList() const;
|
|
private:
|
|
const std::string kModuleName = "RoMetadataProcess";
|
|
|
|
CliOutputMode mCliOutputMode;
|
|
nn::hac::meta::InstructionType mInstructionType;
|
|
bool mListApi;
|
|
bool mListSymbols;
|
|
|
|
struct sLayout
|
|
{
|
|
sLayout() : offset(0), size(0) {}
|
|
size_t offset;
|
|
size_t size;
|
|
};
|
|
|
|
sLayout mApiInfo;
|
|
sLayout mDynSym;
|
|
sLayout mDynStr;
|
|
fnd::Vec<byte_t> mRoBlob;
|
|
std::vector<SdkApiString> mSdkVerApiList;
|
|
std::vector<SdkApiString> mPublicApiList;
|
|
std::vector<SdkApiString> mDebugApiList;
|
|
std::vector<SdkApiString> mPrivateApiList;
|
|
|
|
ElfSymbolParser mSymbolList;
|
|
|
|
void importApiList();
|
|
void displayRoMetaData();
|
|
|
|
const char* getSectionIndexStr(uint16_t shn_index) const;
|
|
const char* getSymbolTypeStr(byte_t symbol_type) const;
|
|
const char* getSymbolBindingStr(byte_t symbol_binding) const;
|
|
}; |