DirectoryStream.st
author Claus Gittinger <cg@exept.de>
Tue, 18 Nov 2003 10:04:11 +0100
changeset 7754 adc5c9bdbab5
parent 6268 e4bf390583ac
child 7826 c32044219031
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
FileStream subclass:#DirectoryStream
1664
82793bcf229c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1631
diff changeset
    14
	instanceVariableNames:'dirPointer readAheadEntry'
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1133
diff changeset
    15
	classVariableNames:''
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1133
diff changeset
    16
	poolDictionaries:''
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1133
diff changeset
    17
	category:'Streams-External'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
217
a0400fdbc933 *** empty log message ***
claus
parents: 206
diff changeset
    20
!DirectoryStream primitiveDefinitions!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
%{
437
claus
parents: 384
diff changeset
    22
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    23
#define UNIX_LIKE
2609
68abf045b637 stat call emulation
Claus Gittinger <cg@exept.de>
parents: 1989
diff changeset
    24
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    25
#if defined(WIN32)
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    26
# undef UNIX_LIKE
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    27
#endif
437
claus
parents: 384
diff changeset
    28
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    29
#if defined(transputer)
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    30
# undef UNIX_LIKE
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    31
#endif
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    32
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    33
#ifdef UNIX_LIKE
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    34
# include <stdio.h>
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    35
# define _STDIO_H_INCLUDED_
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    36
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    37
# include <errno.h>
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    38
# define _ERRNO_H_INCLUDED_
10
claus
parents: 5
diff changeset
    39
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    40
# include <sys/types.h>
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    41
# include <sys/stat.h>
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    42
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    43
# ifdef HAS_OPENDIR
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    44
#  include <sys/types.h>
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    45
#  ifdef NEXT
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    46
#   include <sys/dir.h>
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    47
#  else
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    48
#   include <dirent.h>
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    49
#  endif
a27a279701f8 Initial revision
claus
parents:
diff changeset
    50
# endif
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 217
diff changeset
    51
3075043790b8 immediateInterr & errno cleanup
claus
parents: 217
diff changeset
    52
/*
3075043790b8 immediateInterr & errno cleanup
claus
parents: 217
diff changeset
    53
 * on some systems errno is a macro ... check for it here
3075043790b8 immediateInterr & errno cleanup
claus
parents: 217
diff changeset
    54
 */
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    55
# ifndef errno
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    56
  extern errno;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    57
# endif
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    58
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    59
#endif /* UNIX_LIKE */
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    60
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
    61
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    62
#ifdef WIN32
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    63
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    64
# ifdef i386
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    65
#  define _X86_
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    66
# endif
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    67
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    68
# undef INT
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    69
# undef Array
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    70
# undef Number
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    71
# undef Method
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    72
# undef Point
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    73
# undef Context
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    74
# undef Rectangle
1989
92b10a0e8a51 win32 changes
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
    75
# undef Block
4298
1889f8051f69 *** empty log message ***
ps
parents: 3980
diff changeset
    76
# undef Time
1889f8051f69 *** empty log message ***
ps
parents: 3980
diff changeset
    77
# undef Date
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    78
2685
6576fb7af338 nt stuff
Claus Gittinger <cg@exept.de>
parents: 2609
diff changeset
    79
/* # include <types.h> /* */
1989
92b10a0e8a51 win32 changes
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
    80
# include <stdarg.h> /* */
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
    81
# include <errno.h>
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
    82
# define _ERRNO_H_INCLUDED_
1989
92b10a0e8a51 win32 changes
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
    83
# include <windef.h> /* */
92b10a0e8a51 win32 changes
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
    84
# include <winbase.h> /* */
4298
1889f8051f69 *** empty log message ***
ps
parents: 3980
diff changeset
    85
/* # include <wingdi.h> /* */
1889f8051f69 *** empty log message ***
ps
parents: 3980
diff changeset
    86
/* # include <winuser.h> /* */
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    87
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    88
# ifdef __DEF_Array
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    89
#  define Array __DEF_Array
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    90
# endif
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    91
# ifdef __DEF_Number
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    92
#  define Number __DEF_Number
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    93
# endif
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    94
# ifdef __DEF_Method
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    95
#  define Method __DEF_Method
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    96
# endif
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    97
# ifdef __DEF_Point
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    98
#  define Point __DEF_Point
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
    99
# endif
1989
92b10a0e8a51 win32 changes
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   100
# ifdef __DEF_Block
92b10a0e8a51 win32 changes
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   101
#  define Block __DEF_Block
92b10a0e8a51 win32 changes
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
   102
# endif
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   103
# ifdef __DEF_Context
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   104
#  define Context __DEF_Context
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   105
# endif
4298
1889f8051f69 *** empty log message ***
ps
parents: 3980
diff changeset
   106
# ifdef __DEF_Date
1889f8051f69 *** empty log message ***
ps
parents: 3980
diff changeset
   107
#  define Date __DEF_Date
1889f8051f69 *** empty log message ***
ps
parents: 3980
diff changeset
   108
# endif
1889f8051f69 *** empty log message ***
ps
parents: 3980
diff changeset
   109
# ifdef __DEF_Time
1889f8051f69 *** empty log message ***
ps
parents: 3980
diff changeset
   110
#  define Time __DEF_Time
1889f8051f69 *** empty log message ***
ps
parents: 3980
diff changeset
   111
# endif
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   112
2999
b0e55440cf12 eliminate MKOBJ & MKCP (use MKEXTERNALADDRESS & externalAddressVal)
Claus Gittinger <cg@exept.de>
parents: 2982
diff changeset
   113
# define __HANDLEVal(o)  (HANDLE)__externalAddressVal(o)
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   114
6259
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   115
# ifndef DO_WRAP_CALLS
6266
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   116
#  define STX_C_CALL0(__nm__, __f__)                            __f__((__a1__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   117
#  define STX_C_CALL1(__nm__, __f__, __a1__)                    __f__((__a1__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   118
#  define STX_C_CALL2(__nm__, __f__, __a1__, __a2__)            __f__((__a1__), (__a2__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   119
#  define STX_C_CALL3(__nm__, __f__, __a1__, __a2__, __a3__)    __f__((__a1__), (__a2__), (__a3__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   120
#  define STX_API_CALL0(__nm__, __f__)                          __f__((__a1__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   121
#  define STX_API_CALL1(__nm__, __f__, __a1__)                  __f__((__a1__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   122
#  define STX_API_CALL2(__nm__, __f__, __a1__, __a2__)          __f__((__a1__), (__a2__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   123
#  define STX_API_CALL3(__nm__, __f__, __a1__, __a2__, __a3__)  __f__((__a1__), (__a2__), (__a3__))
6259
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   124
# else
6266
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   125
#  define STX_C_CALL0(__nm__, __f__)                            __STX_C_CALL0(__nm__,(void*)__f__)
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   126
#  define STX_C_CALL1(__nm__, __f__, __a1__)                    __STX_C_CALL1(__nm__,(void*)__f__, (void*)(__a1__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   127
#  define STX_C_CALL2(__nm__, __f__, __a1__, __a2__)            __STX_C_CALL2(__nm__,(void*)__f__, (void*)(__a1__), (void*)(__a2__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   128
#  define STX_C_CALL3(__nm__, __f__, __a1__, __a2__, __a3__)    __STX_C_CALL3(__nm__,(void*)__f__, (void*)(__a1__), (void*)(__a2__), (void*)(__a3__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   129
#  define STX_API_CALL0(__nm__, __f__)                          __STX_API_CALL0(__nm__,(void*)__f__)
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   130
#  define STX_API_CALL1(__nm__, __f__, __a1__)                  __STX_API_CALL1(__nm__,(void*)__f__, (void*)(__a1__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   131
#  define STX_API_CALL2(__nm__, __f__, __a1__, __a2__)          __STX_API_CALL2(__nm__,(void*)__f__, (void*)(__a1__), (void*)(__a2__))
b12e2e6a84d7 pass name of called API/C function in wrap
Claus Gittinger <cg@exept.de>
parents: 6259
diff changeset
   132
#  define STX_API_CALL3(__nm__, __f__, __a1__, __a2__, __a3__)  __STX_API_CALL3(__nm__,(void*)__f__, (void*)(__a1__), (void*)(__a2__), (void*)(__a3__))
6259
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   133
# endif
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   134
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   135
#endif /* WIN32 */
223
3075043790b8 immediateInterr & errno cleanup
claus
parents: 217
diff changeset
   136
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   137
%}
206
5858b2c9d0c6 fixed close
claus
parents: 155
diff changeset
   138
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   139
438
claus
parents: 437
diff changeset
   140
