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