123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987 |
- #include "MarlinConfig.h"
- #if ENABLED(SDSUPPORT)
- #include "cardreader.h"
- #include "ultralcd.h"
- #include "stepper.h"
- #include "language.h"
- #include "printcounter.h"
- #if ENABLED(POWER_LOSS_RECOVERY)
- #include "power_loss_recovery.h"
- #endif
- CardReader::CardReader() {
- #if ENABLED(SDCARD_SORT_ALPHA)
- sort_count = 0;
- #if ENABLED(SDSORT_GCODE)
- sort_alpha = true;
- sort_folders = FOLDER_SORTING;
-
- #endif
- #endif
- sdprinting = cardOK = saving = logging = false;
- filesize = 0;
- sdpos = 0;
- file_subcall_ctr = 0;
- workDirDepth = 0;
- ZERO(workDirParents);
-
- autostart_index = -1;
-
- #if SDPOWER > -1
- OUT_WRITE(SDPOWER, HIGH);
- #endif
- }
- char *createFilename(char *buffer, const dir_t &p) {
- char *pos = buffer;
- for (uint8_t i = 0; i < 11; i++) {
- if (p.name[i] == ' ') continue;
- if (i == 8) *pos++ = '.';
- *pos++ = p.name[i];
- }
- *pos++ = 0;
- return buffer;
- }
- uint16_t nrFile_index;
- void CardReader::lsDive(const char *prepend, SdFile parent, const char * const match) {
- dir_t p;
- uint8_t cnt = 0;
-
- while (parent.readDir(&p, longFilename) > 0) {
-
- if (DIR_IS_SUBDIR(&p) && lsAction != LS_Count && lsAction != LS_GetFilename) {
-
- char dosFilename[FILENAME_LENGTH];
- createFilename(dosFilename, p);
-
- const bool prepend_is_empty = (!prepend || prepend[0] == '\0');
- const int len = (prepend_is_empty ? 1 : strlen(prepend)) + strlen(dosFilename) + 1 + 1;
- char path[len];
-
-
-
- strcpy(path, prepend_is_empty ? "/" : prepend);
- strcat(path, dosFilename);
- strcat(path, "/");
-
-
-
- SdFile dir;
- if (!dir.open(&parent, dosFilename, O_READ)) {
- if (lsAction == LS_SerialPrint) {
- SERIAL_ECHO_START();
- SERIAL_ECHOPGM(MSG_SD_CANT_OPEN_SUBDIR);
- SERIAL_ECHOLN(dosFilename);
- }
- }
- lsDive(path, dir);
-
- }
- else {
- uint8_t pn0 = p.name[0];
- if (pn0 == DIR_NAME_FREE) break;
- if (pn0 == DIR_NAME_DELETED || pn0 == '.') continue;
- if (longFilename[0] == '.') continue;
- if (!DIR_IS_FILE_OR_SUBDIR(&p) || (p.attributes & DIR_ATT_HIDDEN)) continue;
- filenameIsDir = DIR_IS_SUBDIR(&p);
- if (!filenameIsDir && (p.name[8] != 'G' || p.name[9] == '~')) continue;
- switch (lsAction) {
- case LS_Count:
- nrFiles++;
- break;
- case LS_SerialPrint:
- createFilename(filename, p);
- if (prepend) SERIAL_PROTOCOL(prepend);
- SERIAL_PROTOCOL(filename);
- SERIAL_PROTOCOLCHAR(' ');
- SERIAL_PROTOCOLLN(p.fileSize);
- break;
- case LS_GetFilename:
- createFilename(filename, p);
- if (match != NULL) {
- if (strcasecmp(match, filename) == 0) return;
- }
- else if (cnt == nrFile_index) return;
- cnt++;
- break;
- }
- }
- }
- }
- void CardReader::ls() {
- lsAction = LS_SerialPrint;
- root.rewind();
- lsDive(NULL, root);
- }
- #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
-
- void CardReader::printLongPath(char *path) {
- lsAction = LS_GetFilename;
- int i, pathLen = strlen(path);
-
-
- for (i = 0; i < pathLen; i++) if (path[i] == '/') path[i] = '\0';
- SdFile diveDir = root;
- for (i = 0; i < pathLen;) {
- if (path[i] == '\0') i++;
- char *segment = &path[i];
-
- if (!*segment) break;
-
- while (path[++i]) { }
-
-
- diveDir.rewind();
- lsDive(NULL, diveDir, segment);
-
- SERIAL_PROTOCOLCHAR('/');
- SERIAL_PROTOCOL(longFilename[0] ? longFilename : "???");
-
- if (!filenameIsDir) break;
-
-
- SdFile dir;
- if (!dir.open(&diveDir, segment, O_READ)) {
- SERIAL_EOL();
- SERIAL_ECHO_START();
- SERIAL_ECHOPGM(MSG_SD_CANT_OPEN_SUBDIR);
- SERIAL_ECHO(segment);
- break;
- }
- diveDir.close();
- diveDir = dir;
- }
- SERIAL_EOL();
- }
- #endif
- void CardReader::printFilename() {
- if (file.isOpen()) {
- char dosFilename[FILENAME_LENGTH];
- file.getFilename(dosFilename);
- SERIAL_ECHO(dosFilename);
- #if ENABLED(LONG_FILENAME_HOST_SUPPORT)
- getfilename(0, dosFilename);
- if (longFilename[0]) {
- SERIAL_ECHO(' ');
- SERIAL_ECHO(longFilename);
- }
- #endif
- }
- else
- SERIAL_ECHOPGM("(no file)");
- SERIAL_EOL();
- }
- void CardReader::initsd() {
- cardOK = false;
- if (root.isOpen()) root.close();
- #ifndef SPI_SPEED
- #define SPI_SPEED SPI_FULL_SPEED
- #endif
- if (!sd2card.init(SPI_SPEED, SDSS)
- #if defined(LCD_SDSS) && (LCD_SDSS != SDSS)
- && !sd2card.init(SPI_SPEED, LCD_SDSS)
- #endif
- ) {
-
- SERIAL_ECHO_START();
- SERIAL_ECHOLNPGM(MSG_SD_INIT_FAIL);
- }
- else if (!volume.init(&sd2card)) {
- SERIAL_ERROR_START();
- SERIAL_ERRORLNPGM(MSG_SD_VOL_INIT_FAIL);
- }
- else if (!root.openRoot(&volume)) {
- SERIAL_ERROR_START();
- SERIAL_ERRORLNPGM(MSG_SD_OPENROOT_FAIL);
- }
- else {
- cardOK = true;
- SERIAL_ECHO_START();
- SERIAL_ECHOLNPGM(MSG_SD_CARD_OK);
- }
- setroot();
- }
- void CardReader::release() {
- sdprinting = false;
- cardOK = false;
- }
- void CardReader::openAndPrintFile(const char *name) {
- char cmd[4 + strlen(name) + 1];
- sprintf_P(cmd, PSTR("M23 %s"), name);
- for (char *c = &cmd[4]; *c; c++) *c = tolower(*c);
- enqueue_and_echo_command_now(cmd);
- enqueue_and_echo_commands_P(PSTR("M24"));
- }
- void CardReader::startFileprint() {
- if (cardOK) {
- sdprinting = true;
- #if SD_RESORT
- flush_presort();
- #endif
- }
- }
- void CardReader::stopSDPrint(
- #if SD_RESORT
- const bool re_sort
- #endif
- ) {
- #if ENABLED(ADVANCED_PAUSE_FEATURE)
- did_pause_print = 0;
- #endif
- sdprinting = abort_sd_printing = false;
- if (isFileOpen()) file.close();
- #if SD_RESORT
- if (re_sort) presort();
- #endif
- }
- void CardReader::openLogFile(char * const path) {
- logging = true;
- openFile(path, false);
- }
- void appendAtom(SdFile &file, char *& dst, uint8_t &cnt) {
- file.getFilename(dst);
- while (*dst && cnt < MAXPATHNAMELENGTH) { dst++; cnt++; }
- if (cnt < MAXPATHNAMELENGTH) { *dst = '/'; dst++; cnt++; }
- }
- void CardReader::getAbsFilename(char *t) {
- *t++ = '/';
- uint8_t cnt = 1;
- for (uint8_t i = 0; i < workDirDepth; i++)
- appendAtom(workDirParents[i], t, cnt);
- if (cnt < MAXPATHNAMELENGTH - (FILENAME_LENGTH)) {
- appendAtom(file, t, cnt);
- --t;
- }
- *t = '\0';
- }
- void CardReader::openFile(char * const path, const bool read, const bool subcall) {
- if (!cardOK) return;
- uint8_t doing = 0;
- if (isFileOpen()) {
- if (subcall) {
- if (file_subcall_ctr > SD_PROCEDURE_DEPTH - 1) {
- SERIAL_ERROR_START();
- SERIAL_ERRORPGM("trying to call sub-gcode files with too many levels. MAX level is:");
- SERIAL_ERRORLN((int)SD_PROCEDURE_DEPTH);
- kill(PSTR(MSG_KILLED));
- return;
- }
-
- getAbsFilename(proc_filenames[file_subcall_ctr]);
- filespos[file_subcall_ctr] = sdpos;
- SERIAL_ECHO_START();
- SERIAL_ECHOPAIR("SUBROUTINE CALL target:\"", path);
- SERIAL_ECHOPAIR("\" parent:\"", proc_filenames[file_subcall_ctr]);
- SERIAL_ECHOLNPAIR("\" pos", sdpos);
- file_subcall_ctr++;
- }
- else
- doing = 1;
- }
- else if (subcall) {
- SERIAL_ECHO_START();
- SERIAL_ECHOLNPGM("END SUBROUTINE");
- }
- else {
- doing = 2;
- file_subcall_ctr = 0;
- }
- if (doing) {
- SERIAL_ECHO_START();
- SERIAL_ECHOPGM("Now ");
- serialprintPGM(doing == 1 ? PSTR("doing") : PSTR("fresh"));
- SERIAL_ECHOLNPAIR(" file: ", path);
- }
- stopSDPrint();
- SdFile *curDir;
- const char * const fname = diveToFile(curDir, path, false);
- if (!fname) return;
- if (read) {
- if (file.open(curDir, fname, O_READ)) {
- filesize = file.fileSize();
- sdpos = 0;
- SERIAL_PROTOCOLPAIR(MSG_SD_FILE_OPENED, fname);
- SERIAL_PROTOCOLLNPAIR(MSG_SD_SIZE, filesize);
- SERIAL_PROTOCOLLNPGM(MSG_SD_FILE_SELECTED);
- getfilename(0, fname);
- lcd_setstatus(longFilename[0] ? longFilename : fname);
-
-
-
- }
- else {
- SERIAL_PROTOCOLPAIR(MSG_SD_OPEN_FILE_FAIL, fname);
- SERIAL_PROTOCOLCHAR('.');
- SERIAL_EOL();
- }
- }
- else {
- if (!file.open(curDir, fname, O_CREAT | O_APPEND | O_WRITE | O_TRUNC)) {
- SERIAL_PROTOCOLPAIR(MSG_SD_OPEN_FILE_FAIL, fname);
- SERIAL_PROTOCOLCHAR('.');
- SERIAL_EOL();
- }
- else {
- saving = true;
- SERIAL_PROTOCOLLNPAIR(MSG_SD_WRITE_TO_FILE, path);
- lcd_setstatus(fname);
- }
- }
- }
- void CardReader::removeFile(const char * const name) {
- if (!cardOK) return;
- stopSDPrint();
- SdFile *curDir;
- const char * const fname = diveToFile(curDir, name, false);
- if (!fname) return;
- if (file.remove(curDir, fname)) {
- SERIAL_PROTOCOLPGM("File deleted:");
- SERIAL_PROTOCOLLN(fname);
- sdpos = 0;
- #if ENABLED(SDCARD_SORT_ALPHA)
- presort();
- #endif
- }
- else {
- SERIAL_PROTOCOLPGM("Deletion failed, File: ");
- SERIAL_PROTOCOL(fname);
- SERIAL_PROTOCOLCHAR('.');
- }
- }
- void CardReader::getStatus() {
- if (cardOK && sdprinting) {
- SERIAL_PROTOCOLPGM(MSG_SD_PRINTING_BYTE);
- SERIAL_PROTOCOL(sdpos);
- SERIAL_PROTOCOLCHAR('/');
- SERIAL_PROTOCOLLN(filesize);
- }
- else
- SERIAL_PROTOCOLLNPGM(MSG_SD_NOT_PRINTING);
- }
- void CardReader::write_command(char *buf) {
- char* begin = buf;
- char* npos = NULL;
- char* end = buf + strlen(buf) - 1;
- file.writeError = false;
- if ((npos = strchr(buf, 'N')) != NULL) {
- begin = strchr(npos, ' ') + 1;
- end = strchr(npos, '*') - 1;
- }
- end[1] = '\r';
- end[2] = '\n';
- end[3] = '\0';
- file.write(begin);
- if (file.writeError) {
- SERIAL_ERROR_START();
- SERIAL_ERRORLNPGM(MSG_SD_ERR_WRITE_TO_FILE);
- }
- }
- void CardReader::checkautostart() {
- if (autostart_index < 0 || sdprinting) return;
- if (!cardOK) initsd();
- if (cardOK
- #if ENABLED(POWER_LOSS_RECOVERY)
- && !jobRecoverFileExists()
- #endif
- ) {
- char autoname[10];
- sprintf_P(autoname, PSTR("auto%i.g"), int(autostart_index));
- dir_t p;
- root.rewind();
- while (root.readDir(&p, NULL) > 0) {
- for (int8_t i = (int8_t)strlen((char*)p.name); i--;) p.name[i] = tolower(p.name[i]);
- if (p.name[9] != '~' && strncmp((char*)p.name, autoname, 5) == 0) {
- openAndPrintFile(autoname);
- autostart_index++;
- return;
- }
- }
- }
- autostart_index = -1;
- }
- void CardReader::beginautostart() {
- autostart_index = 0;
- setroot();
- }
- void CardReader::closefile(const bool store_location) {
- file.sync();
- file.close();
- saving = logging = false;
- if (store_location) {
-
-
- }
- }
- void CardReader::getfilename(uint16_t nr, const char * const match) {
- #if ENABLED(SDSORT_CACHE_NAMES)
- if (match != NULL) {
- while (nr < sort_count) {
- if (strcasecmp(match, sortshort[nr]) == 0) break;
- nr++;
- }
- }
- if (nr < sort_count) {
- strcpy(filename, sortshort[nr]);
- strcpy(longFilename, sortnames[nr]);
- filenameIsDir = TEST(isDir[nr>>3], nr & 0x07);
- return;
- }
- #endif
- lsAction = LS_GetFilename;
- nrFile_index = nr;
- workDir.rewind();
- lsDive(NULL, workDir, match);
- }
- uint16_t CardReader::getnrfilenames() {
- lsAction = LS_Count;
- nrFiles = 0;
- workDir.rewind();
- lsDive(NULL, workDir);
-
- return nrFiles;
- }
- const char* CardReader::diveToFile(SdFile*& curDir, const char * const path, const bool echo) {
- SdFile myDir;
- if (path[0] != '/') { curDir = &workDir; return path; }
- curDir = &root;
- const char *dirname_start = &path[1];
- while (dirname_start) {
- char * const dirname_end = strchr(dirname_start, '/');
- if (dirname_end <= dirname_start) break;
- const uint8_t len = dirname_end - dirname_start;
- char dosSubdirname[len + 1];
- strncpy(dosSubdirname, dirname_start, len);
- dosSubdirname[len] = 0;
- if (echo) SERIAL_ECHOLN(dosSubdirname);
- if (!myDir.open(curDir, dosSubdirname, O_READ)) {
- SERIAL_PROTOCOLPAIR(MSG_SD_OPEN_FILE_FAIL, dosSubdirname);
- SERIAL_PROTOCOLCHAR('.');
- SERIAL_EOL();
- return NULL;
- }
- curDir = &myDir;
- dirname_start = dirname_end + 1;
- }
- return dirname_start;
- }
- void CardReader::chdir(const char * relpath) {
- SdFile newDir;
- SdFile *parent = workDir.isOpen() ? &workDir : &root;
- if (newDir.open(parent, relpath, O_READ)) {
- workDir = newDir;
- if (workDirDepth < MAX_DIR_DEPTH)
- workDirParents[workDirDepth++] = workDir;
- #if ENABLED(SDCARD_SORT_ALPHA)
- presort();
- #endif
- }
- else {
- SERIAL_ECHO_START();
- SERIAL_ECHOPGM(MSG_SD_CANT_ENTER_SUBDIR);
- SERIAL_ECHOLN(relpath);
- }
- }
- int8_t CardReader::updir() {
- if (workDirDepth > 0) {
- workDir = --workDirDepth ? workDirParents[workDirDepth - 1] : root;
- #if ENABLED(SDCARD_SORT_ALPHA)
- presort();
- #endif
- }
- return workDirDepth;
- }
- void CardReader::setroot() {
-
- workDir = root;
- #if ENABLED(SDCARD_SORT_ALPHA)
- presort();
- #endif
- }
- #if ENABLED(SDCARD_SORT_ALPHA)
-
- void CardReader::getfilename_sorted(const uint16_t nr) {
- getfilename(
- #if ENABLED(SDSORT_GCODE)
- sort_alpha &&
- #endif
- (nr < sort_count) ? sort_order[nr] : nr
- );
- }
-
- void CardReader::presort() {
-
- flush_presort();
-
- #if ENABLED(SDSORT_GCODE)
- if (!sort_alpha) return;
- #endif
-
- uint16_t fileCnt = getnrfilenames();
- if (fileCnt > 0) {
-
-
- if (fileCnt > SDSORT_LIMIT) fileCnt = SDSORT_LIMIT;
-
- #if ENABLED(SDSORT_DYNAMIC_RAM)
- sort_order = new uint8_t[fileCnt];
- #endif
-
-
- #if ENABLED(SDSORT_USES_RAM)
-
- #if ENABLED(SDSORT_CACHE_NAMES)
- #if ENABLED(SDSORT_DYNAMIC_RAM)
- sortshort = new char*[fileCnt];
- sortnames = new char*[fileCnt];
- #endif
- #elif ENABLED(SDSORT_USES_STACK)
- char sortnames[fileCnt][SORTED_LONGNAME_MAXLEN];
- #endif
-
- #if HAS_FOLDER_SORTING
- #if ENABLED(SDSORT_DYNAMIC_RAM)
- isDir = new uint8_t[(fileCnt + 7) >> 3];
- #elif ENABLED(SDSORT_USES_STACK)
- uint8_t isDir[(fileCnt + 7) >> 3];
- #endif
- #endif
- #else
-
-
-
- char name1[LONG_FILENAME_LENGTH + 1];
- #endif
- if (fileCnt > 1) {
-
- for (uint16_t i = 0; i < fileCnt; i++) {
- sort_order[i] = i;
-
- #if ENABLED(SDSORT_USES_RAM)
- getfilename(i);
- #if ENABLED(SDSORT_DYNAMIC_RAM)
-
- sortnames[i] = strdup(longest_filename());
- #if ENABLED(SDSORT_CACHE_NAMES)
-
-
- sortshort[i] = strdup(filename);
- #endif
- #else
-
- #if SORTED_LONGNAME_MAXLEN != LONG_FILENAME_LENGTH
- strncpy(sortnames[i], longest_filename(), SORTED_LONGNAME_MAXLEN);
- sortnames[i][SORTED_LONGNAME_MAXLEN - 1] = '\0';
- #else
- strncpy(sortnames[i], longest_filename(), SORTED_LONGNAME_MAXLEN);
- #endif
- #if ENABLED(SDSORT_CACHE_NAMES)
- strcpy(sortshort[i], filename);
- #endif
- #endif
-
-
-
- #if HAS_FOLDER_SORTING
- const uint16_t bit = i & 0x07, ind = i >> 3;
- if (bit == 0) isDir[ind] = 0x00;
- if (filenameIsDir) isDir[ind] |= _BV(bit);
- #endif
- #endif
- }
-
- for (uint16_t i = fileCnt; --i;) {
- bool didSwap = false;
- for (uint16_t j = 0; j < i; ++j) {
- const uint16_t o1 = sort_order[j], o2 = sort_order[j + 1];
-
- #if ENABLED(SDSORT_USES_RAM)
- #define _SORT_CMP_NODIR() (strcasecmp(sortnames[o1], sortnames[o2]) > 0)
- #else
- #define _SORT_CMP_NODIR() (strcasecmp(name1, name2) > 0)
- #endif
- #if HAS_FOLDER_SORTING
- #if ENABLED(SDSORT_USES_RAM)
-
- const uint8_t ind1 = o1 >> 3, bit1 = o1 & 0x07,
- ind2 = o2 >> 3, bit2 = o2 & 0x07;
- #define _SORT_CMP_DIR(fs) \
- (((isDir[ind1] & _BV(bit1)) != 0) == ((isDir[ind2] & _BV(bit2)) != 0) \
- ? _SORT_CMP_NODIR() \
- : (isDir[fs > 0 ? ind1 : ind2] & (fs > 0 ? _BV(bit1) : _BV(bit2))) != 0)
- #else
- #define _SORT_CMP_DIR(fs) ((dir1 == filenameIsDir) ? _SORT_CMP_NODIR() : (fs > 0 ? dir1 : !dir1))
- #endif
- #endif
-
-
- #if DISABLED(SDSORT_USES_RAM)
- getfilename(o1);
- strcpy(name1, longest_filename());
- #if HAS_FOLDER_SORTING
- bool dir1 = filenameIsDir;
- #endif
- getfilename(o2);
- char *name2 = longest_filename();
- #endif
-
- if (
- #if HAS_FOLDER_SORTING
- #if ENABLED(SDSORT_GCODE)
- sort_folders ? _SORT_CMP_DIR(sort_folders) : _SORT_CMP_NODIR()
- #else
- _SORT_CMP_DIR(FOLDER_SORTING)
- #endif
- #else
- _SORT_CMP_NODIR()
- #endif
- ) {
- sort_order[j] = o2;
- sort_order[j + 1] = o1;
- didSwap = true;
- }
- }
- if (!didSwap) break;
- }
-
- #if ENABLED(SDSORT_USES_RAM) && DISABLED(SDSORT_CACHE_NAMES)
- #if ENABLED(SDSORT_DYNAMIC_RAM)
- for (uint16_t i = 0; i < fileCnt; ++i) free(sortnames[i]);
- #if HAS_FOLDER_SORTING
- free(isDir);
- #endif
- #endif
- #endif
- }
- else {
- sort_order[0] = 0;
- #if ENABLED(SDSORT_USES_RAM) && ENABLED(SDSORT_CACHE_NAMES)
- getfilename(0);
- #if ENABLED(SDSORT_DYNAMIC_RAM)
- sortnames = new char*[1];
- sortnames[0] = strdup(longest_filename());
- #if ENABLED(SDSORT_CACHE_NAMES)
- sortshort = new char*[1];
- sortshort[0] = strdup(filename);
- #endif
- isDir = new uint8_t[1];
- #else
- #if SORTED_LONGNAME_MAXLEN != LONG_FILENAME_LENGTH
- strncpy(sortnames[0], longest_filename(), SORTED_LONGNAME_MAXLEN);
- sortnames[0][SORTED_LONGNAME_MAXLEN - 1] = '\0';
- #else
- strncpy(sortnames[0], longest_filename(), SORTED_LONGNAME_MAXLEN);
- #endif
- #if ENABLED(SDSORT_CACHE_NAMES)
- strcpy(sortshort[0], filename);
- #endif
- #endif
- isDir[0] = filenameIsDir ? 0x01 : 0x00;
- #endif
- }
- sort_count = fileCnt;
- }
- }
- void CardReader::flush_presort() {
- if (sort_count > 0) {
- #if ENABLED(SDSORT_DYNAMIC_RAM)
- delete sort_order;
- #if ENABLED(SDSORT_CACHE_NAMES)
- for (uint8_t i = 0; i < sort_count; ++i) {
- free(sortshort[i]);
- free(sortnames[i]);
- }
- delete sortshort;
- delete sortnames;
- #endif
- #endif
- sort_count = 0;
- }
- }
- #endif
- uint16_t CardReader::get_num_Files() {
- return
- #if ENABLED(SDCARD_SORT_ALPHA) && SDSORT_USES_RAM && SDSORT_CACHE_NAMES
- nrFiles
- #else
- getnrfilenames()
- #endif
- ;
- }
- void CardReader::printingHasFinished() {
- planner.synchronize();
- file.close();
- if (file_subcall_ctr > 0) {
- file_subcall_ctr--;
- openFile(proc_filenames[file_subcall_ctr], true, true);
- setIndex(filespos[file_subcall_ctr]);
- startFileprint();
- }
- else {
- sdprinting = false;
- #if ENABLED(POWER_LOSS_RECOVERY)
- removeJobRecoveryFile();
- #endif
- #if ENABLED(SD_FINISHED_STEPPERRELEASE) && defined(SD_FINISHED_RELEASECOMMAND)
- planner.finish_and_disable();
- #endif
- print_job_timer.stop();
- if (print_job_timer.duration() > 60)
- enqueue_and_echo_commands_P(PSTR("M31"));
- #if ENABLED(SDCARD_SORT_ALPHA)
- presort();
- #endif
- #if ENABLED(ULTRA_LCD) && ENABLED(LCD_SET_PROGRESS_MANUALLY)
- progress_bar_percent = 0;
- #endif
- #if ENABLED(SD_REPRINT_LAST_SELECTED_FILE)
- lcd_reselect_last_file();
- #endif
- }
- }
- #if ENABLED(AUTO_REPORT_SD_STATUS)
- uint8_t CardReader::auto_report_sd_interval = 0;
- millis_t CardReader::next_sd_report_ms;
- void CardReader::auto_report_sd_status() {
- millis_t current_ms = millis();
- if (auto_report_sd_interval && ELAPSED(current_ms, next_sd_report_ms)) {
- next_sd_report_ms = current_ms + 1000UL * auto_report_sd_interval;
- getStatus();
- }
- }
- #endif
- #if ENABLED(POWER_LOSS_RECOVERY)
- char job_recovery_file_name[4] = "bin";
- void CardReader::openJobRecoveryFile(const bool read) {
- if (!cardOK) return;
- if (jobRecoveryFile.isOpen()) return;
- if (!jobRecoveryFile.open(&root, job_recovery_file_name, read ? O_READ : O_CREAT | O_WRITE | O_TRUNC | O_SYNC)) {
- SERIAL_PROTOCOLPAIR(MSG_SD_OPEN_FILE_FAIL, job_recovery_file_name);
- SERIAL_PROTOCOLCHAR('.');
- SERIAL_EOL();
- }
- else if (!read)
- SERIAL_PROTOCOLLNPAIR(MSG_SD_WRITE_TO_FILE, job_recovery_file_name);
- }
- void CardReader::closeJobRecoveryFile() { jobRecoveryFile.close(); }
- bool CardReader::jobRecoverFileExists() {
- const bool exists = jobRecoveryFile.open(&root, job_recovery_file_name, O_READ);
- if (exists) jobRecoveryFile.close();
- return exists;
- }
- int16_t CardReader::saveJobRecoveryInfo() {
- jobRecoveryFile.seekSet(0);
- const int16_t ret = jobRecoveryFile.write(&job_recovery_info, sizeof(job_recovery_info));
- #if ENABLED(DEBUG_POWER_LOSS_RECOVERY)
- if (ret == -1) SERIAL_PROTOCOLLNPGM("Power-loss file write failed.");
- #endif
- return ret;
- }
- int16_t CardReader::loadJobRecoveryInfo() {
- return jobRecoveryFile.read(&job_recovery_info, sizeof(job_recovery_info));
- }
- void CardReader::removeJobRecoveryFile() {
- job_recovery_info.valid_head = job_recovery_info.valid_foot = job_recovery_commands_count = 0;
- if (jobRecoverFileExists()) {
- closefile();
- removeFile(job_recovery_file_name);
- #if ENABLED(DEBUG_POWER_LOSS_RECOVERY)
- SERIAL_PROTOCOLPGM("Power-loss file delete");
- serialprintPGM(jobRecoverFileExists() ? PSTR(" failed.\n") : PSTR("d.\n"));
- #endif
- }
- }
- #endif
- #endif
|