Files
bzzz/mcp-server/node_modules/winston-transport/legacy.js
anthonyrawlins b3c00d7cd9 Major BZZZ Code Hygiene & Goal Alignment Improvements
This comprehensive cleanup significantly improves codebase maintainability,
test coverage, and production readiness for the BZZZ distributed coordination system.

## 🧹 Code Cleanup & Optimization
- **Dependency optimization**: Reduced MCP server from 131MB → 127MB by removing unused packages (express, crypto, uuid, zod)
- **Project size reduction**: 236MB → 232MB total (4MB saved)
- **Removed dead code**: Deleted empty directories (pkg/cooee/, systemd/), broken SDK examples, temporary files
- **Consolidated duplicates**: Merged test_coordination.go + test_runner.go → unified test_bzzz.go (465 lines of duplicate code eliminated)

## 🔧 Critical System Implementations
- **Election vote counting**: Complete democratic voting logic with proper tallying, tie-breaking, and vote validation (pkg/election/election.go:508)
- **Crypto security metrics**: Comprehensive monitoring with active/expired key tracking, audit log querying, dynamic security scoring (pkg/crypto/role_crypto.go:1121-1129)
- **SLURP failover system**: Robust state transfer with orphaned job recovery, version checking, proper cryptographic hashing (pkg/slurp/leader/failover.go)
- **Configuration flexibility**: 25+ environment variable overrides for operational deployment (pkg/slurp/leader/config.go)

## 🧪 Test Coverage Expansion
- **Election system**: 100% coverage with 15 comprehensive test cases including concurrency testing, edge cases, invalid inputs
- **Configuration system**: 90% coverage with 12 test scenarios covering validation, environment overrides, timeout handling
- **Overall coverage**: Increased from 11.5% → 25% for core Go systems
- **Test files**: 14 → 16 test files with focus on critical systems

## 🏗️ Architecture Improvements
- **Better error handling**: Consistent error propagation and validation across core systems
- **Concurrency safety**: Proper mutex usage and race condition prevention in election and failover systems
- **Production readiness**: Health monitoring foundations, graceful shutdown patterns, comprehensive logging

## 📊 Quality Metrics
- **TODOs resolved**: 156 critical items → 0 for core systems
- **Code organization**: Eliminated mega-files, improved package structure
- **Security hardening**: Audit logging, metrics collection, access violation tracking
- **Operational excellence**: Environment-based configuration, deployment flexibility

This release establishes BZZZ as a production-ready distributed P2P coordination
system with robust testing, monitoring, and operational capabilities.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-16 12:14:57 +10:00

120 lines
3.8 KiB
JavaScript

'use strict';
const util = require('util');
const { LEVEL } = require('triple-beam');
const TransportStream = require('./modern');
/**
* Constructor function for the LegacyTransportStream. This is an internal
* wrapper `winston >= 3` uses to wrap older transports implementing
* log(level, message, meta).
* @param {Object} options - Options for this TransportStream instance.
* @param {Transpot} options.transport - winston@2 or older Transport to wrap.
*/
const LegacyTransportStream = module.exports = function LegacyTransportStream(options = {}) {
TransportStream.call(this, options);
if (!options.transport || typeof options.transport.log !== 'function') {
throw new Error('Invalid transport, must be an object with a log method.');
}
this.transport = options.transport;
this.level = this.level || options.transport.level;
this.handleExceptions = this.handleExceptions || options.transport.handleExceptions;
// Display our deprecation notice.
this._deprecated();
// Properly bubble up errors from the transport to the
// LegacyTransportStream instance, but only once no matter how many times
// this transport is shared.
function transportError(err) {
this.emit('error', err, this.transport);
}
if (!this.transport.__winstonError) {
this.transport.__winstonError = transportError.bind(this);
this.transport.on('error', this.transport.__winstonError);
}
};
/*
* Inherit from TransportStream using Node.js built-ins
*/
util.inherits(LegacyTransportStream, TransportStream);
/**
* Writes the info object to our transport instance.
* @param {mixed} info - TODO: add param description.
* @param {mixed} enc - TODO: add param description.
* @param {function} callback - TODO: add param description.
* @returns {undefined}
* @private
*/
LegacyTransportStream.prototype._write = function _write(info, enc, callback) {
if (this.silent || (info.exception === true && !this.handleExceptions)) {
return callback(null);
}
// Remark: This has to be handled in the base transport now because we
// cannot conditionally write to our pipe targets as stream.
if (!this.level || this.levels[this.level] >= this.levels[info[LEVEL]]) {
this.transport.log(info[LEVEL], info.message, info, this._nop);
}
callback(null);
};
/**
* Writes the batch of info objects (i.e. "object chunks") to our transport
* instance after performing any necessary filtering.
* @param {mixed} chunks - TODO: add params description.
* @param {function} callback - TODO: add params description.
* @returns {mixed} - TODO: add returns description.
* @private
*/
LegacyTransportStream.prototype._writev = function _writev(chunks, callback) {
for (let i = 0; i < chunks.length; i++) {
if (this._accept(chunks[i])) {
this.transport.log(
chunks[i].chunk[LEVEL],
chunks[i].chunk.message,
chunks[i].chunk,
this._nop
);
chunks[i].callback();
}
}
return callback(null);
};
/**
* Displays a deprecation notice. Defined as a function so it can be
* overriden in tests.
* @returns {undefined}
*/
LegacyTransportStream.prototype._deprecated = function _deprecated() {
// eslint-disable-next-line no-console
console.error([
`${this.transport.name} is a legacy winston transport. Consider upgrading: `,
'- Upgrade docs: https://github.com/winstonjs/winston/blob/master/UPGRADE-3.0.md'
].join('\n'));
};
/**
* Clean up error handling state on the legacy transport associated
* with this instance.
* @returns {undefined}
*/
LegacyTransportStream.prototype.close = function close() {
if (this.transport.close) {
this.transport.close();
}
if (this.transport.__winstonError) {
this.transport.removeListener('error', this.transport.__winstonError);
this.transport.__winstonError = null;
}
};