summaryrefslogtreecommitdiff
path: root/filemetadata.cpp
blob: 5775852aac44d4ffa5d5b0ba262b70dbc512624e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
#include "binaryninjaapi.h"

using namespace BinaryNinja;
using namespace Json;
using namespace std;


char* NavigationHandler::GetCurrentViewCallback(void* ctxt)
{
	NavigationHandler* handler = (NavigationHandler*)ctxt;
	string result = handler->GetCurrentView();
	return BNAllocString(result.c_str());
}


uint64_t NavigationHandler::GetCurrentOffsetCallback(void* ctxt)
{
	NavigationHandler* handler = (NavigationHandler*)ctxt;
	return handler->GetCurrentOffset();
}


bool NavigationHandler::NavigateCallback(void* ctxt, const char* view, uint64_t offset)
{
	NavigationHandler* handler = (NavigationHandler*)ctxt;
	return handler->Navigate(view, offset);
}


NavigationHandler::NavigationHandler()
{
	m_callbacks.context = this;
	m_callbacks.getCurrentView = GetCurrentViewCallback;
	m_callbacks.getCurrentOffset = GetCurrentOffsetCallback;
	m_callbacks.navigate = NavigateCallback;
}


void UndoAction::UndoCallback(void* ctxt, BNBinaryView* data)
{
	UndoAction* action = (UndoAction*)ctxt;
	Ref<BinaryView> view = new BinaryView(BNNewViewReference(data));
	action->Undo(view);
}


void UndoAction::RedoCallback(void* ctxt, BNBinaryView* data)
{
	UndoAction* action = (UndoAction*)ctxt;
	Ref<BinaryView> view = new BinaryView(BNNewViewReference(data));
	action->Redo(view);
}


char* UndoAction::SerializeCallback(void* ctxt)
{
	try
	{
		UndoAction* action = (UndoAction*)ctxt;
		Value data = action->Serialize();
		FastWriter writer;
		string json = writer.write(data);
		return BNAllocString(json.c_str());
	}
	catch (exception& e)
	{
		LogError("Undo action failed to serialize: %s", e.what());
		return nullptr;
	}
}


UndoAction::UndoAction(const string& name): m_name(name)
{
}


BNUndoAction UndoAction::GetCallbacks()
{
	BNUndoAction action;
	action.context = this;
	action.undo = UndoCallback;
	action.redo = RedoCallback;
	action.serialize = SerializeCallback;
	return action;
}


void UndoAction::Add(BNBinaryView* view)
{
	BNUndoAction action = GetCallbacks();
	BNAddUndoAction(view, GetName().c_str(), &action);
}


bool UndoActionType::DeserializeCallback(void* ctxt, const char* data, BNUndoAction* result)
{
	try
	{
		UndoActionType* type = (UndoActionType*)ctxt;
		Reader reader;
		Value val;
		if (!reader.parse(data, val, false))
		{
			LogError("Invalid JSON while deserializing undo action");
			return false;
		}

		UndoAction* action = type->Deserialize(val);
		if (!action)
			return false;

		*result = action->GetCallbacks();
		return true;
	}
	catch (exception& e)
	{
		LogError("Error while deserializing undo action: %s", e.what());
		return false;
	}
}


UndoActionType::UndoActionType(const string& name): m_nameForRegister(name)
{
}


void UndoActionType::Register(UndoActionType* type)
{
	BNRegisterUndoActionType(type->m_nameForRegister.c_str(), type, DeserializeCallback);
}


FileMetadata::FileMetadata()
{
	m_file = BNCreateFileMetadata();
}


FileMetadata::FileMetadata(const string& filename)
{
	m_file = BNCreateFileMetadata();
	BNSetFilename(m_file, filename.c_str());
}


FileMetadata::FileMetadata(BNFileMetadata* file)
{
	m_file = file;
}


FileMetadata::~FileMetadata()
{
	BNFreeFileMetadata(m_file);
}


void FileMetadata::SetNavigationHandler(NavigationHandler* handler)
{
	BNSetFileMetadataNavigationHandler(m_file, handler->GetCallbacks());
}


string FileMetadata::GetFilename() const
{
	char* str = BNGetFilename(m_file);
	string result = str;
	BNFreeString(str);
	return result;
}


void FileMetadata::SetFilename(const string& name)
{
	BNSetFilename(m_file, name.c_str());
}


bool FileMetadata::IsModified() const
{
	return BNIsFileModified(m_file);
}


void FileMetadata::MarkFileModified()
{
	BNMarkFileModified(m_file);
}


void FileMetadata::MarkFileSaved()
{
	BNMarkFileSaved(m_file);
}


void FileMetadata::BeginUndoActions()
{
	BNBeginUndoActions(m_file);
}


void FileMetadata::CommitUndoActions()
{
	BNCommitUndoActions(m_file);
}


bool FileMetadata::Undo()
{
	return BNUndo(m_file);
}


bool FileMetadata::Redo()
{
	return BNRedo(m_file);
}


string FileMetadata::GetCurrentView()
{
	char* view = BNGetCurrentView(m_file);
	string result = view;
	BNFreeString(view);
	return result;
}


uint64_t FileMetadata::GetCurrentOffset()
{
	return BNGetCurrentOffset(m_file);
}


bool FileMetadata::Navigate(const string& view, uint64_t offset)
{
	return BNNavigate(m_file, view.c_str(), offset);
}