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
|
/* FSNFunctions.m
*
* Copyright (C) 2004 Free Software Foundation, Inc.
*
* Author: Enrico Sersale <enrico@imago.ro>
* Date: March 2004
*
* This file is part of the GNUstep FSNode framework
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
*/
#include <Foundation/Foundation.h>
#include <AppKit/AppKit.h>
#include <math.h>
#include "FSNFunctions.h"
#include "FSNodeRep.h"
#include "GNUstep.h"
NSString *path_separator(void)
{
static NSString *separator = nil;
if (separator == nil) {
#if defined(__MINGW32__)
separator = @"\\";
#else
separator = @"/";
#endif
RETAIN (separator);
}
return separator;
}
/*
* p1 is parent of p2
*/
BOOL isSubpathOfPath(NSString *p1, NSString *p2)
{
int l1 = [p1 length];
int l2 = [p2 length];
if ((l1 > l2) || ([p1 isEqualToString: p2])) {
return NO;
} else if ([[p2 substringToIndex: l1] isEqualToString: p1]) {
if ([[p2 pathComponents] containsObject: [p1 lastPathComponent]]) {
return YES;
}
}
return NO;
}
NSString *subtractFirstPartFromPath(NSString *path, NSString *firstpart)
{
if ([path isEqual: firstpart] == NO) {
return [path substringFromIndex: [path rangeOfString: firstpart].length +1];
}
return path_separator();
}
int compareWithExtType(id *r1, id *r2, void *context)
{
FSNInfoType t1 = [(id <FSNodeRep>)r1 nodeInfoShowType];
FSNInfoType t2 = [(id <FSNodeRep>)r2 nodeInfoShowType];
if (t1 == FSNInfoExtendedType) {
if (t2 != FSNInfoExtendedType) {
return NSOrderedDescending;
}
} else {
if (t2 == FSNInfoExtendedType) {
return NSOrderedAscending;
}
}
return NSOrderedSame;
}
#define ONE_KB 1024
#define ONE_MB (ONE_KB * ONE_KB)
#define ONE_GB (ONE_KB * ONE_MB)
NSString *sizeDescription(unsigned long long size)
{
NSString *sizeStr;
char *sign = "";
if (size == 1) {
sizeStr = @"1 byte";
} else if (size < 0) {
sign = "-";
size = -size;
}
if (size == 0) {
sizeStr = @"0 bytes";
} else if (size < (10 * ONE_KB)) {
sizeStr = [NSString stringWithFormat:@"%s %d bytes", sign, (long)size];
} else if (size < (100 * ONE_KB)) {
sizeStr = [NSString stringWithFormat:@"%s %3.2fKB", sign,
((double)size / (double)(ONE_KB))];
} else if (size < (100 * ONE_MB)) {
sizeStr = [NSString stringWithFormat:@"%s %3.2fMB", sign,
((double)size / (double)(ONE_MB))];
} else {
sizeStr = [NSString stringWithFormat:@"%s %3.2fGB", sign,
((double)size / (double)(ONE_GB))];
}
return sizeStr;
}
NSArray *makePathsSelection(NSArray *selnodes)
{
NSMutableArray *selpaths = [NSMutableArray array];
int i;
for (i = 0; i < [selnodes count]; i++) {
[selpaths addObject: [[selnodes objectAtIndex: i] path]];
}
return selpaths;
}
double myrintf(double a)
{
return (floor(a + 0.5));
}
|