~ubuntu-branches/ubuntu/precise/hime/precise

« back to all changes in this revision

Viewing changes to src/table-update.c

  • Committer: Package Import Robot
  • Author(s): Yao Wei (魏銘廷)
  • Date: 2012-01-14 00:24:08 UTC
  • Revision ID: package-import@ubuntu.com-20120114002408-e79gagbeg1rt8npv
Tags: upstream-0.9.9
Import upstream version 0.9.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2009 Edward Der-Hua Liu, Hsin-Chu, Taiwan
 
2
 *
 
3
 * This library is free software; you can redistribute it and/or
 
4
 * modify it under the terms of the GNU Lesser General Public
 
5
 * License as published by the Free Software Foundation; either
 
6
 * version 2.1 of the License, or (at your option) any later version.
 
7
 *
 
8
 * This library 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 GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public
 
14
 * License along with this library; if not, write to the Free Software
 
15
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
16
 */
 
17
 
 
18
/**
 
19
 @file table-update.c
 
20
 @brief Update pho.tab2 when necessary
 
21
 
 
22
 if (phonetic_char_dynamic_sequence) {
 
23
   mv pho.tab2 pho.tab2.old
 
24
   $(UPDATE) pho.tab2
 
25
   $(CREATE) pho.tab2.version
 
26
 }
 
27
 
 
28
*/
 
29
 
 
30
#include "hime.h"
 
31
#include <sys/stat.h>
 
32
 
 
33
void update_table_file(char *name, int version)
 
34
{
 
35
  if (!phonetic_char_dynamic_sequence)
 
36
    return;
 
37
 
 
38
  char fname_user[256];
 
39
  char fname_version[256];
 
40
  char fname_sys[256];
 
41
  char version_name[256];
 
42
 
 
43
  strcat(strcpy(version_name, name), ".version");
 
44
  get_hime_user_fname(version_name, fname_version);
 
45
  get_hime_user_fname(name, fname_user);
 
46
  get_sys_table_file_name(name, fname_sys);
 
47
 
 
48
  FILE *fp;
 
49
  if ((fp=fopen(fname_version, "r"))) {
 
50
    int ver=0;
 
51
    fscanf(fp, "%d", &ver);
 
52
    fclose(fp);
 
53
 
 
54
    if (ver >= version)
 
55
      return;
 
56
  }
 
57
 
 
58
  char cmd[256];
 
59
  sprintf(cmd, "mv -f %s %s.old && cp %s %s && echo %d > %s", fname_user, fname_user,
 
60
      fname_sys, fname_user, version, fname_version);
 
61
  dbg("exec %s\n", cmd);
 
62
  system(cmd);
 
63
}