modeling 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/modeling/model_field.rb +34 -17
- data/lib/modeling/module.rb +10 -10
- data/lib/modeling/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b86aef2212da331d45efd4c2d32352647c876f25f4379772496398c3880c2af6
|
4
|
+
data.tar.gz: 8def3789e08b6f41a3a7c72df81f4e967f95e8e37eb4412d6578ba66a943b654
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6787537af7b26e954b46fca5ab1bdb3787bf6d0b411462a3dc866eb604328dc881ccb65b1b177957d47be721a53ec63cf5a598a64293c665a228e5dcf6acdc6
|
7
|
+
data.tar.gz: 1648de4591f2f127ad829e8e0a490ef6600f1fae0467534d9104286978b50c04cc3a4ff1be382fc2ffc7390e9822e026c2987f16704a047a14778aaa75f16545
|
data/lib/modeling/model_field.rb
CHANGED
@@ -1,17 +1,23 @@
|
|
1
1
|
module Modeling
|
2
|
+
class Exception < ::Exception
|
3
|
+
end
|
4
|
+
|
2
5
|
class ModelField
|
3
|
-
def initialize name, instance_variable, writer, reader, tester
|
6
|
+
def initialize name, initialize_argument, instance_variable, writer, reader, tester
|
4
7
|
@name = name
|
8
|
+
@initialize_argument = initialize_argument
|
5
9
|
@instance_variable = instance_variable
|
6
10
|
@writer = writer
|
7
11
|
@reader = reader
|
8
12
|
@tester = tester
|
13
|
+
@instance_variable_name = "@#{name}".to_sym
|
9
14
|
end
|
10
15
|
|
11
16
|
attr :name
|
17
|
+
attr :instance_variable_name
|
12
18
|
|
13
|
-
def
|
14
|
-
|
19
|
+
def initialize_argument?
|
20
|
+
@initialize_argument
|
15
21
|
end
|
16
22
|
|
17
23
|
def instance_variable?
|
@@ -38,28 +44,39 @@ module Modeling
|
|
38
44
|
when Symbol, String
|
39
45
|
parse_model_field argument
|
40
46
|
else
|
41
|
-
raise "Unsupported argument #{argument} of #{argument.class} class."
|
47
|
+
raise Exception.new "Unsupported argument #{argument} of #{argument.class} class."
|
42
48
|
end
|
43
49
|
end
|
44
50
|
|
45
51
|
def parse_model_field argument
|
46
|
-
instance_variable = reader = writer = tester = false
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
52
|
+
initialize_argument = instance_variable = reader = writer = tester = false
|
53
|
+
name_start = (0...argument.length).each do |i|
|
54
|
+
case a = argument[i]
|
55
|
+
when "R" then reader = true
|
56
|
+
when "W" then writer = true
|
57
|
+
when "T" then tester = true
|
58
|
+
when "V" then instance_variable = true
|
59
|
+
when "A" then initialize_argument = true
|
60
|
+
when "@" then instance_variable = initialize_argument = true
|
61
|
+
when "_" then break i + 1
|
62
|
+
else
|
63
|
+
if a.upcase != a
|
64
|
+
break i
|
65
|
+
else raise Exception.new "Invalid model field '#{argument}' - unknown option '#{a}'"
|
55
66
|
end
|
56
67
|
end
|
57
|
-
|
68
|
+
end
|
69
|
+
case name_start
|
70
|
+
when 0
|
71
|
+
initialize_argument = instance_variable = reader = writer = true
|
58
72
|
name = argument
|
59
|
-
|
73
|
+
when Integer
|
74
|
+
name = argument[name_start..]
|
75
|
+
else raise Exception.new "Invalid model field '#{argument}' - field name is missing"
|
60
76
|
end
|
61
|
-
|
62
|
-
|
77
|
+
|
78
|
+
raise Exception.new "Invalid model field #{argument} - field name '#{name}' is invalid" unless name =~ /\w+/
|
79
|
+
ModelField.new name.to_sym, initialize_argument, instance_variable, writer, reader, tester
|
63
80
|
end
|
64
81
|
end
|
65
82
|
end
|
data/lib/modeling/module.rb
CHANGED
@@ -22,8 +22,8 @@ module Modeling
|
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
25
|
-
def self.
|
26
|
-
fields.zip(a).map do |field, arg|
|
25
|
+
def self.initialize_arguments fields, *a, **na
|
26
|
+
fields.filter(&:initialize_argument?).zip(a).map do |field, arg|
|
27
27
|
name = field.name
|
28
28
|
value = na.key?(name) ? na[name] : arg
|
29
29
|
[name, value]
|
@@ -33,23 +33,23 @@ module Modeling
|
|
33
33
|
def define_initialize initializer_class, &initializer
|
34
34
|
define_method :initialize do |*a, **na, &b|
|
35
35
|
model_fields = initializer_class.model_fields
|
36
|
-
|
37
|
-
super_initialize = proc do |*
|
38
|
-
if
|
39
|
-
super(*(a[
|
36
|
+
initialize_arguments = Modeling.initialize_arguments model_fields, *a, **na
|
37
|
+
super_initialize = proc do |*as, **nas, &bs|
|
38
|
+
if as.empty? && nas.empty? && !bs
|
39
|
+
super(*(a[initialize_arguments.size..] || []), **na.except(*initialize_arguments.keys), &b)
|
40
40
|
else
|
41
|
-
super(*
|
41
|
+
super(*as, **nas, &bs)
|
42
42
|
end
|
43
43
|
end
|
44
44
|
model_fields.each do |field|
|
45
45
|
if field.instance_variable?
|
46
|
-
instance_variable_set field.instance_variable_name,
|
46
|
+
instance_variable_set field.instance_variable_name, initialize_arguments[field.name]
|
47
47
|
end
|
48
48
|
end
|
49
49
|
if initializer
|
50
|
-
instance_exec super_initialize, **
|
50
|
+
instance_exec super_initialize, **initialize_arguments, &initializer
|
51
51
|
else
|
52
|
-
|
52
|
+
super(*(a[initialize_arguments.size..] || []), **na.except(*initialize_arguments.keys), &b)
|
53
53
|
end
|
54
54
|
end
|
55
55
|
end
|
data/lib/modeling/version.rb
CHANGED
metadata
CHANGED
@@ -1,17 +1,19 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: modeling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Łukasz Pomietło
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: "
|
14
|
-
access
|
13
|
+
description: "Adds the ability to quickly model classes. Definitions of instance variables
|
14
|
+
and access methods are reduced to one line. \nCreating an instance of the modeled
|
15
|
+
class is significantly slower (~20x), so its use for classes whose instances are
|
16
|
+
created frequently is not recommended.\n"
|
15
17
|
email: oficjalnyadreslukasza@gmail.com
|
16
18
|
executables: []
|
17
19
|
extensions: []
|