]> git.earman.xyz Git - sensor-watch.git/commitdiff
unify on 32-bit signed lengths
authorJoey Castillo <joeycastillo@utexas.edu>
Tue, 10 May 2022 01:31:45 +0000 (21:31 -0400)
committerJoey Castillo <joeycastillo@utexas.edu>
Tue, 10 May 2022 01:33:45 +0000 (21:33 -0400)
movement/filesystem.c
movement/filesystem.h

index dc1f98c68d8999a673ca745057c4b44070e7aae7..d122a7fa4c38db43875fb36d2b74b86202cf1c63 100644 (file)
@@ -60,7 +60,7 @@ static int _traverse_df_cb(void *p, lfs_block_t block) {
        return 0;
 }
 
-int filesystem_get_free_space(void) {
+int32_t filesystem_get_free_space(void) {
        int err;
 
        uint32_t free_blocks = 0;
@@ -71,7 +71,7 @@ int filesystem_get_free_space(void) {
 
        uint32_t available = cfg.block_count * cfg.block_size - free_blocks * cfg.block_size;
 
-       return available;
+       return (int32_t)available;
 }
 
 static int filesystem_ls(lfs_t *lfs, const char *path) {
@@ -121,7 +121,7 @@ bool filesystem_init(void) {
         err = lfs_format(&lfs, &cfg);
         if (err < 0) return false;
         err = lfs_mount(&lfs, &cfg) == LFS_ERR_OK;
-        printf("Filesystem mounted with %d bytes free.\n", filesystem_get_free_space());
+        printf("Filesystem mounted with %ld bytes free.\n", filesystem_get_free_space());
     }
 
     return err == LFS_ERR_OK;
@@ -144,7 +144,7 @@ bool filesystem_rm(char *filename) {
     }
 }
 
-static int32_t filesystem_get_file_size(char *filename) {
+int32_t filesystem_get_file_size(char *filename) {
     if (filesystem_file_exists(filename)) {
         return info.size; // info struct was just populated by filesystem_file_exists
     }
@@ -210,7 +210,7 @@ void filesystem_process_command(char *line) {
             filesystem_cat(filename);
         }
     } else if (strcmp(command, "df") == 0) {
-        printf("free space: %d bytes\n", filesystem_get_free_space());
+        printf("free space: %ld bytes\n", filesystem_get_free_space());
     } else if (strcmp(command, "rm") == 0) {
         char *filename = strtok(NULL, " \n");
         if (filename == NULL) {
index c9a5804cb056d2ad6775faf98d1e4374f8385eaf..b0fb7f58c3e0ac6ecfaf5e5eff54cdf92a6c3914 100644 (file)
@@ -36,7 +36,7 @@ bool filesystem_init(void);
 /** @brief Gets the space available on the filesystem.
   * @return the free space in bytes
   */
-int filesystem_get_free_space(void);
+int32_t filesystem_get_free_space(void);
 
 /** @brief Checks for the existence of a file on the filesystem.
   * @param filename the file you wish to check
@@ -50,6 +50,12 @@ bool filesystem_file_exists(char *filename);
   */
 bool filesystem_rm(char *filename);
 
+/** @brief Gets the size of a file on the filesystem.
+  * @param filename the file whose size you wish to determine
+  * @return the file's size in bytes, or -1 if the file does not exist.
+  */
+int32_t filesystem_get_file_size(char *filename);
+
 /** @brief Reads a file from the filesystem into a buffer
   * @param filename the file you wish to read
   * @param buf A buffer of at least length bytes; the file will be read into this buffer