@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
42 lines • 1.67 kB
JavaScript
// SPDX-License-Identifier: Apache-2.0
import yaml from 'yaml';
import { ConfigMapStorageBackend } from './config-map-storage-backend.js';
import { StorageBackendError } from '../api/storage-backend-error.js';
import { IllegalArgumentError } from '../../../core/errors/illegal-argument-error.js';
/**
* YamlConfigMapStorageBackend is a storage backend that uses a {@link ConfigMap} to store data.
* The key will be the name of the property within the data object within the ConfigMap.
*/
export class YamlConfigMapStorageBackend extends ConfigMapStorageBackend {
async readObject(key) {
const data = await this.readBytes(key);
if (!data) {
throw new StorageBackendError(`failed to read key: ${key} from config map`);
}
if (data.length === 0) {
throw new StorageBackendError(`data is empty for key: ${key}`);
}
try {
return yaml.parse(data.toString('utf8'));
}
catch (error) {
throw new StorageBackendError(`error parsing yaml from key: ${key}`, error);
}
}
async writeObject(key, data) {
if (!data) {
throw new IllegalArgumentError('data must not be null or undefined');
}
try {
const yamlData = yaml.stringify(data, { sortMapEntries: true });
await this.writeBytes(key, Buffer.from(yamlData, 'utf8'));
}
catch (error) {
throw new StorageBackendError(`error writing yaml for key: ${key} to config map`, error);
}
}
getConfigMap() {
return this.configMap;
}
}
//# sourceMappingURL=yaml-config-map-storage-backend.js.map