mysqlimport.c
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 15k
Category:

MySQL

Development Platform:

Visual C++

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