-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadhoc_extract.rb
executable file
·206 lines (164 loc) · 4.79 KB
/
adhoc_extract.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
#!/usr/bin/env ruby
require 'active_record'
wurzel = $RAILS_ROOT || File.dirname(File.dirname(File.dirname(__FILE__)))
require wurzel + '/app/models/messpunkt'
require wurzel + '/app/models/einheit'
require wurzel + '/app/models/quelle'
require wurzel + '/config/initializers/inflections'
$logging = false
if $loggging
log_dateiname=wurzel + "/log/extract_#{Time.now.strftime('%Y%m%d-%H%M')}.log"
$prot_datei = File.open(log_dateiname, "w")
puts "Werte-Aufnehmer gestartet
Logdatei: #{log_dateiname}"
end
$real_stdout = $stdout
if $loggging
$stdout = $prot_datei
$stderr = $prot_datei
end
class Float
alias :altes_to_s :to_s
def to_s
altes_to_s.gsub(",", ".")
end
end
quelle_id = 7
von = 1384841213
bis = 1384927612
punkte = Messpunkt.find(:all, {
:conditions => ["(quelle_id = ?) and (sekzeit >= ?) and (sekzeit <= ?)", quelle_id, von.to_i, bis.to_i],
:order => :sekzeit
})
File.open("#{wurzel}/out/kw-werte_ab#{von}.csv", "w") do |ausg_datei|
punkte.each do |mp|
ausg_datei.puts "#{mp.quelle_id}, #{mp.sekzeit}, #{mp.wert}, #{(mp.wert*100).to_i}, #{'%4x'%(mp.wert*100).to_i}"
$real_stdout.print "."
end
end
puts "\nFertig"
exit
class WerteNotierer
def initialize(dyn_klasse)
@dyn_klasse = dyn_klasse
@dyn_klassenname = dyn_klasse.name
# @dyn_klasse.establish_connection(Rails.configuration.database_configuration["messpunkte_sqlite"])
p "Verbindung zur Datenbank hergestellt."
p @dyn_klasse.connection
=begin
conn =
{
:adapter => "sqlite3",
:database => "db/klarwerk_dev.sqlite3",
:pool => 5,
:timeout => 5000,
}
=end
# Quelle.establish_connection(conn)
# Einheit.establish_connection(conn)
end
attr_reader :stopsignal_erhalten
def init_einleser
@bei_werteingang = proc do |*args|
begin
adr, wert = *args
mpunkt = Object.const_get(@dyn_klassenname).new
zeit = Time.now
mpunkt.sekzeit = zeit.to_i
#!!db!!
mpunkt.quelle = Quelle.auto_quelle(adr, wert)
mpunkt.zahl = wert
if not mpunkt.save then
$prot_datei.puts "!" * 40
$prot_datei.puts "nicht gesp:" + args.inspect
end
$stdout.flush
rescue
$prot_datei.puts [zeit.to_i, zeit]
$prot_datei.puts $!
$prot_datei.puts $!.backtrace.first(6)
$stdout.flush
end
end
eigener_haupt_ordner = File.dirname(File.dirname(__FILE__))
# File.open(File.expand_path("test/fixtures/werte.txt", eigener_haupt_ordner))
# loop do
begin
1_000_000_000_000.times do |i|
puts
print "Zeile #{i}: "
w = $socket_listener.gets
puts w.inspect
#next if i < 10
break if w.nil?
adresse = w.split[4].chomp(":")
werte = begin w.split[5,6] || [-17] rescue [42] end
#print "Werte >>#{werte.inspect}<<"
#puts
adresse = adresse.split("/").zip([2,1,3]).map do |teil_adr, stellen|
"%0#{stellen}d" % teil_adr.to_i
end.join("/")
#adr_teile[2] = ("00" + adr_teile[2])[-3..-1]
#adresse = adr_teile.join("/")
print adresse + ": "
print werte.join("").to_i(16).to_s + " "
float_wert = werte.join("").to_i(16).to_f/100
@bei_werteingang.call(adresse, float_wert)
print float_wert
end
rescue
puts "Abbruch #{$!}"
$prot_datei.puts $!
$prot_datei.puts $!.backtrace.first(16)
end
end
def stop
$prot_datei.puts :beginne_stop
@bei_werteingang = proc {|*args| p :nix}
if @fiavis_event then
@fiavis_event.on_event('NewValue') do |*a| p :nothing end
#@fiavis_event = nil
end
#@fiavis = nil
@stopsignal_erhalten = true
$prot_datei.puts :ende_stop
end
def start
$prot_datei.puts :beginne_start
@stopsignal_erhalten = false
init_einleser
#Thread.new do
begin
$prot_datei.puts :vor_loop
# loop do
# begin
# #WIN32OLE_EVENT.message_loop
# #$prot_datei.puts :vor_sleep
# sleep 0.1
# #$prot_datei.puts :nach_sleep
# #$prot_datei.print "_"
# $stdout.flush
# if @stopsignal_erhalten
# break
# $prot_datei.puts :break
# end
# rescue
# $prot_datei.puts( ("!"*40 + "\n") * 3)
# $prot_datei.puts $!
# $prot_datei.puts $!.backtrace
# $prot_datei.puts( ("!"*40 + "\n") * 3)
# $stdout.flush
# end
# end
#Thread.join
end
sleep 0.3
$prot_datei.puts :ende_start
end
def aufraeumen
daten_behalten_ab = Time.now.to_i - 4.months
@dyn_klasse.connection.execute("DELETE FROM punkte WHERE punkte.sekzeit > #{daten_behalten_ab}")
end
end
wn = WerteNotierer.new(Messpunkt)
wn.start