Source code for grass.app.data

"""Provides functions for the main GRASS GIS executable

(C) 2020 by Vaclav Petras and 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.

.. sectionauthor:: Vaclav Petras <wenzeslaus gmail com>
.. sectionauthor:: Linda Kladivova <l.kladivova seznam cz>

This is not a stable part of the API. Use at your own risk.
"""

import os
import tempfile
import getpass
import subprocess
import sys
from shutil import copytree, ignore_patterns
from pathlib import Path

import grass.script as gs
import grass.grassdb.config as cfg

from grass.grassdb.checks import is_location_valid


[docs]def get_possible_database_path(): """Looks for directory 'grassdata' (case-insensitive) in standard locations to detect existing GRASS Database. Returns the path as a string or None if nothing was found. """ home = os.path.expanduser("~") # try some common directories for grassdata candidates = [ home, os.path.join(home, "Documents"), ] # find possible database path for candidate in candidates: if os.path.exists(candidate): for subdir in next(os.walk(candidate))[1]: if "grassdata" in subdir.lower(): return os.path.join(candidate, subdir) return None
[docs]def create_database_directory(): """Creates the standard GRASS GIS directory. Creates database directory named grassdata in the standard location according to the platform. Returns the new path as a string or None if nothing was found or created. """ home = os.path.expanduser("~") # Determine the standard path according to the platform if sys.platform == "win32": path = os.path.join(home, "Documents", "grassdata") else: path = os.path.join(home, "grassdata") # Create "grassdata" directory try: os.mkdir(path) return path except OSError: pass # Create a temporary "grassdata" directory if GRASS is running # in some special environment and the standard directories # cannot be created which might be the case in some "try out GRASS" # use cases. path = os.path.join(tempfile.gettempdir(), "grassdata_{}".format(getpass.getuser())) # The created tmp is not cleaned by GRASS, so we are relying on # the system to do it at some point. The positive outcome is that # another GRASS instance will find the data created by the first # one which is desired in the "try out GRASS" use case we are # aiming towards." if os.path.exists(path): return path try: os.mkdir(path) return path except OSError: pass return None
def _get_startup_location_in_distribution(): """Check for startup location directory in distribution. Returns startup location if found or None if nothing was found. """ gisbase = os.getenv("GISBASE") startup_location = os.path.join(gisbase, "demolocation") # Find out if startup location exists if os.path.exists(startup_location): return startup_location return None def _copy_startup_location(startup_location, location_in_grassdb): """Copy the simple startup_location with some data to GRASS database. Returns True if successfully copied or False when an error was encountered. """ # Copy source startup location into GRASS database try: copytree( startup_location, location_in_grassdb, ignore=ignore_patterns("*.tmpl", "Makefile*"), ) return True except OSError: pass return False
[docs]def create_startup_location_in_grassdb(grassdatabase, startup_location_name) -> bool: """Create a new startup location in the given GRASS database. Returns True if a new startup location successfully created in the given GRASS database. Returns False if there is no location to copy in the installation or copying failed. """ # Find out if startup location exists startup_location = _get_startup_location_in_distribution() if not startup_location: return False # Copy the simple startup_location with some data to GRASS database location_in_grassdb = os.path.join(grassdatabase, startup_location_name) return bool(_copy_startup_location(startup_location, location_in_grassdb))
[docs]def ensure_default_data_hierarchy(): """Ensure that default gisdbase, location and mapset exist. Creates database directory based on the default path determined according to OS if needed. Creates location if needed. Returns the db, loc, mapset, mapset_path""" gisdbase = get_possible_database_path() location = cfg.default_location mapset = cfg.permanent_mapset # If nothing found, try to create GRASS directory if not gisdbase: gisdbase = create_database_directory() if not is_location_valid(gisdbase, location): # If not valid, copy startup loc create_startup_location_in_grassdb(gisdbase, location) mapset_path = os.path.join(gisdbase, location, mapset) return gisdbase, location, mapset, mapset_path
[docs]class MapsetLockingException(Exception): pass
[docs]def lock_mapset(mapset_path, force_lock_removal, message_callback): """Acquire a lock for a mapset and return name of new lock file Raises MapsetLockingException when it is not possible to acquire a lock for the given mapset either because of existing lock or due to insufficient permissions. A corresponding localized message is given in the exception. A *message_callback* is a function which will be called to report messages about certain states. Specifically, the function is called when forcibly unlocking the mapset. Assumes that the runtime is set up (specifically that GISBASE is in the environment). """ if not os.path.exists(mapset_path): raise MapsetLockingException(_("Path '{}' doesn't exist").format(mapset_path)) if not os.access(mapset_path, os.W_OK): error = _("Path '{}' not accessible.").format(mapset_path) stat_info = Path(mapset_path).stat() mapset_uid = stat_info.st_uid if mapset_uid != os.getuid(): error = "{error}\n{detail}".format( error=error, detail=_("You are not the owner of '{}'.").format(mapset_path), ) raise MapsetLockingException(error) # Check for concurrent use lockfile = os.path.join(mapset_path, ".gislock") locker_path = os.path.join(os.environ["GISBASE"], "etc", "lock") ret = subprocess.run( [locker_path, lockfile, "%d" % os.getpid()], check=False ).returncode msg = None if ret == 2: if not force_lock_removal: msg = _( "{user} is currently running GRASS in selected mapset" " (file {file} found). Concurrent use of one mapset not allowed.\n" "You can force launching GRASS using -f flag" " (assuming your have sufficient access permissions)." " Confirm in a process manager " "that there is no other process using the mapset." ).format(user=Path(lockfile).owner(), file=lockfile) else: message_callback( _( "{user} is currently running GRASS in selected mapset" " (file {file} found), but forcing to launch GRASS anyway..." ).format(user=Path(lockfile).owner(), file=lockfile) ) gs.try_remove(lockfile) elif ret != 0: msg = _( "Unable to properly access lock file '{name}'.\n" "Please resolve this with your system administrator." ).format(name=lockfile) if msg: raise MapsetLockingException(msg) return lockfile