home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / client / mysqlimport.c < prev    next >
C/C++ Source or Header  |  2000-11-16  |  15KB  |  524 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16.  
  17. /*
  18. **       mysqlimport.c  - Imports all given files
  19. **                into a table(s).
  20. **
  21. **               *************************
  22. **               *               *
  23. **               * AUTHOR: Monty & Jani  *
  24. **               * DATE:   June 24, 1997 *
  25. **               *               *
  26. **               *************************
  27. */
  28. #define IMPORT_VERSION "2.6"
  29.  
  30. #include <global.h>
  31. #include <my_sys.h>
  32. #include <m_string.h>
  33. #include "mysql.h"
  34. #include "mysql_version.h"
  35. #include <getopt.h>
  36.  
  37.  
  38. static void db_error_with_table(MYSQL *mysql, char *table);
  39. static void db_error(MYSQL *mysql);
  40. static char *field_escape(char *to,const char *from,uint length);
  41. static char *add_load_option(char *ptr,const char *object,
  42.                  const char *statement);
  43.  
  44. static my_bool    verbose=0,lock_tables=0,ignore_errors=0,delete=0,
  45.         replace=0,silent=0,ignore=0,opt_compress=0,opt_local_file=0;
  46.  
  47. static MYSQL    mysql_connection;
  48. static char    *opt_password=0, *current_user=0,
  49.         *current_host=0, *current_db=0, *fields_terminated=0,
  50.         *lines_terminated=0, *enclosed=0, *opt_enclosed=0,
  51.         *escaped=0, opt_low_priority=0, *opt_columns=0;
  52. static uint     opt_mysql_port=0;
  53. static my_string opt_mysql_unix_port=0;
  54. #include "sslopt-vars.h"
  55.  
  56. enum options {OPT_FTB=256, OPT_LTB, OPT_ENC, OPT_O_ENC, OPT_ESC,
  57.           OPT_LOW_PRIORITY, OPT_CHARSETS_DIR};
  58.  
  59. static struct option long_options[] =
  60. {
  61.   {"character-sets-dir", required_argument,     0, OPT_CHARSETS_DIR},
  62.   {"columns",           required_argument,      0, 'c'},
  63.   {"compress",            no_argument,            0, 'C'},
  64.   {"debug",        optional_argument,    0, '#'},
  65.   {"delete",        no_argument,        0, 'd'},
  66.   {"fields-terminated-by", required_argument,      0, (int) OPT_FTB},
  67.   {"fields-enclosed-by", required_argument,      0, (int) OPT_ENC},
  68.   {"fields-optionally-enclosed-by", required_argument, 0, (int) OPT_O_ENC},
  69.   {"fields-escaped-by",  required_argument,      0, (int) OPT_ESC},
  70.   {"force",        no_argument,        0, 'f'},
  71.   {"help",        no_argument,        0, '?'},
  72.   {"host",        required_argument,    0, 'h'},
  73.   {"ignore",        no_argument,        0, 'i'},
  74.   {"lines-terminated-by", required_argument,    0, (int) OPT_LTB},
  75.   {"local",        no_argument,        0, 'L'},
  76.   {"lock-tables",    no_argument,        0, 'l'},
  77.   {"low-priority",    no_argument,        0, (int) OPT_LOW_PRIORITY},
  78.   {"password",        optional_argument,    0, 'p'},
  79. #ifdef __WIN__
  80.   {"pipe",            no_argument,           0, 'W'},
  81. #endif
  82.   {"port",        required_argument,    0, 'P'},
  83.   {"replace",        no_argument,        0, 'r'},
  84.   {"silent",        no_argument,        0, 's'},
  85.   {"socket",        required_argument,    0, 'S'},
  86. #include "sslopt-longopts.h"
  87. #ifndef DONT_ALLOW_USER_CHANGE
  88.   {"user",        required_argument,    0, 'u'},
  89. #endif
  90.   {"verbose",        no_argument,        0, 'v'},
  91.   {"version",        no_argument,        0, 'V'},
  92.   {0, 0, 0, 0}
  93. };
  94.  
  95.  
  96. static const char *load_default_groups[]= { "mysqlimport","client",0 };
  97.  
  98. static void print_version(void)
  99. {
  100.   printf("%s  Ver %s Distrib %s, for %s (%s)\n" ,my_progname,
  101.       IMPORT_VERSION, MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
  102. }
  103.  
  104.  
  105.  
  106. static void usage(void)
  107. {
  108.   print_version();
  109.   puts("Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB");
  110.   puts("This software comes with ABSOLUTELY NO WARRANTY. This is free software,\nand you are welcome to modify and redistribute it under the GPL license\n");
  111.   printf("\
  112. Loads tables from text files in various formats.  The base name of the\n\
  113. text file must be the name of the table that should be used.\n\
  114. If one uses sockets to connect to the MySQL server, the server will open and\n\
  115. read the text file directly. In other cases the client will open the text\n\
  116. file. The SQL command 'LOAD DATA INFILE' is used to import the rows.\n");
  117.  
  118.   printf("\nUsage: %s [OPTIONS] database textfile...",my_progname);
  119.   printf("\n\
  120.   -#, --debug[=...]     Output debug log. Often this is 'd:t:o,filename`\n\
  121.   -?, --help        Displays this help and exits.\n\
  122.   --character-sets-dir=...\n\
  123.                         Directory where character sets are\n\
  124.   -c, --columns=...     Use only these columns to import the data to.\n\
  125.                         Give the column names in a comma separated list.\n\
  126.                         This is same as giving columns to LOAD DATA INFILE.\n\
  127.   -C, --compress        Use compression in server/client protocol\n\
  128.   -d, --delete          First delete all rows from table.\n\
  129.   -f, --force        Continue even if we get an sql-error.\n\
  130.   -h, --host=...    Connect to host.\n\
  131.   -i, --ignore          If duplicate unique key was found, keep old row.\n\
  132.   -l, --lock-tables     Lock all tables for write.\n\
  133.   -L, --local        Read all files through the client\n\
  134.   --low-priority    Use LOW_PRIORITY when updating the table\n\
  135.   -p, --password[=...]    Password to use when connecting to server.\n\
  136.             If password is not given it's asked from the tty.\n");
  137. #ifdef __WIN__
  138.   puts("-W, --pipe              Use named pipes to connect to server");
  139. #endif
  140.   printf("\
  141.   -P, --port=...    Port number to use for connection.\n\
  142.   -r, --replace         If duplicate unique key was found, replace old row.\n\
  143.   -s, --silent        Be more silent.\n\
  144.   -S, --socket=...    Socket file to use for connection.\n");
  145. #include "sslopt-usage.h"
  146. #ifndef DONT_ALLOW_USER_CHANGE
  147.   printf("\
  148.   -u, --user=#        User for login if not current user.\n");
  149. #endif
  150.   printf("\
  151.   -v, --verbose        Print info about the various stages.\n\
  152.   -V, --version        Output version information and exit.\n\
  153.   --fields-terminated-by=...\n\
  154.                         Fields in the textfile are terminated by ...\n\
  155.   --fields-enclosed-by=...\n\
  156.                         Fields in the importfile are enclosed by ...\n\
  157.   --fields-optionally-enclosed-by=...\n\
  158.                         Fields in the i.file are opt. enclosed by ...\n\
  159.   --fields-escaped-by=...\n\
  160.                         Fields in the i.file are escaped by ...\n\
  161.   --lines-terminated-by=...\n\
  162.                         Lines in the i.file are terminated by ...\n\
  163. ");
  164.   print_defaults("my",load_default_groups);
  165. }
  166.  
  167. static int get_options(int *argc, char ***argv)
  168. {
  169.   int c, option_index;
  170.   my_bool tty_password=0;
  171.  
  172.   while ((c=getopt_long(*argc,*argv,"#::p::c:h:u:P:S:CdfilLrsvV?IW",
  173.             long_options, &option_index)) != EOF)
  174.   {
  175.     switch(c) {
  176.     case 'c':
  177.       opt_columns= optarg;
  178.       break;
  179.     case 'C':
  180.       opt_compress=1;
  181.       break;
  182.     case OPT_CHARSETS_DIR:
  183.       charsets_dir= optarg;
  184.       break;
  185.     case 'd':
  186.       delete= 1;
  187.       break;
  188.     case 'f':
  189.       ignore_errors= 1;
  190.       break;
  191.     case 'h':
  192.       current_host= optarg;
  193.       break;
  194.     case 'i':
  195.       ignore= 1;
  196.       break;
  197. #ifndef DONT_ALLOW_USER_CHANGE
  198.     case 'u':
  199.       current_user= optarg;
  200.       break;
  201. #endif
  202.     case 'p':
  203.       if (optarg)
  204.       {
  205.     char *start=optarg;
  206.     my_free(opt_password,MYF(MY_ALLOW_ZERO_PTR));
  207.     opt_password=my_strdup(optarg,MYF(MY_FAE));
  208.     while (*optarg) *optarg++= 'x';        /* Destroy argument */
  209.     if (*start)
  210.       start[1]=0;                /* Cut length of argument */
  211.       }
  212.       else
  213.     tty_password= 1;
  214.       break;
  215.     case 'P':
  216.       opt_mysql_port= (unsigned int) atoi(optarg);
  217.       break;
  218.     case 'r':
  219.       replace= 1;
  220.       break;
  221.     case 's':
  222.       silent= 1;
  223.       break;
  224.     case 'S':
  225.       opt_mysql_unix_port= optarg;
  226.       break;
  227. #ifdef __WIN__
  228.     case 'W':
  229.       opt_mysql_unix_port=MYSQL_NAMEDPIPE;
  230.       opt_local_file=1;
  231.       break;
  232. #endif
  233.     case '#':
  234.       DBUG_PUSH(optarg ? optarg : "d:t:o");
  235.       break;
  236.     case 'l': lock_tables= 1;   break;
  237.     case 'L': opt_local_file=1; break;
  238.     case 'v': verbose= 1;    break;
  239.     case 'V': print_version(); exit(0);
  240.     case 'I':
  241.     case '?':
  242.       usage();
  243.       exit(0);
  244.     case (int) OPT_FTB:
  245.       fields_terminated= optarg;
  246.       break;
  247.     case (int) OPT_LTB:
  248.       lines_terminated= optarg;
  249.       break;
  250.     case (int) OPT_ENC:
  251.       enclosed= optarg;
  252.       break;
  253.     case (int) OPT_O_ENC:
  254.       opt_enclosed= optarg;
  255.       break;
  256.     case (int) OPT_ESC:
  257.       escaped= optarg;
  258.       break;
  259. #include "sslopt-case.h"
  260.     }
  261.   }
  262.   if (enclosed && opt_enclosed)
  263.   {
  264.     fprintf(stderr, "You can't use ..enclosed.. and ..optionally-enclosed.. at the same time.\n");
  265.     return(1);
  266.   }
  267.   if (replace && ignore)
  268.   {
  269.     fprintf(stderr, "You can't use --ignore (-i) and --replace (-r) at the same time.\n");
  270.     return(1);
  271.   }
  272.   (*argc)-=optind;
  273.   (*argv)+=optind;
  274.   if (*argc < 2)
  275.   {
  276.     usage();
  277.     return 1;
  278.   }
  279.   current_db= *((*argv)++);
  280.   (*argc)--;
  281.   if (tty_password)
  282.     opt_password=get_tty_password(NullS);
  283.   return(0);
  284. }
  285.  
  286.  
  287.  
  288. static int write_to_table(char *filename, MYSQL *sock)
  289. {
  290.   char tablename[FN_REFLEN], hard_path[FN_REFLEN],
  291.        sql_statement[FN_REFLEN*2+256], *end;
  292.   my_bool local_file;
  293.   DBUG_ENTER("write_to_table");
  294.   DBUG_PRINT("enter",("filename: %s",filename));
  295.  
  296.   local_file= sock->unix_socket == 0 || opt_local_file;
  297.  
  298.   fn_format(tablename, filename, "", "", 1 | 2); /* removes path & ext. */
  299.   if (local_file)
  300.     strmov(hard_path,filename);
  301.   else
  302.     my_load_path(hard_path, filename, NULL); /* filename includes the path */
  303.  
  304.   if (delete)
  305.   {
  306.     if (verbose)
  307.       fprintf(stdout, "Deleting the old data from table %s\n", tablename);
  308.     sprintf(sql_statement, "DELETE FROM %s", tablename);
  309.     if (mysql_query(sock, sql_statement))
  310.     {
  311.       db_error_with_table(sock, tablename);
  312.       DBUG_RETURN(1);
  313.     }
  314.   }
  315.   to_unix_path(hard_path);
  316.   if (verbose)
  317.   {
  318.     if (local_file)
  319.       fprintf(stdout, "Loading data from LOCAL file: %s into %s\n",
  320.           hard_path, tablename);
  321.     else
  322.       fprintf(stdout, "Loading data from SERVER file: %s into %s\n",
  323.           hard_path, tablename);
  324.   }
  325.   sprintf(sql_statement, "LOAD DATA %s %s INFILE '%s'",
  326.       opt_low_priority ? "LOW_PRIORITY" : "",
  327.       local_file ? "LOCAL" : "", hard_path);
  328.   end= strend(sql_statement);
  329.   if (replace)
  330.     end= strmov(end, " REPLACE");
  331.   if (ignore)
  332.     end= strmov(end, " IGNORE");
  333.   end= strmov(strmov(end, " INTO TABLE "), tablename);
  334.   
  335.   if (fields_terminated || enclosed || opt_enclosed || escaped)
  336.       end= strmov(end, " FIELDS");
  337.   end= add_load_option(end, fields_terminated, " TERMINATED BY");
  338.   end= add_load_option(end, enclosed, " ENCLOSED BY");
  339.   end= add_load_option(end, opt_enclosed,
  340.                " OPTIONALLY ENCLOSED BY");
  341.   end= add_load_option(end, escaped, " ESCAPED BY");
  342.   end= add_load_option(end, lines_terminated, " LINES TERMINATED BY");
  343.   if (opt_columns)
  344.     end= strmov(strmov(strmov(end, " ("), opt_columns), ")");
  345.   *end= '\0';
  346.  
  347.   if (mysql_query(sock, sql_statement))
  348.   {
  349.     db_error_with_table(sock, tablename);
  350.     DBUG_RETURN(1);
  351.   }
  352.   if (!silent)
  353.   {
  354.     if (mysql_info(sock)) /* If NULL-pointer, print nothing */
  355.     {
  356.       fprintf(stdout, "%s.%s: %s\n", current_db, tablename,
  357.           mysql_info(sock));
  358.     }
  359.   }
  360.   DBUG_RETURN(0);
  361. }
  362.  
  363.  
  364.  
  365. static void lock_table(MYSQL *sock, int tablecount, char **raw_tablename)
  366. {
  367.   DYNAMIC_STRING query;
  368.   int i;
  369.   char tablename[FN_REFLEN];
  370.  
  371.   if (verbose)
  372.     fprintf(stdout, "Locking tables for write\n");
  373.   init_dynamic_string(&query, "LOCK TABLES ", 256, 1024);
  374.   for (i=0 ; i < tablecount ; i++)
  375.   {
  376.     fn_format(tablename, raw_tablename[i], "", "", 1 | 2);
  377.     dynstr_append(&query, tablename);
  378.     dynstr_append(&query, " WRITE,");
  379.   }
  380.   if (mysql_real_query(sock, query.str, query.length-1))
  381.     db_error(sock); /* We shall countinue here, if --force was given */
  382. }
  383.  
  384.  
  385.  
  386.  
  387. static MYSQL *db_connect(char *host, char *database, char *user, char *passwd)
  388. {
  389.   MYSQL *sock;
  390.   if (verbose)
  391.     fprintf(stdout, "Connecting to %s\n", host ? host : "localhost");
  392.   mysql_init(&mysql_connection);
  393.   if (opt_compress)
  394.     mysql_options(&mysql_connection,MYSQL_OPT_COMPRESS,NullS);
  395. #ifdef HAVE_OPENSSL
  396.   if (opt_use_ssl)
  397.     mysql_ssl_set(&mysql_connection, opt_ssl_key, opt_ssl_cert, opt_ssl_ca,
  398.           opt_ssl_capath);
  399. #endif
  400.   if (!(sock= mysql_real_connect(&mysql_connection,host,user,passwd,
  401.                  database,opt_mysql_port,opt_mysql_unix_port,
  402.                  0)))
  403.   {
  404.     ignore_errors=0;      /* NO RETURN FROM db_error */
  405.     db_error(&mysql_connection);
  406.   }
  407.   if (verbose)
  408.     fprintf(stdout, "Selecting database %s\n", database);
  409.   if (mysql_select_db(sock, database))
  410.   {
  411.     ignore_errors=0;
  412.     db_error(&mysql_connection);
  413.   }
  414.   return sock;
  415. }
  416.  
  417.  
  418.  
  419. static void db_disconnect(char *host, MYSQL *sock)
  420. {
  421.   if (verbose)
  422.     fprintf(stdout, "Disconnecting from %s\n", host ? host : "localhost");
  423.   mysql_close(sock);
  424. }
  425.  
  426.  
  427.  
  428. static void safe_exit(int error, MYSQL *sock)
  429. {
  430.   if (ignore_errors)
  431.     return;
  432.   if (sock)
  433.     mysql_close(sock);
  434.   exit(error);
  435. }
  436.  
  437.  
  438.  
  439. static void db_error_with_table(MYSQL *mysql, char *table)
  440. {
  441.   my_printf_error(0,"Error: %s, when using table: %s",
  442.           MYF(0), mysql_error(mysql), table);
  443.   safe_exit(1, mysql);
  444. }
  445.  
  446.  
  447.  
  448. static void db_error(MYSQL *mysql)
  449. {
  450.   my_printf_error(0,"Error: %s", MYF(0), mysql_error(mysql));
  451.   safe_exit(1, mysql);
  452. }
  453.  
  454.  
  455. static char *add_load_option(char *ptr,const char *object,const char *statement)
  456. {
  457.   if (object)
  458.   {
  459.     ptr= strxmov(ptr," ",statement," '",NullS);
  460.     ptr= field_escape(ptr,object,(uint) strlen(object));
  461.     *ptr++= '\'';
  462.   }
  463.   return ptr;
  464. }
  465.  
  466. /*
  467. ** Allow the user to specify field terminator strings like:
  468. ** "'", "\", "\\" (escaped backslash), "\t" (tab), "\n" (newline)
  469. ** This is done by doubleing ' and add a end -\ if needed to avoid
  470. ** syntax errors from the SQL parser.
  471. */ 
  472.  
  473. static char *field_escape(char *to,const char *from,uint length)
  474. {
  475.   const char *end;
  476.   uint end_backslashes=0; 
  477.  
  478.   for (end= from+length; from != end; from++)
  479.   {
  480.     *to++= *from;
  481.     if (*from == '\\')
  482.       end_backslashes^=1;    /* find odd number of backslashes */
  483.     else 
  484.     {
  485.       if (*from == '\'' && !end_backslashes)
  486.     *to++= *from;      /* We want a dublicate of "'" for MySQL */
  487.       end_backslashes=0;
  488.     }
  489.   }
  490.   /* Add missing backslashes if user has specified odd number of backs.*/
  491.   if (end_backslashes)
  492.     *to++= '\\';          
  493.   return to;
  494. }
  495.   
  496.  
  497.  
  498. int main(int argc, char **argv)
  499. {
  500.   int exitcode=0, error=0;
  501.   char **argv_to_free;
  502.   MYSQL *sock=0;
  503.   MY_INIT(argv[0]);
  504.  
  505.   load_defaults("my",load_default_groups,&argc,&argv);
  506.   /* argv is changed in the program */
  507.   argv_to_free= argv;
  508.   if (get_options(&argc, &argv))
  509.     return(1);
  510.   if (!(sock= db_connect(current_host,current_db,current_user,opt_password)))
  511.     return(1); /* purecov: deadcode */
  512.   if (lock_tables)
  513.     lock_table(sock, argc, argv);
  514.   for (; *argv != NULL; argv++)
  515.     if ((error=write_to_table(*argv, sock)))
  516.       if (exitcode == 0)
  517.     exitcode = error;
  518.   db_disconnect(current_host, sock);
  519.   my_free(opt_password,MYF(MY_ALLOW_ZERO_PTR));
  520.   free_defaults(argv_to_free);
  521.   my_end(0);
  522.   return(exitcode);
  523. }
  524.