gambas-source-code/main/gbc/gbc.c
Benoît Minisini 9c39e31fb5 [DEVELOPMENT ENVIRONMENT]
* NEW: Support for report form continues. Controls declaration has moved 
  from *.component files to the following Control hidden properties: 
  _Family, _Group, _IsControl, _IsContainer, _IsMultiContainer, _IsVirtual, 
  _IsForm. And to the following Form hidden properties: _HiddenControls.
  The wiki control documentation will be updated soon.

[COMPILER]
* NEW: Do not print a warning for a missing self-referenced *.list file.
* NEW: The '-L' is a new command-line option to print the license. The '-h'
  now only prints help.

[INFORMER]
* BUG: Support for boolean public constants.

[GB.DB.FORM]
* NEW: Update control declarations to the new scheme.

[GB.FORM]
* NEW: Update control declarations to the new scheme.

[GB.GTK]
* NEW: Update control declarations to the new scheme.

[GB.QT4]
* NEW: Update control declarations to the new scheme.


git-svn-id: svn://localhost/gambas/trunk@2708 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2010-02-21 18:15:16 +00:00

458 lines
9.9 KiB
C

/***************************************************************************
gbc.c
(c) 2000-2009 Benoît Minisini <gambas@users.sourceforge.net>
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, 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., 675 Mass Ave, Cambridge, MA 02139, USA.
***************************************************************************/
#define __MAIN_C
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/time.h>
#include <dirent.h>
#include <unistd.h>
#include "gb_common.h"
#include "gb_error.h"
#include "gb_str.h"
#include "gb_file.h"
#include "gb_common_buffer.h"
#include "gbc_compile.h"
#include "gb_reserved.h"
#include "gbc_read.h"
#include "gbc_form.h"
#include "gbc_trans.h"
#include "gbc_header.h"
#include "gbc_output.h"
#if HAVE_GETOPT_LONG
static struct option Long_options[] =
{
{ "debug", 0, NULL, 'g' },
{ "version", 0, NULL, 'V' },
{ "help", 0, NULL, 'h' },
{ "license", 0, NULL, 'L' },
{ "verbose", 0, NULL, 'v' },
{ "translate", 0, NULL, 't' },
{ "public-control", 0, NULL, 'p' },
{ "public-module", 0, NULL, 'm' },
{ "swap", 0, NULL, 's' },
{ "class", 1, NULL, 'c' },
/*{ "dump", 0, NULL, 'd' },*/
{ "root", 1, NULL, 'r' },
{ "all", 0, NULL, 'a' },
{ "translate-errors", 0, NULL, 'e' },
{ "no-old-read-write-syntax", 0, NULL, 1 },
{ 0 }
};
#endif
static bool main_debug = FALSE;
static bool main_verbose = FALSE;
static bool main_compile_all = FALSE;
static bool main_trans = FALSE;
static bool main_public = FALSE;
static bool main_public_module = FALSE;
static bool main_swap = FALSE;
static bool main_no_old_read_syntax = FALSE;
//static char *main_class_file = NULL;
static char **_files = NULL;
static void get_arguments(int argc, char **argv)
{
const char *dir;
int opt;
#if HAVE_GETOPT_LONG
int index = 0;
#endif
for(;;)
{
#if HAVE_GETOPT_LONG
opt = getopt_long(argc, argv, "gvaVhLtpmser:", Long_options, &index);
#else
opt = getopt(argc, argv, "gvaVhLtpmser:");
#endif
if (opt < 0) break;
switch (opt)
{
case 'V':
printf(VERSION "\n");
exit(0);
case 'g':
main_debug = TRUE;
break;
case 'v':
main_verbose = TRUE;
break;
case 'a':
main_compile_all = TRUE;
break;
case 't':
main_trans = TRUE;
break;
case 'p':
main_public = TRUE;
break;
case 'm':
main_public_module = TRUE;
break;
case 's':
main_swap = TRUE;
break;
//case 'c':
// main_class_file = optarg;
//: break;
case 'r':
COMP_root = STR_copy(optarg);
break;
case 'e':
ERROR_translate = TRUE;
break;
case 1:
main_no_old_read_syntax = TRUE;
break;
case 'L':
printf(
"GAMBAS Compiler version " VERSION " " __DATE__ " " __TIME__ "\n"
COPYRIGHT
);
exit(0);
case 'h': case '?':
printf(
"Usage: gbc" GAMBAS_VERSION_STRING " [options] [<project directory>]\n\n"
"Options:"
#if HAVE_GETOPT_LONG
"\n"
" -g --debug add debugging information\n"
" -v --verbose verbose output\n"
" -a --all compile all\n"
" -t --translate output translation files\n"
" -p --public-control form controls are public\n"
" -m --public-module module symbols are public by default\n"
" -s --swap swap endianness\n"
" -r --root <directory> gives the gambas installation directory\n"
" -V --version display version\n"
" -h --help display this help\n"
" -L --license display license\n"
" -e --translate-errors display translatable error messages\n"
#else
" (no long options on this system)\n"
" -g add debugging information\n"
" -v verbose output\n"
" -a compile all\n"
" -t output translation files\n"
" -p form controls are public\n"
" -m module symbols are public by default\n"
" -s swap endianness\n"
" -r <directory> gives the gambas installation directory\n"
" -V display version\n"
" -h display this help\n"
" -L display license\n"
" -e display translatable error messages\n"
#endif
"\n"
);
exit(0);
default:
exit(1);
}
}
if (optind < (argc - 1))
{
fprintf(stderr, "gbc: too many arguments.\n");
exit(1);
}
/*COMP_project = STR_copy(FILE_cat(argv[optind], "Gambas", NULL));*/
if (optind < argc)
chdir(argv[optind]);
dir = FILE_get_current_dir();
if (!dir)
{
fprintf(stderr, "gbc: no current directory.\n");
exit(1);
}
COMP_project = STR_copy(FILE_cat(dir, ".project", NULL));
if (!FILE_exist(COMP_project))
{
fprintf(stderr, "gbc: project file not found: %s\n", COMP_project);
exit(1);
}
}
static void compile_file(const char *file)
{
int i;
time_t time_src, time_form, time_pot, time_output;
COMPILE_begin(file, main_trans);
if (!main_compile_all)
{
if (FILE_exist(JOB->output))
{
time_src = FILE_get_time(JOB->name);
time_output = FILE_get_time(JOB->output);
if (JOB->form)
time_form = FILE_get_time(JOB->form);
else
time_form = time_src;
if (main_trans)
time_pot = FILE_get_time(JOB->tname);
else
time_pot = time_src;
if (time_src <= time_output && time_src <= time_pot && time_form <= time_output)
goto _FIN;
}
}
JOB->all = main_compile_all;
JOB->debug = main_debug;
JOB->verbose = main_verbose;
JOB->swap = main_swap;
JOB->public_module = main_public_module;
JOB->no_old_read_syntax = main_no_old_read_syntax;
//JOB->class_file = main_class_file;
if (JOB->verbose)
{
putchar('\n');
for (i = 1; i <= 9; i++)
printf("--------");
printf("\nCompiling %s...\n", FILE_get_name(JOB->name));
}
COMPILE_load();
FORM_do(main_public);
BUFFER_add(&JOB->source, "\n\n\n\0", 4);
READ_do();
#ifdef DEBUG
TABLE_print(JOB->class->table, TRUE);
#endif
HEADER_do();
TRANS_code();
#ifdef DEBUG
TABLE_print(JOB->class->string, FALSE);
#endif
OUTPUT_do(main_swap);
CLASS_export();
_FIN:
COMPILE_end();
}
static int compare_path(char **a, char **b)
{
return strcmp(*a, *b);
}
static void fill_files(const char *root, bool recursive)
{
DIR *dir;
char *path;
struct dirent *dirent;
char *file_name;
const char *name;
const char *file;
struct stat info;
const char *ext;
path = STR_copy(root);
dir = opendir(path);
if (!dir)
{
fprintf(stderr, "gbc: cannot browse directory: %s\n", path);
exit(1);
}
while ((dirent = readdir(dir)) != NULL)
{
file_name = dirent->d_name;
if (*file_name == '.')
continue;
file = FILE_cat(path, file_name, NULL);
if (stat(file, &info))
{
fprintf(stderr, "gbc: warning: cannot stat file: %s\n", file);
continue;
}
if (S_ISDIR(info.st_mode))
{
if (recursive)
fill_files(file, TRUE);
}
else
{
ext = FILE_get_ext(file);
if ((strcmp(FILE_get_ext(file), "module") == 0)
|| (strcmp(FILE_get_ext(file), "class") == 0))
{
*((char **)ARRAY_add(&_files)) = STR_copy(file);
// Add the class to the list of classes
name = FILE_get_basename(file_name);
BUFFER_add(&COMP_classes, name, strlen(name));
BUFFER_add(&COMP_classes, "\n", 1);
}
}
}
closedir(dir);
STR_free(path);
}
static void init_files(const char *first)
{
bool recursive;
ARRAY_create(&_files);
if (*first)
{
if (chdir(first))
{
fprintf(stderr, "gbc: cannot switch to directory: %s\n", first);
exit(1);
}
}
recursive = chdir(".src") == 0;
fill_files(FILE_get_current_dir(), recursive);
if (recursive) chdir("..");
// Sort paths
qsort(_files, ARRAY_count(_files), sizeof(*_files), (int (*)(const void *, const void *))compare_path);
// End the list of classes
BUFFER_add(&COMP_classes, "\n", 1);
}
static void exit_files(void)
{
int i;
for (i = 0; i < ARRAY_count(_files); i++)
STR_free(_files[i]);
ARRAY_delete(&_files);
}
int main(int argc, char **argv)
{
int i;
MEMORY_init();
COMMON_init();
get_arguments(argc, argv);
TRY
{
COMPILE_init();
// Remove information files if we are compiling everything
if (main_compile_all)
{
if (main_verbose)
puts("Removing .info and .list files");
chdir(FILE_get_dir(COMP_project));
unlink(".info");
unlink(".list");
}
init_files(FILE_get_dir(COMP_project));
for (i = 0; i < ARRAY_count(_files); i++)
compile_file(_files[i]);
exit_files();
COMPILE_exit();
puts("OK");
}
CATCH
{
fflush(NULL);
if (JOB->line)
fprintf(stderr, "%s:%d: ", JOB->name, JOB->line);
else
fprintf(stderr, "gbc: ERROR: ");
ERROR_print();
exit(1);
}
END_TRY
return 0;
}