Module: ClassUtils
- Included in:
- ActiveOrient::API, ActiveOrient::OrientDB
- Defined in:
- lib/class_utils.rb
Instance Method Summary collapse
- #allocate_class_in_ruby(db_classname, &b) ⇒ Object
-
#classname(name_or_class) ⇒ Object
Returns a valid database-class name, nil if the class does not exists.
-
#create_class(*class_names, properties: nil, &b) ⇒ Object
create a single class and provide properties as well.
-
#create_edge_class(*name, properties: nil) ⇒ Object
Creates one or more edge-classes and allocates the provided properties to each class.
-
#create_vertex(o_class, attributes: {}) ⇒ Object
creates a vertex.
-
#create_vertex_class(*name, properties: nil) ⇒ Object
Creates one or more vertex-classes and allocates the provided properties to each class.
-
#delete_edge(*edge) ⇒ Object
Deletes the specified edges and unloads referenced vertices from the cache.
-
#delete_vertex(*vertex) ⇒ Object
Deletes the specified vertices and unloads referenced edges from the cache.
Instance Method Details
#allocate_class_in_ruby(db_classname, &b) ⇒ Object
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 |
# File 'lib/class_utils.rb', line 24 def allocate_class_in_ruby db_classname, &b # retrieve the superclass recursively unless ActiveOrient.database_classes[ db_classname ].is_a? Class s = get_db_superclass( db_classname ) superclass = if s.present? # get the superclass recusivly allocate_class_in_ruby( s, &b ) else ActiveOrient::Model end # superclass is nil, if allocate_class_in_ruby is recursivley # called and the superclass was not established if superclass.nil? ActiveOrient.database_classes[ db_classname ] = "Superclass model file missing" return end reduced_classname = superclass.namespace_prefix.present? ? db_classname.split( superclass.namespace_prefix ).last : db_classname classname = superclass.naming_convention( reduced_classname ) the_class = if !( ActiveOrient::Model.namespace.send :const_defined?, classname, false ) ActiveOrient::Model.namespace.send( :const_set, classname, Class.new( superclass ) ) elsif ActiveOrient::Model.namespace.send( :const_get, classname).ancestors.include?( ActiveOrient::Model ) ActiveOrient::Model.namespace.send( :const_get, classname) else t= ActiveOrient::Model.send :const_set, classname, Class.new( superclass ) logger.warn{ "Unable to allocate class #{classname} in Namespace #{ActiveOrient::Model.namespace}"} logger.warn{ "Allocation took place with namespace ActiveOrient::Model" } t end the_class.ref_name = db_classname keep_the_dataset = block_given? ? yield( the_class ) : true if keep_the_dataset ActiveOrient.database_classes[db_classname] = the_class the_class.ref_name = db_classname the_class # return the generated class else unless ["E","V"].include? classname # never remove Base-Classes! base_classname = the_class.to_s.split("::").last.to_sym if ActiveOrient::Model.namespace.send( :const_defined? , classname) ActiveOrient::Model.namespace.send( :remove_const, classname ) else ActiveOrient::Model.send( :remove_const, classname) end end nil # return-value end else # return previosly allocated ruby-class ActiveOrient.database_classes[db_classname] end end |
#classname(name_or_class) ⇒ Object
Returns a valid database-class name, nil if the class does not exists
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/class_utils.rb', line 8 def classname name_or_class # :nodoc: name = case name_or_class when ActiveOrient::Model name_or_class.class.ref_name when Class ActiveOrient.database_classes.key(name_or_class) else if ActiveOrient.database_classes.has_key?( name_or_class.to_s ) name_or_class else logger.progname = 'ClassUtils#Classname' logger.warn{ "Classname #{name_or_class.inspect} ://: #{name} not present in #{ActiveOrient.database}" } nil end end end |
#create_class(*class_names, properties: nil, &b) ⇒ Object
create a single class and provide properties as well
ORD.create_class( the_class_name as String or Symbol (nessesary) ,
properties: a Hash with property- and Index-descriptions (optional)) do { superclass: The name of the superclass as String or Symbol , abstract: true|false } end
or
ORD.create_class( class1, class2 ... ) { Superclass }
ORD.create_class( class ) { {superclass: the_superclass_name, abstract: true_or_false } }
ORD.create_class class
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 |
# File 'lib/class_utils.rb', line 97 def create_class( *class_names, properties: nil, &b ) if block_given? the_block = yield superclass, abstract = if the_block.is_a? Class [ the_block, nil ] elsif the_block.is_a?(String) || the_block.is_a?(Symbol) [ ActiveOrient.database_classes[the_block] , nil ] elsif the_block.is_a?(Hash) [ ActiveOrient.database_classes[the_block[:superclass]], ActiveOrient.database_classes[the_block[:abstract]] ] end end superclass = superclass.presence || ActiveOrient::Model r= class_names.map do | the_class_name | the_class_name = superclass.namespace_prefix + the_class_name.to_s ## lookup the database_classes-Hash if ActiveOrient.database_classes[the_class_name].is_a?(Class) ActiveOrient.database_classes[the_class_name] else if superclass =="" || superclass.ref_name == "" create_this_class the_class_name else create_this_class( the_class_name ) do if the_block.is_a?(Hash) the_block[:superclass] = superclass.ref_name the_block else { superclass: superclass.ref_name } end end end database_classes # update_class_array create_properties( the_name , properties ) if properties.present? allocate_class_in_ruby( the_class_name ) do |that_class| keep_the_dataset = true end end end r.size==1 ? r.pop : r # return a single class or an array of created classes end |
#create_edge_class(*name, properties: nil) ⇒ Object
Creates one or more edge-classes and allocates the provided properties to each class.
160 161 162 163 |
# File 'lib/class_utils.rb', line 160 def create_edge_class *name, properties: nil r = name.map{|n| create_class( n.to_s, properties: properties){ E } } r.size == 1 ? r.pop : r # returns the created classes as array if multible classes are provided end |
#create_vertex(o_class, attributes: {}) ⇒ Object
creates a vertex
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
# File 'lib/class_utils.rb', line 169 def create_vertex( o_class, attributes:{} ) begin response = execute(transaction: false, tolerated_error_code: /found duplicated key/) do "CREATE VERTEX #{classname(o_class)} CONTENT #{attributes.to_orient.to_json}" end if response.is_a?(Array) && response.size == 1 response.pop # RETURN_VALUE else response # return value (the normal case) end rescue ArgumentError => e puts "CreateVertex:ArgumentError " puts e.inspect end # begin end |
#create_vertex_class(*name, properties: nil) ⇒ Object
Creates one or more vertex-classes and allocates the provided properties to each class.
ORD.create_vertex_class :a
=> A
ORD.create_vertex_class :a, :b, :c
=> [A, B, C]
152 153 154 155 |
# File 'lib/class_utils.rb', line 152 def create_vertex_class *name, properties: nil r= name.map{|n| create_class( n, properties: properties){ V } } r.size == 1 ? r.pop : r end |
#delete_edge(*edge) ⇒ Object
Deletes the specified edges and unloads referenced vertices from the cache
205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'lib/class_utils.rb', line 205 def delete_edge *edge create_command = -> do { type: "cmd", language: 'sql', command: "DELETE EDGE #{edge.map{|x| x.to_orient }.join(',')} " } end edge.each do |r| [r.in, r.out].each{| e | remove_record_from_hash e} remove_record_from_hash r end execute{ create_command[] } end |
#delete_vertex(*vertex) ⇒ Object
Deletes the specified vertices and unloads referenced edges from the cache
190 191 192 193 194 195 196 197 198 199 200 |
# File 'lib/class_utils.rb', line 190 def delete_vertex *vertex create_command = -> do { type: "cmd", language: 'sql', command: "DELETE VERTEX #{vertex.map{|x| x.to_orient }.join(',')} " } end vertex.each{|v| v.edges.each{| e | remove_record_from_hash e} } execute{ create_command[] } end |