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