#!/usr/bin/python
# -*- coding: utf-8 -*-

#-------------------------------------------------------------------------------

# This file is part of code_saturne, a general-purpose CFD tool.
#
# Copyright (C) 1998-2023 EDF S.A.
#
# 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

#-------------------------------------------------------------------------------
# Handle Python modules possible locations
#-------------------------------------------------------------------------------

# Store the installation path of code_saturne Python modules.
cspath = '/usr/lib/python3.14/site-packages/code_saturne'
cslibdir = '/usr/lib'

# Store the information whether the installation is relocatable or not.
relocatable = 'no'

# Get the script rootdir (especially useful for relocatable installation)
#   When frozen with cx_freeze __file__ is not defined in code_saturne,
#   therefore we use two different ways of getting the script path.
if hasattr(sys, 'frozen'):
    rootdir = sys.executable
else:
    rootdir = os.path.realpath(__file__)

# For a relocatable installation, reset cspath (i.e. for a standard Python
# installation: lib/pythonX.Y/site-packages/code_saturne). We also assume
# that the main script still lies in the bin directory.
if relocatable == 'yes':
    python_version = "%d.%d" % (sys.version_info.major, sys.version_info.minor)
    bindir = os.path.dirname(rootdir)
    prefix = os.path.dirname(bindir)
    sitedir = os.path.join(prefix,
                           'lib', 'python' + python_version, 'site-packages')
    cspath = os.path.join(sitedir, 'code_saturne')
    cslibdir = os.path.join(prefix, 'lib')

#-------------------------------------------------------------------------------
# Main
#-------------------------------------------------------------------------------

if __name__ == '__main__':

    sitedir = os.path.split(cspath)[0]

    if os.path.isdir(sitedir) and not sitedir in sys.path:
        sys.path.insert(0, sitedir)

    try:
        from code_saturne.base.cs_exec_environment import clean_os_environ_for_shell
        clean_os_environ_for_shell()
        from code_saturne.base.cs_script import master_script
    except Exception as e:
        import traceback
        exc_type, exc_value, exc_traceback = sys.exc_info()
        traceback.print_exception(exc_type, exc_value, exc_traceback,
                                  limit=2, file=sys.stderr)
        print(os.linesep, "sys.path:", sys.path)
        print(os.linesep, "PYTHONPATH:", os.getenv('PYTHONPATH'))
        sys.exit(0)

    # Retrieve package information (name, version, installation dirs, ...)

    config_file = os.path.join(cslibdir, 'code_saturne_build.cfg')

    from code_saturne.base.cs_package import package
    pkg = package(config_file=config_file)

    # Create an instance of the main script
    cs = master_script(sys.argv[1:], pkg)

    retcode = cs.execute()

    if retcode == None:
        retcode = 0

    sys.exit(retcode)

#-------------------------------------------------------------------------------
# End
#-------------------------------------------------------------------------------
