mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
1682f0b760
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
40 lines
671 B
C++
40 lines
671 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Function.h>
|
|
#include <AK/String.h>
|
|
#include <AK/StringView.h>
|
|
#include <AK/Types.h>
|
|
|
|
#include "Command.h"
|
|
|
|
#define IAC 0xff
|
|
|
|
class Parser {
|
|
public:
|
|
Function<void(const Command&)> on_command;
|
|
Function<void(const StringView&)> on_data;
|
|
Function<void()> on_error;
|
|
|
|
void write(const StringView&);
|
|
|
|
protected:
|
|
enum State {
|
|
Free,
|
|
ReadCommand,
|
|
ReadSubcommand,
|
|
Error,
|
|
};
|
|
|
|
void write(const String& str);
|
|
|
|
private:
|
|
State m_state { State::Free };
|
|
u8 m_command { 0 };
|
|
};
|