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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
""" A module to perform measurements on the RIPE Atlas
<https://atlas.ripe.net/> probes using the UDM (User Defined
Measurements) creation API.
Authorization key is expected in $HOME/.atlas/auth
in the environment variable ATLASAUTH or have to be
provided in the constructor's arguments.
Stéphane Bortzmeyer <stephane+frama@bortzmeyer.org>
"""
# WARNING: if you modify it here, also change setup.py https://packaging.python.org/guides/single-sourcing-package-version/#single-sourcing-the-version
VERSION = '2.2'
import os
import json
import time
import urllib.request, urllib.error, urllib.parse
import random
import re
import copy
import sys
import getopt
import string
import enum
import socket
authfile = "%s/.atlas/auth" % os.environ['HOME']
base_url = "https://atlas.ripe.net/api/v2/measurements"
base_url_probes = "https://atlas.ripe.net/api/v2/probes"
# The following parameters are currently not settable. Anyway, be
# careful when changing these, you may get inconsistent results if you
# do not wait long enough. Other warning: the time to wait depend on
# the number of the probes.
# All in seconds:
fields_delay_base = 6
fields_delay_factor = 0.2
results_delay_base = 3
results_delay_factor = 0.15
maximum_time_for_results_base = 30
maximum_time_for_results_factor = 5
# The basic problem is that there is no easy way in Atlas to know when
# it is over, either for retrieving the list of the probes, or for
# retrieving the results themselves. The only solution is to wait
# "long enough". The time to wait is not documented so the values
# above have been found mostly with trial-and-error.
class AuthFileNotFound(Exception):
pass
class AuthFileEmpty(Exception):
pass
class RequestSubmissionError(Exception):
def __init__(self, http_status, reason, body):
self.status = http_status
self.reason = reason
self.body = body
class FieldsQueryError(Exception):
pass
class MeasurementNotFound(Exception):
pass
class MeasurementAccessError(Exception):
pass
class ProbeNotFound(Exception):
pass
class ProbeAccessError(Exception):
pass
class ResultError(Exception):
pass
class IncompatibleArguments(Exception):
pass
class InternalError(Exception):
pass
# Resut JSON file does not have the expected fields/members
class WrongAssumption(Exception):
pass
# Utilities
def format_error(error):
msg = ""
if error.status is not None:
msg += "HTTP status %s " % error.status
msg += error.reason
if error.body is not None and error.body != "":
msg += " %s" % error.body
return msg
Host_Type = enum.Enum('Host-Type', ['IPv6', 'IPv4', 'Name'])
def host_type(s):
"""Takes an argument which is the identifier for a host and returns a host type. """
try:
addr = socket.inet_pton(socket.AF_INET6, s)
return Host_Type.IPv6
except socket.error: # not a valid IPv6 address
try:
addr = socket.inet_pton(socket.AF_INET, s) # Note that it
# fails with unusual but common syntaxes such as raw
# integers.
return Host_Type.IPv4
except socket.error: # not a valid IPv4 address either
return Host_Type.Name
class Config:
def __init__(self):
# Default values
self.old_measurement = None
self.measurement_id = None
self.probes = None
self.country = None # World-wide
self.asn = None # All
self.area = None # World-wide
self.prefix = None
self.verbose = False
self.requested = 5 # Probes
self.default_requested = True
self.percentage_required = 0.9
self.machine_readable = False
self.measurement_id = None
self.display_probes = False
self.display_probe_asns = False
self.cache_probes = None
self.ipv4 = False
self.private = False
self.resolve_on_probe = False
self.tags = None # Tags we send to tag the measurement, not tags of the probes
self.port = 80
self.size = 64
self.spread = None
# Tags
self.exclude = None
self.include = None
def usage(self, msg=None):
if msg:
print(msg, file=sys.stderr)
print("""General options are:
--verbose or -v : makes the program more talkative
--help or -h : this message
--displayprobes or -o : display the probes numbers (WARNING: big lists)
--displayprobeasns : display the (unique) probe ASNumbers (currently only for blaeu-resolve)
--cache-probes=<file.json> : cache probe data
--country=2LETTERSCODE or -c 2LETTERSCODE : limits the measurements to one country (default is world-wide)
--area=AREACODE or -a AREACODE : limits the measurements to one area such as North-Central (default is world-wide)
--asn=ASnumber or -n ASnumber : limits the measurements to one AS (default is all ASes)
--prefix=IPprefix or -f IPprefix : limits the measurements to one IP prefix (default is all prefixes) WARNING: it must be an *exact* prefix in the global routing table
--probes=N or -s N : selects the probes by giving explicit ID (one ID or a comma-separated list)
--requested=N or -r N : requests N probes (default is %s)
--percentage=X or -p X : stops the program as soon as X %% of the probes reported a result (default is %s %%)
--measurement-ID=N or -m N : do not start a measurement, just analyze a former one
--old-measurement MSMID or -g MSMID : uses the probes of measurement MSMID
--include TAGS or -i TAGS : limits the measurements to probes with these tags (a comma-separated list)
--exclude TAGS or -e TAGS : excludes from measurements the probes with these tags (a comma-separated list)
--port=N or -t N : destination port for TCP (default is %s)
--size=N or -z N : number of bytes in the packet (default is %s bytes)
--ipv4 or -4 : uses IPv4 (default is IPv6, except if the parameter or option is an IP address, then it is automatically found)
--tags TAGS : tag the measurement (no relationship with probes tags) (a comma-separated list)
--spread or -w : spreads the tests (add a delay before the tests)
--private : makes the measurement private
--resolve-on-probe : resolve names with the probe's DNS resolver
--machine-readable or -b : machine-readable output, to be consumed by tools like grep or cut
""" % (self.requested, int(self.percentage_required*100), self.port, self.size), file=sys.stderr)
def parse(self, shortOptsSpecific="", longOptsSpecific=[], parseSpecific=None, usage=None):
if usage is None:
usage = self.usage
try:
# We keep some old syntaxes that were legal in the past
# such as --old_measurement (underscore) or
# --machineredable).
optlist, args = getopt.getopt (sys.argv[1:],
"4a:bc:e:f:g:hi:m:n:op:r:s:t:uvw:z:" + shortOptsSpecific,
["requested=", "country=", "area=", "asn=", "prefix=", "cache-probes=", "probes=",
"port=", "percentage=", "include=", "exclude=", "version",
"measurement-ID=", "old-measurement=", "old_measurement=",
"display-probes", "displayprobes", "displayprobeasns", "size=",
"ipv4", "private", "resolve-on-probe",
"machine-readable", "machinereadable", "spread=", "verbose", "tags=", "help"] +
longOptsSpecific)
for option, value in optlist:
if option == "--country" or option == "-c":
self.country = value
elif option == "--area" or option == "-a":
self.area = value
elif option == "--asn" or option == "-n":
self.asn = value
elif option == "--prefix" or option == "-f":
self.prefix = value
elif option == "--cache-probes":
self.cache_probes = value
elif option == "--probes" or option == "-s":
self.probes = value # Splitting (and syntax checking...) delegated to Atlas
elif option == "--percentage" or option == "-p":
self.percentage_required = float(value)
elif option == "--requested" or option == "-r":
self.requested = int(value)
self.default_requested = False
elif option == "--port" or option == "-t":
self.port = int(value)
elif option == "--measurement-ID" or option == "-m":
self.measurement_id = value
elif option == "--old-measurement" or option == "--old_measurement" or option == "-g":
self.old_measurement = value
elif option == "--verbose" or option == "-v":
self.verbose = True
elif option == "--ipv4" or option == "-4":
self.ipv4 = True
elif option == "--private":
self.private = True
elif option == "--resolve-on-probe" or option == "-u":
self.resolve_on_probe = True
elif option == "--size" or option == "-z":
self.size = int(value)
elif option == "--spread" or option == "-w":
self.spread = int(value)
elif option == "--display-probes" or option == "--displayprobes" or option == "-o":
self.display_probes = True
elif option == "--displayprobeasns":
self.display_probe_asns = True
elif option == "--exclude" or option == "-e":
self.exclude = value.split(",")
elif option == "--include" or option == "-i":
# See the file TAGS
self.include = value.split(",")
elif option == "--tags":
self.tags = value.split(",")
elif option == "--machine-readable" or option == "--machinereadable" or option == "-b":
self.machine_readable = True
elif option == "--help" or option == "-h":
usage()
sys.exit(0)
elif option == "--version":
print("Blaeu version %s" % VERSION)
sys.exit(0)
else:
parseResult = parseSpecific(self, option, value)
if not parseResult:
usage("Unknown option %s" % option)
sys.exit(1)
except getopt.error as reason:
usage(reason)
sys.exit(1)
if self.country is not None:
if self.asn is not None or self.area is not None or self.prefix is not None or \
self.probes is not None:
usage("Specify country *or* area *or* ASn *or* prefix *or* the list of probes")
sys.exit(1)
elif self.area is not None:
if self.asn is not None or self.country is not None or self.prefix is not None or \
self.probes is not None:
usage("Specify country *or* area *or* ASn *or* prefix *or* the list of probes")
sys.exit(1)
elif self.asn is not None:
if self.area is not None or self.country is not None or self.prefix is not None or \
self.probes is not None:
usage("Specify country *or* area *or* ASn *or* prefix *or* the list of probes")
sys.exit(1)
elif self.probes is not None:
if self.country is not None or self.area is not None or self.asn or \
self.prefix is not None:
usage("Specify country *or* area *or* ASn *or* prefix *or* the list of probes")
sys.exit(1)
elif self.prefix is not None:
if self.country is not None or self.area is not None or self.asn or \
self.probes is not None:
usage("Specify country *or* area *or* ASn *or* prefix *or* the list of probes")
sys.exit(1)
if self.probes is not None or self.old_measurement is not None:
if not self.default_requested:
print("Warning: --requested=%d ignored since a list of probes was requested" % self.requested, file=sys.stderr)
if self.old_measurement is not None:
def ignored(variable, name):
if variable is not None:
print("Warning: --%s ignored since we use probes from a previous measurement" % name, file=sys.stderr)
ignored(self.country, "country")
ignored(self.area, "area")
ignored(self.prefix, "prefix")
ignored(self.asn, "asn")
ignored(self.probes, "probes")
ignored(self.include, "include")
ignored(self.exclude, "exclude")
if self.probes is not None:
self.requested = len(self.probes.split(","))
data = { "is_oneoff": True,
"definitions": [
{"description": "", "port": self.port} ],
"probes": [
{"requested": self.requested} ] }
if self.old_measurement is not None:
old_measurement = Measurement(data=None, id=self.old_measurement)
data["probes"][0]["requested"] = old_measurement.num_probes
if self.verbose:
print("Using %i probes from measurement #%s" % \
(data["probes"][0]["requested"], self.old_measurement))
data["probes"][0]["type"] = "msm"
data["probes"][0]["value"] = self.old_measurement
data["definitions"][0]["description"] += (" from probes of measurement #%s" % self.old_measurement)
else:
if self.probes is not None:
data["probes"][0]["type"] = "probes"
data["probes"][0]["value"] = self.probes
else:
if self.country is not None:
data["probes"][0]["type"] = "country"
data["probes"][0]["value"] = self.country
data["definitions"][0]["description"] += (" from %s" % self.country)
elif self.area is not None:
data["probes"][0]["type"] = "area"
data["probes"][0]["value"] = self.area
data["definitions"][0]["description"] += (" from %s" % self.area)
elif self.asn is not None:
data["probes"][0]["type"] = "asn"
data["probes"][0]["value"] = self.asn
data["definitions"][0]["description"] += (" from AS #%s" % self.asn)
elif self.prefix is not None:
data["probes"][0]["type"] = "prefix"
data["probes"][0]["value"] = self.prefix
data["definitions"][0]["description"] += (" from prefix %s" % self.prefix)
else:
data["probes"][0]["type"] = "area"
data["probes"][0]["value"] = "WW"
if self.ipv4:
data["definitions"][0]['af'] = 4
else:
data["definitions"][0]['af'] = 6
if self.private:
data["definitions"][0]['is_public'] = False
if self.resolve_on_probe:
data["definitions"][0]['resolve_on_probe'] = True
if self.size is not None:
data["definitions"][0]['size'] = self.size
if self.tags is not None:
data["definitions"][0]["tags"] = self.tags
if self.spread is not None:
data["definitions"][0]['spread'] = self.spread
data["probes"][0]["tags"] = {}
if self.include is not None:
data["probes"][0]["tags"]["include"] = copy.copy(self.include)
else:
data["probes"][0]["tags"]["include"] = []
if self.ipv4:
data["probes"][0]["tags"]["include"].append("system-ipv4-works") # Some probes cannot do ICMP outgoing (firewall?)
else:
data["probes"][0]["tags"]["include"].append("system-ipv6-works")
if self.exclude is not None:
data["probes"][0]["tags"]["exclude"] = copy.copy(self.exclude)
if self.verbose:
print("Blaeu version %s" % VERSION)
return args, data
class JsonRequest(urllib.request.Request):
def __init__(self, url, key):
urllib.request.Request.__init__(self, url)
self.url = url
self.add_header("Content-Type", "application/json")
self.add_header("Accept", "application/json")
self.add_header("User-Agent", "Blaeu/%s" % VERSION)
self.add_header("Authorization", "Key %s" % key)
#To debug, uncomment this line:
#print(self.header_items())
#print(self) will display the URL called
def __str__(self):
return self.url
class Measurement():
""" An Atlas measurement, identified by its ID (such as #1010569) in the field "id" """
def __init__(self, data, wait=True, sleep_notification=None, key=None, id=None):
"""
Creates a measurement."data" must be a dictionary (*not* a JSON string) having the members
requested by the Atlas documentation. "wait" should be set to False for periodic (not
oneoff) measurements. "sleep_notification" is a lambda taking one parameter, the
sleep delay: when the module has to sleep, it calls this lambda, allowing you to be informed of
the delay. "key" is the API key. If None, it will be read in the configuration file.
If "data" is None and id is not, a dummy measurement will be created, mapped to
the existing measurement having this ID.
"""
if data is None and id is None:
raise RequestSubmissionError(None, "No data and no measurement ID", None)
# TODO: when creating a dummy measurement, a key may not be necessary if the measurement is public
if not key:
if os.environ.get("ATLASAUTH"):
# use envvar ATLASAUTH for the key
key = os.environ.get("ATLASAUTH")
else:
# use file for key if envvar ATLASAUTH isn't set
if not os.path.exists(authfile):
raise AuthFileNotFound("Authentication file %s not found" % authfile)
auth = open(authfile)
key = auth.readline()
if key is None or key == "":
raise AuthFileEmpty("Authentication file %s empty or missing a end-of-line at the end" % authfile)
key = key.rstrip('\n')
auth.close()
self.url = base_url
self.url_probes = base_url + "/%s/?fields=probes,status"
self.url_status = base_url + "/%s/?fields=status"
self.url_results = base_url + "/%s/results/"
self.url_all = base_url + "/%s/"
self.url_latest = base_url + "-latest/%s/?versions=%s"
self.key = key
self.status = None
if data is not None:
self.json_data = json.dumps(data).encode('utf-8')
self.notification = sleep_notification
request = JsonRequest(self.url, self.key)
try:
# Start the measurement
conn = urllib.request.urlopen(request, self.json_data)
# To debug, uncomment these two lines:
#headers = conn.getheaders()
#print(headers)
# Now, parse the answer
results = json.loads(conn.read().decode('utf-8'))
self.id = results["measurements"][0]
conn.close()
except urllib.error.HTTPError as e:
raise RequestSubmissionError(e.code, e.reason, e.read().decode())
except urllib.error.URLError as e:
raise RequestSubmissionError(None, e.reason, "URL %s" % self.url)
self.gen = random.Random()
self.time = time.gmtime()
if not wait:
return
# Find out how many probes were actually allocated to this measurement
enough = False
left = 30 # Maximum number of tests
requested = data["probes"][0]["requested"]
fields_delay = fields_delay_base + (requested * fields_delay_factor)
while not enough:
# Let's be patient
if self.notification is not None:
self.notification(fields_delay)
time.sleep(fields_delay)
fields_delay *= 2
try:
request = JsonRequest((self.url_probes % self.id) + \
("&defeatcaching=dc%s" % self.gen.randint(1,10000)), self.key) # A random
# component is necesary to defeat caching (even Cache-Control sems ignored)
conn = urllib.request.urlopen(request)
# Now, parse the answer
meta = json.loads(conn.read().decode('utf-8'))
self.status = meta["status"]["name"]
if meta["status"]["name"] == "Specified" or \
meta["status"]["name"] == "Scheduled":
# Not done, loop
left -= 1
if left <= 0:
raise FieldsQueryError("Maximum number of status queries reached")
elif meta["status"]["name"] == "Ongoing":
enough = True
self.num_probes = len(meta["probes"])
else:
raise InternalError("Internal error in #%s, unexpected status when querying the measurement fields: \"%s\"" % (self.id, meta["status"]))
conn.close()
except urllib.error.URLError as e:
raise FieldsQueryError("%s" % e.reason)
else:
self.id = id
self.notification = None
try:
conn = urllib.request.urlopen(JsonRequest(self.url_status % self.id, self.key))
except urllib.error.HTTPError as e:
if e.code == 404:
raise MeasurementNotFound
else:
raise MeasurementAccessError("HTTP %s, %s %s" % (e.code, e.reason, e.read()))
except urllib.error.URLError as e:
raise MeasurementAccessError("Reason \"%s\"" % \
(e.reason))
result_status = json.loads(conn.read().decode('utf-8'))
status = result_status["status"]["name"]
self.status = status
if status != "Ongoing" and status != "Stopped":
raise MeasurementAccessError("Invalid status \"%s\"" % status)
try:
conn = urllib.request.urlopen(JsonRequest(self.url_probes % self.id, self.key))
except urllib.error.HTTPError as e:
if e.code == 404:
raise MeasurementNotFound
else:
raise MeasurementAccessError("%s %s" % (e.reason, e.read()))
except urllib.error.URLError as e:
raise MeasurementAccessError("Reason \"%s\"" % \
(e.reason))
result_status = json.loads(conn.read().decode('utf-8'))
self.num_probes = len(result_status["probes"])
try:
conn = urllib.request.urlopen(JsonRequest(self.url_all % self.id, self.key))
except urllib.error.HTTPError as e:
if e.code == 404:
raise MeasurementNotFound
else:
raise MeasurementAccessError("%s %s" % (e.reason, e.read()))
except urllib.error.URLError as e:
raise MeasurementAccessError("Reason \"%s\"" % \
(e.reason))
result_status = json.loads(conn.read().decode('utf-8'))
self.time = time.gmtime(result_status["start_time"])
self.description = result_status["description"]
self.interval = result_status["interval"]
def results(self, wait=True, percentage_required=0.9, latest=None):
"""Retrieves the result. "wait" indicates if you are willing to wait until
the measurement is over (otherwise, you'll get partial
results). "percentage_required" is meaningful only when you wait
and it indicates the percentage of the allocated probes that
have to report before the function returns (warning: the
measurement may stop even if not enough probes reported so you
always have to check the actual number of reporting probes in
the result). "latest" indicates that you want to retrieve only
the last N results (by default, you get all the results).
"""
if latest is not None:
wait = False
if latest is None:
request = JsonRequest(self.url_results % self.id, self.key)
else:
request = JsonRequest(self.url_latest % (self.id, latest), self.key)
if wait:
enough = False
attempts = 0
results_delay = results_delay_base + (self.num_probes * results_delay_factor)
maximum_time_for_results = maximum_time_for_results_base + \
(self.num_probes * maximum_time_for_results_factor)
start = time.time()
elapsed = 0
result_data = None
while not enough and elapsed < maximum_time_for_results:
if self.notification is not None:
self.notification(results_delay)
time.sleep(results_delay)
results_delay *= 2
attempts += 1
elapsed = time.time() - start
try:
conn = urllib.request.urlopen(request)
result_data = json.loads(conn.read().decode('utf-8'))
num_results = len(result_data)
if num_results >= self.num_probes*percentage_required:
# Requesting a strict equality may be too
# strict: if an allocated probe does not
# respond, we will have to wait for the stop
# of the measurement (many minutes). Anyway,
# there is also the problem that a probe may
# have sent only a part of its measurements.
enough = True
else:
conn = urllib.request.urlopen(JsonRequest(self.url_status % self.id, self.key))
result_status = json.loads(conn.read().decode('utf-8'))
status = result_status["status"]["name"]
if status == "Ongoing":
# Wait a bit more
pass
elif status == "Stopped":
enough = True # Even if not enough probes
else:
raise InternalError("Unexpected status when retrieving the measurement: \"%s\"" % \
result_data["status"])
conn.close()
except urllib.error.HTTPError as e:
if e.code != 404: # Yes, we may have no result file at
# all for some time
raise ResultError(str(e.code) + " " + e.reason + " " + str(e.read()))
except urllib.error.URLError as e:
raise ResultError("Reason \"%s\"" % \
(e.reason))
if result_data is None:
raise ResultError("No results retrieved")
else:
try:
conn = urllib.request.urlopen(request)
result_data = json.loads(conn.read().decode('utf-8'))
except urllib.error.URLError as e:
raise ResultError(e.reason)
return result_data
class Probe():
""" An Atlas probe, identified by its ID (such as #1010569) in the field "id" """
__probe_attributes = {
"id": "id",
"status": "status.name",
"address_v4": "address_v4",
"address_v6": "address_v6",
"asn_v4": "asn_v4",
"asn_v6": "asn_v6",
"country_code": "country_code",
"is_public": "is_public",
"prefix_v4": "prefix_v4",
"prefix_v6": "prefix_v6",
"tags": "tags",
"description": "description",
"geometry": "geometry",
"first_connected": "first_connected",
"last_connected": "last_connected",
}
def __init__(self, id, fetch=True):
if not fetch:
self.id = id
return
self.url = base_url_probes + "/%s" % id
try:
conn = urllib.request.urlopen(JsonRequest(self.url, self.key))
except urllib.error.HTTPError as e:
if e.code == 404:
raise ProbeNotFound
else:
raise ProbeAccessError("HTTP %s, %s %s" % (e.code, e.reason, e.read()))
except urllib.error.URLError as e:
raise ProbeAccessError("Reason \"%s\"" % \
(e.reason))
probe_data = json.loads(conn.read().decode('utf-8'))
def nested_get(d, keys):
k = keys.pop(0)
d = d[k]
return nested_get(d, keys) if keys else d
for key, lookup_key in self.__probe_attributes.items():
setattr(self, key, nested_get(probe_data, lookup_key.split(".")))
def __str__(self):
return "Probe #%s, %s" % (self.id, self.description)
def __repr__(self):
return "Probe #%s, %s" % (self.id, self.description)
def __eq__(self, other):
return self.__dict__ == other.__dict__
@classmethod
def from_dict(cls, data):
"""Creates a Probe object from a dictionary (not a JSON string)"""
if not all(k in data for k in cls.__probe_attributes):
return
probe = cls(data["id"], fetch=False)
for key, value in data.items():
setattr(probe, key, value)
return probe
class ProbeCache():
""" A cache for probe data, to avoid querying the Atlas servers each time. """
__cache__ = {}
def __init__(self, filename):
self.filename = filename
self.data = {} if not os.path.exists(filename) else \
json.load(open(filename), object_hook=lambda o: Probe.from_dict(o) or o)
def __str__(self):
return "ProbeCache %s, %s probes" % (self.filename, len(self.data))
def __repr__(self):
return "ProbeCache %s, %s probes" % (self.filename, len(self.data))
def get(self, probe):
return self.data.get(str(probe.id))
def put(self, probe):
prev_data = self.data.copy()
self.data[str(probe.id)] = probe
if self.data != prev_data:
json.dump(self.data, open(self.filename, "w"), default=lambda o: o.__dict__)
return probe
@classmethod
def cache_probe_id(cls, filename, id):
cache = cls.__cache__.setdefault(filename, cls(filename))
return cache.get(Probe(id)) or cache.put(Probe(id))
|