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
|
/**
* @file state.h
* @brief Definitions for the states of the URL state machine.
*/
#ifndef ADA_STATE_H
#define ADA_STATE_H
#include "ada/common_defs.h"
#include <string>
namespace ada {
/**
* @see https://url.spec.whatwg.org/#url-parsing
*/
enum class state {
/**
* @see https://url.spec.whatwg.org/#authority-state
*/
AUTHORITY,
/**
* @see https://url.spec.whatwg.org/#scheme-start-state
*/
SCHEME_START,
/**
* @see https://url.spec.whatwg.org/#scheme-state
*/
SCHEME,
/**
* @see https://url.spec.whatwg.org/#host-state
*/
HOST,
/**
* @see https://url.spec.whatwg.org/#no-scheme-state
*/
NO_SCHEME,
/**
* @see https://url.spec.whatwg.org/#fragment-state
*/
FRAGMENT,
/**
* @see https://url.spec.whatwg.org/#relative-state
*/
RELATIVE_SCHEME,
/**
* @see https://url.spec.whatwg.org/#relative-slash-state
*/
RELATIVE_SLASH,
/**
* @see https://url.spec.whatwg.org/#file-state
*/
FILE,
/**
* @see https://url.spec.whatwg.org/#file-host-state
*/
FILE_HOST,
/**
* @see https://url.spec.whatwg.org/#file-slash-state
*/
FILE_SLASH,
/**
* @see https://url.spec.whatwg.org/#path-or-authority-state
*/
PATH_OR_AUTHORITY,
/**
* @see https://url.spec.whatwg.org/#special-authority-ignore-slashes-state
*/
SPECIAL_AUTHORITY_IGNORE_SLASHES,
/**
* @see https://url.spec.whatwg.org/#special-authority-slashes-state
*/
SPECIAL_AUTHORITY_SLASHES,
/**
* @see https://url.spec.whatwg.org/#special-relative-or-authority-state
*/
SPECIAL_RELATIVE_OR_AUTHORITY,
/**
* @see https://url.spec.whatwg.org/#query-state
*/
QUERY,
/**
* @see https://url.spec.whatwg.org/#path-state
*/
PATH,
/**
* @see https://url.spec.whatwg.org/#path-start-state
*/
PATH_START,
/**
* @see https://url.spec.whatwg.org/#cannot-be-a-base-url-path-state
*/
OPAQUE_PATH,
/**
* @see https://url.spec.whatwg.org/#port-state
*/
PORT,
};
/**
* Stringify a URL state machine state.
*/
ada_warn_unused std::string to_string(ada::state s);
} // namespace ada
#endif // ADA_STATE_H
|