mirror of
https://github.com/openappsec/openappsec.git
synced 2025-11-18 02:00:38 +03:00
Jan_31_2024-Dev
This commit is contained in:
45
core/messaging/include/interfaces/i_messaging_buffer.h
Normal file
45
core/messaging/include/interfaces/i_messaging_buffer.h
Normal file
@@ -0,0 +1,45 @@
|
||||
// Copyright (C) 2022 Check Point Software Technologies Ltd. All rights reserved.
|
||||
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifndef __I_MESSAGING_BUFFER_H__
|
||||
#define __I_MESSAGING_BUFFER_H__
|
||||
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
|
||||
#include "i_messaging.h"
|
||||
|
||||
#include "../buffered_message.h"
|
||||
#include "cereal/archives/json.hpp"
|
||||
#include "cereal/types/string.hpp"
|
||||
#include "maybe_res.h"
|
||||
|
||||
class I_MessageBuffer
|
||||
{
|
||||
public:
|
||||
virtual void pushNewBufferedMessage(
|
||||
const std::string &body,
|
||||
HTTPMethod method,
|
||||
const std::string &uri,
|
||||
MessageCategory category,
|
||||
MessageMetadata message_metadata,
|
||||
bool force_immediate_writing
|
||||
) = 0;
|
||||
|
||||
virtual Maybe<BufferedMessage> peekMessage() = 0;
|
||||
virtual void popMessage() = 0;
|
||||
virtual void cleanBuffer() = 0;
|
||||
};
|
||||
|
||||
#endif // __I_MESSAGING_BUFFER_H__
|
||||
42
core/messaging/include/interfaces/i_messaging_connection.h
Normal file
42
core/messaging/include/interfaces/i_messaging_connection.h
Normal file
@@ -0,0 +1,42 @@
|
||||
// Copyright (C) 2022 Check Point Software Technologies Ltd. All rights reserved.
|
||||
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifndef __I_MESSAGING_CONNECTION_H__
|
||||
#define __I_MESSAGING_CONNECTION_H__
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
#include "http_request.h"
|
||||
#include "i_messaging.h"
|
||||
|
||||
#include "connection.h"
|
||||
#include "maybe_res.h"
|
||||
|
||||
class I_MessagingConnection
|
||||
{
|
||||
public:
|
||||
virtual Maybe<Connection> establishConnection(const MessageMetadata &metadata, MessageCategory category) = 0;
|
||||
|
||||
virtual Maybe<Connection> getPersistentConnection(
|
||||
const std::string &host_name, uint16_t port, MessageCategory category
|
||||
) = 0;
|
||||
|
||||
virtual Maybe<Connection> getFogConnectionByCategory(MessageCategory category) = 0;
|
||||
virtual Maybe<HTTPResponse, HTTPResponse> sendRequest(Connection &connection, HTTPRequest request) = 0;
|
||||
|
||||
protected:
|
||||
virtual ~I_MessagingConnection() {}
|
||||
};
|
||||
|
||||
#endif // __I_MESSAGING_CONNECTION_H__
|
||||
Reference in New Issue
Block a user