@@ -26,6 +26,16 @@ void jerry_port_init (void);
26
26
void jerry_port_fatal (jerry_fatal_code_t code);
27
27
```
28
28
29
+ The path style of the OS
30
+
31
+ ``` c
32
+ typedef enum
33
+ {
34
+ JERRY_PATH_STYLE_WINDOWS,
35
+ JERRY_PATH_STYLE_POSIX,
36
+ } jerry_path_style_t ;
37
+ ```
38
+
29
39
Error codes
30
40
31
41
``` c
@@ -173,52 +183,33 @@ void jerry_port_line_free (jerry_char_t *buffer_p);
173
183
174
184
## Filesystem
175
185
176
- ```
177
- /**
178
- * Canonicalize a file path.
179
- *
180
- * If possible, the implementation should resolve symbolic links and other directory references found in the input path,
181
- * and create a fully canonicalized file path as the result.
182
- *
183
- * The function may return with NULL in case an error is encountered, in which case the calling operation will not
184
- * proceed.
185
- *
186
- * The implementation should allocate storage for the result path as necessary. Non-NULL return values will be passed
187
- * to `jerry_port_path_free` when the result is no longer needed by the caller, which can be used to finalize
188
- * dynamically allocated buffers.
189
- *
190
- * NOTE: The implementation must not return directly with the input, as the input buffer is released after the call.
191
- *
192
- * @param path_p: zero-terminated string containing the input path
193
- * @param path_size: size of the input path string in bytes, excluding terminating zero
194
- *
195
- * @return buffer with the normalized path if the operation is successful,
196
- * NULL otherwise
197
- */
198
- jerry_char_t *jerry_port_path_normalize (const jerry_char_t *path_p, jerry_size_t path_size);
199
- ```
200
-
201
186
``` c
202
187
/* *
203
- * Free a path buffer returned by jerry_port_path_normalize.
188
+ * Get the path style of the current OS
204
189
*
205
- * @param path_p: the path buffer to free
190
+ * @return path style
206
191
*/
207
- void jerry_port_path_free (jerry_char_t * path_p );
192
+ jerry_path_style_t jerry_port_path_style (void );
208
193
```
209
194
210
195
```c
211
196
/**
212
- * Get the offset of the basename component in the input path.
197
+ * Get the cwd, the output string will be zero-terminated
213
198
*
214
- * The implementation should return the offset of the first character after the last path separator found in the path.
215
- * This is used by the caller to split the path into a directory name and a file name.
199
+ * @param buffer_p: the buffer to storage the cwd
200
+ * @param buffer_size: the `buffer_p` buffer size, including '\0` terminator
216
201
*
217
- * @param path_p: input zero-terminated path string
202
+ * @note
203
+ * - cwd: current working directory
218
204
*
219
- * @return offset of the basename component in the input path
205
+ * @return The length of cwd, excluding '\0' terminator
206
+ * - When buffer_p is `NULL` and get cwd succeed return length of cwd
207
+ * - When buffer_p is `NULL` and get cwd failed return 0
208
+ * - When buffer_p is not `NULL` and the `buffer_size - 1` just equal to
209
+ * length of cwd; and get cwd succeed return `buffer_size - 1`.
210
+ * - Otherwise means get cwd failed and return 0
220
211
*/
221
- jerry_size_t jerry_port_path_base (const jerry_char_t *path_p );
212
+ jerry_size_t jerry_port_get_cwd ( jerry_char_t *buffer_p, jerry_size_t buffer_size );
222
213
```
223
214
224
215
``` c
0 commit comments