Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
06852958
Commit
06852958
authored
Sep 02, 2015
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nghttpx: Split up request class definition to dedicated files
parent
45cdb10c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
212 additions
and
123 deletions
+212
-123
src/Makefile.am
src/Makefile.am
+1
-0
src/shrpx_mruby_module.cc
src/shrpx_mruby_module.cc
+22
-123
src/shrpx_mruby_module.h
src/shrpx_mruby_module.h
+4
-0
src/shrpx_mruby_module_request.cc
src/shrpx_mruby_module_request.cc
+141
-0
src/shrpx_mruby_module_request.h
src/shrpx_mruby_module_request.h
+44
-0
No files found.
src/Makefile.am
View file @
06852958
...
...
@@ -126,6 +126,7 @@ NGHTTPX_SRCS = \
shrpx_memcached_result.h
\
shrpx_mruby.cc shrpx_mruby.h
\
shrpx_mruby_module.cc shrpx_mruby_module.h
\
shrpx_mruby_module_request.cc shrpx_mruby_module_request.h
\
buffer.h memchunk.h template.h
if
HAVE_SPDYLAY
...
...
src/shrpx_mruby_module.cc
View file @
06852958
...
...
@@ -24,140 +24,20 @@
*/
#include "shrpx_mruby_module.h"
#include <array>
#include <mruby/variable.h>
#include <mruby/string.h>
#include <mruby/hash.h>
#include <mruby/array.h>
#include "shrpx_downstream.h"
#include "shrpx_mruby.h"
#include "
util
.h"
#include "
shrpx_mruby_module_request
.h"
namespace
shrpx
{
namespace
mruby
{
namespace
{
mrb_value
create_headers_hash
(
mrb_state
*
mrb
,
const
Headers
&
headers
)
{
auto
hash
=
mrb_hash_new
(
mrb
);
for
(
auto
&
hd
:
headers
)
{
if
(
hd
.
name
.
empty
()
||
hd
.
name
[
0
]
==
':'
)
{
continue
;
}
auto
key
=
mrb_str_new
(
mrb
,
hd
.
name
.
c_str
(),
hd
.
name
.
size
());
auto
ary
=
mrb_hash_get
(
mrb
,
hash
,
key
);
if
(
mrb_nil_p
(
ary
))
{
ary
=
mrb_ary_new
(
mrb
);
mrb_hash_set
(
mrb
,
hash
,
key
,
ary
);
}
mrb_ary_push
(
mrb
,
ary
,
mrb_str_new
(
mrb
,
hd
.
value
.
c_str
(),
hd
.
value
.
size
()));
}
return
hash
;
}
}
// namespace
namespace
{
mrb_value
request_init
(
mrb_state
*
mrb
,
mrb_value
self
)
{
return
self
;
}
}
// namespace
namespace
{
mrb_value
request_get_path
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
auto
downstream
=
data
->
downstream
;
auto
&
path
=
downstream
->
get_request_path
();
return
mrb_str_new
(
mrb
,
path
.
c_str
(),
path
.
size
());
}
}
// namespace
namespace
{
mrb_value
request_set_path
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
auto
downstream
=
data
->
downstream
;
const
char
*
path
;
mrb_int
pathlen
;
mrb_get_args
(
mrb
,
"s"
,
&
path
,
&
pathlen
);
if
(
pathlen
==
0
)
{
mrb_raise
(
mrb
,
E_RUNTIME_ERROR
,
"path must not be empty string"
);
}
downstream
->
set_request_path
(
std
::
string
(
path
,
pathlen
));
return
self
;
}
}
// namespace
namespace
{
mrb_value
request_get_headers
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
auto
downstream
=
data
->
downstream
;
return
create_headers_hash
(
mrb
,
downstream
->
get_request_headers
());
}
}
// namespace
namespace
{
mrb_value
request_set_header
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
auto
downstream
=
data
->
downstream
;
mrb_value
key
,
values
;
mrb_get_args
(
mrb
,
"oo"
,
&
key
,
&
values
);
if
(
RSTRING_LEN
(
key
)
==
0
)
{
mrb_raise
(
mrb
,
E_RUNTIME_ERROR
,
"empty key is not allowed"
);
}
key
=
mrb_funcall
(
mrb
,
key
,
"downcase"
,
0
);
// making name empty will effectively delete header fields
for
(
auto
&
hd
:
downstream
->
get_request_headers
())
{
if
(
util
::
streq
(
std
::
begin
(
hd
.
name
),
hd
.
name
.
size
(),
RSTRING_PTR
(
key
),
RSTRING_LEN
(
key
)))
{
hd
.
name
=
""
;
}
}
if
(
mrb_obj_is_instance_of
(
mrb
,
values
,
mrb
->
array_class
))
{
auto
n
=
mrb_ary_len
(
mrb
,
values
);
for
(
int
i
=
0
;
i
<
n
;
++
i
)
{
auto
value
=
mrb_ary_entry
(
values
,
i
);
downstream
->
add_request_header
(
std
::
string
(
RSTRING_PTR
(
key
),
RSTRING_LEN
(
key
)),
std
::
string
(
RSTRING_PTR
(
value
),
RSTRING_LEN
(
value
)));
}
}
else
{
downstream
->
add_request_header
(
std
::
string
(
RSTRING_PTR
(
key
),
RSTRING_LEN
(
key
)),
std
::
string
(
RSTRING_PTR
(
values
),
RSTRING_LEN
(
values
)));
}
data
->
request_headers_dirty
=
true
;
return
mrb_nil_value
();
}
}
// namespace
namespace
{
void
init_request_class
(
mrb_state
*
mrb
,
RClass
*
module
)
{
auto
request_class
=
mrb_define_class_under
(
mrb
,
module
,
"Request"
,
mrb
->
object_class
);
mrb_define_method
(
mrb
,
request_class
,
"initialize"
,
request_init
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
request_class
,
"path"
,
request_get_path
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
request_class
,
"path="
,
request_set_path
,
MRB_ARGS_REQ
(
1
));
mrb_define_method
(
mrb
,
request_class
,
"headers"
,
request_get_headers
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
request_class
,
"set_header"
,
request_set_header
,
MRB_ARGS_REQ
(
2
));
}
}
// namespace
namespace
{
mrb_value
run
(
mrb_state
*
mrb
,
mrb_value
self
)
{
mrb_value
b
;
...
...
@@ -180,6 +60,25 @@ void init_module(mrb_state *mrb) {
init_request_class
(
mrb
,
module
);
}
mrb_value
create_headers_hash
(
mrb_state
*
mrb
,
const
Headers
&
headers
)
{
auto
hash
=
mrb_hash_new
(
mrb
);
for
(
auto
&
hd
:
headers
)
{
if
(
hd
.
name
.
empty
()
||
hd
.
name
[
0
]
==
':'
)
{
continue
;
}
auto
key
=
mrb_str_new
(
mrb
,
hd
.
name
.
c_str
(),
hd
.
name
.
size
());
auto
ary
=
mrb_hash_get
(
mrb
,
hash
,
key
);
if
(
mrb_nil_p
(
ary
))
{
ary
=
mrb_ary_new
(
mrb
);
mrb_hash_set
(
mrb
,
hash
,
key
,
ary
);
}
mrb_ary_push
(
mrb
,
ary
,
mrb_str_new
(
mrb
,
hd
.
value
.
c_str
(),
hd
.
value
.
size
()));
}
return
hash
;
}
}
// namespace mruby
}
// namespace shrpx
src/shrpx_mruby_module.h
View file @
06852958
...
...
@@ -29,6 +29,8 @@
#include <mruby.h>
#include "http2.h"
using
namespace
nghttp2
;
namespace
shrpx
{
...
...
@@ -37,6 +39,8 @@ namespace mruby {
void
init_module
(
mrb_state
*
mrb
);
mrb_value
create_headers_hash
(
mrb_state
*
mrb
,
const
Headers
&
headers
);
}
// namespace mruby
}
// namespace shrpx
...
...
src/shrpx_mruby_module_request.cc
0 → 100644
View file @
06852958
/*
* nghttp2 - HTTP/2 C Library
*
* Copyright (c) 2015 Tatsuhiro Tsujikawa
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "shrpx_mruby_module_request.h"
#include <mruby/variable.h>
#include <mruby/string.h>
#include <mruby/hash.h>
#include <mruby/array.h>
#include "shrpx_downstream.h"
#include "shrpx_mruby.h"
#include "shrpx_mruby_module.h"
#include "util.h"
namespace
shrpx
{
namespace
mruby
{
namespace
{
mrb_value
request_init
(
mrb_state
*
mrb
,
mrb_value
self
)
{
return
self
;
}
}
// namespace
namespace
{
mrb_value
request_get_path
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
auto
downstream
=
data
->
downstream
;
auto
&
path
=
downstream
->
get_request_path
();
return
mrb_str_new
(
mrb
,
path
.
c_str
(),
path
.
size
());
}
}
// namespace
namespace
{
mrb_value
request_set_path
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
auto
downstream
=
data
->
downstream
;
const
char
*
path
;
mrb_int
pathlen
;
mrb_get_args
(
mrb
,
"s"
,
&
path
,
&
pathlen
);
if
(
pathlen
==
0
)
{
mrb_raise
(
mrb
,
E_RUNTIME_ERROR
,
"path must not be empty string"
);
}
downstream
->
set_request_path
(
std
::
string
(
path
,
pathlen
));
return
self
;
}
}
// namespace
namespace
{
mrb_value
request_get_headers
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
auto
downstream
=
data
->
downstream
;
return
create_headers_hash
(
mrb
,
downstream
->
get_request_headers
());
}
}
// namespace
namespace
{
mrb_value
request_set_header
(
mrb_state
*
mrb
,
mrb_value
self
)
{
auto
data
=
static_cast
<
MRubyAssocData
*>
(
mrb
->
ud
);
auto
downstream
=
data
->
downstream
;
mrb_value
key
,
values
;
mrb_get_args
(
mrb
,
"oo"
,
&
key
,
&
values
);
if
(
RSTRING_LEN
(
key
)
==
0
)
{
mrb_raise
(
mrb
,
E_RUNTIME_ERROR
,
"empty key is not allowed"
);
}
key
=
mrb_funcall
(
mrb
,
key
,
"downcase"
,
0
);
// making name empty will effectively delete header fields
for
(
auto
&
hd
:
downstream
->
get_request_headers
())
{
if
(
util
::
streq
(
std
::
begin
(
hd
.
name
),
hd
.
name
.
size
(),
RSTRING_PTR
(
key
),
RSTRING_LEN
(
key
)))
{
hd
.
name
=
""
;
}
}
if
(
mrb_obj_is_instance_of
(
mrb
,
values
,
mrb
->
array_class
))
{
auto
n
=
mrb_ary_len
(
mrb
,
values
);
for
(
int
i
=
0
;
i
<
n
;
++
i
)
{
auto
value
=
mrb_ary_entry
(
values
,
i
);
downstream
->
add_request_header
(
std
::
string
(
RSTRING_PTR
(
key
),
RSTRING_LEN
(
key
)),
std
::
string
(
RSTRING_PTR
(
value
),
RSTRING_LEN
(
value
)));
}
}
else
{
downstream
->
add_request_header
(
std
::
string
(
RSTRING_PTR
(
key
),
RSTRING_LEN
(
key
)),
std
::
string
(
RSTRING_PTR
(
values
),
RSTRING_LEN
(
values
)));
}
data
->
request_headers_dirty
=
true
;
return
mrb_nil_value
();
}
}
// namespace
void
init_request_class
(
mrb_state
*
mrb
,
RClass
*
module
)
{
auto
request_class
=
mrb_define_class_under
(
mrb
,
module
,
"Request"
,
mrb
->
object_class
);
mrb_define_method
(
mrb
,
request_class
,
"initialize"
,
request_init
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
request_class
,
"path"
,
request_get_path
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
request_class
,
"path="
,
request_set_path
,
MRB_ARGS_REQ
(
1
));
mrb_define_method
(
mrb
,
request_class
,
"headers"
,
request_get_headers
,
MRB_ARGS_NONE
());
mrb_define_method
(
mrb
,
request_class
,
"set_header"
,
request_set_header
,
MRB_ARGS_REQ
(
2
));
}
}
// namespace mruby
}
// namespace shrpx
src/shrpx_mruby_module_request.h
0 → 100644
View file @
06852958
/*
* nghttp2 - HTTP/2 C Library
*
* Copyright (c) 2015 Tatsuhiro Tsujikawa
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef SHRPX_MRUBY_MODULE_REQUEST_H
#define SHRPX_MRUBY_MODULE_REQUEST_H
#include "shrpx.h"
#include <mruby.h>
using
namespace
nghttp2
;
namespace
shrpx
{
namespace
mruby
{
void
init_request_class
(
mrb_state
*
mrb
,
RClass
*
module
);
}
// namespace mruby
}
// namespace shrpx
#endif // SHRPX_MRUBY_MODULE_REQUEST_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment