ReactOS 0.4.16-dev-959-g2ec3a19
getcwd.cpp File Reference
#include <corecrt_internal.h>
#include <corecrt_internal_traits.h>
#include <direct.h>
#include <errno.h>
#include <malloc.h>
#include <stdlib.h>
Include dependency graph for getcwd.cpp:

Go to the source code of this file.

Functions

static int __cdecl is_valid_drive (unsigned const drive_number) throw ()
 
template<typename Character >
 _Success_ (return !=0) _Ret_z_ static Character *__cdecl common_getdcwd(int drive_number
 
 _Out_writes_opt_z_ (max_count) Character *user_buffer
 
int const int const _In_opt_z_ char const *const int const line_number throw ()
 
char *__cdecl _getcwd (char *const user_buffer, int const max_length)
 
wchar_t *__cdecl _wgetcwd (wchar_t *const user_buffer, int const max_length)
 
char *__cdecl _getdcwd (int const drive_number, char *const user_buffer, int const max_length)
 
wchar_t *__cdecl _wgetdcwd (int const drive_number, wchar_t *const user_buffer, int const max_length)
 

Variables

int const max_count
 
int const int const block_use
 
int const int const _In_opt_z_ char const *const file_name
 

Function Documentation

◆ _getcwd()

char *__cdecl _getcwd ( char *const  user_buffer,
int const  max_length 
)

Definition at line 180 of file getcwd.cpp.

184{
185 return common_getdcwd(0, user_buffer, max_length, _NORMAL_BLOCK, nullptr, 0);
186}
#define _NORMAL_BLOCK
Definition: crtdbg.h:67

◆ _getdcwd()

char *__cdecl _getdcwd ( int const  drive_number,
char *const  user_buffer,
int const  max_length 
)

Definition at line 196 of file getcwd.cpp.

201{
202 return common_getdcwd(drive_number, user_buffer, max_length, _NORMAL_BLOCK, nullptr, 0);
203}
__u8 drive_number
Definition: mkdosfs.c:0

◆ _Out_writes_opt_z_()

_Out_writes_opt_z_ ( max_count  )

◆ _Success_()

template<typename Character >
_Success_ ( return = 0)

◆ _wgetcwd()

wchar_t *__cdecl _wgetcwd ( wchar_t *const  user_buffer,
int const  max_length 
)

Definition at line 188 of file getcwd.cpp.

192{
193 return common_getdcwd(0, user_buffer, max_length, _NORMAL_BLOCK, nullptr, 0);
194}

◆ _wgetdcwd()

wchar_t *__cdecl _wgetdcwd ( int const  drive_number,
wchar_t *const  user_buffer,
int const  max_length 
)

Definition at line 205 of file getcwd.cpp.

210{
211 return common_getdcwd(drive_number, user_buffer, max_length, _NORMAL_BLOCK, nullptr, 0);
212}

◆ is_valid_drive()

static int __cdecl is_valid_drive ( unsigned const  drive_number)
throw (
)
static

Definition at line 26 of file getcwd.cpp.

27{
28 if (drive_number > 26)
29 {
31 _VALIDATE_RETURN(("Invalid Drive Index" ,0), EACCES, 0);
32 }
33
34 if (drive_number == 0)
35 return 1;
36
37#pragma warning(suppress:__WARNING_UNUSED_ASSIGNMENT) // 28931
38 wchar_t const drive_letter = static_cast<wchar_t>(L'A' + drive_number - 1);
39 wchar_t const drive_string[] = { drive_letter, L':', L'\\', L'\0' };
40
41 UINT const drive_type = GetDriveTypeW(drive_string);
42 if (drive_type == DRIVE_UNKNOWN || drive_type == DRIVE_NO_ROOT_DIR)
43 return 0;
44
45 return 1;
46}
#define EACCES
Definition: acclib.h:85
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
UINT WINAPI GetDriveTypeW(IN LPCWSTR lpRootPathName)
Definition: disk.c:497
#define _doserrno
Definition: stdlib.h:131
unsigned int UINT
Definition: ndis.h:50
#define L(x)
Definition: ntvdm.h:50
#define DRIVE_UNKNOWN
Definition: winbase.h:282
#define DRIVE_NO_ROOT_DIR
Definition: winbase.h:283
#define ERROR_INVALID_DRIVE
Definition: winerror.h:118

Referenced by throw().

◆ throw()

Definition at line 117 of file getcwd.cpp.

118{
119 typedef __crt_char_traits<Character> traits;
120
121 _VALIDATE_RETURN(max_count >= 0, EINVAL, nullptr);
122
123 if (drive_number != 0)
124 {
125 // A drive other than the default drive was requested; make sure it
126 // is a valid drive number:
128 {
130 _VALIDATE_RETURN(("Invalid Drive", 0), EACCES, nullptr);
131 }
132 }
133 else
134 {
135 // Otherwise, get the drive number of the default drive:
137 }
138
139 Character drive_string[4];
140 if (drive_number != 0)
141 {
142 drive_string[0] = static_cast<Character>('A' - 1 + drive_number);
143 drive_string[1] = ':';
144 drive_string[2] = '.';
145 drive_string[3] = '\0';
146 }
147 else
148 {
149 drive_string[0] = '.';
150 drive_string[1] = '\0';
151 }
152
153 if (user_buffer == nullptr)
154 { // Always new memory suitable for debug mode and releasing to the user.
157 );
158 buffer.allocate(max_count);
159 if (!traits::get_full_path_name(drive_string, buffer))
160 {
161 return buffer.detach();
162 }
163 return nullptr;
164 }
165
166 // Using user buffer. Fail if not enough space.
167 _VALIDATE_RETURN(max_count > 0, EINVAL, nullptr);
168 user_buffer[0] = '\0';
169
171 if (!traits::get_full_path_name(drive_string, buffer))
172 {
173 return user_buffer;
174 }
175 return nullptr;
176};
#define EINVAL
Definition: acclib.h:90
_Check_return_ _CRTIMP int __cdecl _getdrive(void)
Definition: getdrive.c:20
int const char const *const int const line_number
Definition: debug_heap.cpp:499
static int __cdecl is_valid_drive(unsigned const drive_number)
Definition: getcwd.cpp:26
int const max_count
Definition: getcwd.cpp:113
int const int const _In_opt_z_ char const *const file_name
Definition: getcwd.cpp:115
int const int const block_use
Definition: getcwd.cpp:114
GLuint buffer
Definition: glext.h:5915

Variable Documentation

◆ block_use

int const int const block_use

Definition at line 114 of file getcwd.cpp.

Referenced by throw().

◆ file_name

Definition at line 115 of file getcwd.cpp.

Referenced by throw().

◆ max_count

int const max_count

Definition at line 113 of file getcwd.cpp.

Referenced by throw().