!DirectoryStream primitiveFunctions!
claus
parents: 437
diff changeset
   141
%{
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   142
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   143
#ifndef HAS_OPENDIR
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   144
# if defined(__VMS__)
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   145
3816
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   146
#  define lib$find_file LIB$FIND_FILE
438
claus
parents: 437
diff changeset
   147
claus
parents: 437
diff changeset
   148
/*
claus
parents: 437
diff changeset
   149
**  VMS readdir() routines.
claus
parents: 437
diff changeset
   150
**  Written by Rich $alz, <rsalz@bbn.com> in August, 1990.
claus
parents: 437
diff changeset
   151
**  This code has no copyright.
claus
parents: 437
diff changeset
   152
*/
claus
parents: 437
diff changeset
   153
claus
parents: 437
diff changeset
   154
/* 12-NOV-1990 added d_namlen field and special case "." name -GJC@MITECH.COM 
claus
parents: 437
diff changeset
   155
 */
claus
parents: 437
diff changeset
   156
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   157
#   ifndef _STDIO_H_INCLUDED_
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   158
#    include <stdio.h>
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   159
#    define _STDIO_H_INCLUDED_
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   160
#   endif
438
claus
parents: 437
diff changeset
   161
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   162
#   ifndef _CTYPE_H_INCLUDED_
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   163
#    include <ctype.h>
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   164
#    define _CTYPE_H_INCLUDED_
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   165
#   endif
438
claus
parents: 437
diff changeset
   166
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   167
#   ifndef _ERRNO_H_INCLUDED_
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   168
#    include <errno.h>
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   169
#    define _ERRNO_H_INCLUDED_
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   170
#   endif
438
claus
parents: 437
diff changeset
   171
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   172
#   ifndef _DESCRIP_H_INCLUDED_
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   173
#    include <descrip.h>
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   174
#    define _DESCRIP_H_INCLUDED_
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   175
#   endif
438
claus
parents: 437
diff changeset
   176
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   177
#   ifndef _RMSDEF_H_INCLUDED_
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   178
#    include <rmsdef.h>
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   179
#    define _RMSDEF_H_INCLUDED_
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   180
#   endif
438
claus
parents: 437
diff changeset
   181
claus
parents: 437
diff changeset
   182
/*
claus
parents: 437
diff changeset
   183
 * actually, the following has to go into dirent.h ...
claus
parents: 437
diff changeset
   184
 */
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   185
/* BEGIN included dirent.h
438
claus
parents: 437
diff changeset
   186
 *
claus
parents: 437
diff changeset
   187
**  Header file for VMS readdir() routines.
claus
parents: 437
diff changeset
   188
**  Written by Rich $alz, <rsalz@bbn.com> in August, 1990.
claus
parents: 437
diff changeset
   189
**  This code has no copyright.
claus
parents: 437
diff changeset
   190
**
claus
parents: 437
diff changeset
   191
**  You must #include <descrip.h> before this file.
claus
parents: 437
diff changeset
   192
*/
claus
parents: 437
diff changeset
   193
claus
parents: 437
diff changeset
   194
/* 12-NOV-1990 added d_namlen field -GJC@MITECH.COM */
claus
parents: 437
diff changeset
   195
claus
parents: 437
diff changeset
   196
    /* Data structure returned by READDIR(). */
claus
parents: 437
diff changeset
   197
struct dirent {
claus
parents: 437
diff changeset
   198
    char        d_name[100];            /* File name            */
claus
parents: 437
diff changeset
   199
    int         d_namlen;
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   200
    int         vms_verscount;          /* Number of versions   */
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   201
    int         vms_versions[20];       /* Version numbers      */
438
claus
parents: 437
diff changeset
   202
};
claus
parents: 437
diff changeset
   203
claus
parents: 437
diff changeset
   204
    /* Handle returned by opendir(), used by the other routines.  You
claus
parents: 437
diff changeset
   205
     * are not supposed to care what's inside this structure. */
claus
parents: 437
diff changeset
   206
typedef struct _dirdesc {
claus
parents: 437
diff changeset
   207
    long                        context;
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   208
    int                         vms_wantversions;
438
claus
parents: 437
diff changeset
   209
    char                        *pattern;
claus
parents: 437
diff changeset
   210
    struct dirent               entry;
claus
parents: 437
diff changeset
   211
    struct dsc$descriptor_s     pat;
claus
parents: 437
diff changeset
   212
} DIR;
claus
parents: 437
diff changeset
   213
claus
parents: 437
diff changeset
   214
claus
parents: 437
diff changeset
   215
#define rewinddir(dirp)                 seekdir((dirp), 0L)
claus
parents: 437
diff changeset
   216
claus
parents: 437
diff changeset
   217
claus
parents: 437
diff changeset
   218
extern DIR              *opendir();
claus
parents: 437
diff changeset
   219
extern struct dirent    *readdir();
claus
parents: 437
diff changeset
   220
extern long             telldir();
claus
parents: 437
diff changeset
   221
extern void             seekdir();
claus
parents: 437
diff changeset
   222
extern void             closedir();
claus
parents: 437
diff changeset
   223
extern void             vmsreaddirversions();
claus
parents: 437
diff changeset
   224
/*
claus
parents: 437
diff changeset
   225
 * END dirent.h
claus
parents: 437
diff changeset
   226
 */
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   227
#define _DIRENT_H_INCLUDED_
438
claus
parents: 437
diff changeset
   228
claus
parents: 437
diff changeset
   229
claus
parents: 437
diff changeset
   230
    /* Number of elements in vms_versions array */
claus
parents: 437
diff changeset
   231
#define VERSIZE(e)      (sizeof e->vms_versions / sizeof e->vms_versions[0])
claus
parents: 437
diff changeset
   232
claus
parents: 437
diff changeset
   233
    /* Linked in later. */
claus
parents: 437
diff changeset
   234
extern char     *strrchr();
claus
parents: 437
diff changeset
   235
extern char     *strcpy();
claus
parents: 437
diff changeset
   236
/*  Don't need this when all these programs are lumped together.    RLD
claus
parents: 437
diff changeset
   237
extern char     *malloc();
claus
parents: 437
diff changeset
   238
*/
claus
parents: 437
diff changeset
   239
claus
parents: 437
diff changeset
   240
/*
claus
parents: 437
diff changeset
   241
**  Open a directory, return a handle for later use.
claus
parents: 437
diff changeset
   242
*/
claus
parents: 437
diff changeset
   243
DIR *
claus
parents: 437
diff changeset
   244
opendir(name)
claus
parents: 437
diff changeset
   245
    char        *name;
claus
parents: 437
diff changeset
   246
{
claus
parents: 437
diff changeset
   247
    DIR                 *dd;
claus
parents: 437
diff changeset
   248
claus
parents: 437
diff changeset
   249
    /* Get memory for the handle, and the pattern. */
claus
parents: 437
diff changeset
   250
    if ((dd = (DIR *)malloc(sizeof *dd)) == NULL) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   251
	__threadErrno = ENOMEM;
438
claus
parents: 437
diff changeset
   252
	return NULL;
claus
parents: 437
diff changeset
   253
    }
claus
parents: 437
diff changeset
   254
claus
parents: 437
diff changeset
   255
    if (strcmp(".",name) == 0) name = "";
claus
parents: 437
diff changeset
   256
claus
parents: 437
diff changeset
   257
    dd->pattern = malloc((unsigned int)(strlen(name) + sizeof "*.*" + 1));
claus
parents: 437
diff changeset
   258
    if (dd->pattern == NULL) {
claus
parents: 437
diff changeset
   259
	free((char *)dd);
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   260
	__threadErrno = ENOMEM;
438
claus
parents: 437
diff changeset
   261
	return NULL;
claus
parents: 437
diff changeset
   262
    }
claus
parents: 437
diff changeset
   263
claus
parents: 437
diff changeset
   264
    /* Fill in the fields; mainly playing with the descriptor. */
claus
parents: 437
diff changeset
   265
    (void)sprintf(dd->pattern, "%s*.*", name);
claus
parents: 437
diff changeset
   266
    dd->context = 0;
claus
parents: 437
diff changeset
   267
    dd->vms_wantversions = 0;
claus
parents: 437
diff changeset
   268
    dd->pat.dsc$a_pointer = dd->pattern;
claus
parents: 437
diff changeset
   269
    dd->pat.dsc$w_length = strlen(dd->pattern);
claus
parents: 437
diff changeset
   270
    dd->pat.dsc$b_dtype = DSC$K_DTYPE_T;
claus
parents: 437
diff changeset
   271
    dd->pat.dsc$b_class = DSC$K_CLASS_S;
claus
parents: 437
diff changeset
   272
claus
parents: 437
diff changeset
   273
    return dd;
claus
parents: 437
diff changeset
   274
}
claus
parents: 437
diff changeset
   275
