4 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version. The Blender
10 * Foundation also sells licenses for use in proprietary software under
11 * the Blender License. See http://www.blender.org/BL/ for information
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
24 * All rights reserved.
26 * The Original Code is: all of this file.
28 * Contributor(s): none yet.
30 * ***** END GPL/BL DUAL LICENSE BLOCK *****
31 * Reorganised mar-01 nzc
32 * Some really low-level file thingies.
35 #include <sys/types.h>
37 #include <stdlib.h> /* voorkomt dat je bij malloc type moet aangeven */
46 #include "BLI_winstuff.h"
47 #include <sys/types.h>
59 #if defined(__sgi) || defined(__sun__)
60 #include <sys/statfs.h>
63 #ifdef defined (__FreeBSD__) || defined (__OpenBSD__)
64 #include <sys/param.h>
65 #include <sys/mount.h>
68 #if defined(linux) || defined(__CYGWIN32__)
81 #include <sys/param.h>
82 #include <sys/mount.h>
83 #endif /* __APPLE__ */
87 #if !defined(__BeOS) && !defined(WIN32)
88 #include <sys/mtio.h> /* tape comando's */
90 #include <string.h> /* strcpy etc.. */
93 #include <sys/ioctl.h>
94 #include <unistd.h> /* */
98 /* MAART: #ifndef __FreeBSD__ */
99 #if !defined(__FreeBSD__) && !defined(__APPLE__)
104 #include "MEM_guardedalloc.h"
106 #include "DNA_listBase.h"
107 #include "BLI_blenlib.h"
108 #include "BLI_storage.h"
109 #include "BLI_storage_types.h"
111 #include "BLI_util.h"
112 #include "BLI_linklist.h"
115 void BLI_buildpwtable(struct passwd **pwtable);
116 void BLI_freepwtable(struct passwd *pwtable);
117 char *BLI_findpwtable(struct passwd *pwtable, unsigned short user);
120 static int totnum,actnum;
121 static struct direntry *files;
123 static struct ListBase dirbase_={
125 static struct ListBase *dirbase = &dirbase_;
128 char *BLI_getwdN(char *dir)
138 /* 160 is FILE_MAXDIR in filesel.c */
139 return( getcwd(dir, 160) );
145 int BLI_compare(struct direntry *entry1, struct direntry *entry2)
147 /* type is gelijk aan stat.st_mode */
149 if (S_ISDIR(entry1->type)){
150 if (S_ISDIR(entry2->type)==0) return (-1);
152 if (S_ISDIR(entry2->type)) return (1);
154 if (S_ISREG(entry1->type)){
155 if (S_ISREG(entry2->type)==0) return (-1);
157 if (S_ISREG(entry2->type)) return (1);
159 if ((entry1->type & S_IFMT) < (entry2->type & S_IFMT)) return (-1);
160 if ((entry1->type & S_IFMT) > (entry2->type & S_IFMT)) return (1);
161 return (strcasecmp(entry1->relname,entry2->relname));
165 double BLI_diskfree(char *dir)
168 DWORD sectorspc, bytesps, freec, clusters;
171 tmp[0]='\\'; tmp[1]=0; /* Just a failsafe */
172 if (dir[0]=='/' || dir[0]=='\\') {
175 } else if (dir[1]==':') {
182 GetDiskFreeSpace(tmp,§orspc, &bytesps, &freec, &clusters);
184 return (double) (freec*bytesps*sectorspc);
187 char name[100],*slash;
193 slash = strrchr(name,'/');
194 if (slash) slash[1] = 0;
195 } else strcpy(name,"/");
197 #if defined (__FreeBSD__) || defined (linux) || defined (__OpenBSD__)
198 if (statfs(name, &disk)) return(-1);
203 #if defined __sgi || defined __sun__
205 if (statfs(name, &disk, sizeof(struct statfs), 0)){
206 /* printf("diskfree: Couldn't get information about %s.\n",dir); */
211 return ( ((double) disk.f_bsize) * ((double) disk.f_bfree));
215 static int hide_dot= 0;
217 void BLI_hide_dot_files(int set)
223 void BLI_builddir(char *dirname, char *relname)
225 struct dirent *fname;
226 struct dirlink *dlink;
227 int rellen, newnum = 0, seen_ = 0, seen__ = 0;
232 rellen=strlen(relname);
239 if (chdir(dirname) == -1){
244 if (dir = (DIR *)opendir(".")){
245 while ((fname = (struct dirent*) readdir(dir)) != NULL) {
247 if(hide_dot && fname->d_name[0]=='.' && fname->d_name[1]!='.' && fname->d_name[1]!=0);
250 dlink = (struct dirlink *)malloc(sizeof(struct dirlink));
252 strcpy(buf+rellen,fname->d_name);
254 dlink->name = strdup(buf);
256 if (dlink->name[0] == '.') {
257 if (dlink->name[1] == 0) seen_ = 1;
258 else if (dlink->name[1] == '.') {
259 if (dlink->name[2] == 0) seen__ = 1;
262 BLI_addhead(dirbase,dlink);
270 if (seen_ == 0) { /* Cachefs PATCH */
271 dlink = (struct dirlink *)malloc(sizeof(struct dirlink));
272 strcpy(buf+rellen,"./.");
273 dlink->name = strdup(buf);
274 BLI_addhead(dirbase,dlink);
277 if (seen__ == 0) { /* MAC PATCH */
278 dlink = (struct dirlink *)malloc(sizeof(struct dirlink));
279 strcpy(buf+rellen,"./..");
280 dlink->name = strdup(buf);
281 BLI_addhead(dirbase,dlink);
286 if (files) files=(struct direntry *)realloc(files,(totnum+newnum) * sizeof(struct direntry));
287 else files=(struct direntry *)malloc(newnum * sizeof(struct direntry));
290 dlink = (struct dirlink *) dirbase->first;
292 memset(&files[actnum], 0 , sizeof(struct direntry));
293 files[actnum].relname = dlink->name;
294 stat(dlink->name,&files[actnum].s);
295 files[actnum].type=files[actnum].s.st_mode;
296 files[actnum].flags = 0;
302 printf("Couldn't get memory for dir\n");
306 BLI_freelist(dirbase);
307 if (files) qsort(files, actnum, sizeof(struct direntry), (int (*)(const void *,const void*))BLI_compare);
309 printf("%s empty directory\n",dirname);
314 printf("%s non-existant directory\n",dirname);
319 void BLI_buildpwtable(struct passwd **pwtable)
322 struct passwd *pw,*pwtab;
332 pwtab = (struct passwd *)calloc(count+1,sizeof(struct passwd));
338 slen = strlen(pw->pw_name);
339 pwtab[count].pw_name = malloc(slen+1);
340 strcpy(pwtab[count].pw_name,pw->pw_name);
344 pwtab[count].pw_name = 0;
350 void BLI_freepwtable(struct passwd *pwtable)
355 if (pwtable[count].pw_name) free(pwtable[count].pw_name);
364 char *BLI_findpwtable(struct passwd *pwtable, ushort user)
366 static char string[32];
368 while (pwtable->pw_name){
369 if (pwtable->pw_uid == user){
370 return (pwtable->pw_name);
374 sprintf(string, "%d", user);
380 void BLI_adddirstrings()
385 static char * types[8] = {"---", "--x", "-w-", "-wx", "r--", "r-x", "rw-", "rwx"};
387 int num1, num2, num3, num4, st_size;
389 struct passwd *pwtable;
391 struct direntry * file;
395 BLI_buildpwtable(&pwtable);
400 for(num=0;num<actnum;num++){
403 strcpy(file->mode1, types[0]);
404 strcpy(file->mode2, types[0]);
405 strcpy(file->mode3, types[0]);
407 mode = file->s.st_mode;
409 strcpy(file->mode1, types[(mode & 0700) >> 6]);
410 strcpy(file->mode2, types[(mode & 0070) >> 3]);
411 strcpy(file->mode3, types[(mode & 0007)]);
413 if (((mode & S_ISGID) == S_ISGID) && (file->mode2[2]=='-'))file->mode2[2]='l';
415 if (mode & (S_ISUID | S_ISGID)){
416 if (file->mode1[2]=='x') file->mode1[2]='s';
417 else file->mode1[2]='S';
419 if (file->mode2[2]=='x')file->mode2[2]='s';
423 if (file->mode3[2] == 'x') file->mode3[2] = 't';
424 else file->mode3[2] = 'T';
429 strcpy(files[num].owner,"user");
431 strcpy(files[num].owner, BLI_findpwtable(pwtable,files[num].s.st_uid));
434 tm= localtime(&files[num].s.st_mtime);
435 strftime(files[num].time, 8, "%H:%M", tm);
436 strftime(files[num].date, 16, "%d-%b-%y", tm);
438 st_size= (int)files[num].s.st_size;
440 num1= st_size % 1000;
443 num3= st_size/(1000*1000);
445 num4= st_size/(1000*1000*1000);
448 if(num4) sprintf(files[num].size, "%3d %03d %03d %03d", num4, num3, num2, num1);
449 else if(num3) sprintf(files[num].size, "%7d %03d %03d", num3, num2, num1);
450 else if(num2) sprintf(files[num].size, "%11d %03d", num2, num1);
451 else if(num1) sprintf(files[num].size, "%15d", num1);
452 else sprintf(files[num].size, "");
454 strftime(datum, 32, "%d-%b-%y %R", tm);
456 if (st_size < 1000) {
457 sprintf(size, "%10d", st_size);
458 } else if (st_size < 1000 * 1000) {
459 sprintf(size, "%6d %03d", st_size / 1000, st_size % 1000);
460 } else if (st_size < 100 * 1000 * 1000) {
461 sprintf(size, "%2d %03d %03d", st_size / (1000 * 1000), (st_size / 1000) % 1000, st_size % 1000);
463 sprintf(size, "> %4.1f M", st_size / (1024.0 * 1024.0));
464 sprintf(size, "%10d", st_size);
467 sprintf(buf,"%s %s %10s %s", files[num].date, files[num].time, size,
470 sprintf(buf,"%s %s %s %7s %s %s %10s %s", file->mode1, file->mode2, file->mode3, files[num].owner, files[num].date, files[num].time, size,
473 files[num].string=malloc(strlen(buf)+1);
474 if (files[num].string){
475 strcpy(files[num].string,buf);
481 BLI_freepwtable(pwtable);
485 unsigned int BLI_getdir(char *dirname, struct direntry **filelist)
487 // reset global variables
488 // memory stored in files is free()'d in
489 // filesel.c:freefilelist()
494 BLI_builddir(dirname,"");
500 // keep blender happy. Blender stores this in a variable
501 // where 0 has special meaning.....
502 *(filelist) = files = malloc(sizeof(struct direntry));
509 int BLI_filesize(int file)
513 if (file <= 0) return (-1);
515 return (buf.st_size);
520 int BLI_exist(char *name)
524 if (stat(name,&st)) return(0);
528 LinkNode *BLI_read_file_as_lines(char *name)
530 FILE *fp= fopen(name, "r");
531 LinkNode *lines= NULL;
535 if (!fp) return NULL;
537 fseek(fp, 0, SEEK_END);
539 fseek(fp, 0, SEEK_SET);
546 * size = because on win32 reading
547 * all the bytes in the file will return
548 * less bytes because of crnl changes.
550 size= fread(buf, 1, size, fp);
551 for (i=0; i<=size; i++) {
552 if (i==size || buf[i]=='\n') {
553 char *line= BLI_strdupn(&buf[last], i-last);
555 BLI_linklist_prepend(&lines, line);
565 BLI_linklist_reverse(&lines);
569 void BLI_free_file_lines(LinkNode *lines)
571 BLI_linklist_free(lines, (void(*)(void*)) MEM_freeN);