-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy path12-globally-frozen-locally-mutable.rb
177 lines (144 loc) · 3.12 KB
/
12-globally-frozen-locally-mutable.rb
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
class Libry
class Book; end
class User; end
PLUGINS = {}
def self.register_plugin(symbol, mod)
PLUGINS[symbol] = mod
end
def self.inherited(subclass)
subclass.const_set(:Book, Class.new(self::Book))
subclass.const_set(:User, Class.new(self::User))
end
module Plugins
module Core
module BookMethods
attr_accessor :checked_out_to
def initialize(name)
@name = name
end
def checkin
checked_out_to.books.delete(self)
@checked_out_to = nil
end
end
module UserMethods
attr_accessor :books
def initialize(id)
@id = id
@books = []
end
def checkout(book)
book.checked_out_to = self
@books << book
end
end
end
end
def self.plugin(mod, ...)
if mod.is_a?(Symbol)
# Skip in this case as all plugins are in this file
#require "libry/plugins/#{mod}"
mod = PLUGINS.fetch(mod)
end
if mod.respond_to?(:before_load)
mod.before_load(self, ...)
end
if defined?(mod::BookMethods)
self::Book.include(mod::BookMethods)
end
if defined?(mod::UserMethods)
self::User.include(mod::UserMethods)
end
if defined?(mod::BookClassMethods)
self::Book.extend(mod::BookClassMethods)
end
if defined?(mod::UserClassMethods)
self::User.extend(mod::UserClassMethods)
end
if mod.respond_to?(:after_load)
mod.after_load(self, ...)
end
end
plugin(Plugins::Core)
end
class Libry
module Plugins
module Cursing
module BookMethods
def curse!
@cursed = true
end
def checked_out_to=(user)
user.curse! if @cursed
super
end
end
module UserMethods
def curse!
@cursed = true
end
def checkout(book)
super unless @cursed
end
end
Libry.register_plugin(:cursing, self)
end
end
end
module Libry::Plugins::Tracking
def self.after_load(libry, &block)
[libry::Book, libry::User].each do |klass|
klass.instance_exec do
@tracked ||= []
@callback = block
end
end
end
module TrackingMethods
attr_reader :tracked
def new(*)
obj = super
@tracked << obj
@callback&.(obj)
obj
end
def inherited(subclass)
callback = @callback
subclass.instance_exec do
@tracked = []
@callback = callback
end
end
end
BookClassMethods = TrackingMethods
UserClassMethods = TrackingMethods
Libry.register_plugin(:tracking, self)
end
module Libry::Plugins::AutoCurse
def self.before_load(libry)
libry.plugin(:cursing)
end
module BookMethods
def initialize(*)
super
curse!
end
end
module UserMethods
def curse!
super
books.each(&:curse!)
end
end
Libry.register_plugin(:auto_curse, self)
end
class MyLibry < Libry
# application setup/plugin loading
plugin(:tracking)
Book.freeze
User.freeze
freeze
end
user = MyLibry::User.new(1)
user.freeze
user.checkout(MyLibry::Book.new('b'))