claus
parents: 437
diff changeset
   276
/*
claus
parents: 437
diff changeset
   277
**  Set the flag to indicate we want versions or not.
claus
parents: 437
diff changeset
   278
*/
claus
parents: 437
diff changeset
   279
void
claus
parents: 437
diff changeset
   280
vmsreaddirversions(dd, flag)
claus
parents: 437
diff changeset
   281
    DIR                 *dd;
claus
parents: 437
diff changeset
   282
    int                 flag;
claus
parents: 437
diff changeset
   283
{
claus
parents: 437
diff changeset
   284
    dd->vms_wantversions = flag;
claus
parents: 437
diff changeset
   285
}
claus
parents: 437
diff changeset
   286
claus
parents: 437
diff changeset
   287
/*
claus
parents: 437
diff changeset
   288
**  Free up an opened directory.
claus
parents: 437
diff changeset
   289
*/
claus
parents: 437
diff changeset
   290
void
claus
parents: 437
diff changeset
   291
closedir(dd)
claus
parents: 437
diff changeset
   292
    DIR                 *dd;
claus
parents: 437
diff changeset
   293
{
claus
parents: 437
diff changeset
   294
    free(dd->pattern);
claus
parents: 437
diff changeset
   295
    free((char *)dd);
claus
parents: 437
diff changeset
   296
}
claus
parents: 437
diff changeset
   297
