Example #1
0
int main( int argc, char *argv[] )
{
/*
    {
	char	ct[256];
	int	i,a;

	for (i=0; i<256; i++) ct[i] = 0;
	for (i='A'; i<='Z'; i++) ct[i] = 1;
	for (i='a'; i<='z'; i++) ct[i] = 1;
	for (i='0'; i<='9'; i++) ct[i] = 1;
	ct['_'] = 1;
	ct[39] = 1;	// '
	ct['´'] = 1;
	ct['À'] = 1;
	ct['Á'] = 1;
	ct['Â'] = 1;
	ct['Ã'] = 1;
	ct['Ä'] = 1;
	ct['Å'] = 1;
	ct['Æ'] = 1;
	ct['Ç'] = 1;
	ct['È'] = 1;
	ct['É'] = 1;
	ct['Ê'] = 1;
	ct['Ë'] = 1;
	ct['Ì'] = 1;
	ct['Í'] = 1;
	ct['Î'] = 1;
	ct['Ï'] = 1;
	ct['Ð'] = 1;
	ct['Ñ'] = 1;
	ct['Ò'] = 1;
	ct['Ó'] = 1;
	ct['Ô'] = 1;
	ct['Õ'] = 1;
	ct['Ö'] = 1;
	ct['Ø'] = 1;
	ct['Ù'] = 1;
	ct['Ú'] = 1;
	ct['Û'] = 1;
	ct['Ü'] = 1;
	ct['Ý'] = 1;
	ct['Þ'] = 1;
	ct['ß'] = 1;
	ct['à'] = 1;
	ct['á'] = 1;
	ct['â'] = 1;
	ct['ã'] = 1;
	ct['ä'] = 1;
	ct['å'] = 1;
	ct['æ'] = 1;
	ct['ç'] = 1;
	ct['è'] = 1;
	ct['é'] = 1;
	ct['ê'] = 1;
	ct['ë'] = 1;
	ct['ì'] = 1;
	ct['í'] = 1;
	ct['î'] = 1;
	ct['ï'] = 1;
	ct['ð'] = 1;
	ct['ñ'] = 1;
	ct['ò'] = 1;
	ct['ó'] = 1;
	ct['ô'] = 1;
	ct['õ'] = 1;
	ct['ö'] = 1;
	ct['ø'] = 1;
	ct['ù'] = 1;
	ct['ú'] = 1;
	ct['û'] = 1;
	ct['ü'] = 1;
	ct['ý'] = 1;
	ct['þ'] = 1;
	ct['ÿ'] = 1;

	for (a=0; a<16; a++)
	{
	for (i=0; i<16; i++) printf("%i, ", ct[a*16+i]);
	printf("\n");
	}
    }
*/
    if (argc<2)
	{
//	    printf( "Usage: %s <filename> <filename>\n\n", argv[0] );
	    printf( "Usage: %s <filename>\n\n", argv[0] );
	    exit(-1);
	}

    FILE	*file = fopen( argv[1], "r" );

    if (!file)
	{
	    fprintf( stderr, "Could not open %s.\n", argv[1] );
	    return -1;
	}

    // Get filesize:
    struct stat	fileinfo;
    fstat( fileno( file ), &fileinfo );

//    printf("Reading %i bytes...\n", fileinfo.st_size);

    int		size = fileinfo.st_size;
    char	*buf = (char*)malloc(sizeof(char)*size);

    int	i;
    for (i=0; i<size;)
	{
	    i+= fread( (void*)&(buf[i]), sizeof(char), size-i, file );
//	    printf("%i...\n", i);
	}

/*
    for (i=0; i<fileinfo.st_size; i++)
	printf("%c", buf[i]);
    printf("\n");
*/

    char	*title, *body, *metakeyw, *metadesc;
/*
struct
{
    int			n;
    char		**s;
} typedef string_array;

struct
{
    int			n;
    string_array	**query;
} typedef query_array;
*/
//    printf("|%s|\n\n\n", buf);

    query_array		qa = query_array_init(3);

    qa.query[0] = string_array_init(1);
    qa.query[1] = string_array_init(1);
    qa.query[2] = string_array_init(1);

    qa.query[0].s[0] = (char*)strdup("ntnu");
    qa.query[1].s[0] = (char*)strdup("epost");
    qa.query[2].s[0] = (char*)strdup("hostmaster");

    generate_highlighting( qa, buf, size, &body );

    free( qa.query[0].s[0] );
    free( qa.query[1].s[0] );
    free( qa.query[2].s[0] );
    string_array_destroy( qa.query[0] );
    string_array_destroy( qa.query[1] );
    string_array_destroy( qa.query[2] );
    query_array_destroy( qa );

//    generate_summary( buf, size, &title, &body, &metakeyw, &metadesc );

//    struct summary	*S = generate_summary( text, sizeof(text) );
/*
    printf("Title: { %s }\n", title);
    printf("Body: { %s }\n", body);
    printf("Meta Keywords: { %s }\n", metakeyw);
    printf("Meta Description: { %s }\n", metadesc);
*/
//    printf("%s\n", body);

    printf("\n\n%s\n", body);

    free(buf);
//    free(title);
//    free(body);
//    free(metakeyw);
//    free(metadesc);

    fclose(file);

    /**********/
/*
    file = fopen( argv[2], "r" );

    if (!file)
	{
	    fprintf( stderr, "Could not open %s.\n", argv[2] );
	    return -1;
	}

    // Get filesize:
    fstat( fileno( file ), &fileinfo );

    printf("Reading %i bytes...\n", fileinfo.st_size);

    size = fileinfo.st_size;
    buf = (char*)malloc(sizeof(char)*size);

    for (i=0; i<size;)
	{
	    i+= fread( (void*)&(buf[i]), sizeof(char), size-i, file );
	    printf("%i...\n", i);
	}

//    for (i=0; i<fileinfo.st_size; i++)
//	printf("%c", buf[i]);
//    printf("\n");

    generate_summary( buf, size, &title, &body );

//    struct summary	*S = generate_summary( text, sizeof(text) );

    printf("Title: { %s }\n", title);
    printf("Body: { %s }\n", body);
*/
}
Example #2
0
void string_array_free(string_array_t *s)
{
	string_array_reset(s);
	free(s->strs);
	string_array_init(s);
}