cardreader.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. #ifndef CARDREADER_H
  2. #define CARDREADER_H
  3. #ifdef SDSUPPORT
  4. #define MAX_DIR_DEPTH 10
  5. #include "SdFile.h"
  6. enum LsAction {LS_SerialPrint,LS_Count,LS_GetFilename};
  7. class CardReader
  8. {
  9. public:
  10. CardReader();
  11. void initsd();
  12. void write_command(char *buf);
  13. void write_command_no_newline(char *buf);
  14. //files auto[0-9].g on the sd card are performed in a row
  15. //this is to delay autostart and hence the initialisaiton of the sd card to some seconds after the normal init, so the device is available quick after a reset
  16. void checkautostart(bool x);
  17. void openFile(const char* name,bool read,bool replace_current=true);
  18. void openLogFile(const char* name);
  19. void removeFile(const char* name);
  20. void closefile(bool store_location=false);
  21. void release();
  22. void startFileprint();
  23. uint32_t getFileSize();
  24. void getStatus();
  25. void printingHasFinished();
  26. void getfilename(uint16_t nr, const char* const match=NULL);
  27. void getfilename_simple(uint32_t position, const char * const match = NULL);
  28. uint16_t getnrfilenames();
  29. void getAbsFilename(char *t);
  30. void getDirName(char* name, uint8_t level);
  31. uint16_t getWorkDirDepth();
  32. void ls();
  33. void chdir(const char * relpath);
  34. void updir();
  35. void setroot();
  36. #ifdef SDCARD_SORT_ALPHA
  37. void presort();
  38. #ifdef SDSORT_QUICKSORT
  39. void swap(uint8_t left, uint8_t right);
  40. void quicksort(uint8_t left, uint8_t right);
  41. #endif //SDSORT_QUICKSORT
  42. void getfilename_sorted(const uint16_t nr);
  43. #if SDSORT_GCODE
  44. FORCE_INLINE void setSortOn(bool b) { sort_alpha = b; presort(); }
  45. FORCE_INLINE void setSortFolders(int i) { sort_folders = i; presort(); }
  46. //FORCE_INLINE void setSortReverse(bool b) { sort_reverse = b; }
  47. #endif
  48. #endif
  49. FORCE_INLINE bool isFileOpen() { return file.isOpen(); }
  50. FORCE_INLINE bool eof() { return sdpos>=filesize ;};
  51. FORCE_INLINE int16_t get() { sdpos = file.curPosition();return (int16_t)file.read();};
  52. FORCE_INLINE void setIndex(long index) {sdpos = index;file.seekSet(index);};
  53. FORCE_INLINE uint8_t percentDone(){if(!isFileOpen()) return 0; if(filesize) return sdpos/((filesize+99)/100); else return 0;};
  54. FORCE_INLINE char* getWorkDirName(){workDir.getFilename(filename);return filename;};
  55. FORCE_INLINE uint32_t get_sdpos() { if (!isFileOpen()) return 0; else return(sdpos); };
  56. bool ToshibaFlashAir_isEnabled() const { return card.getFlashAirCompatible(); }
  57. void ToshibaFlashAir_enable(bool enable) { card.setFlashAirCompatible(enable); }
  58. bool ToshibaFlashAir_GetIP(uint8_t *ip);
  59. public:
  60. bool saving;
  61. bool logging;
  62. bool sdprinting ;
  63. bool cardOK ;
  64. char filename[13];
  65. uint16_t modificationTime, modificationDate;
  66. uint32_t cluster, position;
  67. char longFilename[LONG_FILENAME_LENGTH];
  68. bool filenameIsDir;
  69. int lastnr; //last number of the autostart;
  70. private:
  71. SdFile root,*curDir,workDir,workDirParents[MAX_DIR_DEPTH];
  72. uint16_t workDirDepth;
  73. // Sort files and folders alphabetically.
  74. #ifdef SDCARD_SORT_ALPHA
  75. uint16_t sort_count; // Count of sorted items in the current directory
  76. #if SDSORT_GCODE
  77. bool sort_alpha; // Flag to enable / disable the feature
  78. int sort_folders; // Flag to enable / disable folder sorting
  79. //bool sort_reverse; // Flag to enable / disable reverse sorting
  80. #endif
  81. // By default the sort index is static
  82. #if SDSORT_DYNAMIC_RAM
  83. uint8_t *sort_order;
  84. #else
  85. uint8_t sort_order[SDSORT_LIMIT];
  86. #endif
  87. // Cache filenames to speed up SD menus.
  88. #if SDSORT_USES_RAM
  89. // If using dynamic ram for names, allocate on the heap.
  90. #if SDSORT_CACHE_NAMES
  91. #if SDSORT_DYNAMIC_RAM
  92. char **sortshort, **sortnames;
  93. #else
  94. char sortshort[SDSORT_LIMIT][FILENAME_LENGTH];
  95. char sortnames[SDSORT_LIMIT][FILENAME_LENGTH];
  96. #endif
  97. #elif !SDSORT_USES_STACK
  98. char sortnames[SDSORT_LIMIT][FILENAME_LENGTH];
  99. uint16_t modification_time[SDSORT_LIMIT];
  100. uint16_t modification_date[SDSORT_LIMIT];
  101. #endif
  102. // Folder sorting uses an isDir array when caching items.
  103. #if HAS_FOLDER_SORTING
  104. #if SDSORT_DYNAMIC_RAM
  105. uint8_t *isDir;
  106. #elif (SDSORT_CACHE_NAMES) || !(SDSORT_USES_STACK)
  107. uint8_t isDir[(SDSORT_LIMIT + 7) >> 3];
  108. #endif
  109. #endif
  110. #endif // SDSORT_USES_RAM
  111. #endif // SDCARD_SORT_ALPHA
  112. #ifdef DEBUG_SD_SPEED_TEST
  113. public:
  114. #endif //DEBUG_SD_SPEED_TEST
  115. Sd2Card card;
  116. private:
  117. SdVolume volume;
  118. SdFile file;
  119. #define SD_PROCEDURE_DEPTH 1
  120. #define MAXPATHNAMELENGTH (13*MAX_DIR_DEPTH+MAX_DIR_DEPTH+1)
  121. uint8_t file_subcall_ctr;
  122. uint32_t filespos[SD_PROCEDURE_DEPTH];
  123. char filenames[SD_PROCEDURE_DEPTH][MAXPATHNAMELENGTH];
  124. uint32_t filesize;
  125. //int16_t n;
  126. unsigned long autostart_atmillis;
  127. uint32_t sdpos ;
  128. bool autostart_stilltocheck; //the sd start is delayed, because otherwise the serial cannot answer fast enought to make contact with the hostsoftware.
  129. LsAction lsAction; //stored for recursion.
  130. int16_t nrFiles; //counter for the files in the current directory and recycled as position counter for getting the nrFiles'th name in the directory.
  131. char* diveDirName;
  132. void diveSubfolder (const char *fileName, SdFile& dir);
  133. void lsDive(const char *prepend, SdFile parent, const char * const match=NULL);
  134. #ifdef SDCARD_SORT_ALPHA
  135. void flush_presort();
  136. #endif
  137. };
  138. extern bool Stopped;
  139. extern CardReader card;
  140. #define IS_SD_PRINTING (card.sdprinting)
  141. #if (SDCARDDETECT > -1)
  142. # ifdef SDCARDDETECTINVERTED
  143. # define IS_SD_INSERTED (READ(SDCARDDETECT)!=0)
  144. # else
  145. # define IS_SD_INSERTED (READ(SDCARDDETECT)==0)
  146. # endif //SDCARDTETECTINVERTED
  147. #else
  148. //If we don't have a card detect line, aways asume the card is inserted
  149. # define IS_SD_INSERTED true
  150. #endif
  151. #else
  152. #define IS_SD_PRINTING (false)
  153. #endif //SDSUPPORT
  154. #endif