claus
parents: 437
diff changeset
   298
/*
claus
parents: 437
diff changeset
   299
**  Collect all the version numbers for the current file.
claus
parents: 437
diff changeset
   300
*/
claus
parents: 437
diff changeset
   301
static void
claus
parents: 437
diff changeset
   302
collectversions(dd)
claus
parents: 437
diff changeset
   303
    DIR                                 *dd;
claus
parents: 437
diff changeset
   304
{
claus
parents: 437
diff changeset
   305
    struct dsc$descriptor_s     pat;
claus
parents: 437
diff changeset
   306
    struct dsc$descriptor_s     res;
claus
parents: 437
diff changeset
   307
    struct dirent               *e;
claus
parents: 437
diff changeset
   308
    char                        *p;
claus
parents: 437
diff changeset
   309
    char                        buff[sizeof dd->entry.d_name];
claus
parents: 437
diff changeset
   310
    int                                 i;
claus
parents: 437
diff changeset
   311
    char                        *text;
claus
parents: 437
diff changeset
   312
    long                        context;
claus
parents: 437
diff changeset
   313
claus
parents: 437
diff changeset
   314
    /* Convenient shorthand. */
claus
parents: 437
diff changeset
   315
    e = &dd->entry;
claus
parents: 437
diff changeset
   316
claus
parents: 437
diff changeset
   317
    /* Add the version wildcard, ignoring the "*.*" put on before */
claus
parents: 437
diff changeset
   318
    i = strlen(dd->pattern);
claus
parents: 437
diff changeset
   319
    text = malloc((unsigned int)(i + strlen(e->d_name)+ 2 + 1));
claus
parents: 437
diff changeset
   320
    if (text == NULL)
claus
parents: 437
diff changeset
   321
	return;
claus
parents: 437
diff changeset
   322
    (void)strcpy(text, dd->pattern);
claus
parents: 437
diff changeset
   323
    (void)sprintf(&text[i - 3], "%s;*", e->d_name);
claus
parents: 437
diff changeset
   324
claus
parents: 437
diff changeset
   325
    /* Set up the pattern descriptor. */
claus
parents: 437
diff changeset
   326
    pat.dsc$a_pointer = text;
claus
parents: 437
diff changeset
   327
    pat.dsc$w_length = strlen(text);
claus
parents: 437
diff changeset
   328
    pat.dsc$b_dtype = DSC$K_DTYPE_T;
claus
parents: 437
diff changeset
   329
    pat.dsc$b_class = DSC$K_CLASS_S;
claus
parents: 437
diff changeset
   330
claus
parents: 437
diff changeset
   331
    /* Set up result descriptor. */
claus
parents: 437
diff changeset
   332
    res.dsc$a_pointer = buff;
claus
parents: 437
diff changeset
   333
    res.dsc$w_length = sizeof buff - 2;
claus
parents: 437
diff changeset
   334
    res.dsc$b_dtype = DSC$K_DTYPE_T;
claus
parents: 437
diff changeset
   335
    res.dsc$b_class = DSC$K_CLASS_S;
claus
parents: 437
diff changeset
   336
claus
parents: 437
diff changeset
   337
    /* Read files, collecting versions. */
claus
parents: 437
diff changeset
   338
    for (context = 0; e->vms_verscount < VERSIZE(e); e->vms_verscount++) {
claus
parents: 437
diff changeset
   339
	if (lib$find_file(&pat, &res, &context) == RMS$_NMF || context == 0)
claus
parents: 437
diff changeset
   340
	    break;
claus
parents: 437
diff changeset
   341
	buff[sizeof buff - 1] = '\0';
claus
parents: 437
diff changeset
   342
	if (p = strchr(buff, ';'))
claus
parents: 437
diff changeset
   343
	    e->vms_versions[e->vms_verscount] = atoi(p + 1);
claus
parents: 437
diff changeset
   344
	else
claus
parents: 437
diff changeset
   345
	    e->vms_versions[e->vms_verscount] = -1;
claus
parents: 437
diff changeset
   346
    }
claus
parents: 437
diff changeset
   347
claus
parents: 437
diff changeset
   348
    free(text);
claus
parents: 437
diff changeset
   349
}
claus
parents: 437
diff changeset
   350
