File size: 9,218 Bytes
857cdcf | 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 | /**
* Rollback Manager - ระบบจัดการ Rollback
* Chahua Development Thailand
* CEO: Saharath C.
*
* Purpose: จัดการการ rollback เมื่อเกิดข้อผิดพลาด
*/
const fs = require('fs');
const path = require('path');
class RollbackManager {
constructor(options = {}) {
this.config = {
snapshotPath: options.snapshotPath || './logs/snapshots',
maxSnapshots: options.maxSnapshots || 10,
enableCompression: options.enableCompression || false,
retentionDays: options.retentionDays || 7
};
this.activeTransactions = new Map();
this.rollbackHistory = [];
this.ensureSnapshotDirectory();
console.log('Rollback Manager initialized');
}
ensureSnapshotDirectory() {
try {
if (!fs.existsSync(this.config.snapshotPath)) {
fs.mkdirSync(this.config.snapshotPath, { recursive: true });
}
} catch (error) {
console.warn('Warning: Could not create snapshot directory:', error.message);
}
}
async createSnapshot(transactionId, data, metadata = {}) {
try {
const snapshot = {
id: transactionId,
timestamp: new Date().toISOString(),
data: JSON.parse(JSON.stringify(data)), // Deep clone
metadata: {
source: metadata.source || 'unknown',
description: metadata.description || 'Auto snapshot',
version: metadata.version || '1.0.0',
...metadata
},
size: this.calculateDataSize(data)
};
// Store in memory
this.activeTransactions.set(transactionId, snapshot);
// Save to disk
await this.saveSnapshotToDisk(snapshot);
console.log(`Snapshot created: ${transactionId}`);
return transactionId;
} catch (error) {
console.error('Error creating snapshot:', error.message);
return null;
}
}
async rollback(transactionId) {
try {
console.log(`Starting rollback for transaction: ${transactionId}`);
let snapshot = this.activeTransactions.get(transactionId);
// If not in memory, try loading from disk
if (!snapshot) {
snapshot = await this.loadSnapshotFromDisk(transactionId);
}
if (!snapshot) {
throw new Error(`Snapshot not found for transaction: ${transactionId}`);
}
// Perform rollback
const rollbackResult = await this.performRollback(snapshot);
// Log rollback
this.logRollback(transactionId, rollbackResult);
// Cleanup
await this.cleanupSnapshot(transactionId);
console.log(`Rollback completed: ${transactionId}`);
return {
success: true,
transactionId,
timestamp: new Date().toISOString(),
dataRestored: rollbackResult.itemsRestored || 0
};
} catch (error) {
console.error(`Rollback failed for ${transactionId}:`, error.message);
return {
success: false,
transactionId,
error: error.message,
timestamp: new Date().toISOString()
};
}
}
async performRollback(snapshot) {
// This is a generic rollback implementation
// In a real system, this would restore actual system state
console.log(`Restoring data from snapshot: ${snapshot.id}`);
console.log(`Snapshot created: ${snapshot.timestamp}`);
console.log(`Data size: ${snapshot.size} bytes`);
// Simulate data restoration
let itemsRestored = 0;
if (snapshot.data && typeof snapshot.data === 'object') {
itemsRestored = Object.keys(snapshot.data).length;
}
return {
itemsRestored,
snapshotId: snapshot.id,
originalTimestamp: snapshot.timestamp
};
}
async saveSnapshotToDisk(snapshot) {
try {
const filename = `snapshot_${snapshot.id}_${Date.now()}.json`;
const filepath = path.join(this.config.snapshotPath, filename);
const snapshotData = {
...snapshot,
filename,
savedAt: new Date().toISOString()
};
fs.writeFileSync(filepath, JSON.stringify(snapshotData, null, 2));
// Update snapshot with file path
snapshot.filepath = filepath;
snapshot.filename = filename;
} catch (error) {
console.error('Error saving snapshot to disk:', error.message);
}
}
async loadSnapshotFromDisk(transactionId) {
try {
const files = fs.readdirSync(this.config.snapshotPath);
const snapshotFile = files.find(file => file.includes(`snapshot_${transactionId}_`));
if (!snapshotFile) {
return null;
}
const filepath = path.join(this.config.snapshotPath, snapshotFile);
const snapshotData = JSON.parse(fs.readFileSync(filepath, 'utf8'));
console.log(`Snapshot loaded from disk: ${transactionId}`);
return snapshotData;
} catch (error) {
console.error('Error loading snapshot from disk:', error.message);
return null;
}
}
async cleanupSnapshot(transactionId) {
try {
// Remove from memory
this.activeTransactions.delete(transactionId);
// Remove from disk (optional - you might want to keep for audit)
const files = fs.readdirSync(this.config.snapshotPath);
const snapshotFile = files.find(file => file.includes(`snapshot_${transactionId}_`));
if (snapshotFile) {
const filepath = path.join(this.config.snapshotPath, snapshotFile);
fs.unlinkSync(filepath);
console.log(`Snapshot file cleaned up: ${snapshotFile}`);
}
} catch (error) {
console.error('Error cleaning up snapshot:', error.message);
}
}
logRollback(transactionId, result) {
const rollbackEntry = {
transactionId,
timestamp: new Date().toISOString(),
success: result.itemsRestored !== undefined,
itemsRestored: result.itemsRestored || 0,
details: result
};
this.rollbackHistory.push(rollbackEntry);
// Keep only recent entries
if (this.rollbackHistory.length > 100) {
this.rollbackHistory.shift();
}
}
calculateDataSize(data) {
try {
return JSON.stringify(data).length;
} catch (error) {
return 0;
}
}
getActiveTransactions() {
return Array.from(this.activeTransactions.keys());
}
getRollbackHistory() {
return this.rollbackHistory.slice(-20); // Last 20 entries
}
getStats() {
const totalRollbacks = this.rollbackHistory.length;
const successfulRollbacks = this.rollbackHistory.filter(r => r.success).length;
return {
activeTransactions: this.activeTransactions.size,
totalRollbacks,
successfulRollbacks,
failedRollbacks: totalRollbacks - successfulRollbacks,
successRate: totalRollbacks > 0 ? Math.round((successfulRollbacks / totalRollbacks) * 100) : 0
};
}
async cleanupOldSnapshots() {
try {
const files = fs.readdirSync(this.config.snapshotPath);
const cutoffDate = new Date(Date.now() - (this.config.retentionDays * 24 * 60 * 60 * 1000));
let cleanedCount = 0;
for (const file of files) {
if (file.startsWith('snapshot_')) {
const filepath = path.join(this.config.snapshotPath, file);
const stats = fs.statSync(filepath);
if (stats.mtime < cutoffDate) {
fs.unlinkSync(filepath);
cleanedCount++;
}
}
}
if (cleanedCount > 0) {
console.log(`Cleaned up ${cleanedCount} old snapshot files`);
}
return cleanedCount;
} catch (error) {
console.error('Error cleaning up old snapshots:', error.message);
return 0;
}
}
}
module.exports = RollbackManager; |