1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
|
/*
This file contains routines for sorting a list of articles from a
newsgroup, and for producting a textual representation of the sorted
article list for displaying in the newsgroup index.
The method for using the routines in this file is as follows:
1) Call art_sort_init() to initialize a sort and get back an opaque
object for future sort manipulations.
2) Call the various art_sort_by_*() to do the sorts. These routines
should be called from minor to major sorting order. That is, if you
want the articles to be sorted by thread, and within thread by date,
you would call sort_by_date() first and then sort_by_thread().
3) Call art_sort_done() to free the opaque object and get back a
string representing the finished product of the sort.
You can also call art_sort_cancel() at any time after
art_sort_init() to abort a sort and free the memory associated with
it without getting back the string subject list.
The newsgroup must be prefetched completely before sort_init() is
called.
No other manipulation of the newsgroup's article list should be done
while sorting is being done.
*/
#include <ctype.h>
#include <assert.h>
#include "config.h"
#include "utils.h"
#include "news.h"
#include "sort.h"
#include "artstruct.h"
#include "internals.h"
#include "getdate.h"
#include "mesg.h"
#include "mesg_strings.h"
#include "hash.h"
#include "resources.h"
#define SUB_SORT_WIDTH 24
struct sort_article {
void *sort_key;
art_num num;
struct article *art;
};
struct sort_data {
struct newsgroup *newsgroup;
art_num count;
struct sort_article *articles;
void (*last_sort) _ARGUMENTS((void *));
};
static int (*compare_function) _ARGUMENTS((qsort_arg_type, qsort_arg_type));
static void (*sort_list[3]) _ARGUMENTS((void *));
void art_sort_parse_sortlist(orig_sort_spec)
char *orig_sort_spec;
{
char *token;
int num_sorts = (sizeof(sort_list)/sizeof(sort_list[0]));
int i = num_sorts - 1;
char *sort_spec;
if (!orig_sort_spec)
return;
sort_spec = orig_sort_spec = XtNewString(orig_sort_spec);
while ((token = strtok(sort_spec, ", \t\n")) && (i >= 0)) {
sort_spec = 0;
if (! strcasecmp(token, "false") ||
! strcasecmp(token, "off") ||
! strcasecmp(token, "0")) {
for (i = 0; i < num_sorts; i++)
sort_list[i] = 0;
XtFree(orig_sort_spec);
return;
}
else if (! strcasecmp(token, "subject") ||
! strcasecmp(token, "true") ||
! strcasecmp(token, "on") ||
! strcasecmp(token, "1"))
sort_list[i--] = art_sort_by_subject;
else if (! strcasecmp(token, "date"))
sort_list[i--] = art_sort_by_date;
else if (! strcasecmp(token, "thread"))
sort_list[i--] = art_sort_by_thread;
else
mesgPane(XRN_SERIOUS, 0, UNKNOWN_SORT_TYPE_MSG, token);
}
if (token)
mesgPane(XRN_SERIOUS, 0, TOO_MANY_SORT_TYPES_MSG);
XtFree(orig_sort_spec);
return;
}
int art_sort_need_dates()
{
return((sort_list[0] == art_sort_by_date) ||
(sort_list[1] == art_sort_by_date) ||
(sort_list[2] == art_sort_by_date));
}
int art_sort_need_threads()
{
return((sort_list[0] == art_sort_by_thread) ||
(sort_list[1] == art_sort_by_thread) ||
(sort_list[2] == art_sort_by_thread));
}
void *art_sort_init(
_ANSIDECL(struct newsgroup *, newsgroup),
_ANSIDECL(art_num, first),
_ANSIDECL(art_num, last)
)
_KNRDECL(struct newsgroup *, newsgroup)
_KNRDECL(art_num, first)
_KNRDECL(art_num, last)
{
struct sort_data *data = (struct sort_data *)
XtMalloc(sizeof(struct sort_data));
art_num i, count;
data->newsgroup = newsgroup;
/*
Figure out how many articles there are.
*/
for (i = first, count = 0; i <= last; i++) {
struct article *art = artStructGet(newsgroup, i, False);
if (IS_LISTED(art))
count++;
}
data->articles = (struct sort_article *)
XtCalloc(count, sizeof(*data->articles));
data->count = count;
data->last_sort = 0;
for (i = first, count = 0; i <= last; i++) {
struct article *art = artStructGet(newsgroup, i, False);
if (IS_LISTED(art)) {
data->articles[count].num = i;
data->articles[count++].art = art;
}
}
return (void *) data;
}
char *art_sort_done(data_p, line_length)
void *data_p;
int line_length;
{
struct sort_data *data = (struct sort_data *) data_p;
int sub_width = subjectIndexLine(line_length, 0, data->newsgroup, 0,
data->last_sort == art_sort_by_thread);
char *out_data = XtMalloc(sub_width * data->count + 1), *ptr = out_data;
art_num i;
for (i = 0; i < data->count; i++) {
(void) subjectIndexLine(line_length, ptr, data->newsgroup,
data->articles[i].num,
art_sort_need_threads());
ptr += sub_width;
}
if (! data->count)
*ptr = '\0';
art_sort_cancel(data_p);
return out_data;
}
void art_sort_cancel(data_p)
void *data_p;
{
struct sort_data *data = (struct sort_data *) data_p;
XtFree((char *) data->articles);
XtFree((char *) data);
}
char *art_sort_doit(
_ANSIDECL(struct newsgroup *, newsgroup),
_ANSIDECL(art_num, first),
_ANSIDECL(art_num, last),
_ANSIDECL(int, line_length)
)
_KNRDECL(struct newsgroup *, newsgroup)
_KNRDECL(art_num, first)
_KNRDECL(art_num, last)
_KNRDECL(int, line_length)
{
void *data_p;
int i, num_sorts = sizeof(sort_list)/sizeof(sort_list[0]);
data_p = art_sort_init(newsgroup, first, last);
for (i = 0; i < num_sorts; i++)
if (sort_list[i])
(*sort_list[i])(data_p);
return art_sort_done(data_p, line_length);
}
static int key_compare _ARGUMENTS((qsort_arg_type, qsort_arg_type));
static int key_compare(a_p, b_p)
qsort_arg_type a_p, b_p;
{
struct sort_article *a = (struct sort_article *) a_p;
struct sort_article *b = (struct sort_article *) b_p;
return (*compare_function)(a->sort_key, b->sort_key);
}
static void generate_subject_keys _ARGUMENTS((struct sort_data *));
static void generate_subject_keys(data)
struct sort_data *data;
{
art_num i;
char *ptr;
for (i = 0; i < data->count; i++) {
data->articles[i].sort_key = (void *) XtMalloc(SUB_SORT_WIDTH + 1);
(void) strncpy((char *) data->articles[i].sort_key,
subjectStrip(data->articles[i].art->subject),
SUB_SORT_WIDTH);
((char *)data->articles[i].sort_key)[SUB_SORT_WIDTH] = '\0';
for (ptr = data->articles[i].sort_key; *ptr; ptr++)
if (isupper((unsigned char)*ptr))
*ptr = tolower(*ptr);
}
}
int subject_value_compare(key1, key2)
void *key1, *key2;
{
return (struct sort_article *)key1 - (struct sort_article *)key2;
}
static void free_subject_keys _ARGUMENTS((struct sort_data *));
static void free_subject_keys(data)
struct sort_data *data;
{
art_num i;
for (i = 0; i < data->count; i++) {
XtFree((char *) data->articles[i].sort_key);
}
}
void art_sort_by_subject(data_p)
void *data_p;
{
struct sort_data *data = (struct sort_data *) data_p;
int i, tmp_pos = 0;
struct sort_article *tmp_articles;
hash_table_object hash_table;
void *hash_reference;
struct sort_article *hash_return;
tmp_articles = (struct sort_article *)
XtCalloc(data->count, sizeof(*tmp_articles));
generate_subject_keys(data);
hash_table = hash_table_create(data->count,
hash_string_calc,
hash_string_compare, subject_value_compare,
0, 0);
for (i = 0; i < data->count; i++) {
hash_table_insert(hash_table, (void *)data->articles[i].sort_key,
(void *)&data->articles[i], 0);
}
for (i = 0; i < data->count; i++) {
hash_reference = HASH_NO_VALUE;
if ((void *)(hash_return =
hash_table_retrieve(hash_table,
(void *)data->articles[i].sort_key,
&hash_reference)) == HASH_NO_VALUE) {
continue;
}
do {
tmp_articles[tmp_pos++] = *hash_return;
} while ((hash_return = (struct sort_article *)
hash_table_retrieve(hash_table,
(void *)data->articles[i].sort_key,
&hash_reference)) !=
(struct sort_article *)HASH_NO_VALUE);
hash_table_delete(hash_table,
(void *)data->articles[i].sort_key,
HASH_NO_VALUE);
}
XtFree((char *)data->articles);
data->articles = tmp_articles;
hash_table_destroy(hash_table);
free_subject_keys(data);
data->last_sort = art_sort_by_subject;
}
void generate_date_keys(data)
struct sort_data *data;
{
art_num i;
for (i = 0; i < data->count; i++) {
time_t date = get_date(data->articles[i].art->date);
if (date == (time_t)-1) {
if (app_resources.complainAboutBadDates)
mesgPane(XRN_SERIOUS, 0, UNPARSEABLE_DATE_MSG,
data->articles[i].num, data->newsgroup->name,
data->articles[i].art->date);
date = (time_t) 0;
}
data->articles[i].sort_key = (void *)date;
}
}
int date_compare(a, b)
qsort_arg_type a, b;
{
/*
Casting to char * because pointer arithmetic on void * causes a
warning. Casting to a pointer instead of integer value because
there are some architectures on which pointers are larger than
integers.
*/
return (char *)a - (char *)b;
}
void art_sort_by_date(data_p)
void *data_p;
{
struct sort_data *data = (struct sort_data *) data_p;
generate_date_keys(data);
compare_function = date_compare;
qsort((void *)data->articles, data->count, sizeof(*data->articles),
key_compare);
data->last_sort = art_sort_by_date;
}
static void do_art_thread _ARGUMENTS((struct sort_data *,
hash_table_object,
art_num,
struct sort_article *,
int *));
static void do_art_thread(data, table, this_art, artlist, artpos)
struct sort_data *data;
hash_table_object table;
art_num this_art;
struct sort_article *artlist;
int *artpos;
{
int i;
art_num *ptr;
i = (int)hash_table_retrieve(table, (void *)this_art, 0);
assert(i != (int)HASH_NO_VALUE);
/* Circular article references are bogus, but unfortunately possible */
if (! data->articles[i].sort_key)
return;
artlist[(*artpos)++] = data->articles[i];
data->articles[i].sort_key = (void *)0;
if (! data->articles[i].art->children)
return;
for (ptr = data->articles[i].art->children; *ptr; ptr++) {
do_art_thread(data, table, *ptr, artlist, artpos);
}
}
void art_sort_by_thread(data_p)
void *data_p;
{
struct sort_data *data = (struct sort_data *)data_p;
struct article *art;
int i, ret;
hash_table_object table, done_table;
struct sort_article *tmp_articles;
int tmp_pos = 0;
art_num this_art;
tmp_articles = (struct sort_article *)
XtCalloc(data->count, sizeof(*tmp_articles));
table = hash_table_create(data->count, hash_int_calc,
hash_int_compare, hash_int_compare,
0, 0);
done_table = hash_table_create(data->count, hash_int_calc,
hash_int_compare, hash_int_compare, 0, 0);
for (i = 0; i < data->count; i++) {
int ret;
data->articles[i].sort_key = (void *)1;
ret = hash_table_insert(table, (void *) data->articles[i].num,
(void *) i, 1);
assert(ret);
}
for (i = 0; i < data->count; i++) {
if (! data->articles[i].sort_key)
continue;
art = data->articles[i].art;
this_art = data->articles[i].num;
/* We are keeping track of which articles we've already done so
that we can detect (and avoid) circular "References"
dependencies. */
ret = hash_table_insert(done_table, (void *)this_art, (void *)1, 1);
assert(ret);
while (art->parent) {
if (! hash_table_insert(done_table, (void *) art->parent, (void *)1, 1))
break;
this_art = art->parent;
art = artStructGet(data->newsgroup, art->parent, False);
assert(art);
}
do_art_thread(data, table, this_art, tmp_articles, &tmp_pos);
}
hash_table_destroy(table);
hash_table_destroy(done_table);
XtFree((char *)data->articles);
data->articles = tmp_articles;
data->last_sort = art_sort_by_thread;
}
|