claus
parents: 437
diff changeset
   351
/*
claus
parents: 437
diff changeset
   352
**  Read the next entry from the directory.
claus
parents: 437
diff changeset
   353
*/
claus
parents: 437
diff changeset
   354
struct dirent *
claus
parents: 437
diff changeset
   355
readdir(dd)
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   356
    DIR *dd;
438
claus
parents: 437
diff changeset
   357
{
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   358
    struct dsc$descriptor_s res;
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   359
    char                    *p;
2982
3032a3a7e17a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   360
    char                    buff[sizeof dd->entry.d_name + 10];
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   361
    int                     i;
438
claus
parents: 437
diff changeset
   362
claus
parents: 437
diff changeset
   363
    /* Set up result descriptor, and get next file. */
claus
parents: 437
diff changeset
   364
    res.dsc$a_pointer = buff;
claus
parents: 437
diff changeset
   365
    res.dsc$w_length = sizeof buff - 2;
claus
parents: 437
diff changeset
   366
    res.dsc$b_dtype = DSC$K_DTYPE_T;
claus
parents: 437
diff changeset
   367
    res.dsc$b_class = DSC$K_CLASS_S;
claus
parents: 437
diff changeset
   368
    if (lib$find_file(&dd->pat, &res, &dd->context) == RMS$_NMF
claus
parents: 437
diff changeset
   369
     || dd->context == 0L)
claus
parents: 437
diff changeset
   370
	/* None left... */
claus
parents: 437
diff changeset
   371
	return NULL;
claus
parents: 437
diff changeset
   372
claus
parents: 437
diff changeset
   373
    /* Force the buffer to end with a NUL. */
claus
parents: 437
diff changeset
   374
    buff[sizeof buff - 1] = '\0';
claus
parents: 437
diff changeset
   375
    for (p = buff; !isspace(*p); p++)
claus
parents: 437
diff changeset
   376
	;
claus
parents: 437
diff changeset
   377
    *p = '\0';
claus
parents: 437
diff changeset
   378
claus
parents: 437
diff changeset
   379
    /* Skip any directory component and just copy the name. */
claus
parents: 437
diff changeset
   380
    if (p = strchr(buff, ']'))
claus
parents: 437
diff changeset
   381
	(void)strcpy(dd->entry.d_name, p + 1);
claus
parents: 437
diff changeset
   382
    else
claus
parents: 437
diff changeset
   383
	(void)strcpy(dd->entry.d_name, buff);
claus
parents: 437
diff changeset
   384
claus
parents: 437
diff changeset
   385
    /* Clobber the version. */
claus
parents: 437
diff changeset
   386
    if (p = strchr(dd->entry.d_name, ';'))
claus
parents: 437
diff changeset
   387
	*p = '\0';
claus
parents: 437
diff changeset
   388
2982
3032a3a7e17a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   389
    /* claus: empty dirs seems to leave *.* in the buffer ... */
3032a3a7e17a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   390
    if (strcmp(dd->entry.d_name, "*.*") == 0) {
3032a3a7e17a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   391
	return NULL;
3032a3a7e17a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   392
    }
3032a3a7e17a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   393
438
claus
parents: 437
diff changeset
   394
    dd->entry.d_namlen = strlen(dd->entry.d_name);
claus
parents: 437
diff changeset
   395
claus
parents: 437
diff changeset
   396
    dd->entry.vms_verscount = 0;
claus
parents: 437
diff changeset
   397
    if (dd->vms_wantversions)
claus
parents: 437
diff changeset
   398
	collectversions(dd);
claus
parents: 437
diff changeset
   399
    return &dd->entry;
claus
parents: 437
diff changeset
   400
}
claus
parents: 437
diff changeset
   401
