summaryrefslogtreecommitdiff
path: root/ledger/store/trackerdb/generickv/migrations.go
blob: c2a0d0f20834465a5dbb49d18cdf998e2b36b3d5 (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
// Copyright (C) 2019-2024 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand.  If not, see <https://www.gnu.org/licenses/>.

package generickv

import (
	"context"
	"encoding/binary"
	"fmt"

	"github.com/algorand/go-algorand/config"
	"github.com/algorand/go-algorand/data/basics"
	"github.com/algorand/go-algorand/ledger/ledgercore"
	"github.com/algorand/go-algorand/ledger/store/trackerdb"
)

func getSchemaVersion(ctx context.Context, kvr KvRead) (int32, error) {
	// read version entry
	key := schemaVersionKey()
	value, closer, err := kvr.Get(key[:])
	if err == trackerdb.ErrNotFound {
		// ignore the error, return version 0
		return 0, nil
	} else if err != nil {
		return 0, err
	}
	defer closer.Close()

	// parse the bytes into a i32
	version := int32(binary.BigEndian.Uint32(value))

	return version, nil
}

func setSchemaVersion(ctx context.Context, kvw KvWrite, version int32) error {
	// write version entry
	raw := bigEndianUint32(uint32(version))
	key := schemaVersionKey()
	err := kvw.Set(key[:], raw[:])
	if err != nil {
		return err
	}

	return nil
}

type dbForMigrations interface {
	trackerdb.Store
	KvRead
	KvWrite
}

// RunMigrations runs the migrations on the store up to the target version.
func RunMigrations(ctx context.Context, db dbForMigrations, params trackerdb.Params, targetVersion int32) (mgr trackerdb.InitParams, err error) {

	dbVersion, err := getSchemaVersion(ctx, db)
	if err != nil {
		return
	}

	mgr.SchemaVersion = dbVersion
	mgr.VacuumOnStartup = false

	migrator := &migrator{
		currentVersion: dbVersion,
		targetVersion:  targetVersion,
		params:         params,
		db:             db,
	}

	err = migrator.Migrate(ctx)
	if err != nil {
		return
	}

	mgr.SchemaVersion = migrator.currentVersion

	return mgr, nil
}

type migrator struct {
	currentVersion int32
	targetVersion  int32
	params         trackerdb.Params
	db             dbForMigrations
}

func (m *migrator) Migrate(ctx context.Context) error {
	// we cannot rollback
	if m.currentVersion > m.targetVersion {
		return nil
	}
	// upgrade the db one version at at time
	for m.currentVersion < m.targetVersion {
		// run next version upgrade
		switch m.currentVersion {
		case 0: // initial version
			err := m.initialVersion(ctx)
			if err != nil {
				return err
			}
		default:
			// any other version we do nothing
			return nil
		}
	}
	return nil
}

func (m *migrator) setVersion(ctx context.Context, version int32) error {
	// update crrent version in the db
	err := setSchemaVersion(ctx, m.db, version)
	if err != nil {
		return err
	}
	// update current version in the migrator
	m.currentVersion = version
	return nil
}

func (m *migrator) initialVersion(ctx context.Context) error {
	proto := config.Consensus[m.params.InitProto]

	// TODO: make this a batch scope
	err := m.db.TransactionContext(ctx, func(ctx context.Context, tx trackerdb.TransactionScope) (err error) {
		aow, err := tx.MakeAccountsOptimizedWriter(true, false, false, false)
		if err != nil {
			return err
		}

		oaow, err := tx.MakeOnlineAccountsOptimizedWriter(true)
		if err != nil {
			return err
		}

		aw, err := tx.MakeAccountsWriter()
		if err != nil {
			return err
		}

		updRound := basics.Round(0)

		// mark the db as round 0
		err = aw.UpdateAccountsRound(updRound)
		if err != nil {
			return err
		}

		var ot basics.OverflowTracker
		var totals ledgercore.AccountTotals

		// insert initial accounts
		for addr, account := range m.params.InitAccounts {
			// build a trackerdb.BaseAccountData to pass to the DB
			var bad trackerdb.BaseAccountData
			bad.SetAccountData(&account)
			// insert the account
			_, err = aow.InsertAccount(addr, account.NormalizedOnlineBalance(proto), bad)
			if err != nil {
				return err
			}

			// build a ledgercore.AccountData to track the totals
			ad := ledgercore.ToAccountData(account)
			// track the totals
			totals.AddAccount(proto, ad, &ot)

			// insert online account (if online)
			if bad.Status == basics.Online {
				var baseOnlineAD trackerdb.BaseOnlineAccountData
				baseOnlineAD.BaseVotingData = bad.BaseVotingData
				baseOnlineAD.MicroAlgos = bad.MicroAlgos
				baseOnlineAD.RewardsBase = bad.RewardsBase

				_, err = oaow.InsertOnlineAccount(addr, account.NormalizedOnlineBalance(proto), baseOnlineAD, uint64(updRound), uint64(baseOnlineAD.VoteLastValid))
				if err != nil {
					return err
				}
			}
		}

		// make sure we didn't overflow
		if ot.Overflowed {
			return fmt.Errorf("overflow computing totals")
		}

		// insert the totals
		err = aw.AccountsPutTotals(totals, false)
		if err != nil {
			return err
		}

		// insert online params
		params := []ledgercore.OnlineRoundParamsData{
			{
				OnlineSupply:    totals.Online.Money.Raw,
				RewardsLevel:    totals.RewardsLevel,
				CurrentProtocol: m.params.InitProto,
			},
		}
		err = aw.AccountsPutOnlineRoundParams(params, basics.Round(0))
		if err != nil {
			return err
		}

		return nil
	})
	if err != nil {
		return err
	}

	// KV store starts at version 10
	return m.setVersion(ctx, 10)
}