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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb09e609fc85c6ee5944802fc722aad61fea684980dd9bb31e076a8a3a9c898d
4
- data.tar.gz: 74438aa9e3f63e36183857d15a1a9b7434107aa66b27e951c494cb59a51f4bdd
3
+ metadata.gz: b86aef2212da331d45efd4c2d32352647c876f25f4379772496398c3880c2af6
4
+ data.tar.gz: 8def3789e08b6f41a3a7c72df81f4e967f95e8e37eb4412d6578ba66a943b654
5
5
  SHA512:
6
- metadata.gz: 7e76f03bae73c853c82c13e6f6358529748435c669d47b2581fe269908b69972ae8fad5ee1e8bcb13de6a3868f94257cc55ca44d035a600966692cb8cfef8708
7
- data.tar.gz: 7bef9aa465dbc4f2a73ba129a2c86037e8d2baa66aa7f98b8a836a7fd7b4872d00b8f3f2d311ec2d0105fd7664ba3556d4cb722eee7f4327086ff3b0e09d7124
6
+ metadata.gz: d6787537af7b26e954b46fca5ab1bdb3787bf6d0b411462a3dc866eb604328dc881ccb65b1b177957d47be721a53ec63cf5a598a64293c665a228e5dcf6acdc6
7
+ data.tar.gz: 1648de4591f2f127ad829e8e0a490ef6600f1fae0467534d9104286978b50c04cc3a4ff1be382fc2ffc7390e9822e026c2987f16704a047a14778aaa75f16545
@@ -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 instance_variable_name
14
- "@#{name}"
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
- if argument.start_with? "@"
48
- meta, name = argument.to_s.split "_", 2
49
- meta.to_s.each_char do |char|
50
- case char
51
- when "r", "R" then reader = true
52
- when "w", "W" then writer = true
53
- when "t", "T" then tester = true
54
- when "i", "I" then instance_variable = true
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
- else
68
+ end
69
+ case name_start
70
+ when 0
71
+ initialize_argument = instance_variable = reader = writer = true
58
72
  name = argument
59
- reader = writer = instance_variable = true
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
- raise "Invalid model field #{argument}" unless name =~ /\w+/
62
- ModelField.new name.to_sym, instance_variable, writer, reader, tester
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
@@ -22,8 +22,8 @@ module Modeling
22
22
  end
23
23
  end
24
24
 
25
- def self.model_arguments fields, *a, **na
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
- model_arguments = Modeling.model_arguments model_fields, *a, **na
37
- super_initialize = proc do |*asc, **nasc, &bsc|
38
- if asc.empty? && nasc.empty? && !bsc
39
- super(*(a[model_arguments.size..] || []), **na.except(*model_arguments.keys), &b)
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(*asc, **nasc, &bsc)
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, model_arguments[field.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, **model_arguments, &initializer
50
+ instance_exec super_initialize, **initialize_arguments, &initializer
51
51
  else
52
- super_initialize.call
52
+ super(*(a[initialize_arguments.size..] || []), **na.except(*initialize_arguments.keys), &b)
53
53
  end
54
54
  end
55
55
  end
@@ -1,3 +1,3 @@
1
1
  module Modeling
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
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-11 00:00:00.000000000 Z
11
+ date: 2024-12-04 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: " Simplify common class definition by encoding attributes with their
14
- access modes.\n"
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: []