claus
parents: 437
diff changeset
   402
/*
claus
parents: 437
diff changeset
   403
**  Return something that can be used in a seekdir later.
claus
parents: 437
diff changeset
   404
*/
claus
parents: 437
diff changeset
   405
long
claus
parents: 437
diff changeset
   406
telldir(dd)
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   407
    DIR  *dd;
438
claus
parents: 437
diff changeset
   408
{
claus
parents: 437
diff changeset
   409
    return dd->context;
claus
parents: 437
diff changeset
   410
}
claus
parents: 437
diff changeset
   411
claus
parents: 437
diff changeset
   412
/*
claus
parents: 437
diff changeset
   413
**  Return to a spot where we used to be.
claus
parents: 437
diff changeset
   414
*/
claus
parents: 437
diff changeset
   415
void
claus
parents: 437
diff changeset
   416
seekdir(dd, pos)
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   417
    DIR  *dd;
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   418
    long pos;
438
claus
parents: 437
diff changeset
   419
{
claus
parents: 437
diff changeset
   420
    dd->context = pos;
claus
parents: 437
diff changeset
   421
}
claus
parents: 437
diff changeset
   422
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   423
#  define HAS_OPENDIR
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   424
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   425
# endif /* __VMS__ */
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2685
diff changeset
   426
#endif /* not HAS_OPENDIR */
438
claus
parents: 437
diff changeset
   427
%}
claus
parents: 437
diff changeset
   428
! !
claus
parents: 437
diff changeset
   429
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   430
!DirectoryStream class methodsFor:'documentation'!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   431
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   432
copyright
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   433
"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   434
 COPYRIGHT (c) 1989 by Claus Gittinger
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   435
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   436
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   437
 This software is furnished under a license and may be used
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   438
 only in accordance with the terms of that license and with the
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   439
 inclusion of the above copyright notice.   This software may not
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   440
 be provided or otherwise made available to, or used by, any
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   441
 other person.  No title to or ownership of the software is
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   442
 hereby transferred.
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   443
"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   444
!
360
claus
parents: 249
diff changeset
   445
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   446
documentation
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   447
"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   448
    Instances of DirectoryStream allow reading a file-directory,
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   449
    as if it was a stream of filenames.
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   450
    Basically, its an interface to opendir, readdir and closedir.
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   451
    Notice: 
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   452
	DirectoryStream is an ST/X special; 
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   453
	for portability, we recommend the use of Filename protocol.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
   454
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
   455
    [author:]
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   456
	Claus Gittinger
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   457
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   458
    [see also:]
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   459
	Filename
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   460
"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   461
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   462
a27a279701f8 Initial revision
claus
parents:
diff changeset
   463
!DirectoryStream class methodsFor:'instance creation'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   464
a27a279701f8 Initial revision
claus
parents:
diff changeset
   465
directoryNamed:dirName
a27a279701f8 Initial revision
claus
parents:
diff changeset
   466
    "return a DirectoryStream for directory named dirName, aString"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   467
a27a279701f8 Initial revision
claus
parents:
diff changeset
   468
    |newStream|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   469
a27a279701f8 Initial revision
claus
parents:
diff changeset
   470
    newStream := (self basicNew) pathName:dirName.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   471
    newStream openForReading isNil ifTrue:[^nil].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   472
    ^ newStream
a27a279701f8 Initial revision
claus
parents:
diff changeset
   473
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   474
5245
fb27aee25da6 category change
Claus Gittinger <cg@exept.de>
parents: 5120
diff changeset
   475
!DirectoryStream methodsFor:'access-reading'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   476
a27a279701f8 Initial revision
claus
parents:
diff changeset
   477
nextLine
a27a279701f8 Initial revision
claus
parents:
diff changeset
   478
    "return the next filename as a string"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   479
a27a279701f8 Initial revision
claus
parents:
diff changeset
   480
    |prevEntry nextEntry|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   481
