2015-02-11 16:18:18 +11:00
|
|
|
/*
|
2019-03-19 16:00:44 +11:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2015-02-11 16:18:18 +11:00
|
|
|
*
|
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
2015-02-09 17:43:24 +11:00
|
|
|
#include "uri.hpp"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <iostream>
|
|
|
|
|
2018-05-03 18:32:08 +10:00
|
|
|
// We generate some really old style C code via ragel here, so we have to
|
|
|
|
// disable some noisy warnings (doubly so given -Werror)
|
|
|
|
#pragma GCC diagnostic ignored "-Wold-style-cast"
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
using cruft::uri;
|
2015-02-09 17:43:24 +11:00
|
|
|
|
2017-12-26 17:33:06 +11:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-02-09 17:43:24 +11:00
|
|
|
%%{
|
2017-12-20 12:45:05 +11:00
|
|
|
machine impl;
|
2015-02-09 17:43:24 +11:00
|
|
|
|
2015-02-11 16:41:35 +11:00
|
|
|
action trace { if (0) std::cerr << *p; }
|
2015-02-09 17:43:24 +11:00
|
|
|
action success {__success = true; }
|
|
|
|
action failure {__success = false; }
|
|
|
|
|
2017-12-15 18:57:10 +11:00
|
|
|
action scheme_begin { m_views[SCHEME] = { p, p }; }
|
2015-02-11 16:41:09 +11:00
|
|
|
action scheme_end { m_views[SCHEME] = { m_views[SCHEME].begin (), p }; }
|
2015-02-09 17:43:24 +11:00
|
|
|
|
2017-12-15 18:57:10 +11:00
|
|
|
action hier_begin { m_views[HIERARCHICAL] = { p, p }; }
|
|
|
|
action hier_end { m_views[HIERARCHICAL] = { m_views[HIERARCHICAL].begin (), p }; }
|
|
|
|
|
|
|
|
action user_begin { m_views[USER] = { p, p }; }
|
|
|
|
action user_end { m_views[USER] = { m_views[USER].begin (), p }; }
|
|
|
|
|
|
|
|
action host_begin { m_views[HOST] = { p, p }; }
|
|
|
|
action host_end { m_views[HOST] = { m_views[HOST].begin (), p }; }
|
|
|
|
|
|
|
|
action port_begin { m_views[PORT] = { p, p }; }
|
|
|
|
action port_end { m_views[PORT] = { m_views[PORT].begin (), p }; }
|
|
|
|
|
|
|
|
action authority_begin { m_views[AUTHORITY] = { p, p}; }
|
2015-02-11 16:41:09 +11:00
|
|
|
action authority_end { m_views[AUTHORITY] = { m_views[AUTHORITY].begin (), p }; }
|
2015-02-09 17:43:24 +11:00
|
|
|
|
2017-12-15 18:57:10 +11:00
|
|
|
action path_begin { m_views[PATH] = { p, p}; }
|
2015-02-11 16:41:09 +11:00
|
|
|
action path_end { m_views[PATH] = { m_views[PATH].begin (), p }; }
|
2015-02-09 17:43:24 +11:00
|
|
|
|
2017-12-15 18:57:10 +11:00
|
|
|
action query_begin { m_views[QUERY] = { p, p}; }
|
2015-02-11 16:41:09 +11:00
|
|
|
action query_end { m_views[QUERY] = { m_views[QUERY].begin (), p }; }
|
2015-02-09 17:43:24 +11:00
|
|
|
|
2017-12-15 18:57:10 +11:00
|
|
|
action fragment_begin { m_views[FRAGMENT] = { p, p}; }
|
2015-02-11 16:41:09 +11:00
|
|
|
action fragment_end { m_views[FRAGMENT] = { m_views[FRAGMENT].begin (), p }; }
|
2015-02-09 17:43:24 +11:00
|
|
|
|
2017-12-20 12:45:05 +11:00
|
|
|
action uri_begin {}
|
|
|
|
action uri_end {}
|
|
|
|
|
|
|
|
include rfc3986 'rfc3986.rl';
|
|
|
|
|
2017-12-26 17:28:00 +11:00
|
|
|
impl := URI >uri_begin %uri_end
|
2015-02-09 17:43:24 +11:00
|
|
|
%success
|
|
|
|
$!failure
|
|
|
|
$trace;
|
|
|
|
|
|
|
|
write data;
|
|
|
|
}%%
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-08-05 14:42:02 +10:00
|
|
|
cruft::uri::uri (std::string &&_value):
|
2017-12-15 18:57:10 +11:00
|
|
|
m_views {
|
2021-12-14 12:13:50 +11:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr
|
2017-12-15 18:57:10 +11:00
|
|
|
},
|
2015-02-09 17:43:24 +11:00
|
|
|
m_value (std::move (_value))
|
|
|
|
{
|
|
|
|
const char *p = m_value.data ();
|
|
|
|
const char *pe = m_value.data () + m_value.size ();
|
|
|
|
const char *eof = pe;
|
|
|
|
|
|
|
|
bool __success = false;
|
|
|
|
|
|
|
|
int cs;
|
|
|
|
|
|
|
|
%%write init;
|
|
|
|
%%write exec;
|
|
|
|
|
|
|
|
if (!__success)
|
|
|
|
throw parse_error ("invalid uri");
|
2021-12-13 16:55:01 +11:00
|
|
|
}
|