This repository has been archived by the owner on Jan 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
foolsgold.rs
198 lines (176 loc) · 6.77 KB
/
foolsgold.rs
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
use mruby::convert::{FromMrb, RustBackedValue};
use mruby::def::{rust_data_free, ClassLike, Define, EnclosingRubyScope};
use mruby::eval::MrbEval;
use mruby::extn::core::error::{RubyException, RuntimeError};
use mruby::file::MrbFile;
use mruby::load::MrbLoadSources;
use mruby::sys::{self, DescribeState};
use mruby::value::Value;
use mruby::{Mrb, MrbError};
use std::borrow::Cow;
use std::sync::atomic::{AtomicI64, Ordering};
use uuid::Uuid;
use mruby_gems::Gem;
pub const RACKUP: &str = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/ruby/config.ru"));
static SEEN_REQUESTS_COUNTER: AtomicI64 = AtomicI64::new(0);
pub fn init(interp: &Mrb) -> Result<(), MrbError> {
FoolsGold::init(interp)
}
#[derive(RustEmbed)]
#[folder = "$CARGO_MANIFEST_DIR/ruby/lib"]
struct FoolsGold;
impl FoolsGold {
fn contents<T: AsRef<str>>(path: T) -> Result<Vec<u8>, MrbError> {
let path = path.as_ref();
Self::get(path)
.map(Cow::into_owned)
.ok_or_else(|| MrbError::SourceNotFound(path.to_owned()))
}
}
impl MrbFile for FoolsGold {
fn require(interp: Mrb) -> Result<(), MrbError> {
let module = interp.borrow_mut().def_module::<Self>("FoolsGold", None);
module.borrow().define(&interp)?;
interp.eval("require 'foolsgold/ext/stats'")?;
interp.eval("require 'foolsgold/metrics'")?;
interp.eval("require 'foolsgold/ext/counter'")?;
interp.eval("require 'foolsgold/middleware/request'")?;
Ok(())
}
}
impl Gem for FoolsGold {
fn init(interp: &Mrb) -> Result<(), MrbError> {
for source in Self::iter() {
let contents = Self::contents(&source)?;
interp.def_rb_source_file(source, contents)?;
}
// Rust and Ruby backed sources
interp.def_file_for_type::<_, Self>("foolsgold.rb")?;
interp.def_file_for_type::<_, Metrics>("foolsgold/metrics.rb")?;
// Pure Rust sources
interp.def_file_for_type::<_, RequestContext>("foolsgold/ext/stats.rb")?;
interp.def_file_for_type::<_, Counter>("foolsgold/ext/counter.rb")?;
Ok(())
}
}
struct Counter;
impl Counter {
unsafe extern "C" fn get(mrb: *mut sys::mrb_state, _slf: sys::mrb_value) -> sys::mrb_value {
let interp = unwrap_interpreter!(mrb);
// We can probably relax the ordering constraint.
let value = SEEN_REQUESTS_COUNTER.load(Ordering::SeqCst);
Value::from_mrb(&interp, value).inner()
}
unsafe extern "C" fn inc(mrb: *mut sys::mrb_state, _slf: sys::mrb_value) -> sys::mrb_value {
let interp = unwrap_interpreter!(mrb);
let total_requests = SEEN_REQUESTS_COUNTER.fetch_add(1, Ordering::SeqCst);
debug!(
"Logged request number {} in {}",
total_requests,
mrb.debug()
);
Value::from_mrb(&interp, None::<Value>).inner()
}
}
impl MrbFile for Counter {
fn require(interp: Mrb) -> Result<(), MrbError> {
// We do not need to define an initialize method since there is no need
// to store any state on the `mrb_value`. The counter state is in a
// static `AtomicI64`.
let scope = interp
.borrow()
.module_spec::<FoolsGold>()
.map(EnclosingRubyScope::module)
.ok_or_else(|| MrbError::NotDefined("FoolsGold".to_owned()))?;
// We do not need to define a free method since we are not storing any
// data in the `mrb_value`.
let spec = interp
.borrow_mut()
.def_class::<Self>("Counter", Some(scope), None);
spec.borrow_mut()
.add_method("get", Self::get, sys::mrb_args_none());
spec.borrow_mut()
.add_method("inc", Self::inc, sys::mrb_args_none());
spec.borrow().define(&interp)?;
Ok(())
}
}
struct Metrics;
impl MrbFile for Metrics {
fn require(interp: Mrb) -> Result<(), MrbError> {
let scope = interp
.borrow()
.module_spec::<FoolsGold>()
.map(EnclosingRubyScope::module)
.ok_or_else(|| MrbError::NotDefined("FoolsGold".to_owned()))?;
let spec = interp
.borrow_mut()
.def_module::<Self>("Metrics", Some(scope));
spec.borrow().define(&interp)?;
Ok(())
}
}
struct RequestContext {
trace_id: Uuid,
}
impl RequestContext {
unsafe extern "C" fn initialize(
mrb: *mut sys::mrb_state,
slf: sys::mrb_value,
) -> sys::mrb_value {
let interp = unwrap_interpreter!(mrb);
let request_id = Uuid::new_v4();
let data = Self {
trace_id: request_id,
};
info!("initialized RequestContext with trace id {}", request_id);
if let Ok(data) = data.try_into_ruby(&interp, Some(slf)) {
data.inner()
} else {
RuntimeError::raise(interp, "fatal RequestContext#new error")
}
}
unsafe extern "C" fn trace_id(mrb: *mut sys::mrb_state, slf: sys::mrb_value) -> sys::mrb_value {
let interp = unwrap_interpreter!(mrb);
let value = Value::new(&interp, slf);
if let Ok(data) = Self::try_from_ruby(&interp, &value) {
let trace_id = data.borrow().trace_id;
info!("Retrieved trace id {} in {:?}", trace_id, interp);
Value::from_mrb(&interp, trace_id.to_string()).inner()
} else {
RuntimeError::raise(interp, "fatal RequestContext#trace_id error")
}
}
unsafe extern "C" fn metrics(mrb: *mut sys::mrb_state, _slf: sys::mrb_value) -> sys::mrb_value {
let interp = unwrap_interpreter!(mrb);
let spec = interp.borrow().module_spec::<Metrics>();
let metrics = spec.and_then(|spec| spec.borrow().value(&interp));
metrics
.unwrap_or_else(|| Value::from_mrb(&interp, None::<Value>))
.inner()
}
}
impl RustBackedValue for RequestContext {}
impl MrbFile for RequestContext {
fn require(interp: Mrb) -> Result<(), MrbError> {
let spec = {
let mut api = interp.borrow_mut();
let scope = api
.module_spec::<FoolsGold>()
.map(EnclosingRubyScope::module)
.ok_or_else(|| MrbError::NotDefined("FoolsGold".to_owned()))?;
let spec =
api.def_class::<Self>("RequestContext", Some(scope), Some(rust_data_free::<Self>));
spec.borrow_mut().mrb_value_is_rust_backed(true);
spec.borrow_mut()
.add_method("initialize", Self::initialize, sys::mrb_args_none());
spec.borrow_mut()
.add_method("trace_id", Self::trace_id, sys::mrb_args_none());
spec.borrow_mut()
.add_method("metrics", Self::metrics, sys::mrb_args_none());
spec
};
spec.borrow().define(&interp)?;
Ok(())
}
}