%{
77
6c38ca59927f *** empty log message ***
claus
parents: 54
diff changeset
   482
#ifdef HAS_OPENDIR
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   483
    DIR *d;
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   484
# ifdef NEXT
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   485
    struct direct *dp;
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   486
# else
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   487
    struct dirent *dp;
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   488
# endif
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   489
    OBJ dirP;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   490
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1133
diff changeset
   491
    if (__INST(hitEOF) != true && (dirP = __INST(dirPointer)) != nil) {
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   492
	__INST(lastErrorNumber) = nil;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   493
	d = (DIR *)__FILEVal(dirP);
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   494
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   495
	__BEGIN_INTERRUPTABLE__
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   496
	do {
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   497
	    do {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   498
		__threadErrno = 0;
3816
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   499
		dp = readdir(d);
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   500
		/*
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   501
		 * for compatibility with ST-80,
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   502
		 * skip entries for '.' and '..'.
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   503
		 * If wanted, these must be added synthetically.
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   504
		 */
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   505
	    } while (dp && ((strcmp(dp->d_name, ".")==0) || (strcmp(dp->d_name, "..")==0)));
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   506
	} while ((dp == NULL) && (__threadErrno == EINTR));
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   507
	__END_INTERRUPTABLE__
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   508
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   509
	if (dp != NULL) {
1688
8a42db1eea60 removed all COMMA_CON / CON_COMMA uses
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
   510
	    nextEntry = __MKSTRING((char *)(dp->d_name));
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   511
	} else {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   512
	    if (__threadErrno) {
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   513
		__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   514
	    } else {
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   515
	       __INST(hitEOF) = true;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   516
	    }
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1133
diff changeset
   517
       }
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   518
    }
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   519
#else /* no HAS_OPENDIR */
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   520
# ifdef WIN32
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   521
    HANDLE d;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   522
    WIN32_FIND_DATA data;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   523
    OBJ dirP;
3816
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   524
    int rslt;
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   525
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   526
    if (__INST(hitEOF) != true && (dirP = __INST(dirPointer)) != nil) {
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   527
	__INST(lastErrorNumber) = nil;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   528
	d = __HANDLEVal(dirP);
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   529
6259
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   530
	do {
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   531
	    __threadErrno = 0;
6268
e4bf390583ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6266
diff changeset
   532
	    rslt = STX_API_CALL2( "FindNextFile", FindNextFile, d, &data );
6259
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   533
	} while ((rslt < 0) && (__threadErrno == EINTR));
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   534
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   535
	if (rslt > 0) {
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   536
	    nextEntry = __MKSTRING( data.cFileName );
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   537
	} else {
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   538
	   __INST(hitEOF) = true;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   539
	}
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   540
    }
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   541
# endif /* WIN32 */
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   542
#endif /* HAS_OPENDIR */
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
   543
%}.
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
   544
    lastErrorNumber notNil ifTrue:[^ self ioError].
1664
82793bcf229c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1631
diff changeset
   545
    prevEntry := readAheadEntry.
82793bcf229c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1631
diff changeset
   546
    readAheadEntry := nextEntry.
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1133
diff changeset
   547
    prevEntry isNil ifTrue:[^ self pastEnd].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   548
    ^ prevEntry
a27a279701f8 Initial revision
claus
parents:
diff changeset
   549
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   550
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   551
!DirectoryStream methodsFor:'closing'!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   552
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   553
close
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   554
    "close the stream - tell operating system"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   555
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   556
    dirPointer notNil ifTrue:[
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   557
	Lobby unregister:self.
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   558
	self closeFile.
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   559
	dirPointer := nil
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   560
    ]
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   561
! !
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   562
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   563
!DirectoryStream methodsFor:'instance release'!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   564
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   565
closeFile
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   566
    "low level close of a directoryStream"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   567
%{
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   568
#ifdef HAS_OPENDIR
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   569
    OBJ dp;
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   570
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
   571
    if ((dp = __INST(dirPointer)) != nil) {
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
   572
	__INST(dirPointer) = nil;
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   573
	closedir( (DIR *)(__FILEVal(dp)) );
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   574
    }
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   575
#else
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   576
# ifdef WIN32
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   577
    OBJ dp;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   578
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   579
    if ((dp = __INST(dirPointer)) != nil) {
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   580
	__INST(dirPointer) = nil;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   581
	FindClose( __HANDLEVal(dp) );
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   582
    }
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   583
# endif
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   584
#endif
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   585
%}
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   586
! !
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   587
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   588
!DirectoryStream methodsFor:'private'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   589
a27a279701f8 Initial revision
claus
parents:
diff changeset
   590
openForReading
a27a279701f8 Initial revision
claus
parents:
diff changeset
   591
    "open the file for readonly"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   592
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   593
    |ok entry|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   594
a27a279701f8 Initial revision
claus
parents:
diff changeset
   595
    mode := #readonly.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   596
%{
77
6c38ca59927f *** empty log message ***
claus
parents: 54
diff changeset
   597
#ifdef HAS_OPENDIR
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   598
    DIR *d;
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   599
    OBJ path, dp;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   600
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
   601
    ok = false;
1133
961f2b095c22 underline cleanup
Claus Gittinger <cg@exept.de>
parents: 613
diff changeset
   602
    if (__INST(dirPointer) == nil) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   603
	path = __INST(pathName);
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   604
	if (__isString(path)) {
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   605
	    __BEGIN_INTERRUPTABLE__
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   606
	    __threadErrno = 0;
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   607
	    do {
6268
e4bf390583ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6266
diff changeset
   608
		path = __INST(pathName);
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   609
		d = opendir((char *) __stringVal(path));
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   610
	    } while ((d == NULL) && (__threadErrno == EINTR));
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   611
	    __END_INTERRUPTABLE__
92
0c73b48551ac *** empty log message ***
claus
parents: 88
diff changeset
   612
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   613
	    if (d == NULL) {
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   614
		__INST(lastErrorNumber) = __MKSMALLINT(__threadErrno);
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   615
	    } else {
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   616
		__INST(dirPointer) = dp = __MKEXTERNALADDRESS(d); __STORE(self, dp);
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   617
		ok = true;
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   618
	    }
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   619
	}
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   620
    }
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   621
#else
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   622
# ifdef WIN32
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   623
    HANDLE d;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   624
    OBJ path, dp;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   625
    char pattern[512];
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   626
    WIN32_FIND_DATA data;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   627
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   628
    ok = false;
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   629
    if (__INST(dirPointer) == nil) {
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   630
	path = __INST(pathName);
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   631
	if (__isString(path)) {
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   632
	    int l = __stringSize(path);
3164
4f37ae9c8961 use strncpy to avoid buffer-overruns
Claus Gittinger <cg@exept.de>
parents: 2999
diff changeset
   633
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   634
	    if (l < (sizeof(pattern)-4)) {
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   635
		strncpy(pattern, __stringVal(path), l);
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   636
		strcpy(pattern+l, "\\*");
6259
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   637
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   638
		do {
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   639
		    __threadErrno = 0;
6268
e4bf390583ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6266
diff changeset
   640
		    d = STX_API_CALL2( "FindFirstFile", FindFirstFile, pattern, &data );
6259
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   641
		} while ((d < 0) && (__threadErrno == EINTR));
164d7efc1eb2 api call stuff (more calls wrapped; care for EINTR)
Claus Gittinger <cg@exept.de>
parents: 5245
diff changeset
   642
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   643
		if (d == INVALID_HANDLE_VALUE) {
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   644
		    __INST(lastErrorNumber) = __MKSMALLINT(GetLastError());
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   645
		} else {
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   646
		    __INST(dirPointer) = dp = __MKEXTERNALADDRESS(d); __STORE(self, dp);
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   647
		    entry = __MKSTRING( data.cFileName );
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   648
		    ok = true;
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   649
		}
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   650
	    }
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   651
	}
1631
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   652
    }
