intlbin.c

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 122 行

C
122
字号
/****************************************************************************
*
*                            Open Watcom Project
*
*    Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
*  ========================================================================
*
*    This file contains Original Code and/or Modifications of Original
*    Code as defined in and that are subject to the Sybase Open Watcom
*    Public License version 1.0 (the 'License'). You may not use this file
*    except in compliance with the License. BY USING THIS FILE YOU AGREE TO
*    ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
*    provided with the Original Code and Modifications, and is also
*    available at www.sybase.com/developer/opensource.
*
*    The Original Code and all software distributed under the License are
*    distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
*    EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
*    ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
*    NON-INFRINGEMENT. Please see the License for the specific language
*    governing rights and limitations under the License.
*
*  ========================================================================
*
* Description:  WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
*               DESCRIBE IT HERE!
*
****************************************************************************/


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

#include "lsspec.h"
#include "encodlng.h"

char const * const componentName[] = {
    #define LS_DEF( name, sig ) #name ,
    LS_DEFS
    #undef LS_DEF
};

void fatal( char *m ) {
    printf( "fatal: %s\n", m );
    exit( EXIT_FAILURE );
}

void copyAligned( FILE *ofp, FILE *ifp ) {
    unsigned n;
    int c;

    n = 0;
    for(;;) {
        c = fgetc( ifp );
        if( c == EOF ) break;
        ++n;
        fputc( c, ofp );
    }
    while( n & 3 ) {
        fputc( 0, ofp );
        ++n;
    }
}

void processLang( char *prefix, unsigned lang ) {
    unsigned curr_offset;
    FILE *fp;
    FILE *ifp;
    unsigned component;
    fpos_t header_posn;
    auto LocaleData header;
    auto char fname[16];

    sprintf( fname, "%s%02u." LOCALE_DATA_EXT, prefix, lang );
    fp = fopen( fname, "wb" );
    if( !fp ) {
        fatal( "cannot open output file" );
    }
    memset( &header, 0, sizeof( header ) );
    strcpy( header.text_header, LSF_TEXT_HEADER );
    header.signature = !LSF_SIGNATURE;
    header.major = LSF_MAJOR;
    header.minor = LSF_MINOR;
    header.units = ( LS_MAX - LS_MIN );
    fgetpos( fp, &header_posn );
    fwrite( &header, sizeof( header ), 1, fp );
    curr_offset = 0;
    for( component = LS_MIN; component < LS_MAX; ++component ) {
        header.offset[ curr_offset++ ] = ftell( fp );
        sprintf( fname, "%s%02u." LOCALE_DATA_EXT, componentName[ component ], lang );
        fname[0] = tolower(fname[0]);
        ifp = fopen( fname, "rb" );
        if( !ifp ) {
            fatal( "cannot open output file" );
        }
        copyAligned( fp, ifp );
        fclose( ifp );
    }
    header.offset[ curr_offset ] = ftell( fp );
    fsetpos( fp, &header_posn );
    header.signature = LSF_SIGNATURE;
    fwrite( &header, sizeof( header ), 1, fp );
    fclose( fp );
}

int main( int argc, char **argv )
{
    unsigned lang;

    if( argc != 2 ) {
        fatal( "usage: intlbin <prefix>" );
    }
    for( lang = LANG_FIRST_INTERNATIONAL; lang < LANG_MAX; ++lang ) {
        processLang( argv[1], lang );
    }
    return( EXIT_SUCCESS );
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?