mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-13 03:24:26 +00:00
154 lines
4.3 KiB
C
154 lines
4.3 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
/*
|
|
*
|
|
* routines to sort an array of file objects
|
|
* uses qsort alg
|
|
*
|
|
* Designed and implemented by Lou Montulli '94
|
|
*/
|
|
|
|
#include "mkutils.h"
|
|
#include "mkfsort.h"
|
|
#include "mkgeturl.h"
|
|
|
|
#ifdef PROFILE
|
|
#pragma profile on
|
|
#endif
|
|
|
|
PRIVATE int net_file_sort_method = SORT_BY_NAME;
|
|
|
|
/* print a text string in place of the NET_FileEntryInfo special_type int */
|
|
PUBLIC char *
|
|
NET_PrintFileType(int special_type)
|
|
{
|
|
switch(special_type)
|
|
{
|
|
case NET_FILE_TYPE:
|
|
return("FILE");
|
|
case NET_DIRECTORY:
|
|
return("DIRECTORY");
|
|
case NET_SYM_LINK:
|
|
return("SYMBOLIC-LINK");
|
|
case NET_SYM_LINK_TO_DIR:
|
|
return("SYM-DIRECTORY");
|
|
case NET_SYM_LINK_TO_FILE:
|
|
return("SYM-FILE");
|
|
default:
|
|
XP_ASSERT(0);
|
|
return("FILE");
|
|
}
|
|
}
|
|
|
|
PRIVATE void
|
|
NET_SetFileSortMethod(int method)
|
|
{
|
|
net_file_sort_method = method;
|
|
}
|
|
|
|
MODULE_PRIVATE void NET_FreeEntryInfoStruct(NET_FileEntryInfo *entry_info)
|
|
{
|
|
if(entry_info)
|
|
{
|
|
FREEIF(entry_info->filename);
|
|
/* free the struct */
|
|
XP_FREE(entry_info);
|
|
}
|
|
}
|
|
|
|
MODULE_PRIVATE NET_FileEntryInfo * NET_CreateFileEntryInfoStruct (void)
|
|
{
|
|
NET_FileEntryInfo * new_entry = XP_NEW(NET_FileEntryInfo);
|
|
|
|
if(!new_entry)
|
|
return(NULL);
|
|
|
|
XP_MEMSET(new_entry, 0, sizeof(NET_FileEntryInfo));
|
|
|
|
new_entry->permissions = -1;
|
|
|
|
return(new_entry);
|
|
|
|
}
|
|
|
|
/* This function is used as a comparer function for the Qsort routine.
|
|
* It uses a function FE_FileSortMethod() to determine the
|
|
* field to sort on.
|
|
*
|
|
*/
|
|
PRIVATE int
|
|
NET_CompareFileEntryInfoStructs (const void *ent2, const void *ent1)
|
|
{
|
|
int status;
|
|
const NET_FileEntryInfo *entry1 = *(NET_FileEntryInfo **) ent1;
|
|
const NET_FileEntryInfo *entry2 = *(NET_FileEntryInfo **) ent2;
|
|
|
|
if(!entry1 || !entry2)
|
|
return(-1);
|
|
|
|
switch(net_file_sort_method)
|
|
{
|
|
case SORT_BY_SIZE:
|
|
/* both equal or both 0 */
|
|
if(entry1->size == entry2->size)
|
|
return(XP_STRCMP(entry2->filename, entry1->filename));
|
|
else
|
|
if(entry1->size > entry2->size)
|
|
return(-1);
|
|
else
|
|
return(1);
|
|
/* break; NOT NEEDED */
|
|
case SORT_BY_TYPE:
|
|
if(entry1->cinfo && entry1->cinfo->desc &&
|
|
entry2->cinfo && entry2->cinfo->desc)
|
|
{
|
|
status = XP_STRCMP(entry1->cinfo->desc, entry2->cinfo->desc);
|
|
if(status)
|
|
return(status);
|
|
/* else fall to filename comparison */
|
|
}
|
|
return (XP_STRCMP(entry2->filename, entry1->filename));
|
|
/* break; NOT NEEDED */
|
|
case SORT_BY_DATE:
|
|
if(entry1->date == entry2->date)
|
|
return(XP_STRCMP(entry2->filename, entry1->filename));
|
|
else
|
|
if(entry1->size > entry2->size)
|
|
return(-1);
|
|
else
|
|
return(1);
|
|
/* break; NOT NEEDED */
|
|
case SORT_BY_NAME:
|
|
default:
|
|
return (XP_STRCMP(entry2->filename, entry1->filename));
|
|
}
|
|
}
|
|
|
|
/* sort the files
|
|
*/
|
|
MODULE_PRIVATE void
|
|
NET_DoFileSort(SortStruct * sort_list)
|
|
{
|
|
NET_DoSort(sort_list, NET_CompareFileEntryInfoStructs);
|
|
}
|
|
|
|
#ifdef PROFILE
|
|
#pragma profile off
|
|
#endif
|
|
|