#!/usr/bin/env python
#
# Copyright (C) 2011-2012 ABINIT Group (Yann Pouillon)
#
# This file is part of the ABINIT software package. For license information,
# please see the COPYING file in the top-level directory of the ABINIT source
# distribution.
#

from ConfigParser import ConfigParser
from time import gmtime,strftime

import os
import re
import sys

class MyConfigParser(ConfigParser):

  def optionxform(self,option):
    return str(option)



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

#
# Main program
#

# Initial setup
my_name     = "make-data-gui"
my_config   = "config/specs/buildsys.conf"
my_macro    = "config/m4/auto-gui.m4"
my_makefile = "Makefile.am"

# Check if we are in the top of the ABINIT source tree
if ( not os.path.exists("configure.ac") or
     not os.path.exists("src/98_main/abinit.F90") ):
  print "%s: You must be in the top of an ABINIT source tree." % my_name
  print "%s: Aborting now." % my_name
  sys.exit(1)

# Check if we have a config file
if ( os.path.exists(my_config) ):
  cnf = MyConfigParser()
  cnf.read(my_config)
else:
  print "%s: Could not find config file (%s)." % (my_name,my_config)
  print "%s: Aborting now." % my_name
  sys.exit(2)

# What time is it?
now = strftime("%Y/%m/%d %H:%M:%S +0000",gmtime())

# Init macro
gui_macro = """\
# Generated by %s on %s

#
# ABINIT GUI support for the "configure" script
#

#
# IMPORTANT NOTE
#
# This file has been automatically generated by the %s
# script. If you try to edit it, your changes will systematically be
# overwritten.
#



# ABI_GUI_INIT()
# --------------
#
# Defines whether the Abinit GUI may be built along with the package.
#
AC_DEFUN([ABI_GUI_INIT],[
  dnl Init
  abi_gui_mode="@GUI_MODE@"
@GUI_INIT@

  case "${abi_gui_mode}" in
    data)
      AC_MSG_NOTICE([the Abinit GUI will never be built])
      ;;
    subsystem)
      AC_MSG_NOTICE([the Abinit GUI may be built upon request])
      ;;
  esac

  AM_CONDITIONAL([DO_BUILD_GUI],[test "${enable_gui_build}" = "yes"])
]) # ABI_GUI_INIT
""" % (my_name,now,my_name)

# Extract information from config file
gui_mode = cnf.get("gui","mode")

# Generate Autoconf macro
if ( gui_mode == "data" ):
  gui_init = ""
elif ( gui_mode == "subsystem" ):
  gui_init = "  AC_CONFIG_SUBDIRS([gui])\n"

gui_macro = re.sub("@GUI_MODE@",gui_mode,gui_macro)
gui_macro = re.sub("@GUI_INIT@",gui_init,gui_macro)
file(my_macro,"w").write(gui_macro)

# Generate makefile snippet
if ( gui_mode == "data" ):
  gui_files= list()
  os.system("cd gui && ./wipeout.sh >/dev/null 2>&1")
  os.system("cd gui && ./autogen.sh >/dev/null 2>&1")
  for root,dirs,files in os.walk("gui"):
    if ( "autom4te.cache" in dirs ):
      dirs.remove("autom4te.cache")
    gui_files += [os.path.join(root,item) for item in files]
  gui_files.sort()
  file(my_makefile,"a").write("\nEXTRA_DIST += \\\n\t%s\n" % \
    " \\\n\t".join(gui_files))
elif ( gui_mode == "subsystem" ):
  file(my_makefile,"a").write("\nSUBDIRS += gui\n")
  os.system("cd gui && ./autogen.sh >/dev/null 2>&1")
