- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
113 lines
4.5 KiB
JavaScript
113 lines
4.5 KiB
JavaScript
/*
|
|
* Copyright The OpenTelemetry Authors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import { diag } from '@opentelemetry/api';
|
|
import { isObservableInstrument } from '../Instruments';
|
|
import { BatchObservableResultImpl, ObservableResultImpl, } from '../ObservableResult';
|
|
import { callWithTimeout, setEquals } from '../utils';
|
|
/**
|
|
* An internal interface for managing ObservableCallbacks.
|
|
*
|
|
* Every registered callback associated with a set of instruments are be evaluated
|
|
* exactly once during collection prior to reading data for that instrument.
|
|
*/
|
|
export class ObservableRegistry {
|
|
_callbacks = [];
|
|
_batchCallbacks = [];
|
|
addCallback(callback, instrument) {
|
|
const idx = this._findCallback(callback, instrument);
|
|
if (idx >= 0) {
|
|
return;
|
|
}
|
|
this._callbacks.push({ callback, instrument });
|
|
}
|
|
removeCallback(callback, instrument) {
|
|
const idx = this._findCallback(callback, instrument);
|
|
if (idx < 0) {
|
|
return;
|
|
}
|
|
this._callbacks.splice(idx, 1);
|
|
}
|
|
addBatchCallback(callback, instruments) {
|
|
// Create a set of unique instruments.
|
|
const observableInstruments = new Set(instruments.filter(isObservableInstrument));
|
|
if (observableInstruments.size === 0) {
|
|
diag.error('BatchObservableCallback is not associated with valid instruments', instruments);
|
|
return;
|
|
}
|
|
const idx = this._findBatchCallback(callback, observableInstruments);
|
|
if (idx >= 0) {
|
|
return;
|
|
}
|
|
this._batchCallbacks.push({ callback, instruments: observableInstruments });
|
|
}
|
|
removeBatchCallback(callback, instruments) {
|
|
// Create a set of unique instruments.
|
|
const observableInstruments = new Set(instruments.filter(isObservableInstrument));
|
|
const idx = this._findBatchCallback(callback, observableInstruments);
|
|
if (idx < 0) {
|
|
return;
|
|
}
|
|
this._batchCallbacks.splice(idx, 1);
|
|
}
|
|
/**
|
|
* @returns a promise of rejected reasons for invoking callbacks.
|
|
*/
|
|
async observe(collectionTime, timeoutMillis) {
|
|
const callbackFutures = this._observeCallbacks(collectionTime, timeoutMillis);
|
|
const batchCallbackFutures = this._observeBatchCallbacks(collectionTime, timeoutMillis);
|
|
const results = await Promise.allSettled([
|
|
...callbackFutures,
|
|
...batchCallbackFutures,
|
|
]);
|
|
const rejections = results
|
|
.filter(result => result.status === 'rejected')
|
|
.map(result => result.reason);
|
|
return rejections;
|
|
}
|
|
_observeCallbacks(observationTime, timeoutMillis) {
|
|
return this._callbacks.map(async ({ callback, instrument }) => {
|
|
const observableResult = new ObservableResultImpl(instrument._descriptor.name, instrument._descriptor.valueType);
|
|
let callPromise = Promise.resolve(callback(observableResult));
|
|
if (timeoutMillis != null) {
|
|
callPromise = callWithTimeout(callPromise, timeoutMillis);
|
|
}
|
|
await callPromise;
|
|
instrument._metricStorages.forEach(metricStorage => {
|
|
metricStorage.record(observableResult._buffer, observationTime);
|
|
});
|
|
});
|
|
}
|
|
_observeBatchCallbacks(observationTime, timeoutMillis) {
|
|
return this._batchCallbacks.map(async ({ callback, instruments }) => {
|
|
const observableResult = new BatchObservableResultImpl();
|
|
let callPromise = Promise.resolve(callback(observableResult));
|
|
if (timeoutMillis != null) {
|
|
callPromise = callWithTimeout(callPromise, timeoutMillis);
|
|
}
|
|
await callPromise;
|
|
instruments.forEach(instrument => {
|
|
const buffer = observableResult._buffer.get(instrument);
|
|
if (buffer == null) {
|
|
return;
|
|
}
|
|
instrument._metricStorages.forEach(metricStorage => {
|
|
metricStorage.record(buffer, observationTime);
|
|
});
|
|
});
|
|
});
|
|
}
|
|
_findCallback(callback, instrument) {
|
|
return this._callbacks.findIndex(record => {
|
|
return record.callback === callback && record.instrument === instrument;
|
|
});
|
|
}
|
|
_findBatchCallback(callback, instruments) {
|
|
return this._batchCallbacks.findIndex(record => {
|
|
return (record.callback === callback &&
|
|
setEquals(record.instruments, instruments));
|
|
});
|
|
}
|
|
}
|
|
//# sourceMappingURL=ObservableRegistry.js.map
|