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 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538
|
# -*- coding: utf-8 -*-
"""
Fast and exit-safe interface to GRASS C-library functions
using ctypes and multiprocessing
(C) 2013 by the GRASS Development Team
This program is free software under the GNU General Public
License (>=v2). Read the file COPYING that comes with GRASS
for details.
:authors: Soeren Gebbert
"""
from grass.exceptions import FatalError
import time
import threading
import sys
from multiprocessing import Process, Lock, Pipe
import logging
from ctypes import *
from .core import *
import grass.lib.gis as libgis
import grass.lib.raster as libraster
import grass.lib.vector as libvector
import grass.lib.date as libdate
import grass.lib.raster3d as libraster3d
import grass.lib.temporal as libtgis
from grass.pygrass.rpc.base import RPCServerBase
from grass.pygrass.raster import RasterRow
from grass.pygrass.vector import VectorTopo
###############################################################################
class RPCDefs(object):
# Function identifier and index
STOP = 0
HAS_TIMESTAMP = 1
WRITE_TIMESTAMP = 2
READ_TIMESTAMP = 3
REMOVE_TIMESTAMP = 4
READ_MAP_INFO = 5
MAP_EXISTS = 6
READ_MAP_INFO = 7
AVAILABLE_MAPSETS = 8
GET_DRIVER_NAME = 9
GET_DATABASE_NAME = 10
G_MAPSET = 11
G_LOCATION = 12
G_GISDBASE = 13
READ_MAP_FULL_INFO = 14
G_FATAL_ERROR = 49
TYPE_RASTER = 0
TYPE_RASTER3D = 1
TYPE_VECTOR = 2
###############################################################################
def _read_map_full_info(lock, conn, data):
"""Read full map specific metadata from the spatial database using
PyGRASS functions.
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The list of data entries [function_id, maptype, name, mapset]
"""
info = None
try:
maptype = data[1]
name = data[2]
mapset = data[3]
if maptype == RPCDefs.TYPE_RASTER:
info = _read_raster_full_info(name, mapset)
elif maptype == RPCDefs.TYPE_VECTOR:
info = _read_vector_full_info(name, mapset)
except:
raise
finally:
conn.send(info)
###############################################################################
def _read_raster_full_info(name, mapset):
"""Read raster info, history and cats using PyGRASS RasterRow
and return a dictionary. Colors should be supported in the
future.
"""
info = {}
r = RasterRow(name=name, mapset=mapset)
if r.exist() is True:
r.open("r")
for item in r.info:
info[item[0]] = item[1]
for item in r.hist:
info[item[0]] = item[1]
info["full_name"] = r.name_mapset()
info["mtype"] = r.mtype
if r.cats:
info["cats_title"] = r.cats_title
info["cats"] = list(r.cats)
r.close()
ts = libgis.TimeStamp()
check = libgis.G_read_raster_timestamp(name, mapset, byref(ts))
if check:
dates = _convert_timestamp_from_grass(ts)
info["start_time"] = dates[0]
info["end_time"] = dates[1]
if len(dates) > 2:
info["time_unit"] = dates[2]
return(info)
###############################################################################
def _read_vector_full_info(name, mapset, layer = None):
"""Read vector info using PyGRASS VectorTopo
and return a dictionary. C
"""
info = {}
v = VectorTopo(name=name, mapset=mapset)
if v.exist() is True:
v.open("r")
# Bounding box
for item in v.bbox().items():
info[item[0]] = item[1]
info["name"] = v.name
info["mapset"] = v.mapset
info["comment"] = v.comment
info["full_name"] = v.full_name
info["is_3d"] = v.is_3D()
info["map_date"] = v.map_date
info["maptype"] = v.maptype
info["organization"] = v.organization
info["person"] = v.person
info["proj"] = v.proj
info["proj_name"] = v.proj_name
info["title"] = v.title
info["thresh"] = v.thresh
info["zone"] = v.zone
vtypes = ['areas', 'dblinks', 'faces', 'holes', 'islands',
'kernels', 'lines', 'nodes', 'points', 'updated_lines',
'updated_nodes', 'volumes']
for vtype in vtypes:
info[vtype] = v.number_of(vtype)
info.update(v.num_primitives())
if v.table is not None:
info["columns"] = v.table.columns
ts = libgis.TimeStamp()
check = libgis.G_read_vector_timestamp(name, layer, mapset, byref(ts))
if check:
dates = _convert_timestamp_from_grass(ts)
info["start_time"] = dates[0]
info["end_time"] = dates[1]
if len(dates) > 2:
info["time_unit"] = dates[2]
return(info)
def _fatal_error(lock, conn, data):
"""Calls G_fatal_error()"""
libgis.G_fatal_error("Fatal Error in C library server")
###############################################################################
def _get_mapset(lock, conn, data):
"""Return the current mapset
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The mapset as list entry 1 [function_id]
:returns: Name of the current mapset
"""
mapset = libgis.G_mapset()
conn.send(mapset)
###############################################################################
def _get_location(lock, conn, data):
"""Return the current location
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The mapset as list entry 1 [function_id]
:returns: Name of the location
"""
location = libgis.G_location()
conn.send(location)
###############################################################################
def _get_gisdbase(lock, conn, data):
"""Return the current gisdatabase
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The mapset as list entry 1 [function_id]
:returns: Name of the gisdatabase
"""
gisdbase = libgis.G_gisdbase()
conn.send(gisdbase)
###############################################################################
def _get_driver_name(lock, conn, data):
"""Return the temporal database driver of a specific mapset
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The mapset as list entry 1 [function_id, mapset]
:returns: Name of the driver or None if no temporal database present
"""
mapset = data[1]
if not mapset:
mapset = libgis.G_mapset()
drstring = libtgis.tgis_get_mapset_driver_name(mapset)
conn.send(drstring)
###############################################################################
def _get_database_name(lock, conn, data):
"""Return the temporal database name of a specific mapset
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The mapset as list entry 1 [function_id, mapset]
:returns: Name of the database or None if no temporal database present
"""
dbstring = None
try:
mapset = data[1]
if not mapset:
mapset = libgis.G_mapset()
dbstring = libtgis.tgis_get_mapset_database_name(mapset)
if dbstring:
# We substitute GRASS variables if they are located in the database string
# This behavior is in conjunction with db.connect
dbstring = dbstring.replace("$GISDBASE", libgis.G_gisdbase())
dbstring = dbstring.replace("$LOCATION_NAME", libgis.G_location())
dbstring = dbstring.replace("$MAPSET", mapset)
except:
raise
finally:
conn.send(dbstring)
###############################################################################
def _available_mapsets(lock, conn, data):
"""Return all available mapsets the user can access as a list of strings
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The list of data entries [function_id]
:returns: Names of available mapsets as list of strings
"""
count = 0
mapset_list = []
try:
# Initialize the accessible mapset list, this is bad C design!!!
libgis.G_get_mapset_name(0)
mapsets = libgis.G_get_available_mapsets()
while mapsets[count]:
char_list = ""
mapset = mapsets[count]
permission = libgis.G_mapset_permissions(mapset)
in_search_path = libgis.G_is_mapset_in_search_path(mapset)
c = 0
while mapset[c] != "\x00":
char_list += mapset[c]
c += 1
if permission >= 0 and in_search_path == 1:
mapset_list.append(char_list)
libgis.G_debug(1, "c_library_server._available_mapsets: \n mapset: %s\n"\
" has permission %i\n in search path: %i"%(char_list,
permission, in_search_path))
count += 1
# We need to sort the mapset list, but the first one should be
# the current mapset
current_mapset = libgis.G_mapset()
if current_mapset in mapset_list:
mapset_list.remove(current_mapset)
mapset_list.sort()
mapset_list.reverse()
mapset_list.append(current_mapset)
mapset_list.reverse()
except:
raise
finally:
conn.send(mapset_list)
###############################################################################
def _has_timestamp(lock, conn, data):
"""Check if the file based GRASS timestamp is present and send
True or False using the provided pipe.
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The list of data entries [function_id, maptype, name,
mapset, layer]
"""
check = False
try:
maptype = data[1]
name = data[2]
mapset = data[3]
layer = data[4]
if maptype == RPCDefs.TYPE_RASTER:
if libgis.G_has_raster_timestamp(name, mapset) == 1:
check = True
elif maptype == RPCDefs.TYPE_VECTOR:
if libgis.G_has_vector_timestamp(name, layer, mapset) == 1:
check = True
elif maptype == RPCDefs.TYPE_RASTER3D:
if libgis.G_has_raster3d_timestamp(name, mapset) == 1:
check = True
except:
raise
finally:
conn.send(check)
###############################################################################
def _read_timestamp(lock, conn, data):
"""Read the file based GRASS timestamp and send
the result using the provided pipe.
The tuple to be send via pipe: (return value of G_read_*_timestamp,
timestamps).
Please have a look at the documentation of G_read_raster_timestamp,
G_read_vector_timestamp and G_read_raster3d_timestamp for the return
values description.
The timestamps to be send are tuples of values:
- relative time (start, end, unit), start and end are of type
integer, unit is of type string.
- absolute time (start, end), start and end are of type datetime
The end time may be None in case of a time instance.
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send the result
:param data: The list of data entries [function_id, maptype, name,
mapset, layer]
"""
check = False
dates = None
try:
maptype = data[1]
name = data[2]
mapset = data[3]
layer = data[4]
ts = libgis.TimeStamp()
if maptype == RPCDefs.TYPE_RASTER:
check = libgis.G_read_raster_timestamp(name, mapset, byref(ts))
elif maptype == RPCDefs.TYPE_VECTOR:
check = libgis.G_read_vector_timestamp(name, layer, mapset, byref(ts))
elif maptype == RPCDefs.TYPE_RASTER3D:
check = libgis.G_read_raster3d_timestamp(name, mapset, byref(ts))
dates = _convert_timestamp_from_grass(ts)
except:
raise
finally:
conn.send((check, dates))
###############################################################################
def _write_timestamp(lock, conn, data):
"""Write the file based GRASS timestamp
the return values of the called C-functions using the provided pipe.
The value to be send via pipe is the return value of G_write_*_timestamp.
Please have a look at the documentation of G_write_raster_timestamp,
G_write_vector_timestamp and G_write_raster3d_timestamp for the return
values description.
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The list of data entries [function_id, maptype, name,
mapset, layer, timestring]
"""
check = -3
try:
maptype = data[1]
name = data[2]
mapset = data[3]
layer = data[4]
timestring = data[5]
ts = libgis.TimeStamp()
check = libgis.G_scan_timestamp(byref(ts), timestring)
if check != 1:
logging.error("Unable to convert the timestamp: " + timestring)
return -2
if maptype == RPCDefs.TYPE_RASTER:
check = libgis.G_write_raster_timestamp(name, byref(ts))
elif maptype == RPCDefs.TYPE_VECTOR:
check = libgis.G_write_vector_timestamp(name, layer, byref(ts))
elif maptype == RPCDefs.TYPE_RASTER3D:
check = libgis.G_write_raster3d_timestamp(name, byref(ts))
except:
raise
finally:
conn.send(check)
###############################################################################
def _remove_timestamp(lock, conn, data):
"""Remove the file based GRASS timestamp
the return values of the called C-functions using the provided pipe.
The value to be send via pipe is the return value of G_remove_*_timestamp.
Please have a look at the documentation of G_remove_raster_timestamp,
G_remove_vector_timestamp and G_remove_raster3d_timestamp for the return
values description.
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The list of data entries [function_id, maptype, name,
mapset, layer]
"""
check = False
try:
maptype = data[1]
name = data[2]
mapset = data[3]
layer = data[4]
if maptype == RPCDefs.TYPE_RASTER:
check = libgis.G_remove_raster_timestamp(name, mapset)
elif maptype == RPCDefs.TYPE_VECTOR:
check = libgis.G_remove_vector_timestamp(name, layer, mapset)
elif maptype == RPCDefs.TYPE_RASTER3D:
check = libgis.G_remove_raster3d_timestamp(name, mapset)
except:
raise
finally:
conn.send(check)
###############################################################################
def _map_exists(lock, conn, data):
"""Check if a map exists in the spatial database
The value to be send via pipe is True in case the map exists and False
if not.
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The list of data entries [function_id, maptype, name, mapset]
"""
check = False
try:
maptype = data[1]
name = data[2]
mapset = data[3]
if maptype == RPCDefs.TYPE_RASTER:
mapset = libgis.G_find_raster(name, mapset)
elif maptype == RPCDefs.TYPE_VECTOR:
mapset = libgis.G_find_vector(name, mapset)
elif maptype == RPCDefs.TYPE_RASTER3D:
mapset = libgis.G_find_raster3d(name, mapset)
if mapset:
check = True
except:
raise
finally:
conn.send(check)
###############################################################################
def _read_map_info(lock, conn, data):
"""Read map specific metadata from the spatial database using C-library
functions
:param lock: A multiprocessing.Lock instance
:param conn: A multiprocessing.Pipe instance used to send True or False
:param data: The list of data entries [function_id, maptype, name, mapset]
"""
kvp = None
try:
maptype = data[1]
name = data[2]
mapset = data[3]
if maptype == RPCDefs.TYPE_RASTER:
kvp = _read_raster_info(name, mapset)
elif maptype == RPCDefs.TYPE_VECTOR:
kvp = _read_vector_info(name, mapset)
elif maptype == RPCDefs.TYPE_RASTER3D:
kvp = _read_raster3d_info(name, mapset)
except:
raise
finally:
conn.send(kvp)
###############################################################################
def _read_raster_info(name, mapset):
"""Read the raster map info from the file system and store the content
into a dictionary
This method uses the ctypes interface to the gis and raster libraries
to read the map metadata information
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The key value pairs of the map specific metadata, or None in
case of an error
"""
kvp = {}
if not libgis.G_find_raster(name, mapset):
return None
# Read the region information
region = libgis.Cell_head()
libraster.Rast_get_cellhd(name, mapset, byref(region))
kvp["north"] = region.north
kvp["south"] = region.south
kvp["east"] = region.east
kvp["west"] = region.west
kvp["nsres"] = region.ns_res
kvp["ewres"] = region.ew_res
kvp["rows"] = region.cols
kvp["cols"] = region.rows
maptype = libraster.Rast_map_type(name, mapset)
if maptype == libraster.DCELL_TYPE:
kvp["datatype"] = "DCELL"
elif maptype == libraster.FCELL_TYPE:
kvp["datatype"] = "FCELL"
elif maptype == libraster.CELL_TYPE:
kvp["datatype"] = "CELL"
# Read range
if libraster.Rast_map_is_fp(name, mapset):
range = libraster.FPRange()
libraster.Rast_init_fp_range(byref(range))
ret = libraster.Rast_read_fp_range(name, mapset, byref(range))
if ret < 0:
logging.error(_("Unable to read range file"))
return None
if ret == 2:
kvp["min"] = None
kvp["max"] = None
else:
min = libgis.DCELL()
max = libgis.DCELL()
libraster.Rast_get_fp_range_min_max(
byref(range), byref(min), byref(max))
kvp["min"] = min.value
kvp["max"] = max.value
else:
range = libraster.Range()
libraster.Rast_init_range(byref(range))
ret = libraster.Rast_read_range(name, mapset, byref(range))
if ret < 0:
logging.error(_("Unable to read range file"))
return None
if ret == 2:
kvp["min"] = None
kvp["max"] = None
else:
min = libgis.CELL()
max = libgis.CELL()
libraster.Rast_get_range_min_max(
byref(range), byref(min), byref(max))
kvp["min"] = min.value
kvp["max"] = max.value
return kvp
###############################################################################
def _read_raster3d_info(name, mapset):
"""Read the 3D raster map info from the file system and store the content
into a dictionary
This method uses the ctypes interface to the gis and raster3d libraries
to read the map metadata information
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The key value pairs of the map specific metadata, or None in
case of an error
"""
kvp = {}
if not libgis.G_find_raster3d(name, mapset):
return None
# Read the region information
region = libraster3d.RASTER3D_Region()
libraster3d.Rast3d_read_region_map(name, mapset, byref(region))
kvp["north"] = region.north
kvp["south"] = region.south
kvp["east"] = region.east
kvp["west"] = region.west
kvp["nsres"] = region.ns_res
kvp["ewres"] = region.ew_res
kvp["tbres"] = region.tb_res
kvp["rows"] = region.cols
kvp["cols"] = region.rows
kvp["depths"] = region.depths
kvp["top"] = region.top
kvp["bottom"] = region.bottom
# We need to open the map, this function returns a void pointer
# but we may need the correct type which is RASTER3D_Map, hence
# the casting
g3map = cast(libraster3d.Rast3d_open_cell_old(name, mapset,
libraster3d.RASTER3D_DEFAULT_WINDOW,
libraster3d.RASTER3D_TILE_SAME_AS_FILE,
libraster3d.RASTER3D_NO_CACHE),
POINTER(libraster3d.RASTER3D_Map))
if not g3map:
logging.error(_("Unable to open 3D raster map <%s>" % (name)))
return None
maptype = libraster3d.Rast3d_file_type_map(g3map)
if maptype == libraster.DCELL_TYPE:
kvp["datatype"] = "DCELL"
elif maptype == libraster.FCELL_TYPE:
kvp["datatype"] = "FCELL"
# Read range
min = libgis.DCELL()
max = libgis.DCELL()
ret = libraster3d.Rast3d_range_load(g3map)
if not ret:
logging.error(_("Unable to load range of 3D raster map <%s>" %
(name)))
return None
libraster3d.Rast3d_range_min_max(g3map, byref(min), byref(max))
if min.value != min.value:
kvp["min"] = None
else:
kvp["min"] = float(min.value)
if max.value != max.value:
kvp["max"] = None
else:
kvp["max"] = float(max.value)
if not libraster3d.Rast3d_close(g3map):
logging.error(_("Unable to close 3D raster map <%s>" % (name)))
return None
return kvp
###############################################################################
def _read_vector_info(name, mapset):
"""Read the vector map info from the file system and store the content
into a dictionary
This method uses the ctypes interface to the vector libraries
to read the map metadata information
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The key value pairs of the map specific metadata, or None in
case of an error
"""
kvp = {}
if not libgis.G_find_vector(name, mapset):
return None
# The vector map structure
Map = libvector.Map_info()
# We open the maps always in topology mode first
libvector.Vect_set_open_level(2)
with_topo = True
# Code lend from v.info main.c
if libvector.Vect_open_old_head2(byref(Map), name, mapset, "1") < 2:
# force level 1, open fully
# NOTE: number of points, lines, boundaries, centroids,
# faces, kernels is still available
libvector.Vect_set_open_level(1) # no topology
with_topo = False
if libvector.Vect_open_old2(byref(Map), name, mapset, "1") < 1:
logging.error(_("Unable to open vector map <%s>" %
(libvector.Vect_get_full_name(byref(Map)))))
return None
# Release the vector spatial index memory when closed
libvector.Vect_set_release_support(byref(Map))
# Read the extent information
bbox = libvector.bound_box()
libvector.Vect_get_map_box(byref(Map), byref(bbox))
kvp["north"] = bbox.N
kvp["south"] = bbox.S
kvp["east"] = bbox.E
kvp["west"] = bbox.W
kvp["top"] = bbox.T
kvp["bottom"] = bbox.B
kvp["map3d"] = bool(libvector.Vect_is_3d(byref(Map)))
# Read number of features
if with_topo:
kvp["points"] = libvector.Vect_get_num_primitives(
byref(Map), libvector.GV_POINT)
kvp["lines"] = libvector.Vect_get_num_primitives(
byref(Map), libvector.GV_LINE)
kvp["boundaries"] = libvector.Vect_get_num_primitives(
byref(Map), libvector.GV_BOUNDARY)
kvp["centroids"] = libvector.Vect_get_num_primitives(
byref(Map), libvector.GV_CENTROID)
kvp["faces"] = libvector.Vect_get_num_primitives(
byref(Map), libvector.GV_FACE)
kvp["kernels"] = libvector.Vect_get_num_primitives(
byref(Map), libvector.GV_KERNEL)
# Summarize the primitives
kvp["primitives"] = kvp["points"] + kvp["lines"] + \
kvp["boundaries"] + kvp["centroids"]
if kvp["map3d"]:
kvp["primitives"] += kvp["faces"] + kvp["kernels"]
# Read topology information
kvp["nodes"] = libvector.Vect_get_num_nodes(byref(Map))
kvp["areas"] = libvector.Vect_get_num_areas(byref(Map))
kvp["islands"] = libvector.Vect_get_num_islands(byref(Map))
kvp["holes"] = libvector.Vect_get_num_holes(byref(Map))
kvp["volumes"] = libvector.Vect_get_num_primitives(
byref(Map), libvector.GV_VOLUME)
else:
kvp["points"] = None
kvp["lines"] = None
kvp["boundaries"] = None
kvp["centroids"] = None
kvp["faces"] = None
kvp["kernels"] = None
kvp["primitives"] = None
kvp["nodes"] = None
kvp["areas"] = None
kvp["islands"] = None
kvp["holes"] = None
kvp["volumes"] = None
libvector.Vect_close(byref(Map))
return kvp
###############################################################################
def _convert_timestamp_from_grass(ts):
"""Convert a GRASS file based timestamp into the temporal framework
format datetime or integer.
A tuple of two datetime objects (start, end) is returned in case of
absolute time.
In case of relative time a tuple with start time, end time and the
relative unit (start, end, unit) will be returned.
Note:
The end time will be set to None in case of a time instance.
:param ts grass.lib.gis.TimeStamp object created by G_read_*_timestamp
"""
dt1 = libgis.DateTime()
dt2 = libgis.DateTime()
count = c_int()
libgis.G_get_timestamps(byref(ts),
byref(dt1),
byref(dt2),
byref(count))
if dt1.mode == libdate.DATETIME_ABSOLUTE:
pdt1 = None
pdt2 = None
if count.value >= 1:
pdt1 = datetime(int(dt1.year), int(dt1.month), int(dt1.day),
int(dt1.hour), int(dt1.minute),
int(dt1.second))
if count.value == 2:
pdt2 = datetime(int(dt2.year), int(dt2.month), int(dt2.day),
int(dt2.hour), int(dt2.minute),
int(dt2.second))
# ATTENTION: We ignore the time zone
# TODO: Write time zone support
return (pdt1, pdt2)
else:
unit = None
start = None
end = None
if count.value >= 1:
if dt1.year > 0:
unit = "years"
start = dt1.year
elif dt1.month > 0:
unit = "months"
start = dt1.month
elif dt1.day > 0:
unit = "days"
start = dt1.day
elif dt1.hour > 0:
unit = "hours"
start = dt1.hour
elif dt1.minute > 0:
unit = "minutes"
start = dt1.minute
elif dt1.second > 0:
unit = "seconds"
start = dt1.second
if count.value == 2:
if dt2.year > 0:
end = dt2.year
elif dt2.month > 0:
end = dt2.month
elif dt2.day > 0:
end = dt2.day
elif dt2.hour > 0:
end = dt2.hour
elif dt2.minute > 0:
end = dt2.minute
elif dt2.second > 0:
end = dt2.second
return (start, end, unit)
###############################################################################
def _stop(lock, conn, data):
libgis.G_debug(1, "Stop C-interface server")
conn.close()
lock.release()
sys.exit()
###############################################################################
def c_library_server(lock, conn):
"""The GRASS C-libraries server function designed to be a target for
multiprocessing.Process
:param lock: A multiprocessing.Lock
:param conn: A multiprocessing.Pipe
"""
def error_handler(data):
"""This function will be called in case of a fatal error in libgis"""
#sys.stderr.write("Error handler was called\n")
# We send an exception that will be handled in
# the parent process, then close the pipe
# and release any possible lock
conn.send(FatalError())
conn.close()
lock.release()
CALLBACK = CFUNCTYPE(c_void_p, c_void_p)
CALLBACK.restype = c_void_p
CALLBACK.argtypes = c_void_p
cerror_handler = CALLBACK(error_handler)
libgis.G_add_error_handler(cerror_handler, None)
# Crerate the function array
functions = [0]*50
functions[RPCDefs.STOP] = _stop
functions[RPCDefs.HAS_TIMESTAMP] = _has_timestamp
functions[RPCDefs.WRITE_TIMESTAMP] = _write_timestamp
functions[RPCDefs.READ_TIMESTAMP] = _read_timestamp
functions[RPCDefs.REMOVE_TIMESTAMP] = _remove_timestamp
functions[RPCDefs.READ_MAP_INFO] = _read_map_info
functions[RPCDefs.MAP_EXISTS] = _map_exists
functions[RPCDefs.AVAILABLE_MAPSETS] = _available_mapsets
functions[RPCDefs.GET_DRIVER_NAME] = _get_driver_name
functions[RPCDefs.GET_DATABASE_NAME] = _get_database_name
functions[RPCDefs.G_MAPSET] = _get_mapset
functions[RPCDefs.G_LOCATION] = _get_location
functions[RPCDefs.G_GISDBASE] = _get_gisdbase
functions[RPCDefs.READ_MAP_FULL_INFO] = _read_map_full_info
functions[RPCDefs.G_FATAL_ERROR] = _fatal_error
libgis.G_gisinit("c_library_server")
libgis.G_debug(1, "Start C-interface server")
while True:
# Avoid busy waiting
conn.poll(None)
data = conn.recv()
lock.acquire()
functions[data[0]](lock, conn, data)
lock.release()
class CLibrariesInterface(RPCServerBase):
"""Fast and exit-safe interface to GRASS C-libraries functions
This class implements a fast and exit-safe interface to the GRASS
gis, raster, 3D raster and vector C-libraries functions.
The C-libraries functions are called via ctypes in a subprocess
using a pipe (multiprocessing.Pipe) to transfer the text messages.
Hence, the process that uses the CLibrariesInterface will not be
exited, if a G_fatal_error() was invoked in the subprocess.
In this case the CLibrariesInterface object will simply start a
new subprocess and restarts the pipeline.
Usage:
.. code-block:: python
>>> import grass.script as gscript
>>> import grass.temporal as tgis
>>> gscript.use_temp_region()
>>> gscript.run_command("g.region", n=80.0, s=0.0, e=120.0, w=0.0,
... t=1.0, b=0.0, res=10.0, res3=10.0)
0
>>> tgis.init()
>>> gscript.run_command("r.mapcalc", expression="test = 1", overwrite=True, quiet=True)
0
>>> gscript.run_command("r3.mapcalc", expression="test = 1", overwrite=True, quiet=True)
0
>>> gscript.run_command("v.random", output="test", n=10, overwrite=True, quiet=True)
0
>>> gscript.run_command("r.timestamp", map="test", date='12 Mar 1995 10:34:40', overwrite=True, quiet=True)
0
>>> gscript.run_command("r3.timestamp", map="test", date='12 Mar 1995 10:34:40', overwrite=True, quiet=True)
0
>>> gscript.run_command("v.timestamp", map="test", date='12 Mar 1995 10:34:40', overwrite=True, quiet=True)
0
# Check mapsets
>>> ciface = tgis.CLibrariesInterface()
>>> mapsets = ciface.available_mapsets()
>>> mapsets[0] == tgis.get_current_mapset()
True
# Raster map
>>> ciface = tgis.CLibrariesInterface()
>>> check = ciface.raster_map_exists("test", tgis.get_current_mapset())
>>> print check
True
>>> ciface.read_raster_info("test", tgis.get_current_mapset())
{'rows': 12, 'north': 80.0, 'min': 1, 'datatype': 'CELL', 'max': 1, 'ewres': 10.0, 'cols': 8, 'west': 0.0, 'east': 120.0, 'nsres': 10.0, 'south': 0.0}
>>> info = ciface.read_raster_full_info("test", tgis.get_current_mapset())
>>> info # doctest: +ELLIPSIS +NORMALIZE_WHITESPACE
{u'tbres': 1.0, ... 'keyword': 'generated by r.mapcalc',
u'bottom': 0.0, 'end_time': None, 'title': 'test', u'south': 0.0}
>>> info["start_time"]
datetime.datetime(1995, 3, 12, 10, 34, 40)
>>> info["end_time"]
>>> check = ciface.has_raster_timestamp("test", tgis.get_current_mapset())
>>> print check
True
>>> if check:
... res = ciface.read_raster_timestamp("test", tgis.get_current_mapset())
... if res[0]:
... print str(res[1][0]), str(res[1][0])
... ciface.remove_raster_timestamp("test", tgis.get_current_mapset())
1995-03-12 10:34:40 1995-03-12 10:34:40
1
>>> ciface.has_raster_timestamp("test", tgis.get_current_mapset())
False
>>> ciface.write_raster_timestamp("test", tgis.get_current_mapset(), "13 Jan 1999 14:30:05")
1
>>> ciface.has_raster_timestamp("test", tgis.get_current_mapset())
True
# 3D raster map
>>> check = ciface.raster3d_map_exists("test", tgis.get_current_mapset())
>>> print check
True
>>> ciface.read_raster3d_info("test", tgis.get_current_mapset())
{'tbres': 1.0, 'rows': 12, 'north': 80.0, 'bottom': 0.0, 'datatype': 'DCELL', 'max': 1.0, 'top': 1.0, 'min': 1.0, 'cols': 8, 'depths': 1, 'west': 0.0, 'ewres': 10.0, 'east': 120.0, 'nsres': 10.0, 'south': 0.0}
>>> check = ciface.has_raster3d_timestamp("test", tgis.get_current_mapset())
>>> print check
True
>>> if check:
... res = ciface.read_raster3d_timestamp("test", tgis.get_current_mapset())
... if res[0]:
... print str(res[1][0]), str(res[1][0])
... ciface.remove_raster3d_timestamp("test", tgis.get_current_mapset())
1995-03-12 10:34:40 1995-03-12 10:34:40
1
>>> ciface.has_raster3d_timestamp("test", tgis.get_current_mapset())
False
>>> ciface.write_raster3d_timestamp("test", tgis.get_current_mapset(), "13 Jan 1999 14:30:05")
1
>>> ciface.has_raster3d_timestamp("test", tgis.get_current_mapset())
True
# Vector map
>>> check = ciface.vector_map_exists("test", tgis.get_current_mapset())
>>> print check
True
>>> kvp = ciface.read_vector_info("test", tgis.get_current_mapset())
>>> kvp['points']
10
>>> kvp = ciface.read_vector_full_info("test", tgis.get_current_mapset())
>>> print kvp['points']
10
>>> kvp['point']
10
>>> kvp['area']
0
>>> kvp['lines']
10
>>> kvp['line']
0
>>> 'columns' in kvp
False
>>> kvp["start_time"]
datetime.datetime(1995, 3, 12, 10, 34, 40)
>>> kvp["end_time"]
>>> check = ciface.has_vector_timestamp("test", tgis.get_current_mapset(), None)
>>> print check
True
>>> if check:
... res = ciface.read_vector_timestamp("test", tgis.get_current_mapset())
... if res[0]:
... print str(res[1][0]), str(res[1][0])
... ciface.remove_vector_timestamp("test", tgis.get_current_mapset())
1995-03-12 10:34:40 1995-03-12 10:34:40
1
>>> ciface.has_vector_timestamp("test", tgis.get_current_mapset())
False
>>> ciface.write_vector_timestamp("test", tgis.get_current_mapset(), "13 Jan 1999 14:30:05")
1
>>> ciface.has_vector_timestamp("test", tgis.get_current_mapset())
True
>>> ciface.get_driver_name()
'sqlite'
>>> ciface.get_database_name().split("/")[-1]
'sqlite.db'
>>> mapset = ciface.get_mapset()
>>> location = ciface.get_location()
>>> gisdbase = ciface.get_gisdbase()
>>> ciface.fatal_error() # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
Traceback (most recent call last):
raise FatalError("Exception raised: " + str(e) + " Message: " + message)
FatalError: Exception raised: ...
>>> ciface.fatal_error() # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
Traceback (most recent call last):
raise FatalError("Exception raised: " + str(e) + " Message: " + message)
FatalError: Exception raised: ...
>>> ciface.fatal_error() # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
Traceback (most recent call last):
raise FatalError("Exception raised: " + str(e) + " Message: " + message)
FatalError: Exception raised: ...
>>> ciface.fatal_error() # doctest: +ELLIPSIS, +NORMALIZE_WHITESPACE
Traceback (most recent call last):
raise FatalError("Exception raised: " + str(e) + " Message: " + message)
FatalError: Exception raised: ...
>>> ciface.stop()
>>> gscript.del_temp_region()
"""
def __init__(self):
RPCServerBase.__init__(self)
def start_server(self):
self.client_conn, self.server_conn = Pipe(True)
self.lock = Lock()
self.server = Process(target=c_library_server, args=(self.lock,
self.server_conn))
self.server.daemon = True
self.server.start()
def raster_map_exists(self, name, mapset):
"""Check if a raster map exists in the spatial database
:param name: The name of the map
:param mapset: The mapset of the map
:returns: True if exists, False if not
"""
self.check_server()
self.client_conn.send([RPCDefs.MAP_EXISTS, RPCDefs.TYPE_RASTER,
name, mapset, None])
return self.safe_receive("raster_map_exists")
def read_raster_info(self, name, mapset):
"""Read the raster map info from the file system and store the content
into a dictionary
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The key value pairs of the map specific metadata,
or None in case of an error
"""
self.check_server()
self.client_conn.send([RPCDefs.READ_MAP_INFO, RPCDefs.TYPE_RASTER,
name, mapset, None])
return self.safe_receive("read_raster_info")
def read_raster_full_info(self, name, mapset):
"""Read raster info, history and cats using PyGRASS RasterRow
and return a dictionary. Colors should be supported in the
future.
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The key value pairs of the map specific metadata,
or None in case of an error
"""
self.check_server()
self.client_conn.send([RPCDefs.READ_MAP_FULL_INFO,
RPCDefs.TYPE_RASTER,
name, mapset, None])
return self.safe_receive("read_raster_full_info")
def has_raster_timestamp(self, name, mapset):
"""Check if a file based raster timestamp exists
:param name: The name of the map
:param mapset: The mapset of the map
:returns: True if exists, False if not
"""
self.check_server()
self.client_conn.send([RPCDefs.HAS_TIMESTAMP, RPCDefs.TYPE_RASTER,
name, mapset, None])
return self.safe_receive("has_raster_timestamp")
def remove_raster_timestamp(self, name, mapset):
"""Remove a file based raster timestamp
Please have a look at the documentation G_remove_raster_timestamp
for the return values description.
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The return value of G_remove_raster_timestamp
"""
self.check_server()
self.client_conn.send([RPCDefs.REMOVE_TIMESTAMP, RPCDefs.TYPE_RASTER,
name, mapset, None])
return self.safe_receive("remove_raster_timestamp")
def read_raster_timestamp(self, name, mapset):
"""Read a file based raster timestamp
Please have a look at the documentation G_read_raster_timestamp
for the return values description.
The timestamps to be send are tuples of values:
- relative time (start, end, unit), start and end are of type
integer, unit is of type string.
- absolute time (start, end), start and end are of type datetime
The end time may be None in case of a time instance.
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The return value of G_read_raster_timestamp
"""
self.check_server()
self.client_conn.send([RPCDefs.READ_TIMESTAMP, RPCDefs.TYPE_RASTER,
name, mapset, None])
return self.safe_receive("read_raster_timestamp")
def write_raster_timestamp(self, name, mapset, timestring):
"""Write a file based raster timestamp
Please have a look at the documentation G_write_raster_timestamp
for the return values description.
Note:
Only timestamps of maps from the current mapset can written.
:param name: The name of the map
:param mapset: The mapset of the map
:param timestring: A GRASS datetime C-library compatible string
:returns: The return value of G_write_raster_timestamp
"""
self.check_server()
self.client_conn.send([RPCDefs.WRITE_TIMESTAMP, RPCDefs.TYPE_RASTER,
name, mapset, None, timestring])
return self.safe_receive("write_raster_timestamp")
def raster3d_map_exists(self, name, mapset):
"""Check if a 3D raster map exists in the spatial database
:param name: The name of the map
:param mapset: The mapset of the map
:returns: True if exists, False if not
"""
self.check_server()
self.client_conn.send([RPCDefs.MAP_EXISTS, RPCDefs.TYPE_RASTER3D,
name, mapset, None])
return self.safe_receive("raster3d_map_exists")
def read_raster3d_info(self, name, mapset):
"""Read the 3D raster map info from the file system and store the content
into a dictionary
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The key value pairs of the map specific metadata,
or None in case of an error
"""
self.check_server()
self.client_conn.send([RPCDefs.READ_MAP_INFO, RPCDefs.TYPE_RASTER3D,
name, mapset, None])
return self.safe_receive("read_raster3d_info")
def has_raster3d_timestamp(self, name, mapset):
"""Check if a file based 3D raster timestamp exists
:param name: The name of the map
:param mapset: The mapset of the map
:returns: True if exists, False if not
"""
self.check_server()
self.client_conn.send([RPCDefs.HAS_TIMESTAMP, RPCDefs.TYPE_RASTER3D,
name, mapset, None])
return self.safe_receive("has_raster3d_timestamp")
def remove_raster3d_timestamp(self, name, mapset):
"""Remove a file based 3D raster timestamp
Please have a look at the documentation G_remove_raster3d_timestamp
for the return values description.
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The return value of G_remove_raster3d_timestamp
"""
self.check_server()
self.client_conn.send([RPCDefs.REMOVE_TIMESTAMP, RPCDefs.TYPE_RASTER3D,
name, mapset, None])
return self.safe_receive("remove_raster3d_timestamp")
def read_raster3d_timestamp(self, name, mapset):
"""Read a file based 3D raster timestamp
Please have a look at the documentation G_read_raster3d_timestamp
for the return values description.
The timestamps to be send are tuples of values:
- relative time (start, end, unit), start and end are of type
integer, unit is of type string.
- absolute time (start, end), start and end are of type datetime
The end time may be None in case of a time instance.
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The return value of G_read_raster3d_timestamp
"""
self.check_server()
self.client_conn.send([RPCDefs.READ_TIMESTAMP, RPCDefs.TYPE_RASTER3D,
name, mapset, None])
return self.safe_receive("read_raster3d_timestamp")
def write_raster3d_timestamp(self, name, mapset, timestring):
"""Write a file based 3D raster timestamp
Please have a look at the documentation G_write_raster3d_timestamp
for the return values description.
Note:
Only timestamps of maps from the current mapset can written.
:param name: The name of the map
:param mapset: The mapset of the map
:param timestring: A GRASS datetime C-library compatible string
:returns: The return value of G_write_raster3d_timestamp
"""
self.check_server()
self.client_conn.send([RPCDefs.WRITE_TIMESTAMP, RPCDefs.TYPE_RASTER3D,
name, mapset, None, timestring])
return self.safe_receive("write_raster3d_timestamp")
def vector_map_exists(self, name, mapset):
"""Check if a vector map exists in the spatial database
:param name: The name of the map
:param mapset: The mapset of the map
:returns: True if exists, False if not
"""
self.check_server()
self.client_conn.send([RPCDefs.MAP_EXISTS, RPCDefs.TYPE_VECTOR,
name, mapset, None])
return self.safe_receive("vector_map_exists")
def read_vector_info(self, name, mapset):
"""Read the vector map info from the file system and store the content
into a dictionary
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The key value pairs of the map specific metadata,
or None in case of an error
"""
self.check_server()
self.client_conn.send([RPCDefs.READ_MAP_INFO, RPCDefs.TYPE_VECTOR,
name, mapset, None])
return self.safe_receive("read_vector_info")
def read_vector_full_info(self, name, mapset):
"""Read vector info using PyGRASS VectorTopo
and return a dictionary.
:param name: The name of the map
:param mapset: The mapset of the map
:returns: The key value pairs of the map specific metadata,
or None in case of an error
"""
self.check_server()
self.client_conn.send([RPCDefs.READ_MAP_FULL_INFO,
RPCDefs.TYPE_VECTOR,
name, mapset, None])
return self.safe_receive("read_vector_full_info")
def has_vector_timestamp(self, name, mapset, layer=None):
"""Check if a file based vector timestamp exists
:param name: The name of the map
:param mapset: The mapset of the map
:param layer: The layer of the vector map
:returns: True if exists, False if not
"""
self.check_server()
self.client_conn.send([RPCDefs.HAS_TIMESTAMP, RPCDefs.TYPE_VECTOR,
name, mapset, layer])
return self.safe_receive("has_vector_timestamp")
def remove_vector_timestamp(self, name, mapset, layer=None):
"""Remove a file based vector timestamp
Please have a look at the documentation G_remove_vector_timestamp
for the return values description.
:param name: The name of the map
:param mapset: The mapset of the map
:param layer: The layer of the vector map
:returns: The return value of G_remove_vector_timestamp
"""
self.check_server()
self.client_conn.send([RPCDefs.REMOVE_TIMESTAMP, RPCDefs.TYPE_VECTOR,
name, mapset, layer])
return self.safe_receive("remove_vector_timestamp")
def read_vector_timestamp(self, name, mapset, layer=None):
"""Read a file based vector timestamp
Please have a look at the documentation G_read_vector_timestamp
for the return values description.
The timestamps to be send are tuples of values:
- relative time (start, end, unit), start and end are of type
integer, unit is of type string.
- absolute time (start, end), start and end are of type datetime
The end time may be None in case of a time instance.
:param name: The name of the map
:param mapset: The mapset of the map
:param layer: The layer of the vector map
:returns: The return value ofG_read_vector_timestamp and the timestamps
"""
self.check_server()
self.client_conn.send([RPCDefs.READ_TIMESTAMP, RPCDefs.TYPE_VECTOR,
name, mapset, layer])
return self.safe_receive("read_vector_timestamp")
def write_vector_timestamp(self, name, mapset, timestring, layer=None):
"""Write a file based vector timestamp
Please have a look at the documentation G_write_vector_timestamp
for the return values description.
Note:
Only timestamps pf maps from the current mapset can written.
:param name: The name of the map
:param mapset: The mapset of the map
:param timestring: A GRASS datetime C-library compatible string
:param layer: The layer of the vector map
:returns: The return value of G_write_vector_timestamp
"""
self.check_server()
self.client_conn.send([RPCDefs.WRITE_TIMESTAMP, RPCDefs.TYPE_VECTOR,
name, mapset, layer, timestring])
return self.safe_receive("write_vector_timestamp")
def available_mapsets(self):
"""Return all available mapsets the user can access as a list of strings
:returns: Names of available mapsets as list of strings
"""
self.check_server()
self.client_conn.send([RPCDefs.AVAILABLE_MAPSETS, ])
return self.safe_receive("available_mapsets")
def get_driver_name(self, mapset=None):
"""Return the temporal database driver of a specific mapset
:param mapset: Name of the mapset
:returns: Name of the driver or None if no temporal database present
"""
self.check_server()
self.client_conn.send([RPCDefs.GET_DRIVER_NAME, mapset])
return self.safe_receive("get_driver_name")
def get_database_name(self, mapset=None):
"""Return the temporal database name of a specific mapset
:param mapset: Name of the mapset
:returns: Name of the database or None if no temporal database present
"""
self.check_server()
self.client_conn.send([RPCDefs.GET_DATABASE_NAME, mapset])
return self.safe_receive("get_database_name")
def get_mapset(self):
"""Return the current mapset
:returns: Name of the current mapset
"""
self.check_server()
self.client_conn.send([RPCDefs.G_MAPSET, ])
return self.safe_receive("get_mapset")
def get_location(self):
"""Return the location
:returns: Name of the location
"""
self.check_server()
self.client_conn.send([RPCDefs.G_LOCATION, ])
return self.safe_receive("get_location")
def get_gisdbase(self):
"""Return the gisdatabase
:returns: Name of the gisdatabase
"""
self.check_server()
self.client_conn.send([RPCDefs.G_GISDBASE, ])
return self.safe_receive("get_gisdbase")
def fatal_error(self, mapset=None):
"""Generate a fatal error in libgis.
This function is only for testing purpose.
"""
self.check_server()
self.client_conn.send([RPCDefs.G_FATAL_ERROR])
# The pipe should be closed in the checker thread
return self.safe_receive("Fatal error")
if __name__ == "__main__":
import doctest
doctest.testmod()
|