util/paths.py
author Edouard Tisserant <edouard@beremiz.fr>
Thu, 09 Jan 2025 09:45:21 +0100 (2 months ago)
changeset 4079 4ce63b8647d7
parent 4042 03df7946c2fa
permissions -rw-r--r--
SVGHMI: add static file serving feature.

Added two buttons to add and remove files.
Files are stored in project inside a directory named "static",
itself located in svghmi CTN instance files. Exemple :
exemples/svghmi_csv_json_img_table/svghmi_0@svghmi/static/
Files are transfered as "extra_files", but with a prefix
added to their name to avoid conflics.
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# This file is part of Beremiz, a Integrated Development Environment for
# programming IEC 61131-3 automates supporting plcopen standard and CanFestival.
#
# Copyright (C) 2017: Andrey Skvortsov
#
# See COPYING file for copyrights details.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.


import os
import sys

def AbsFile(file):
    if isinstance(file, str):
        file = str(file, sys.getfilesystemencoding())
    return file


def AbsDir(file):
    return os.path.dirname(os.path.realpath(file))


def AbsNeighbourFile(file, *args):
    return os.path.join(AbsDir(file), *args)


def AbsParentDir(file, level=1):
    path = AbsDir(file)
    for dummy in range(0, level):
        path = os.path.dirname(path)
    return path

def ThirdPartyPath(name, *suffixes):
    """
    Return folder where to find sibling projects like Modbus, CanFestival, BACnet
    """
    env_name = name.upper() + "_PATH"
    if env_name in os.environ:
        return os.path.join(os.environ[env_name], *suffixes)
    
    return os.path.join(AbsParentDir(__file__, 2), name, *suffixes)

def Bpath(*names):
    """
    Return path of files in Beremiz project
    """
    return os.path.join(AbsParentDir(__file__, 1), *names)