KItinerary

httpresponseprocessor.h
1/*
2 SPDX-FileCopyrightText: 2023 Volker Krause <vkrause@kde.org>
3 SPDX-License-Identifier: LGPL-2.0-or-later
4*/
5
6#ifndef KITINERARY_HTTPRESPONSEPROCESSOR_H
7#define KITINERARY_HTTPRESPONSEPROCESSOR_H
8
9#include <KItinerary/ExtractorDocumentProcessor>
10
11namespace KItinerary {
12
13/** Processor for HTTP responses. */
15{
16public:
17 void expandNode(ExtractorDocumentNode &node, const ExtractorEngine *engine) const override;
18};
19
20/** Processor for entire HAR archives.
21 * This is only relevant for development tooling.
22 */
24{
25public:
26 bool canHandleData(const QByteArray & encodedData, QStringView fileName) const override;
27 ExtractorDocumentNode createNodeFromData(const QByteArray &encodedData) const override;
28 void expandNode(ExtractorDocumentNode & node, const ExtractorEngine * engine) const override;
29};
30
31}
32
33#endif // KITINERARY_HTTPRESPONSEPROCESSOR_H
A node in the extracted document object tree.
Abstract base class of a document type processor.
Semantic data extraction engine.
Processor for entire HAR archives.
bool canHandleData(const QByteArray &encodedData, QStringView fileName) const override
Fast check whether the given encoded data can possibly be processed by this instance.
void expandNode(ExtractorDocumentNode &node, const ExtractorEngine *engine) const override
Create child nodes for node, as far as that's necessary for this document type.
ExtractorDocumentNode createNodeFromData(const QByteArray &encodedData) const override
Create a document node from raw data.
Processor for HTTP responses.
void expandNode(ExtractorDocumentNode &node, const ExtractorEngine *engine) const override
Create child nodes for node, as far as that's necessary for this document type.
Classes for reservation/travel data models, data extraction and data augmentation.
Definition berelement.h:17
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 3 2024 11:45:33 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.