-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheckpoints.rs
360 lines (308 loc) · 11.1 KB
/
checkpoints.rs
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
use crate::error::ErrorCode;
use anchor_lang::prelude::borsh::{BorshDeserialize, BorshSerialize};
use anchor_lang::prelude::*;
use anchor_lang::solana_program::program::invoke;
use anchor_lang::solana_program::system_instruction;
use std::mem::size_of;
/// CheckpointData account has a fixed header (owner, next_index)
/// and a dynamic tail where checkpoints are stored in byte format
/// This is designed to be able to dynamically extend the CheckpointData account up to 10Mb
/// This will save approximately 655,000 checkpoints into one account
#[account(zero_copy)]
#[derive(Default)]
pub struct CheckpointData {
pub owner: Pubkey,
pub next_index: u64,
}
#[event]
pub struct DelegateVotesChanged {
pub delegate: Pubkey,
pub previous_balance: u64,
pub new_balance: u64,
}
impl CheckpointData {
pub const CHECKPOINT_SIZE: usize = size_of::<Checkpoint>();
pub const CHECKPOINT_DATA_HEADER_SIZE: usize =
CheckpointData::DISCRIMINATOR.len() + size_of::<CheckpointData>();
pub const LEN: usize = CheckpointData::CHECKPOINT_DATA_HEADER_SIZE;
pub fn initialize(&mut self, owner: &Pubkey) {
self.owner = *owner;
self.next_index = 0;
}
}
/// Increase account allocation every time a new checkpoint is added
pub fn resize_account<'info>(
account_info: &AccountInfo<'info>,
payer_info: &AccountInfo<'info>,
system_program_info: &AccountInfo<'info>,
new_size: usize,
) -> Result<()> {
let current_lamports = account_info.lamports();
let required_lamports = Rent::get()?.minimum_balance(new_size);
let lamports_needed = required_lamports.saturating_sub(current_lamports);
if lamports_needed > 0 {
invoke(
&system_instruction::transfer(payer_info.key, account_info.key, lamports_needed),
&[
payer_info.clone(),
account_info.clone(),
system_program_info.clone(),
],
)?;
}
account_info.realloc(new_size, false)?;
Ok(())
}
pub fn write_checkpoint_at_index(
account_info: &AccountInfo,
index: usize,
checkpoint: &Checkpoint,
) -> Result<()> {
let mut data = account_info.try_borrow_mut_data()?;
let header_size = CheckpointData::CHECKPOINT_DATA_HEADER_SIZE;
let data = &mut data[header_size..];
let element_size = CheckpointData::CHECKPOINT_SIZE;
let offset = index * element_size;
if offset + element_size > data.len() {
return Err(ProgramError::InvalidAccountData.into());
}
let checkpoint_bytes = checkpoint
.try_to_vec()
.map_err(|_| ProgramError::InvalidAccountData)?;
data[offset..offset + element_size].copy_from_slice(&checkpoint_bytes);
Ok(())
}
pub fn read_checkpoint_at_index(account_info: &AccountInfo, index: usize) -> Result<Checkpoint> {
let data = account_info.try_borrow_data()?;
let header_size = CheckpointData::CHECKPOINT_DATA_HEADER_SIZE;
let data = &data[header_size..];
let element_size = CheckpointData::CHECKPOINT_SIZE;
let offset = index * element_size;
if offset + element_size > data.len() {
return Err(ProgramError::InvalidAccountData.into());
}
let checkpoint_bytes = &data[offset..offset + element_size];
let checkpoint = Checkpoint::try_from_slice(checkpoint_bytes)
.map_err(|_| ProgramError::InvalidAccountData)?;
Ok(checkpoint)
}
pub enum Operation {
Add,
Subtract,
}
pub fn push_checkpoint<'info>(
checkpoints_loader: &mut AccountLoader<'info, CheckpointData>,
checkpoints_account_info: &AccountInfo<'info>,
amount_delta: u64,
operation: Operation,
current_timestamp: u64,
payer_account_info: &AccountInfo<'info>,
system_program_account_info: &AccountInfo<'info>,
) -> Result<()> {
// Step 1: Immutable borrow to get latest_index and latest_checkpoint
let (current_index, latest_checkpoint, owner) = {
let checkpoint_data = checkpoints_loader.load()?;
if checkpoint_data.next_index == 0 {
(0, None, checkpoint_data.owner) // If next_index is 0, set both to None
} else {
let latest_index = checkpoint_data.next_index - 1;
let checkpoint =
read_checkpoint_at_index(checkpoints_account_info, latest_index as usize)?;
(
checkpoint_data.next_index,
Some(checkpoint),
checkpoint_data.owner,
)
}
};
if let Some(ref latest_checkpoint) = latest_checkpoint {
if latest_checkpoint.timestamp != current_timestamp {
// Step 2: Mutable borrow to update next_index and resize if needed
{
let mut checkpoint_data = checkpoints_loader.load_mut()?;
checkpoint_data.next_index += 1;
let required_size = CheckpointData::CHECKPOINT_DATA_HEADER_SIZE
+ (checkpoint_data.next_index as usize) * CheckpointData::CHECKPOINT_SIZE;
drop(checkpoint_data);
if required_size > checkpoints_account_info.data_len() {
resize_account(
checkpoints_account_info,
payer_account_info,
system_program_account_info,
required_size,
)?;
}
} // Mutable borrow ends here
let new_checkpoint = calc_new_checkpoint(
latest_checkpoint.value,
amount_delta,
operation,
current_timestamp,
)?;
write_checkpoint_at_index(
checkpoints_account_info,
current_index as usize,
&new_checkpoint,
)?;
emit!(DelegateVotesChanged {
delegate: owner,
previous_balance: latest_checkpoint.value,
new_balance: new_checkpoint.value
});
} else {
let new_checkpoint = calc_new_checkpoint(
latest_checkpoint.value,
amount_delta,
operation,
current_timestamp,
)?;
// overwrite checkpoint with same current_timestamp
write_checkpoint_at_index(
checkpoints_account_info,
current_index as usize - 1,
&new_checkpoint,
)?;
emit!(DelegateVotesChanged {
delegate: owner,
previous_balance: latest_checkpoint.value,
new_balance: new_checkpoint.value
});
}
} else {
// write first checkpoint
{
let mut checkpoint_data = checkpoints_loader.load_mut()?;
checkpoint_data.next_index += 1;
let required_size = CheckpointData::CHECKPOINT_DATA_HEADER_SIZE
+ (checkpoint_data.next_index as usize) * CheckpointData::CHECKPOINT_SIZE;
drop(checkpoint_data);
if required_size > checkpoints_account_info.data_len() {
resize_account(
checkpoints_account_info,
payer_account_info,
system_program_account_info,
required_size,
)?;
}
} // Mutable borrow ends here
let new_checkpoint = calc_new_checkpoint(0, amount_delta, operation, current_timestamp)?;
write_checkpoint_at_index(
checkpoints_account_info,
current_index as usize,
&new_checkpoint,
)?;
emit!(DelegateVotesChanged {
delegate: owner,
previous_balance: 0,
new_balance: new_checkpoint.value
});
}
Ok(())
}
pub fn push_checkpoint_init<'info>(
checkpoints_loader: &mut AccountLoader<'info, CheckpointData>,
checkpoints_account_info: &AccountInfo<'info>,
amount_delta: u64,
operation: Operation,
current_timestamp: u64,
payer_account_info: &AccountInfo<'info>,
system_program_account_info: &AccountInfo<'info>,
) -> Result<()> {
let current_index = 0;
let mut checkpoint_data = checkpoints_loader.load_init()?;
checkpoint_data.next_index += 1;
let required_size = CheckpointData::CHECKPOINT_DATA_HEADER_SIZE
+ (checkpoint_data.next_index as usize) * CheckpointData::CHECKPOINT_SIZE;
drop(checkpoint_data);
if required_size > checkpoints_account_info.data_len() {
resize_account(
checkpoints_account_info,
payer_account_info,
system_program_account_info,
required_size,
)?;
}
let new_checkpoint = calc_new_checkpoint(0, amount_delta, operation, current_timestamp)?;
write_checkpoint_at_index(
checkpoints_account_info,
current_index as usize,
&new_checkpoint,
)?;
Ok(())
}
fn calc_new_checkpoint(
current_value: u64,
amount_delta: u64,
operation: Operation,
current_timestamp: u64,
) -> Result<Checkpoint> {
// Calculate the new value, ensuring to handle the None case properly
let new_value = match operation {
Operation::Add => current_value
.checked_add(amount_delta)
.ok_or_else(|| error!(ErrorCode::GenericOverflow))?,
Operation::Subtract => current_value
.checked_sub(amount_delta)
.ok_or_else(|| error!(ErrorCode::GenericUnderflow))?,
};
let new_checkpoint = Checkpoint {
timestamp: current_timestamp,
value: new_value,
};
Ok(new_checkpoint)
}
pub fn find_checkpoint_le(
account_info: &AccountInfo,
target_timestamp: u64,
) -> Result<Option<(usize, Checkpoint)>> {
let data = account_info.try_borrow_data()?;
let header_size = CheckpointData::CHECKPOINT_DATA_HEADER_SIZE;
let data = &data[header_size..];
let element_size = 16;
let total_elements = data.len() / element_size;
let mut low = 0;
let mut high = total_elements;
let mut result = None;
if total_elements > 5 {
let mid = total_elements - (total_elements as f64).sqrt() as usize;
let checkpoint = read_checkpoint_at_index(account_info, mid)?;
if checkpoint.timestamp <= target_timestamp {
result = Some((mid, checkpoint));
low = mid + 1;
} else {
high = mid;
}
}
while low < high {
let mid = (low + high) / 2;
let checkpoint = read_checkpoint_at_index(account_info, mid)?;
if checkpoint.timestamp <= target_timestamp {
result = Some((mid, checkpoint));
low = mid + 1;
} else {
high = mid;
}
}
Ok(result)
}
#[derive(Clone, Copy, Default, BorshSerialize, BorshDeserialize)]
pub struct Checkpoint {
pub timestamp: u64,
pub value: u64,
}
#[cfg(test)]
pub mod tests {
use super::CheckpointData;
#[test]
fn check_checkpoint_size() {
assert!(CheckpointData::CHECKPOINT_SIZE == 8 + 8); // 16 (timestamp + value)
}
#[test]
fn check_checkpoint_data_header_size() {
assert!(CheckpointData::CHECKPOINT_DATA_HEADER_SIZE == 8 + 32 + 8); // 48 (discriminator + owner + next_index)
}
#[test]
fn check_checkpoint_data_size() {
assert!(CheckpointData::LEN == 48); // 48 (header)
}
}