0d50b800b011 directory readOps for NT
Claus Gittinger <cg@exept.de>
parents: 1295
diff changeset
   653
# endif
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   654
#endif
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
   655
%}.
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
   656
    ok isNil ifTrue:[
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   657
	"
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   658
	 opendir not avalable - use slower pipe
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   659
	"
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   660
	^ PipeStream readingFrom:('cd ' , pathName , '; ls -a')
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   661
    ].
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
   662
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
   663
    (ok == true) ifTrue:[
5120
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   664
	Lobby register:self.
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   665
	entry isNil ifTrue:[
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   666
	    self nextLine. "read 1st entry into readAheadEntry buffer"
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   667
	] ifFalse:[
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   668
	    readAheadEntry := entry.
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   669
	].
13143fbcbdf8 introduced __threadErrno (for native threads)
Claus Gittinger <cg@exept.de>
parents: 4526
diff changeset
   670
	^ self
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   671
    ].
4526
a42dc8e09586 errorOpen renamed to errorAlreadyOpen
Claus Gittinger <cg@exept.de>
parents: 4298
diff changeset
   672
    dirPointer notNil ifTrue:[^ self errorAlreadyOpen].
155
edd7fc34e104 *** empty log message ***
claus
parents: 92
diff changeset
   673
    lastErrorNumber notNil ifTrue:[^ self openError].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   674
    ^ nil
a27a279701f8 Initial revision
claus
parents:
diff changeset
   675
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   676
a27a279701f8 Initial revision
claus
parents:
diff changeset
   677
reOpen
38
454b1b94a48e *** empty log message ***
claus
parents: 31
diff changeset
   678
    "reOpen the stream after image restart"
454b1b94a48e *** empty log message ***
claus
parents: 31
diff changeset
   679
2
claus
parents: 1
diff changeset
   680
    dirPointer := nil.
claus
parents: 1
diff changeset
   681
    super reOpen
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   682
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   683
a27a279701f8 Initial revision
claus
parents:
diff changeset
   684
!DirectoryStream methodsFor:'testing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   685
a27a279701f8 Initial revision
claus
parents:
diff changeset
   686
atEnd
a27a279701f8 Initial revision
claus
parents:
diff changeset
   687
    "return true, if position is at end"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   688
1664
82793bcf229c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1631
diff changeset
   689
    ^ readAheadEntry == nil
2945
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   690
!
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   691
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   692
isEmpty
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   693
    "test for if the unread portion of the directory stream is empty.
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   694
     This query changes the readPointer of the DirectoryStream"
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   695
2957
46015145c398 comments
Claus Gittinger <cg@exept.de>
parents: 2945
diff changeset
   696
    |entry|
2945
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   697
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   698
    [self atEnd] whileFalse:[
3816
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   699
	entry := self nextLine.
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   700
	entry asFilename isImplicit ifFalse:[
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   701
	    ^ false.
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   702
	]
2945
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   703
    ].
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   704
    ^ true
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   705
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   706
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   707
    "
3816
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   708
	(DirectoryStream directoryNamed:'/') isEmpty
af3f917c7759 use wrapCalls for FindFirstFile & FindNextFile (win32 - dir-reading)
Claus Gittinger <cg@exept.de>
parents: 3164
diff changeset
   709
	(DirectoryStream directoryNamed:'/var/tmp') isEmpty
2945
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   710
    "
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   711
1a4f2e0d9f1b Add #isEmpty, to check for an empty directory.
Stefan Vogel <sv@exept.de>
parents: 2896
diff changeset
   712
    "Modified: 18.9.1997 / 18:05:31 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   713
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   714
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1133
diff changeset
   715
!DirectoryStream class methodsFor:'documentation'!
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1133
diff changeset
   716
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1133
diff changeset
   717
version
6268
e4bf390583ac *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6266
diff changeset
   718
    ^ '$Header: /cvs/stx/stx/libbasic/DirectoryStream.st,v 1.53 2001-12-10 16:35:27 cg Exp $'
1281
b4b3abffdf32 Support optional signal generation on end of stream.
Stefan Vogel <sv@exept.de>
parents: 1133
diff changeset
   719
! !