Sha256: ff86251b5faedd781d74793b312fd490dfa51626f64137cd3f10f28283474c73
Contents?: true
Size: 1.66 KB
Versions: 1
Compression:
Stored size: 1.66 KB
Contents
require_relative "../lib/dbacrecord" # テスト用クラス class Dbsetup def initialize(connect_time) @connect_time = connect_time @ct = <%= mod_name %>::Countdatetime.create(countdatetime: @connect_time) @hs_by_notebook = {} @hs_by_id = {} end =begin # 指定stack(文字列)にノートブック(文字列)、ノートブック数、タグ数を追加 def add( stack , notebook, count, tag_count ) ennblist = @hs_by_notebook[notebook] unless ennblist cur_ennblist = Currentennblist.where( notebook: notebook ).limit(1) if cur_ennblist.size == 0 begin ennblist = Ennblist.create( stack: stack, notebook: notebook , count: count, tag_count: tag_count , start_datetime: @register_time ) evnb = Evnb.create( time_id: @ct.id , ennb_id: ennblist.id ) rescue => ex p ex.class p ex.message pp ex.backtrace ennblist = nil evnb = nil end else current_ennblist = cur_ennblist.first.ennblist hs = {:stack => stack, :count => count , :tag_count => tag_count } value_hs = hs.reduce({}){ |hsx,item| if current_ennblist[ item[0] ] != item[1] hsx[ item[0] ] = item[1] end hsx } if value_hs.size > 0 if value_hs.all? { |item| item[1] != nil } current_ennblist.update(value_hs) end end end else # ignore this case. end if ennblist @hs_by_notebook[notebook] = ennblist @hs_by_id[ennblist.id] = ennblist end ennblist end =end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
arxutils_sqlite3-0.1.58 | lib/template/acrecord/db_scheme/dbsetup.tmpl |