]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - webapp/backend/fireinfo.py
fireinfo: Remove x86_64 from release string
[people/shoehn/ipfire.org.git] / webapp / backend / fireinfo.py
CommitLineData
66862195
MT
1#!/usr/bin/python
2
3from __future__ import division
4
5import datetime
6import hwdata
7import logging
8import re
9
10import util
11from misc import Object
12
13N_ = lambda x: x
14
15CPU_VENDORS = {
16 "AMDisbetter!" : "AMD",
17 "AuthenticAMD" : "AMD",
18 "CentaurHauls" : "VIA",
19 "CyrixInstead" : "Cyrix",
20 "GenuineIntel" : "Intel",
21 "TransmetaCPU" : "Transmeta",
22 "GenuineTMx86" : "Transmeta",
23 "Geode by NSC" : "NSC",
24 "NexGenDriven" : "NexGen",
25 "RiseRiseRise" : "Rise",
26 "SiS SiS SiS" : "SiS",
27 "SiS SiS SiS " : "SiS",
28 "UMC UMC UMC " : "UMC",
29 "VIA VIA VIA " : "VIA",
30 "Vortex86 SoC" : "Vortex86",
31}
32
33CPU_STRINGS = (
05bd7298
MT
34 ### AMD ###
35 # APU
3c855735 36 (r"AMD (Sempron)\(tm\) (\d+) APU with Radeon\(tm\) R\d+", r"AMD \1 \2 APU"),
c85ebbc4 37 (r"AMD ([\w\-]+) APU with Radeon\(tm\) HD Graphics", r"AMD \1 APU"),
74638712 38 (r"AMD ([\w\-]+) Radeon R\d+, \d+ Compute Cores \d+C\+\d+G", r"AMD \1 APU"),
05bd7298
MT
39 # Athlon
40 (r"AMD Athlon.* II X2 ([a-z0-9]+).*", r"AMD Athlon X2 \1"),
41 (r"AMD Athlon\(tm\) 64 Processor (\w+)", r"AMD Athlon64 \1"),
42 (r"AMD Athlon\(tm\) 64 X2 Dual Core Processor (\w+)", r"AMD Athlon64 X2 \1"),
66862195
MT
43 (r"(AMD Athlon).*(XP).*", r"\1 \2"),
44 (r"(AMD Phenom).* ([0-9]+) .*", r"\1 \2"),
45 (r"(AMD Phenom).*", r"\1"),
46 (r"(AMD Sempron).*", r"\1"),
05bd7298
MT
47 # Geode
48 (r"Geode\(TM\) Integrated Processor by AMD PCS", r"AMD Geode"),
66862195 49 (r"(Geode).*", r"\1"),
74638712
MT
50 # Mobile
51 (r"Mobile AMD (Athlon|Sempron)\(tm\) Processor (\d+\+?)", r"AMD \1-M \2"),
66862195
MT
52
53 # Intel
54 (r"Intel\(R\) (Atom|Celeron).*CPU\s*([A-Z0-9]+) .*", r"Intel \1 \2"),
55 (r"(Intel).*(Celeron).*", r"\1 \2"),
05bd7298
MT
56 (r"Intel\(R\)? Core\(TM\)?2 Duo *CPU .* ([A-Z0-9]+) .*", r"Intel C2D \1"),
57 (r"Intel\(R\)? Core\(TM\)?2 Duo CPU (\w+)", r"Intel C2D \1"),
58 (r"Intel\(R\)? Core\(TM\)?2 CPU .* ([A-Z0-9]+) .*", r"Intel C2 \1"),
59 (r"Intel\(R\)? Core\(TM\)?2 Quad *CPU .* ([A-Z0-9]+) .*", r"Intel C2Q \1"),
60 (r"Intel\(R\)? Core\(TM\)? (i[753]\-\w+) CPU", r"Intel Core \1"),
61 (r"Intel\(R\)? Xeon\(R\)? CPU (\w+) (0|v\d+)", r"Intel Xeon \1 \2"),
62 (r"Intel\(R\)? Xeon\(R\)? CPU\s+(\w+)", r"Intel Xeon \1"),
66862195
MT
63 (r"(Intel).*(Xeon).*", r"\1 \2"),
64 (r"Intel.* Pentium.* (D|4) .*", r"Intel Pentium \1"),
65 (r"Intel.* Pentium.* Dual .* ([A-Z0-9]+) .*", r"Intel Pentium Dual \1"),
66 (r"Pentium.* Dual-Core .* ([A-Z0-9]+) .*", r"Intel Pentium Dual \1"),
67 (r"(Pentium I{2,3}).*", r"Intel \1"),
68 (r"(Celeron \(Coppermine\))", r"Intel Celeron"),
69
05bd7298
MT
70 # NSC
71 (r"Geode\(TM\) Integrated Processor by National Semi", r"NSC Geode"),
72
66862195
MT
73 # VIA
74 (r"(VIA \w*).*", r"\1"),
75
76 # Qemu
77 (r"QEMU Virtual CPU version .*", r"QEMU CPU"),
78
79 # ARM
80 (r"Feroceon .*", r"ARM Feroceon"),
81)
82
83IGNORED_DEVICES = ["usb",]
84
85class ProfileDict(object):
86 def __init__(self, data):
87 self._data = data
88
89
90class ProfileNetwork(ProfileDict):
91 def __eq__(self, other):
95ae21d1
MT
92 if other is None:
93 return False
94
66862195
MT
95 if not self.has_red == other.has_red:
96 return False
97
98 if not self.has_green == other.has_green:
99 return False
100
101 if not self.has_orange == other.has_orange:
102 return False
103
104 if not self.has_blue == other.has_blue:
105 return False
106
107 return True
108
109 def __iter__(self):
110 ret = []
111
112 for zone in ("red", "green", "orange", "blue"):
113 if self.has_zone(zone):
114 ret.append(zone)
115
116 return iter(ret)
117
118 def has_zone(self, name):
119 return self._data.get("has_%s" % name)
120
121 @property
122 def has_red(self):
123 return self._data.get("has_red", False)
124
125 @property
126 def has_green(self):
127 return self._data.get("has_green", False)
128
129 @property
130 def has_orange(self):
131 return self._data.get("has_orange", False)
132
133 @property
134 def has_blue(self):
135 return self._data.get("has_blue", False)
136
137
138class Processor(Object):
139 def __init__(self, backend, id, data=None, clock_speed=None, bogomips=None):
140 Object.__init__(self, backend)
141
142 self.id = id
143 self.__data = data
144 self.__clock_speed = clock_speed
145 self.__bogomips = bogomips
146
147 def __str__(self):
148 s = []
149
150 if not self.model_string.startswith(self.vendor):
151 s.append(self.vendor)
152 s.append("-")
153
154 s.append(self.model_string)
155
156 if self.core_count > 1:
157 s.append("x%s" % self.core_count)
158
159 return " ".join(s)
160
161 @property
162 def data(self):
163 if self.__data is None:
164 self.__data = self.db.get("SELECT * FROM fireinfo_processors \
165 WHERE id = %s", self.id)
166
167 return self.__data
168
169 @property
170 def vendor(self):
171 try:
172 return CPU_VENDORS[self.data.vendor]
173 except KeyError:
174 return self.data.vendor
175
574ce4e6
MT
176 @property
177 def family(self):
178 return self.data.family
179
66862195
MT
180 @property
181 def model(self):
182 return self.data.model
183
574ce4e6
MT
184 @property
185 def stepping(self):
186 return self.data.stepping
187
66862195
MT
188 @property
189 def model_string(self):
190 s = self.data.model_string.split()
191
192 return " ".join((e for e in s if e))
193
194 @property
195 def flags(self):
196 return self.data.flags
197
198 def has_flag(self, flag):
199 return flag in self.flags
200
201 def uses_ht(self):
574ce4e6
MT
202 if self.family == 6 and self.model in (55, 77):
203 return False
204
66862195
MT
205 return self.has_flag("ht")
206
207 @property
208 def core_count(self):
209 return self.data.core_count
210
211 @property
212 def count(self):
213 if self.uses_ht():
214 return self.core_count // 2
215
216 return self.core_count
217
218 @property
219 def clock_speed(self):
220 return self.__clock_speed
221
222 def format_clock_speed(self):
223 if not self.clock_speed:
224 return
225
226 if self.clock_speed < 1000:
227 return "%dMHz" % self.clock_speed
228
229 return "%.2fGHz" % round(self.clock_speed / 1000, 2)
230
231 @property
232 def bogomips(self):
233 return self.__bogomips
234
235 @property
236 def capabilities(self):
237 caps = [
238 ("64bit", self.has_flag("lm")),
239 ("aes", self.has_flag("aes")),
240 ("nx", self.has_flag("nx")),
241 ("pae", self.has_flag("pae") or self.has_flag("lpae")),
242 ("rdrand", self.has_flag("rdrand")),
243 ]
244
245 # If the system is already running in a virtual environment,
246 # we cannot correctly detect if the CPU supports svm or vmx
247 if self.has_flag("hypervisor"):
248 caps.append(("virt", None))
249 else:
250 caps.append(("virt", self.has_flag("vmx") or self.has_flag("svm")))
251
252 return caps
253
254 def format_model(self):
255 s = self.model_string
05bd7298
MT
256
257 # Remove everything after the @: Intel(R) Core(TM) i7-3770 CPU @ 3.40GHz
258 s, sep, rest = s.partition("@")
259
66862195
MT
260 for pattern, repl in CPU_STRINGS:
261 if re.match(pattern, s) is None:
262 continue
05bd7298
MT
263
264 s = re.sub(pattern, repl, s)
265 break
66862195
MT
266
267 # Otherwise remove the symbols
05bd7298 268 for i in ("C", "R", "TM", "tm"):
66862195
MT
269 s = s.replace("(%s)" % i, "")
270
05bd7298
MT
271 # Replace too long strings with shorter ones
272 pairs = (
273 ("Quad-Core Processor", ""),
274 ("Dual-Core Processor", ""),
275 ("Processor", "CPU"),
276 ("processor", "CPU"),
277 )
278 for k, v in pairs:
279 s = s.replace(k, v)
280
281 # Remove too many spaces
282 s = " ".join((e for e in s.split() if e))
283
66862195
MT
284 return s
285
286 @property
287 def friendly_string(self):
288 s = []
289
290 model = self.format_model()
291 s.append(model)
292
293 clock_speed = self.format_clock_speed()
294 if clock_speed:
295 s.append("@ %s" % clock_speed)
296
297 if self.count > 1:
298 s.append("x%s" % self.count)
299
300 return " ".join(s)
301
302
303class Device(Object):
304 classid2name = {
305 "pci" : {
306 "00" : N_("Unclassified"),
307 "01" : N_("Mass storage"),
308 "02" : N_("Network"),
309 "03" : N_("Display"),
310 "04" : N_("Multimedia"),
311 "05" : N_("Memory controller"),
312 "06" : N_("Bridge"),
313 "07" : N_("Communication"),
314 "08" : N_("Generic system peripheral"),
315 "09" : N_("Input device"),
316 "0a" : N_("Docking station"),
317 "0b" : N_("Processor"),
318 "0c" : N_("Serial bus"),
319 "0d" : N_("Wireless"),
320 "0e" : N_("Intelligent controller"),
321 "0f" : N_("Satellite communications controller"),
322 "10" : N_("Encryption"),
323 "11" : N_("Signal processing controller"),
324 "ff" : N_("Unassigned class"),
325 },
326
327 "usb" : {
328 "00" : N_("Unclassified"),
329 "01" : N_("Multimedia"),
330 "02" : N_("Communication"),
331 "03" : N_("Input device"),
332 "05" : N_("Generic system peripheral"),
333 "06" : N_("Image"),
334 "07" : N_("Printer"),
335 "08" : N_("Mass storage"),
336 "09" : N_("Hub"),
337 "0a" : N_("Communication"),
338 "0b" : N_("Smart card"),
339 "0d" : N_("Encryption"),
340 "0e" : N_("Display"),
341 "0f" : N_("Personal Healthcare"),
342 "dc" : N_("Diagnostic Device"),
343 "e0" : N_("Wireless"),
344 "ef" : N_("Unclassified"),
345 "fe" : N_("Unclassified"),
346 "ff" : N_("Unclassified"),
347 }
348 }
349
350 def __init__(self, backend, id, data=None):
351 Object.__init__(self, backend)
352
353 self.id = id
354 self.__data = data
355
356 def __repr__(self):
357 return "<%s vendor=%s model=%s>" % (self.__class__.__name__,
358 self.vendor_string, self.model_string)
359
360 def __cmp__(self, other):
361 if self.id and self.id == other.id:
362 return 0
363
364 return \
365 cmp(self.subsystem, other.subsystem) or \
366 cmp(self.vendor_string, other.vendor_string) or \
367 cmp(self.vendor, other.vendor) or \
368 cmp(self.model_string, other.model_string) or \
369 cmp(self.model, other.model) or \
370 cmp(self.driver, other.driver)
371
372 @property
373 def data(self):
374 if self.__data is None:
375 assert self.id
376
377 self.__data = self.db.get("SELECT * FROM fireinfo_devices \
378 WHERE id = %s", self.id)
379
380 return self.__data
381
382 def is_showable(self):
383 if self.driver in IGNORED_DEVICES:
384 return False
385
386 if self.driver in ("pcieport", "hub"):
387 return False
388
389 return True
390
391 @property
392 def subsystem(self):
393 return self.data.subsystem
394
395 @property
396 def model(self):
397 return self.data.model
398
399 @property
400 def model_string(self):
401 return self.fireinfo.get_model_string(self.subsystem,
402 self.vendor, self.model)
403
404 @property
405 def vendor(self):
406 return self.data.vendor
407
408 @property
409 def vendor_string(self):
410 return self.fireinfo.get_vendor_string(self.subsystem, self.vendor)
411
412 @property
413 def driver(self):
414 return self.data.driver
415
416 @property
417 def cls(self):
418 classid = self.data.deviceclass
419
420 if self.subsystem == "pci":
421 classid = classid[:-4]
422 if len(classid) == 1:
423 classid = "0%s" % classid
424
425 elif self.subsystem == "usb" and classid:
426 classid = classid.split("/")[0]
427 classid = "%02x" % int(classid)
428
429 try:
430 return self.classid2name[self.subsystem][classid]
431 except KeyError:
432 return "N/A"
433
434 @property
435 def percentage(self):
436 return self.data.get("percentage", None)
437
438
439class Profile(Object):
440 def __init__(self, backend, id, data=None):
441 Object.__init__(self, backend)
442
443 self.id = id
444 self.__data = data
445
446 def __repr__(self):
447 return "<%s %s>" % (self.__class__.__name__, self.public_id)
448
449 def __cmp__(self, other):
450 return cmp(self.id, other.id)
451
452 def is_showable(self):
453 if self.arch_id:
454 return True
455
456 return False
457
458 @property
459 def data(self):
460 if self.__data is None:
461 self.__data = self.db.get("SELECT * FROM fireinfo_profiles \
462 WHERE id = %s", self.id)
463
464 return self.__data
465
466 @property
467 def public_id(self):
468 return self.data.public_id
469
470 @property
471 def private_id(self):
472 raise NotImplementedError
473
474 @property
475 def time_created(self):
476 return self.data.time_created
477
478 @property
479 def time_updated(self):
480 return self.data.time_updated
481
482 def updated(self, profile_parser=None, location=None, when=None):
483 valid = self.settings.get_int("fireinfo_profile_days_valid", 14)
484
485 self.db.execute("UPDATE fireinfo_profiles \
486 SET \
487 time_updated = then_or_now(%s), \
488 time_valid = then_or_now(%s) + INTERVAL '%s days', \
489 updates = updates + 1 \
490 WHERE id = %s", when, when, valid, self.id)
491
492 if profile_parser:
493 self.set_processor_speeds(
494 profile_parser.processor_clock_speed,
495 profile_parser.processor_bogomips,
496 )
497
498 if location:
499 self.set_location(location)
500
f5e42730
MT
501 self.log_profile_update()
502
503 def log_profile_update(self):
504 # Log that an update was performed for this profile id
505 self.db.execute("INSERT INTO fireinfo_profiles_log(public_id) \
506 VALUES(%s)", self.public_id)
507
66862195
MT
508 def expired(self, when=None):
509 self.db.execute("UPDATE fireinfo_profiles \
510 SET time_valid = then_or_now(%s) WHERE id = %s", when, self.id)
511
512 def parse(self, parser):
513 # Processor
514 self.processor = parser.processor
515 self.set_processor_speeds(parser.processor_clock_speed, parser.processor_bogomips)
516
517 # All devices
518 self.devices = parser.devices
519
520 # System
521 self.system_id = parser.system_id
522
523 # Memory
524 self.memory = parser.memory
525
526 # Storage
527 self.storage = parser.storage
528
529 # Kernel
530 self.kernel_id = parser.kernel_id
531
532 # Arch
533 self.arch_id = parser.arch_id
534
535 # Release
536 self.release_id = parser.release_id
537
538 # Language
539 self.language = parser.language
540
541 # Virtual
542 if parser.virtual:
543 self.hypervisor_id = parser.hypervisor_id
544
545 # Network
546 self.network = parser.network
547
548 # Location
549
550 def get_location(self):
551 if not hasattr(self, "_location"):
552 res = self.db.get("SELECT location FROM fireinfo_profiles_locations \
553 WHERE profile_id = %s", self.id)
554
555 if res:
556 self._location = res.location
557 else:
558 self._location = None
559
560 return self._location
561
562 def set_location(self, location):
563 if self.location == location:
564 return
565
566 self.db.execute("DELETE FROM fireinfo_profiles_locations \
567 WHERE profile_id = %s", self.id)
568 self.db.execute("INSERT INTO fireinfo_profiles_locations(profile_id, location) \
569 VALUES(%s, %s)", self.id, location)
570
571 self._location = location
572
573 location = property(get_location, set_location)
574
575 @property
576 def location_string(self):
577 return self.geoip.get_country_name(self.location)
578
579 # Devices
580
581 @property
582 def device_ids(self):
583 if not hasattr(self, "_device_ids"):
584 res = self.db.query("SELECT device_id FROM fireinfo_profiles_devices \
585 WHERE profile_id = %s", self.id)
586
587 self._device_ids = sorted([r.device_id for r in res])
588
589 return self._device_ids
590
591 def get_devices(self):
592 if not hasattr(self, "_devices"):
593 res = self.db.query("SELECT * FROM fireinfo_devices \
594 LEFT JOIN fireinfo_profiles_devices ON \
595 fireinfo_devices.id = fireinfo_profiles_devices.device_id \
596 WHERE fireinfo_profiles_devices.profile_id = %s", self.id)
597
598 self._devices = []
599 for row in res:
600 device = Device(self.backend, row.id, row)
601 self._devices.append(device)
602
603 return self._devices
604
605 def set_devices(self, devices):
606 device_ids = [d.id for d in devices]
607
608 self.db.execute("DELETE FROM fireinfo_profiles_devices WHERE profile_id = %s", self.id)
609 self.db.executemany("INSERT INTO fireinfo_profiles_devices(profile_id, device_id) \
610 VALUES(%s, %s)", ((self.id, d) for d in device_ids))
611
612 self._devices = devices
613 self._device_ids = device_ids
614
615 devices = property(get_devices, set_devices)
616
4238ef83 617 def count_device(self, subsystem, vendor, model):
66862195
MT
618 counter = 0
619
620 for dev in self.devices:
4238ef83 621 if dev.subsystem == subsystem and dev.vendor == vendor and dev.model == model:
66862195
MT
622 counter += 1
623
624 return counter
625
626 # System
627
628 def get_system_id(self):
629 if not hasattr(self, "_system_id"):
630 res = self.db.get("SELECT system_id AS id FROM fireinfo_profiles_systems \
631 WHERE profile_id = %s", self.id)
632
633 if res:
634 self._system_id = res.id
635 else:
636 self._system_id = None
637
638 return self._system_id
639
640 def set_system_id(self, system_id):
641 self.db.execute("DELETE FROM fireinfo_profiles_systems WHERE profile_id = %s", self.id)
642
643 if system_id:
644 self.db.execute("INSERT INTO fireinfo_profiles_systems(profile_id, system_id) \
645 VALUES(%s, %s)", self.id, system_id)
646
647 self._system_id = None
648 if hasattr(self, "_system"):
649 del self._system
650
651 system_id = property(get_system_id, set_system_id)
652
653 @property
654 def system(self):
655 if not hasattr(self, "_system"):
656 res = self.db.get("SELECT fireinfo_systems.vendor AS vendor, fireinfo_systems.model AS model \
657 FROM fireinfo_profiles_systems \
658 LEFT JOIN fireinfo_systems ON fireinfo_profiles_systems.system_id = fireinfo_systems.id \
659 WHERE fireinfo_profiles_systems.profile_id = %s", self.id)
660
661 if res:
662 self._system = (res.vendor, res.model)
663 else:
664 self._system = (None, None)
665
666 return self._system
667
668 @property
669 def system_vendor(self):
670 try:
671 v, m = self.system
672 return v
673 except TypeError:
674 pass
675
676 @property
677 def system_model(self):
678 try:
679 v, m = self.system
680 return m
681 except TypeError:
682 pass
683
684 @property
685 def appliance_id(self):
686 if not hasattr(self, "_appliance_id"):
687 appliances = (
4238ef83 688 ("fountainnetworks-prime", self._appliance_test_fountainnetworks_prime),
82793e74 689 ("lightningwirelabs-eco-plus", self._appliance_test_lightningwirelabs_eco_plus),
66862195
MT
690 ("lightningwirelabs-eco", self._appliance_test_lightningwirelabs_eco),
691 )
692
693 self._appliance_id = None
694 for name, test_func in appliances:
695 if not test_func():
696 continue
697
698 self._appliance_id = name
699 break
700
701 return self._appliance_id
702
703 @property
704 def appliance(self):
4238ef83
MT
705 if self.appliance_id == "fountainnetworks-prime":
706 return "Fountain Networks - IPFire Prime Box"
707
82793e74
MT
708 elif self.appliance_id == "lightningwirelabs-eco-plus":
709 return "Lightning Wire Labs - IPFire Eco Plus Appliance"
710
4238ef83
MT
711 elif self.appliance_id == "lightningwirelabs-eco":
712 return "Lightning Wire Labs - IPFire Eco Appliance"
713
714 def _appliance_test_fountainnetworks_prime(self):
9fd4f970 715 if not self.system in (("SECO", None), ("SECO", "0949")):
4238ef83
MT
716 return False
717
718 # Must have a wireless device
719 if self.count_device("usb", "148f", "5572") < 1:
720 return False
721
722 return True
66862195
MT
723
724 def _appliance_test_lightningwirelabs_eco(self):
725 if not self.system == ("MSI", "MS-9877"):
726 return False
727
728 # Must have four Intel network adapters
4238ef83 729 network_adapters_count = self.count_device("pci", "8086", "10d3")
66862195
MT
730 if not network_adapters_count == 4:
731 return False
732
66862195
MT
733 return True
734
82793e74
MT
735 def _appliance_test_lightningwirelabs_eco_plus(self):
736 if not self.system_vendor == "ASUS":
737 return False
738
739 if not self.system_model.startswith("P9A-I/2550"):
740 return False
741
742 # Must have four Intel network adapters
743 network_adapters_count = self.count_device("pci", "8086", "1f41")
744 if not network_adapters_count == 4:
745 return False
746
747 return True
748
66862195
MT
749 # Processors
750
751 @property
752 def processor_id(self):
753 if hasattr(self, "_processor"):
754 return self._processor.id
755
756 if not hasattr(self, "_processor_id"):
757 res = self.db.get("SELECT processor_id FROM fireinfo_profiles_processors \
758 WHERE profile_id = %s", self.id)
759
760 if res:
761 self._processor_id = res.processor_id
762 else:
763 self._processor_id = None
764
765 return self._processor_id
766
767 def get_processor(self):
768 if not self.processor_id:
769 return
770
771 if not hasattr(self, "_processor"):
772 res = self.db.get("SELECT * FROM fireinfo_profiles_processors \
773 WHERE profile_id = %s", self.id)
774
775 if res:
776 self._processor = self.fireinfo.get_processor_by_id(res.processor_id,
777 clock_speed=res.clock_speed, bogomips=res.bogomips)
778 else:
779 self._processor = None
780
781 return self._processor
782
783 def set_processor(self, processor):
784 self.db.execute("DELETE FROM fireinfo_profiles_processors \
785 WHERE profile_id = %s", self.id)
786
787 if processor:
788 self.db.execute("INSERT INTO fireinfo_profiles_processors(profile_id, processor_id) \
789 VALUES(%s, %s)", self.id, processor.id)
790
791 self._processor = processor
792
793 processor = property(get_processor, set_processor)
794
795 def set_processor_speeds(self, clock_speed, bogomips):
796 self.db.execute("UPDATE fireinfo_profiles_processors \
797 SET clock_speed = %s, bogomips = %s WHERE profile_id = %s",
798 clock_speed, bogomips, self.id)
799
800 # Compat
801 @property
802 def cpu(self):
803 return self.processor
804
805 # Memory
806
807 def get_memory(self):
808 if not hasattr(self, "_memory"):
809 res = self.db.get("SELECT amount FROM fireinfo_profiles_memory \
810 WHERE profile_id = %s", self.id)
811
812 if res:
813 self._memory = res.amount * 1024
814 else:
815 self._memory = None
816
817 return self._memory
818
819 def set_memory(self, amount):
820 if self.memory == amount:
821 return
822
823 amount /= 1024
824
825 self.db.execute("DELETE FROM fireinfo_profiles_memory WHERE profile_id = %s", self.id)
826 if amount:
827 self.db.execute("INSERT INTO fireinfo_profiles_memory(profile_id, amount) \
828 VALUES(%s, %s)", self.id, amount)
829
830 self._memory = amount * 1024
831
832 memory = property(get_memory, set_memory)
833
834 @property
835 def friendly_memory(self):
a0c9a14e 836 return util.format_size(self.memory or 0)
66862195
MT
837
838 # Storage
839
840 def get_storage(self):
841 if not hasattr(self, "_storage"):
842 res = self.db.get("SELECT amount FROM fireinfo_profiles_storage \
843 WHERE profile_id = %s", self.id)
844
845 if res:
846 self._storage = res.amount * 1024
847 else:
848 self._storage = None
849
850 return self._storage
851
852 def set_storage(self, amount):
853 if self.storage == amount:
854 return
855
856 amount /= 1024
857
858 self.db.execute("DELETE FROM fireinfo_profiles_storage WHERE profile_id = %s", self.id)
859 if amount:
860 self.db.execute("INSERT INTO fireinfo_profiles_storage(profile_id, amount) \
861 VALUES(%s, %s)", self.id, amount)
862
863 self._storage = amount * 1024
864
865 storage = property(get_storage, set_storage)
866
867 @property
868 def friendly_storage(self):
869 return util.format_size(self.storage)
870
871 # Kernel
872
873 def get_kernel_id(self):
874 if not hasattr(self, "_kernel_id"):
875 res = self.db.get("SELECT fireinfo_profiles_kernels.kernel_id AS id FROM fireinfo_profiles \
876 LEFT JOIN fireinfo_profiles_kernels ON fireinfo_profiles.id = fireinfo_profiles_kernels.profile_id \
877 WHERE fireinfo_profiles.id = %s", self.id)
878
879 if res:
880 self._kernel_id = res.id
881 else:
882 self._kernel_id = None
883
884 return self._kernel_id
885
886 def set_kernel_id(self, kernel_id):
887 if self.kernel_id == kernel_id:
888 return
889
890 self.db.execute("DELETE FROM fireinfo_profiles_kernels WHERE profile_id = %s", self.id)
891 if kernel_id:
892 self.db.execute("INSERT INTO fireinfo_profiles_kernels(profile_id, kernel_id) \
893 VALUES(%s, %s)", self.id, kernel_id)
894
895 self._kernel_id = kernel_id
896 if hasattr(self, "_kernel"):
897 del self._kernel
898
899 kernel_id = property(get_kernel_id, set_kernel_id)
900
901 @property
902 def kernel(self):
903 if not hasattr(self, "_kernel"):
904 res = self.db.get("SELECT fireinfo_kernels.name AS name FROM fireinfo_profiles \
905 LEFT JOIN fireinfo_profiles_kernels ON fireinfo_profiles.id = fireinfo_profiles_kernels.profile_id \
906 LEFT JOIN fireinfo_kernels ON fireinfo_kernels.id = fireinfo_profiles_kernels.kernel_id \
907 WHERE fireinfo_profiles.id = %s", self.id)
908
909 if res:
910 self._kernel = res.name
911 else:
912 self._kernel = None
913
914 return self._kernel
915
916 # Arch
917
918 def get_arch_id(self):
919 if not hasattr(self, "_arch_id"):
920 res = self.db.get("SELECT fireinfo_profiles_arches.arch_id AS id FROM fireinfo_profiles \
921 LEFT JOIN fireinfo_profiles_arches ON fireinfo_profiles.id = fireinfo_profiles_arches.profile_id \
922 WHERE fireinfo_profiles.id = %s", self.id)
923
924 if res:
925 self._arch_id = res.id
926 else:
927 self._arch_id = None
928
929 return self._arch_id
930
931 def set_arch_id(self, arch_id):
932 if self.arch_id == arch_id:
933 return
934
935 self.db.execute("DELETE FROM fireinfo_profiles_arches WHERE profile_id = %s", self.id)
936 if arch_id:
937 self.db.execute("INSERT INTO fireinfo_profiles_arches(profile_id, arch_id) \
938 VALUES(%s, %s)", self.id, arch_id)
939
940 self._arch_id = None
941 if hasattr(self, "_arch"):
942 del self._arch
943
944 arch_id = property(get_arch_id, set_arch_id)
945
946 @property
947 def arch(self):
948 if not hasattr(self, "_arch"):
949 res = self.db.get("SELECT fireinfo_arches.name AS name FROM fireinfo_profiles \
950 LEFT JOIN fireinfo_profiles_arches ON fireinfo_profiles.id = fireinfo_profiles_arches.profile_id \
951 LEFT JOIN fireinfo_arches ON fireinfo_arches.id = fireinfo_profiles_arches.arch_id \
952 WHERE fireinfo_profiles.id = %s", self.id)
953
954 if res:
955 self._arch = res.name
956 else:
957 self._arch = None
958
959 return self._arch
960
961 # Release
962
963 def get_release_id(self):
964 if not hasattr(self, "_release_id"):
965 res = self.db.get("SELECT fireinfo_profiles_releases.release_id AS id FROM fireinfo_profiles \
966 LEFT JOIN fireinfo_profiles_releases ON fireinfo_profiles.id = fireinfo_profiles_releases.profile_id \
967 WHERE fireinfo_profiles.id = %s", self.id)
968
969 if res:
970 self._release_id = res.id
971 else:
972 self._release_id = None
973
974 return self._release_id
975
976 def set_release_id(self, release_id):
977 if self.release_id == release_id:
978 return
979
980 self.db.execute("DELETE FROM fireinfo_profiles_releases WHERE profile_id = %s", self.id)
981 if release_id:
982 self.db.execute("INSERT INTO fireinfo_profiles_releases(profile_id, release_id) \
983 VALUES(%s, %s)", self.id, release_id)
984
985 self._release_id = release_id
986 if hasattr(self, "_release"):
987 del self._release
988
989 release_id = property(get_release_id, set_release_id)
990
991 @property
992 def release(self):
993 if not hasattr(self, "_release"):
994 res = self.db.get("SELECT fireinfo_releases.name AS name FROM fireinfo_profiles \
995 LEFT JOIN fireinfo_profiles_releases ON fireinfo_profiles.id = fireinfo_profiles_releases.profile_id \
996 LEFT JOIN fireinfo_releases ON fireinfo_profiles_releases.release_id = fireinfo_releases.id \
997 WHERE fireinfo_profiles.id = %s", self.id)
998
999 if res:
1000 self._release = self._format_release(res.name)
1001 else:
1002 self._release = None
1003
1004 return self._release
1005
1006 @staticmethod
1007 def _format_release(r):
1008 if not r:
1009 return r
1010
1011 # Remove the development header
1012 r = r.replace("Development Build: ", "")
1013
1014 pairs = (
1015 ("-beta", " - Beta "),
1016 ("-rc", " - Release Candidate "),
1017 ("rc", "Release Candidate "),
1018 ("core", "Core Update "),
1019 ("beta", "Beta "),
1020 )
1021
1022 for k, v in pairs:
1023 r = r.replace(k, v)
1024
1025 return r
1026
05bd7298
MT
1027 @property
1028 def release_short(self):
1029 pairs = (
1030 (r"Release Candidate (\d+)", r"RC\1"),
1031 )
1032
1033 s = self.release
1034 for pattern, repl in pairs:
1035 if re.search(pattern, s) is None:
1036 continue
1037
1038 s = re.sub(pattern, repl, s)
1039
1040 return s
1041
66862195
MT
1042 # Virtual
1043
1044 @property
1045 def virtual(self):
1046 if not hasattr(self, "_virtual"):
1047 res = self.db.get("SELECT 1 FROM fireinfo_profiles_virtual \
1048 WHERE profile_id = %s", self.id)
1049
1050 if res:
1051 self._virtual = True
1052 else:
1053 self._virtual = False
1054
1055 return self._virtual
1056
1057 def get_hypervisor_id(self):
1058 if not hasattr(self, "_hypervisor_id"):
1059 res = self.db.get("SELECT fireinfo_profiles_virtual.hypervisor_id AS id FROM fireinfo_profiles \
1060 LEFT JOIN fireinfo_profiles_virtual ON fireinfo_profiles.id = fireinfo_profiles_virtual.profile_id \
1061 WHERE fireinfo_profiles.id = %s", self.id)
1062
1063 if res:
1064 self._hypervisor_id = res.id
1065 else:
1066 self._hypervisor_id = None
1067
1068 return self._hypervisor_id
1069
1070 def set_hypervisor_id(self, hypervisor_id):
1071 self.db.execute("DELETE FROM fireinfo_profiles_virtual WHERE profile_id = %s", self.id)
1072 self.db.execute("INSERT INTO fireinfo_profiles_virtual(profile_id, hypervisor_id) \
1073 VALUES(%s, %s)", self.id, hypervisor_id)
1074
1075 self._hypervisor_id = hypervisor_id
1076
1077 hypervisor_id = property(get_hypervisor_id, set_hypervisor_id)
1078
1079 @property
1080 def hypervisor(self):
1081 if not hasattr(self, "_hypervisor"):
1082 res = self.db.get("SELECT fireinfo_hypervisors.name AS hypervisor FROM fireinfo_profiles \
1083 LEFT JOIN fireinfo_profiles_virtual ON fireinfo_profiles.id = fireinfo_profiles_virtual.profile_id \
1084 LEFT JOIN fireinfo_hypervisors ON fireinfo_profiles_virtual.hypervisor_id = fireinfo_hypervisors.id \
1085 WHERE fireinfo_profiles.id = %s", self.id)
1086
1087 if res:
1088 self._hypervisor = res.hypervisor
1089 else:
1090 self._hypervisor = None
1091
1092 return self._hypervisor
1093
1094 # Language
1095
1096 def get_language(self):
1097 if not hasattr(self, "_language"):
1098 res = self.db.get("SELECT language FROM fireinfo_profiles_languages \
1099 WHERE profile_id = %s", self.id)
1100
1101 if res:
1102 self._language = res.language
1103 else:
1104 self._language = None
1105
1106 return self._language
1107
1108 def set_language(self, language):
1109 self.db.execute("DELETE FROM fireinfo_profiles_languages WHERE profile_id = %s", self.id)
1110
1111 if language:
1112 self.db.execute("INSERT INTO fireinfo_profiles_languages(profile_id, language) \
1113 VALUES(%s, %s)", self.id, language)
1114
1115 self._language = language
1116
1117 language = property(get_language, set_language)
1118
1119 # Network
1120
1121 def get_network(self):
1122 if not hasattr(self, "_network"):
1123 res = self.db.get("SELECT * FROM fireinfo_profiles_networks \
1124 WHERE profile_id = %s", self.id)
1125
1126 if not res:
1127 res = {}
1128
1129 self._network = ProfileNetwork(res)
1130
1131 return self._network
1132
1133 def set_network(self, network):
1134 self.db.execute("DELETE FROM fireinfo_profiles_networks WHERE profile_id = %s", self.id)
1135
1136 if network:
1137 self.db.execute("INSERT INTO fireinfo_profiles_networks(profile_id, \
1138 has_red, has_green, has_orange, has_blue) VALUES(%s, %s, %s, %s, %s)",
1139 self.id, network.has_red, network.has_green, network.has_orange, network.has_blue)
1140
1141 self._network = network
1142
1143 network = property(get_network, set_network)
1144
1145
1146class ProfileData(Object):
1147 def __init__(self, backend, id, data=None, profile=None):
1148 Object.__init__(self, backend)
1149
1150 self.id = id
1151 self._data = data
1152 self._profile = profile
1153
1154 @property
1155 def data(self):
1156 if self._data is None:
1157 self._data = self.db.get("SELECT * FROM fireinfo_profile_data \
1158 WHERE id = %s", self.id)
1159
1160 return self._data
1161
1162 @property
1163 def profile(self):
1164 if not self._profile:
1165 self._profile = self.fireinfo.get_profile_by_id(self.profile_id)
1166
1167 return self._profile
1168
1169 @property
1170 def profile_id(self):
1171 return self.data.profile_id
1172
1173
1174class ProfileParserError(Exception):
1175 pass
1176
1177
1178class ProfileParser(Object):
1179 __device_args = (
1180 "subsystem",
1181 "vendor",
1182 "model",
1183 "sub_vendor",
1184 "sub_model",
1185 "driver",
1186 "deviceclass",
1187 )
1188
1189 __processor_args = (
1190 "vendor",
1191 "model_string",
1192 "family",
1193 "model",
1194 "stepping",
1195 "core_count",
1196 "flags",
1197 )
1198
1199 __processor_args_mandatory = (
1200 "vendor",
1201 "model_string",
1202 )
1203
1204 def __init__(self, backend, public_id, blob=None):
1205 Object.__init__(self, backend)
1206
1207 self.public_id = public_id
1208 self.private_id = None
1209 self.devices = []
1210 self.processor = None
1211 self.processor_clock_speed = None
1212 self.processor_bogomips = None
1213 self.system_id = None
1214 self.memory = None
1215 self.storage = None
1216 self.kernel = None
1217 self.kernel_id = None
1218 self.arch = None
1219 self.arch_id = None
1220 self.release = None
1221 self.release_id = None
1222 self.language = None
1223 self.virtual = None
1224 self.hypervisor_id = None
1225 self.network = None
1226
1227 self.__parse_blob(blob)
1228
1229 def equals(self, other):
1230 if not self.processor_id == other.processor_id:
1231 return False
1232
1233 if not self.device_ids == other.device_ids:
1234 return False
1235
1236 if not self.system_id == other.system_id:
1237 return False
1238
1239 if not self.memory == other.memory:
1240 return False
1241
1242 if not self.storage == other.storage:
1243 return False
1244
1245 if not self.kernel_id == other.kernel_id:
1246 return False
1247
1248 if not self.arch_id == other.arch_id:
1249 return False
1250
1251 if not self.release_id == other.release_id:
1252 return False
1253
1254 if not self.language == other.language:
1255 return False
1256
1257 if not self.virtual == other.virtual:
1258 return False
1259
1260 if other.virtual:
1261 if not self.hypervisor_id == other.hypervisor_id:
1262 return False
1263
1264 if not self.network == other.network:
1265 return False
1266
1267 return True
1268
1269 def __parse_blob(self, blob):
1270 _profile = blob.get("profile", {})
1271 self.private_id = blob.get("private_id")
1272
1273 # Do not try to parse an empty profile
1274 if not _profile:
1275 return
1276
1277 # Processor
1278 _processor = _profile.get("cpu", {})
1279 self.__parse_processor(_processor)
1280
1281 # Find devices
1282 _devices = _profile.get("devices", [])
1283 self.__parse_devices(_devices)
1284
1285 # System
1286 _system = _profile.get("system")
1287 if _system:
1288 self.__parse_system(_system)
1289
1290 # Memory (convert to bytes)
1291 memory = _system.get("memory", None)
1292 if memory:
1293 self.memory = memory * 1024
1294
1295 # Storage size (convert to bytes)
1296 storage = _system.get("root_size", None)
1297 if storage:
1298 self.storage = storage * 1024
1299
1300 # Kernel
1301 kernel = _system.get("kernel_release", None)
1302 if kernel:
1303 self.__parse_kernel(kernel)
1304
1305 # Release
1306 release = _system.get("release", None)
1307 if release:
1308 self.__parse_release(release)
1309
1310 # Language
1311 language = _system.get("language", None)
1312 if language:
1313 self.__parse_language(language)
1314
1315 # Virtual
1316 self.virtual = _system.get("virtual", False)
1317 if self.virtual:
1318 hypervisor = _profile.get("hypervisor")
1319 self.__parse_hypervisor(hypervisor)
1320
1321 # Network
1322 _network = _profile.get("network")
1323 if _network:
1324 self.__parse_network(_network)
1325
1326 @property
1327 def device_ids(self):
1328 return sorted([d.id for d in self.devices])
1329
1330 def __parse_devices(self, _devices):
1331 self.devices = []
1332
1333 for _device in _devices:
1334 args = {}
1335 for arg in self.__device_args:
1336 args[arg] = _device.get(arg, None)
1337
95ae21d1
MT
1338 # Skip if the subsystem is not set
1339 if not args.get("subsystem", None):
1340 continue
1341
66862195
MT
1342 # Find the device or create a new one.
1343 device = self.fireinfo.get_device(**args)
1344 if not device:
1345 device = self.fireinfo.create_device(**args)
1346
1347 self.devices.append(device)
1348
1349 def __parse_system(self, system):
1350 vendor = system.get("vendor", None)
1351 if not vendor:
1352 vendor = None
1353
1354 model = system.get("model", None)
1355 if not model:
1356 model = None
1357
1358 self.system_id = self.fireinfo.get_system(vendor, model)
1359 if not self.system_id:
1360 self.system_id = self.fireinfo.create_system(vendor, model)
1361
1362 @property
1363 def processor_id(self):
1364 if not self.processor:
1365 return
1366
1367 return self.processor.id
1368
1369 def __parse_processor(self, _processor):
1370 args = {}
1371 for arg in self.__processor_args:
1372 if arg == "core_count":
1373 _arg = "count"
1374 else:
1375 _arg = arg
1376
1377 args[arg] = _processor.get(_arg, None)
1378
1379 for arg in self.__processor_args_mandatory:
1380 if not args.get(arg, None):
1381 raise ProfileParserError, "Mandatory argument missing: %s" % arg
1382
1383 self.processor = self.fireinfo.get_processor(**args)
1384 if not self.processor:
1385 self.processor = self.fireinfo.create_processor(**args)
1386
1387 self.processor_clock_speed = _processor.get("speed", None)
1388 self.processor_bogomips = _processor.get("bogomips", None)
1389
1390 arch = _processor.get("arch", None)
1391 if arch:
1392 self.__parse_arch(arch)
1393
1394 def __parse_kernel(self, kernel):
1395 self.kernel_id = self.fireinfo.get_kernel(kernel)
1396 if not self.kernel_id:
1397 self.kernel_id = self.fireinfo.create_kernel(kernel)
1398 assert self.kernel_id
1399
1400 self.kernel = kernel
1401
1402 def __parse_arch(self, arch):
1403 self.arch_id = self.fireinfo.get_arch(arch)
1404 if not self.arch_id:
1405 self.arch_id = self.fireinfo.create_arch(arch)
1406
1407 self.arch = arch
1408
1409 def __parse_release(self, release):
1410 # Remove the arch bit
1411 if release:
1412 r = [e for e in release.split() if e]
9bd46813 1413 for s in ("(x86_64)", "(i586)", "(armv5tel)"):
66862195
MT
1414 try:
1415 r.remove(s)
1416 break
1417 except ValueError:
1418 pass
1419
1420 release = " ".join(r)
1421
1422 self.release_id = self.fireinfo.get_release(release)
1423 if not self.release_id:
1424 self.release_id = self.fireinfo.create_release(release)
1425 assert self.release_id
1426
1427 self.release = release
1428
1429 def __parse_language(self, language):
2c0d3e50
MT
1430 self.language = language
1431 self.language, delim, rest = self.language.partition(".")
1432 self.language, delim, rest = self.language.partition("_")
66862195
MT
1433
1434 def __parse_hypervisor(self, hypervisor):
1435 vendor = hypervisor.get("vendor", "other")
1436
1437 if vendor in ("other", "unknown"):
1438 self.hypervisor_id = None
1439 return
1440
1441 self.hypervisor_id = self.fireinfo.get_hypervisor(vendor)
1442 if not self.hypervisor_id:
1443 self.hypervisor_id = self.fireinfo.create_hypervisor(vendor)
1444
1445 def __parse_network(self, network):
1446 self.network = ProfileNetwork({
1447 "has_red" : network.get("red", False),
1448 "has_green" : network.get("green", False),
1449 "has_orange" : network.get("orange", False),
1450 "has_blue" : network.get("blue", False),
1451 })
1452
1453
1454class Fireinfo(Object):
1455 def get_profile_count(self, when=None):
1456 res = self.db.get("SELECT COUNT(*) AS count FROM fireinfo_profiles \
1457 WHERE then_or_now(%s) BETWEEN time_created AND time_valid", when)
1458
1459 if res:
1460 return res.count
1461
de14b297
MT
1462 def get_total_updates_count(self, when=None):
1463 res = self.db.get("SELECT COUNT(*) + SUM(updates) AS count \
1464 FROM fireinfo_profiles WHERE time_created <= then_or_now(%s)", when)
66862195
MT
1465
1466 if res:
1467 return res.count
1468
1469 # Parser
1470
1471 def parse_profile(self, public_id, blob):
1472 return ProfileParser(self.backend, public_id, blob)
1473
1474 # Profiles
1475
1476 def profile_exists(self, public_id):
1477 res = self.db.get("SELECT id FROM fireinfo_profiles \
1478 WHERE public_id = %s LIMIT 1", public_id)
1479
1480 if res:
1481 return True
1482
1483 return False
1484
f5e42730
MT
1485 def profile_rate_limit_active(self, public_id, when=None):
1486 # Remove all outdated entries
1487 self.db.execute("DELETE FROM fireinfo_profiles_log \
1488 WHERE ts <= then_or_now(%s) - INTERVAL '60 minutes'", when)
66862195 1489
f5e42730
MT
1490 res = self.db.get("SELECT COUNT(*) AS count FROM fireinfo_profiles_log \
1491 WHERE public_id = %s", public_id)
1492
1493 if res and res.count >= 10:
1494 return True
66862195 1495
f5e42730
MT
1496 return False
1497
1498 def is_private_id_change_permitted(self, public_id, private_id, when=None):
6c748b46
MT
1499 # Check if a profile exists with a different private id that is still valid
1500 res = self.db.get("SELECT 1 FROM fireinfo_profiles \
1501 WHERE public_id = %s AND NOT private_id = %s \
1502 AND time_valid >= then_or_now(%s) LIMIT 1", public_id, private_id, when)
1503
1504 if res:
1505 return False
1506
1507 return True
66862195
MT
1508
1509 def get_profile(self, public_id, private_id=None, when=None):
1510 res = self.db.get("SELECT * FROM fireinfo_profiles \
1511 WHERE public_id = %s AND \
1512 (CASE WHEN %s IS NULL THEN TRUE ELSE private_id = %s END) AND \
46f3e814
MT
1513 then_or_now(%s) BETWEEN time_created AND time_valid \
1514 ORDER BY time_updated DESC LIMIT 1",
1515 public_id, private_id, private_id, when)
66862195
MT
1516
1517 if res:
1518 return Profile(self.backend, res.id, res)
1519
d7bebd28
MT
1520 def get_profile_with_data(self, public_id, when=None):
1521 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1522 SELECT * FROM profiles JOIN fireinfo_profiles ON profiles.id = fireinfo_profiles.id \
1523 WHERE public_id = %s ORDER BY time_updated DESC LIMIT 1", when, public_id)
1524
1525 if res:
1526 return Profile(self.backend, res.id, res)
1527
66862195
MT
1528 def get_profiles(self, public_id):
1529 res = self.db.query("SELECT * FROM fireinfo_profiles \
1530 WHERE public_id = %s ORDER BY time_created DESC", public_id)
1531
1532 profiles = []
1533 for row in res:
1534 profile = Profile(self.backend, row.id, row)
1535 profiles.append(profile)
1536
1537 return profiles
1538
1539 def create_profile(self, public_id, private_id, when=None):
1540 valid = self.settings.get_int("fireinfo_profile_days_valid", 14)
1541
1542 res = self.db.get("INSERT INTO fireinfo_profiles(public_id, private_id, \
1543 time_created, time_updated, time_valid) VALUES(%s, %s, then_or_now(%s), \
1544 then_or_now(%s), then_or_now(%s) + INTERVAL '%s days') RETURNING id",
1545 public_id, private_id, when, when, when, valid)
1546
1547 if res:
f5e42730
MT
1548 p = Profile(self.backend, res.id)
1549 p.log_profile_update()
1550
1551 return p
66862195
MT
1552
1553 # Devices
1554
1555 def create_device(self, subsystem, vendor, model, sub_vendor=None, sub_model=None,
1556 driver=None, deviceclass=None):
1557 res = self.db.get("INSERT INTO fireinfo_devices(subsystem, vendor, model, \
1558 sub_vendor, sub_model, driver, deviceclass) VALUES(%s, %s, %s, %s, %s, %s, %s) \
1559 RETURNING id", subsystem, vendor, model, sub_vendor, sub_model, driver, deviceclass)
1560
1561 if res:
1562 return Device(self.backend, res.id)
1563
1564 def get_device(self, subsystem, vendor, model, sub_vendor=None, sub_model=None,
1565 driver=None, deviceclass=None):
1566 res = self.db.get("SELECT * FROM fireinfo_devices \
1567 WHERE subsystem = %s AND vendor = %s AND model = %s \
1568 AND sub_vendor IS NOT DISTINCT FROM %s \
1569 AND sub_model IS NOT DISTINCT FROM %s \
1570 AND driver IS NOT DISTINCT FROM %s \
1571 AND deviceclass IS NOT DISTINCT FROM %s \
1572 LIMIT 1", subsystem, vendor, model, sub_vendor,
1573 sub_model, driver, deviceclass)
1574
1575 if res:
1576 return Device(self.backend, res.id, res)
1577
1578 # System
1579
1580 def create_system(self, vendor, model):
1581 res = self.db.get("INSERT INTO fireinfo_systems(vendor, model) \
1582 VALUES(%s, %s) RETURNING id", vendor, model)
1583
1584 if res:
1585 return res.id
1586
1587 def get_system(self, vendor, model):
1588 res = self.db.get("SELECT id FROM fireinfo_systems WHERE vendor IS NOT DISTINCT FROM %s \
1589 AND model IS NOT DISTINCT FROM %s LIMIT 1", vendor, model)
1590
1591 if res:
1592 return res.id
1593
1594 # Processors
1595
1596 def create_processor(self, vendor, model_string, family, model, stepping, core_count, flags=None):
1597 res = self.db.get("INSERT INTO fireinfo_processors(vendor, model_string, \
1598 family, model, stepping, core_count, flags) VALUES(%s, %s, %s, %s, %s, %s, %s) \
1599 RETURNING id", vendor, model_string, family, model, stepping, core_count, flags)
1600
1601 if res:
1602 return Processor(self.backend, res.id)
1603
1604 def get_processor_by_id(self, processor_id, **kwargs):
1605 res = self.db.get("SELECT * FROM fireinfo_processors \
1606 WHERE id = %s", processor_id)
1607
1608 if res:
1609 return Processor(self.backend, res.id, data=res, **kwargs)
1610
1611 def get_processor(self, vendor, model_string, family, model, stepping, core_count, flags=None):
1612 if flags is None:
1613 flags = []
1614
1615 res = self.db.get("SELECT * FROM fireinfo_processors \
1616 WHERE vendor = %s AND model_string = %s \
1617 AND family IS NOT DISTINCT FROM %s AND model IS NOT DISTINCT FROM %s \
1618 AND stepping IS NOT DISTINCT FROM %s AND core_count = %s \
1619 AND flags <@ %s AND flags @> %s", vendor, model_string, family, model,
1620 stepping, core_count, flags, flags)
1621
1622 if res:
1623 return Processor(self.backend, res.id, res)
1624
1625 # Kernel
1626
1627 def create_kernel(self, kernel):
1628 res = self.db.get("INSERT INTO fireinfo_kernels(name) VALUES(%s) \
1629 RETURNING id", kernel)
1630
1631 if res:
1632 return res.id
1633
1634 def get_kernel(self, kernel):
1635 res = self.db.get("SELECT id FROM fireinfo_kernels WHERE name = %s", kernel)
1636
1637 if res:
1638 return res.id
1639
1640 # Arch
1641
1642 def create_arch(self, arch):
1643 res = self.db.get("INSERT INTO fireinfo_arches(name) VALUES(%s) \
1644 RETURNING id", arch)
1645
1646 if res:
1647 return res.id
1648
1649 def get_arch(self, arch):
1650 res = self.db.get("SELECT id FROM fireinfo_arches WHERE name = %s", arch)
1651
1652 if res:
1653 return res.id
1654
1655 # Release
1656
1657 def create_release(self, release):
1658 res = self.db.get("INSERT INTO fireinfo_releases(name) VALUES(%s) \
1659 RETURNING id", release)
1660
1661 if res:
1662 return res.id
1663
1664 def get_release(self, release):
1665 res = self.db.get("SELECT id FROM fireinfo_releases WHERE name = %s", release)
1666
1667 if res:
1668 return res.id
1669
1670 # Hypervisor
1671
1672 def create_hypervisor(self, hypervisor):
1673 res = self.db.get("INSERT INTO fireinfo_hypervisors(name) VALUES(%s) \
1674 RETURNING id", hypervisor)
1675
1676 if res:
1677 return res.id
1678
1679 def get_hypervisor(self, hypervisor):
1680 res = self.db.get("SELECT id FROM fireinfo_hypervisors WHERE name = %s",
1681 hypervisor)
1682
1683 if res:
1684 return res.id
1685
1686 # Handle profile
1687
1688 def handle_profile(self, *args, **kwargs):
1689 self.db.execute("START TRANSACTION")
1690
1691 # Wrap all the handling of the profile in a huge transaction.
1692 try:
1693 self._handle_profile(*args, **kwargs)
1694
1695 except:
1696 self.db.execute("ROLLBACK")
1697 raise
1698
1699 else:
1700 self.db.execute("COMMIT")
1701
1702 def _handle_profile(self, public_id, profile_blob, location=None, when=None):
1703 private_id = profile_blob.get("private_id", None)
1704 assert private_id
1705
1706 # Check if the profile already exists in the database.
1707 profile = self.fireinfo.get_profile(public_id, private_id=private_id, when=when)
1708
1709 # Check if the update can actually be updated
f5e42730
MT
1710 if profile and self.fireinfo.profile_rate_limit_active(public_id, when=when):
1711 logging.warning("There were too many updates for this profile in the last hour: %s" % public_id)
1712 return
1713
1714 elif not self.is_private_id_change_permitted(public_id, private_id, when=when):
1715 logging.warning("Changing private id is not permitted for profile: %s" % public_id)
66862195
MT
1716 return
1717
1718 # Parse the profile
1719 profile_parser = self.parse_profile(public_id, profile_blob)
1720
1721 # If a profile exists, check if it matches and if so, just update the
1722 # timestamp.
1723 if profile:
1724 # Check if the profile has changed. If so, update the data.
1725 if profile_parser.equals(profile):
1726 profile.updated(profile_parser, location=location, when=when)
1727 return
1728
1729 # If it does not match, we assume that it is expired and
1730 # create a new profile.
1731 profile.expired(when=when)
1732
1733 # Replace the old profile with a new one
1734 profile = self.fireinfo.create_profile(public_id, private_id, when=when)
1735 profile.parse(profile_parser)
1736
1737 if location:
1738 profile.set_location(location)
1739
1740 return profile
1741
1742 # Data outputs
1743
1744 def get_random_profile(self, when=None):
1745 # Check if the architecture exists so that we pick a profile with some data
1746 res = self.db.get("SELECT public_id FROM fireinfo_profiles \
1747 LEFT JOIN fireinfo_profiles_arches ON fireinfo_profiles.id = fireinfo_profiles_arches.profile_id \
1748 WHERE fireinfo_profiles_arches.profile_id IS NOT NULL \
1749 AND then_or_now(%s) BETWEEN time_created AND time_valid ORDER BY RANDOM() LIMIT 1", when)
1750
1751 if res:
1752 return res.public_id
1753
1754 def get_active_profiles(self, when=None):
1755 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_at(%s) AS id) \
1756 SELECT COUNT(*) AS with_data, (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1757 LEFT JOIN fireinfo_profiles_releases ON profiles.id = fireinfo_profiles_releases.profile_id \
1758 WHERE fireinfo_profiles_releases.profile_id IS NOT NULL", when)
1759
1760 if res:
1761 return res.with_data, res.count
1762
1763 def get_archive_size(self, when=None):
1764 res = self.db.get("SELECT COUNT(*) AS count FROM fireinfo_profiles \
1765 WHERE time_created <= then_or_now(%s)", when)
1766
1767 if res:
1768 return res.count
1769
1770 def get_geo_location_map(self, when=None):
1771 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_at(%s) AS id) \
1772 SELECT location, COUNT(location)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1773 LEFT JOIN fireinfo_profiles_locations ON profiles.id = fireinfo_profiles_locations.profile_id \
1774 WHERE fireinfo_profiles_locations.location IS NOT NULL GROUP BY location ORDER BY count DESC", when)
1775
1776 return ((r.location, r.count) for r in res)
1777
1778 def get_language_map(self, when=None):
b3f9bc4c 1779 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
66862195
MT
1780 SELECT language, COUNT(language)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1781 LEFT JOIN fireinfo_profiles_languages ON profiles.id = fireinfo_profiles_languages.profile_id \
1782 WHERE fireinfo_profiles_languages.language IS NOT NULL GROUP BY language ORDER BY count DESC", when)
1783
1784 return ((r.language, r.count) for r in res)
1785
1786 @property
1787 def cpu_vendors(self):
1788 res = self.db.query("SELECT DISTINCT vendor FROM fireinfo_processors ORDER BY vendor")
1789
1790 return (CPU_VENDORS.get(r.vendor, r.vendor) for r in res)
1791
1792 def get_cpu_vendors_map(self, when=None):
1793 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1794 SELECT vendor, COUNT(vendor)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1795 LEFT JOIN fireinfo_profiles_processors ON profiles.id = fireinfo_profiles_processors.profile_id \
1796 LEFT JOIN fireinfo_processors ON fireinfo_profiles_processors.processor_id = fireinfo_processors.id \
1797 WHERE NOT fireinfo_profiles_processors.processor_id IS NULL GROUP BY vendor ORDER BY count DESC", when)
1798
1799 return ((CPU_VENDORS.get(r.vendor, r.vendor), r.count) for r in res)
1800
1801 def get_cpu_clock_speeds(self, when=None):
1802 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1803 SELECT AVG(fireinfo_profiles_processors.clock_speed) AS avg, \
1804 STDDEV(fireinfo_profiles_processors.clock_speed) AS stddev, \
1805 MIN(fireinfo_profiles_processors.clock_speed) AS min, \
1806 MAX(fireinfo_profiles_processors.clock_speed) AS max FROM profiles \
1807 LEFT JOIN fireinfo_profiles_processors ON profiles.id = fireinfo_profiles_processors.profile_id \
1808 WHERE NOT fireinfo_profiles_processors.processor_id IS NULL \
5516a25b
MT
1809 AND fireinfo_profiles_processors.clock_speed > 0 \
1810 AND fireinfo_profiles_processors.clock_speed < fireinfo_profiles_processors.bogomips \
1811 AND fireinfo_profiles_processors.bogomips <= %s", when, 10000)
66862195
MT
1812
1813 if res:
1814 return (res.avg or 0, res.stddev or 0, res.min or 0, res.max or 0)
1815
1816 def get_cpus_with_platform_and_flag(self, platform, flag, when=None):
1817 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id), \
1818 processors AS (SELECT fireinfo_processors.id AS id, fireinfo_processors.flags AS flags FROM profiles \
1819 LEFT JOIN fireinfo_profiles_processors ON profiles.id = fireinfo_profiles_processors.profile_id \
1820 LEFT JOIN fireinfo_processors ON fireinfo_profiles_processors.processor_id = fireinfo_processors.id \
1821 LEFT JOIN fireinfo_profiles_arches ON profiles.id = fireinfo_profiles_arches.profile_id \
1822 LEFT JOIN fireinfo_arches ON fireinfo_profiles_arches.arch_id = fireinfo_arches.id \
1823 WHERE NOT fireinfo_profiles_processors.processor_id IS NULL \
1824 AND fireinfo_arches.platform = %s AND NOT 'hypervisor' = ANY(fireinfo_processors.flags)) \
1825 SELECT (COUNT(*)::float / (SELECT NULLIF(COUNT(*), 0) FROM processors)) AS count FROM processors \
1826 WHERE %s = ANY(processors.flags)", when, platform, flag)
1827
1828 return res.count or 0
1829
1830 def get_common_cpu_flags_by_platform(self, platform, when=None):
1831 if platform == "arm":
1832 flags = (
1833 "lpae", "neon", "thumb", "thumb2", "thumbee", "vfpv3", "vfpv4",
1834 )
1835 elif platform == "x86":
1836 flags = (
1837 "aes", "avx", "avx2", "lm", "mmx", "mmxext", "nx", "pae",
1838 "pni", "popcnt", "sse", "sse2", "rdrand", "ssse3", "sse4a",
1839 "sse4_1", "sse4_2"
1840 )
1841 else:
1842 return
1843
1844 ret = []
1845 for flag in flags:
1846 ret.append((flag, self.get_cpus_with_platform_and_flag(platform, flag, when=when)))
1847
1848 # Add virtual CPU flag "virt" for virtualization support
1849 if platform == "x86":
1850 ret.append(("virt",
1851 self.get_cpus_with_platform_and_flag(platform, "vmx", when=when) + \
1852 self.get_cpus_with_platform_and_flag(platform, "svm", when=when)))
1853
1854 return sorted(ret, key=lambda x: x[1], reverse=True)
1855
1856 def get_common_memory_amounts(self, when=None):
1857 amounts = (128, 256, 512, 1024, 2 * 1024, 4 * 1024, 8 * 1024, 16 * 1024, 32 * 1024, 64 * 1024)
1858
1859 ret = []
1860 for amount in amounts:
1861 ret.append((amount, self.get_memory_amount(amount * 1024 * 0.95, when=when)))
1862
1863 return ret
1864
1865 def get_memory_amount(self, greather_than, when=None):
1866 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1867 SELECT COUNT(*)::float / (SELECT COUNT(*) FROM profiles \
1868 LEFT JOIN fireinfo_profiles_memory ON profiles.id = fireinfo_profiles_memory.profile_id \
1869 WHERE NOT fireinfo_profiles_memory.amount IS NULL) AS percentage FROM profiles \
1870 LEFT JOIN fireinfo_profiles_memory ON profiles.id = fireinfo_profiles_memory.profile_id \
1871 WHERE fireinfo_profiles_memory.amount >= %s", when, greather_than)
1872
1873 if res:
1874 return res.percentage
1875
1876 def get_memory_amounts(self, when=None):
1877 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1878 SELECT AVG(fireinfo_profiles_memory.amount) AS avg, \
1879 STDDEV(fireinfo_profiles_memory.amount) AS stddev, \
1880 MIN(fireinfo_profiles_memory.amount) AS min, \
1881 MAX(fireinfo_profiles_memory.amount) AS max FROM profiles \
1882 LEFT JOIN fireinfo_profiles_memory ON profiles.id = fireinfo_profiles_memory.profile_id", when)
1883
1884 if res:
1885 return (res.avg or 0, res.stddev or 0, res.min or 0, res.max or 0)
1886
1887 def get_arch_map(self, when=None):
1888 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1889 SELECT fireinfo_arches.name AS arch, COUNT(*)::float / (SELECT COUNT(*) FROM profiles) AS count \
1890 FROM profiles \
1891 LEFT JOIN fireinfo_profiles_arches ON profiles.id = fireinfo_profiles_arches.profile_id \
1892 LEFT JOIN fireinfo_arches ON fireinfo_profiles_arches.arch_id = fireinfo_arches.id \
1893 WHERE NOT fireinfo_profiles_arches.profile_id IS NULL \
1894 GROUP BY fireinfo_arches.id ORDER BY count DESC", when)
1895
1896 return ((r.arch, r.count) for r in res)
1897
1898 # Virtual
1899
1900 def get_hypervisor_map(self, when=None):
1901 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id), \
1902 virtual_profiles AS (SELECT profiles.id AS profile_id, fireinfo_profiles_virtual.hypervisor_id FROM profiles \
1903 LEFT JOIN fireinfo_profiles_virtual ON profiles.id = fireinfo_profiles_virtual.profile_id \
1904 WHERE fireinfo_profiles_virtual.profile_id IS NOT NULL) \
1905 SELECT COALESCE(fireinfo_hypervisors.name, %s) AS name, \
1906 COUNT(*)::float / (SELECT COUNT(*) FROM virtual_profiles) AS count FROM virtual_profiles \
1907 LEFT JOIN fireinfo_hypervisors ON virtual_profiles.hypervisor_id = fireinfo_hypervisors.id \
1908 GROUP BY fireinfo_hypervisors.name ORDER BY count DESC", when, "unknown")
1909
1910 return ((r.name, r.count) for r in res)
1911
1912 def get_virtual_ratio(self, when=None):
1913 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1914 SELECT COUNT(*)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1915 LEFT JOIN fireinfo_profiles_virtual ON profiles.id = fireinfo_profiles_virtual.profile_id \
1916 WHERE fireinfo_profiles_virtual.profile_id IS NOT NULL", when)
1917
1918 if res:
1919 return res.count
1920
1921 # Releases
1922
1923 def get_releases_map(self, when=None):
1924 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1925 SELECT fireinfo_releases.name, COUNT(*)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1926 LEFT JOIN fireinfo_profiles_releases ON profiles.id = fireinfo_profiles_releases.profile_id \
1927 LEFT JOIN fireinfo_releases ON fireinfo_profiles_releases.release_id = fireinfo_releases.id \
1928 GROUP BY fireinfo_releases.name ORDER BY count DESC", when)
1929
1930 return ((r.name, r.count) for r in res)
1931
1932 def get_kernels_map(self, when=None):
1933 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1934 SELECT fireinfo_kernels.name, COUNT(*)::float / (SELECT COUNT(*) FROM profiles) AS count FROM profiles \
1935 LEFT JOIN fireinfo_profiles_kernels ON profiles.id = fireinfo_profiles_kernels.profile_id \
1936 LEFT JOIN fireinfo_kernels ON fireinfo_profiles_kernels.kernel_id = fireinfo_kernels.id \
1937 GROUP BY fireinfo_kernels.name ORDER BY count DESC", when)
1938
1939 return ((r.name, r.count) for r in res)
1940
1941 def _process_devices(self, devices):
1942 result = []
1943
1944 for dev in devices:
1945 dev = Device(self.backend, dev.get("id", None), dev)
1946 result.append(dev)
1947
1948 return result
1949
1950 def get_driver_map(self, driver, when=None):
1951 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id), \
1952 devices AS (SELECT * FROM profiles \
1953 LEFT JOIN fireinfo_profiles_devices ON profiles.id = fireinfo_profiles_devices.profile_id \
1954 LEFT JOIN fireinfo_devices ON fireinfo_profiles_devices.device_id = fireinfo_devices.id \
1955 WHERE driver = %s) \
1956 SELECT subsystem, model, vendor, driver, deviceclass, \
1957 COUNT(*)::float / (SELECT COUNT(*) FROM devices) AS percentage FROM devices \
1958 GROUP BY subsystem, model, vendor, driver, deviceclass \
1959 ORDER BY percentage DESC", when, driver)
1960
1961 return self._process_devices(res)
1962
1963 subsystem2class = {
1964 "pci" : hwdata.PCI(),
1965 "usb" : hwdata.USB(),
1966 }
1967
1968 def get_vendor_string(self, subsystem, vendor_id):
1969 try:
1970 cls = self.subsystem2class[subsystem]
1971 except KeyError:
1972 return
1973
1974 return cls.get_vendor(vendor_id)
1975
1976 def get_model_string(self, subsystem, vendor_id, model_id):
1977 try:
1978 cls = self.subsystem2class[subsystem]
1979 except KeyError:
1980 return
1981
1982 return cls.get_device(vendor_id, model_id)
1983
1984 def get_vendor_list(self, when=None):
1985 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
1986 SELECT DISTINCT fireinfo_devices.subsystem AS subsystem, fireinfo_devices.vendor AS vendor FROM profiles \
1987 LEFT JOIN fireinfo_profiles_devices ON profiles.id = fireinfo_profiles_devices.profile_id \
1988 LEFT JOIN fireinfo_devices ON fireinfo_profiles_devices.device_id = fireinfo_devices.id \
1989 WHERE NOT fireinfo_devices.driver = ANY(%s)", when, IGNORED_DEVICES)
1990
1991 vendors = {}
1992 for row in res:
1993 vendor = self.get_vendor_string(row.subsystem, row.vendor)
1994
1995 # Drop if vendor could not be determined
1996 if vendor is None:
1997 continue
1998
1999 try:
2000 vendors[vendor].append((row.subsystem, row.vendor))
2001 except KeyError:
2002 vendors[vendor] = [(row.subsystem, row.vendor)]
2003
2004 vendors = vendors.items()
2005 return sorted(vendors)
2006
2007 def get_devices_by_vendor(self, subsystem, vendor, when=None):
2008 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id), \
2009 devices AS (SELECT * FROM profiles \
2010 LEFT JOIN fireinfo_profiles_devices ON profiles.id = fireinfo_profiles_devices.profile_id \
2011 LEFT JOIN fireinfo_devices ON fireinfo_profiles_devices.device_id = fireinfo_devices.id \
2012 WHERE NOT fireinfo_devices.driver = ANY(%s)), \
2013 vendor_devices AS (SELECT * FROM devices WHERE devices.subsystem = %s AND devices.vendor = %s) \
2014 SELECT subsystem, model, vendor, driver, deviceclass FROM vendor_devices \
2015 GROUP BY subsystem, model, vendor, driver, deviceclass", when, IGNORED_DEVICES, subsystem, vendor)
2016
2017 return self._process_devices(res)
2018
2019 def get_device_percentage(self, subsystem, vendor, model, when=None):
2020 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id), \
2021 devices AS (SELECT * FROM profiles \
2022 LEFT JOIN fireinfo_profiles_devices ON profiles.id = fireinfo_profiles_devices.profile_id \
2023 LEFT JOIN fireinfo_devices ON fireinfo_profiles_devices.device_id = fireinfo_devices.id) \
2024 SELECT COUNT(*)::float / (SELECT COUNT(*) FROM devices) AS percentage FROM devices \
2025 WHERE devices.subsystem = %s AND devices.vendor = %s AND devices.model = %s",
2026 when, subsystem, vendor, model)
2027
2028 if res:
2029 return res.percentage
2030
2031 def get_device_in_profile(self, subsystem, vendor, model, limit=10, when=None):
2032 res = self.db.query("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id), \
2033 profiles_with_device AS (SELECT DISTINCT fireinfo_profiles.public_id FROM profiles \
2034 LEFT JOIN fireinfo_profiles ON profiles.id = fireinfo_profiles.id \
2035 LEFT JOIN fireinfo_profiles_devices ON profiles.id = fireinfo_profiles_devices.profile_id \
2036 LEFT JOIN fireinfo_devices ON fireinfo_profiles_devices.device_id = fireinfo_devices.id \
2037 WHERE fireinfo_devices.subsystem = %s AND fireinfo_devices.vendor = %s \
2038 AND fireinfo_devices.model = %s) \
2039 SELECT * FROM profiles_with_device ORDER BY RANDOM() LIMIT %s",
2040 when, subsystem, vendor, model, limit)
2041
2042 return (r.public_id for r in res)
2043
2044 def get_network_zones_map(self, when=None):
2045 res = self.db.get("WITH profiles AS (SELECT fireinfo_profiles_with_data_at(%s) AS id) \
2046 SELECT COUNT(NULLIF(has_red, FALSE))::float / (SELECT COUNT(*) FROM profiles) AS has_red, \
2047 COUNT(NULLIF(has_green, FALSE))::float / (SELECT COUNT(*) FROM profiles) AS has_green, \
2048 COUNT(NULLIF(has_orange, FALSE))::float / (SELECT COUNT(*) FROM profiles) AS has_orange, \
2049 COUNT(NULLIF(has_blue, FALSE))::float / (SELECT COUNT(*) FROM profiles) AS has_blue FROM profiles \
2050 LEFT JOIN fireinfo_profiles_networks ON profiles.id = fireinfo_profiles_networks.profile_id \
2051 WHERE fireinfo_profiles_networks.profile_id IS NOT NULL", when)
2052
2053 return res