thatsIch/sublime-rainmeter

View on GitHub
path/setting_path_provider.py

Summary

Maintainability
A
25 mins
Test Coverage
"""
This module provides methods for determine the settings path.

Rainmeter has an built-in variable called #SETTINGSPATH#.
With this you can directly route to the drive in which Rainmeter is contained.
If by some chance people use @Include on #SETTINGSPATH# it is still able to resolve
the path and open the include for you.
"""


import os
from functools import lru_cache

from .. import logger
# use absolute path because of re-occuraing imports '.' could not work
from .program_path_provider import get_cached_program_path


@lru_cache(maxsize=None)
def get_cached_setting_path():
    """Get the value of the #SETTINGSPATH# variable."""
    rainmeterpath = get_cached_program_path()

    if not rainmeterpath:
        return

    # Check if Rainmeter.ini is in Rainmeter program directory
    if os.path.exists(rainmeterpath + "Rainmeter.ini"):
        logger.info("Rainmeter.ini found in " + rainmeterpath)
        return rainmeterpath

    else:  # If not, look in %APPDATA%\Rainmeter\
        appdata = os.getenv("APPDATA")
        if os.path.exists(os.path.join(appdata, "Rainmeter\\Rainmeter.ini")):
            logger.info("Rainmeter.ini found in " +
                        os.path.join(appdata, "Rainmeter") + "\\")
            return os.path.join(appdata, "Rainmeter") + "\\"

        else:
            logger.info("Rainmeter.ini could not be located.")
            return None