Spaces:
Paused
Paused
File size: 11,589 Bytes
529090e | 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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | /**
* Document Generation Service
* Unified service for generating PowerPoint, Word, and Excel documents
*/
import { eventBus } from '../../mcp/EventBus.js';
import { logger } from '../../utils/logger.js';
import { getMCPPowerPointBackend } from './MCPPowerPointBackend.js';
// ============================================================================
// TYPES
// ============================================================================
interface DocumentJob {
id: string;
type: 'powerpoint' | 'word' | 'excel';
status: 'pending' | 'processing' | 'completed' | 'failed';
progress: number;
config: any;
result?: {
filePath: string;
fileSize?: number;
metadata?: Record<string, unknown>;
};
error?: string;
createdAt: Date;
completedAt?: Date;
}
interface PowerPointConfig {
title: string;
topic: string;
audience?: string;
duration?: number;
theme?: string;
includeImages?: boolean;
}
interface WordConfig {
title: string;
type: 'report' | 'manual' | 'analysis' | 'proposal' | 'whitepaper' | 'sop';
topic: string;
targetWordCount?: number;
includeExecutiveSummary?: boolean;
includeTables?: boolean;
tone?: 'formal' | 'professional' | 'casual' | 'technical';
}
interface ExcelConfig {
title: string;
analysisType: 'financial' | 'statistical' | 'comparison' | 'forecast' | 'dashboard';
dataSource?: string;
includeCharts?: boolean;
includeFormulas?: boolean;
includeDashboard?: boolean;
}
// ============================================================================
// SERVICE
// ============================================================================
class DocumentGenerationService {
private jobs: Map<string, DocumentJob> = new Map();
private processingQueue: string[] = [];
private isProcessing = false;
constructor() {
this.setupEventListeners();
}
private setupEventListeners(): void {
// PowerPoint events
eventBus.on('docgen:powerpoint:create', async (data) => {
await this.createPowerPointJob(data.presentationId, data);
});
// Word events
eventBus.on('docgen:word:create', async (data) => {
await this.createWordJob(data.documentId, data);
});
// Excel events
eventBus.on('docgen:excel:create', async (data) => {
await this.createExcelJob(data.workbookId, data);
});
}
// ============================================================================
// POWERPOINT GENERATION
// ============================================================================
async createPowerPointJob(id: string, config: PowerPointConfig): Promise<DocumentJob> {
const job: DocumentJob = {
id,
type: 'powerpoint',
status: 'pending',
progress: 0,
config,
createdAt: new Date()
};
this.jobs.set(id, job);
this.processingQueue.push(id);
this.processQueue();
return job;
}
private async processPowerPoint(job: DocumentJob): Promise<void> {
const config = job.config as PowerPointConfig;
const backend = getMCPPowerPointBackend();
try {
// Initialize if needed
await backend.initialize();
// Create presentation
job.progress = 10;
await backend.createPresentation({
name: job.id,
title: config.title,
theme: config.theme || 'corporate'
});
// Calculate slides
const duration = config.duration || 15;
const slideCount = Math.ceil(duration * 1.5);
// Add title slide
job.progress = 20;
await backend.addSlide(job.id, 'title', {
title: config.title,
content: [config.topic, `Prepared for ${config.audience || 'audience'}`]
});
// Add content slides
for (let i = 0; i < slideCount - 2; i++) {
job.progress = 20 + ((i / (slideCount - 2)) * 60);
await backend.addSlide(job.id, 'content', {
title: `Section ${i + 1}`,
content: [`Key point about ${config.topic}`, 'Additional details', 'Supporting information']
});
}
// Add conclusion slide
job.progress = 85;
await backend.addSlide(job.id, 'bullet', {
title: 'Key Takeaways',
content: ['Summary point 1', 'Summary point 2', 'Summary point 3']
});
// Save presentation
job.progress = 95;
const filePath = await backend.savePresentation(job.id);
job.status = 'completed';
job.progress = 100;
job.result = { filePath };
job.completedAt = new Date();
eventBus.emit('docgen:powerpoint:completed', {
jobId: job.id,
filePath
});
} catch (error) {
job.status = 'failed';
job.error = String(error);
logger.error(`PowerPoint generation failed for ${job.id}:`, error);
eventBus.emit('docgen:powerpoint:failed', {
jobId: job.id,
error: job.error
});
}
}
// ============================================================================
// WORD GENERATION
// ============================================================================
async createWordJob(id: string, config: WordConfig): Promise<DocumentJob> {
const job: DocumentJob = {
id,
type: 'word',
status: 'pending',
progress: 0,
config,
createdAt: new Date()
};
this.jobs.set(id, job);
this.processingQueue.push(id);
this.processQueue();
return job;
}
private async processWord(job: DocumentJob): Promise<void> {
const config = job.config as WordConfig;
try {
// Simulate document generation
const sections = this.generateWordSections(config);
for (let i = 0; i < sections.length; i++) {
job.progress = Math.round((i / sections.length) * 90);
await this.delay(100); // Simulate processing time
}
job.progress = 100;
job.status = 'completed';
job.result = {
filePath: `/documents/${job.id}.docx`,
metadata: {
sections: sections.length,
wordCount: config.targetWordCount || 3000
}
};
job.completedAt = new Date();
eventBus.emit('docgen:word:completed', {
jobId: job.id,
filePath: job.result.filePath
});
} catch (error) {
job.status = 'failed';
job.error = String(error);
logger.error(`Word generation failed for ${job.id}:`, error);
eventBus.emit('docgen:word:failed', {
jobId: job.id,
error: job.error
});
}
}
private generateWordSections(config: WordConfig): string[] {
const baseSections = ['Introduction', 'Background', 'Methodology'];
const typeSections: Record<string, string[]> = {
report: ['Findings', 'Analysis', 'Discussion', 'Conclusion', 'Recommendations'],
manual: ['Getting Started', 'Core Features', 'Advanced Topics', 'Troubleshooting'],
analysis: ['Current State', 'Gap Analysis', 'Strategic Options', 'Recommendations'],
proposal: ['Problem Statement', 'Proposed Solution', 'Timeline', 'Investment'],
whitepaper: ['Industry Context', 'Technical Deep Dive', 'Case Studies', 'Future Outlook'],
sop: ['Procedure Overview', 'Step-by-Step', 'Quality Control', 'Documentation']
};
const sections = [...baseSections, ...(typeSections[config.type] || typeSections.report)];
if (config.includeExecutiveSummary) {
sections.unshift('Executive Summary');
}
return sections;
}
// ============================================================================
// EXCEL GENERATION
// ============================================================================
async createExcelJob(id: string, config: ExcelConfig): Promise<DocumentJob> {
const job: DocumentJob = {
id,
type: 'excel',
status: 'pending',
progress: 0,
config,
createdAt: new Date()
};
this.jobs.set(id, job);
this.processingQueue.push(id);
this.processQueue();
return job;
}
private async processExcel(job: DocumentJob): Promise<void> {
const config = job.config as ExcelConfig;
try {
// Simulate workbook generation
const sheets = this.generateExcelSheets(config);
for (let i = 0; i < sheets.length; i++) {
job.progress = Math.round((i / sheets.length) * 90);
await this.delay(100); // Simulate processing time
}
job.progress = 100;
job.status = 'completed';
job.result = {
filePath: `/spreadsheets/${job.id}.xlsx`,
metadata: {
sheets: sheets.length,
hasCharts: config.includeCharts,
hasFormulas: config.includeFormulas
}
};
job.completedAt = new Date();
eventBus.emit('docgen:excel:completed', {
jobId: job.id,
filePath: job.result.filePath
});
} catch (error) {
job.status = 'failed';
job.error = String(error);
logger.error(`Excel generation failed for ${job.id}:`, error);
eventBus.emit('docgen:excel:failed', {
jobId: job.id,
error: job.error
});
}
}
private generateExcelSheets(config: ExcelConfig): string[] {
const baseSheets = config.includeDashboard ? ['Dashboard'] : [];
const typeSheets: Record<string, string[]> = {
financial: ['Income Statement', 'Balance Sheet', 'Cash Flow', 'Ratios'],
statistical: ['Descriptive Stats', 'Correlation', 'Regression'],
comparison: ['Comparison Matrix', 'Variance Analysis', 'Trend Analysis'],
forecast: ['Historical Data', 'Projections', 'Scenarios'],
dashboard: ['Summary', 'KPIs', 'Trends']
};
return [...baseSheets, ...(typeSheets[config.analysisType] || typeSheets.financial), 'Raw Data'];
}
// ============================================================================
// QUEUE PROCESSING
// ============================================================================
private async processQueue(): Promise<void> {
if (this.isProcessing || this.processingQueue.length === 0) {
return;
}
this.isProcessing = true;
while (this.processingQueue.length > 0) {
const jobId = this.processingQueue.shift();
if (!jobId) continue;
const job = this.jobs.get(jobId);
if (!job) continue;
job.status = 'processing';
switch (job.type) {
case 'powerpoint':
await this.processPowerPoint(job);
break;
case 'word':
await this.processWord(job);
break;
case 'excel':
await this.processExcel(job);
break;
}
}
this.isProcessing = false;
}
// ============================================================================
// PUBLIC API
// ============================================================================
getJob(id: string): DocumentJob | undefined {
return this.jobs.get(id);
}
getJobsByType(type: 'powerpoint' | 'word' | 'excel'): DocumentJob[] {
return Array.from(this.jobs.values()).filter(j => j.type === type);
}
getAllJobs(): DocumentJob[] {
return Array.from(this.jobs.values());
}
getQueueLength(): number {
return this.processingQueue.length;
}
private delay(ms: number): Promise<void> {
return new Promise(resolve => setTimeout(resolve, ms));
}
}
// Singleton instance
let instance: DocumentGenerationService | null = null;
export function getDocumentGenerationService(): DocumentGenerationService {
if (!instance) {
instance = new DocumentGenerationService();
}
return instance;
}
export default DocumentGenerationService;
|