cardreader.cpp 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037
  1. #include "Marlin.h"
  2. #include "cmdqueue.h"
  3. #include "cardreader.h"
  4. #include "ultralcd.h"
  5. #include "stepper.h"
  6. #include "temperature.h"
  7. #include "language.h"
  8. #ifdef SDSUPPORT
  9. #define LONGEST_FILENAME (longFilename[0] ? longFilename : filename)
  10. CardReader::CardReader()
  11. {
  12. #ifdef SDCARD_SORT_ALPHA
  13. sort_count = 0;
  14. #endif
  15. filesize = 0;
  16. sdpos = 0;
  17. sdprinting = false;
  18. cardOK = false;
  19. saving = false;
  20. logging = false;
  21. autostart_atmillis=0;
  22. workDirDepth = 0;
  23. file_subcall_ctr=0;
  24. memset(workDirParents, 0, sizeof(workDirParents));
  25. presort_flag = false;
  26. autostart_stilltocheck=true; //the SD start is delayed, because otherwise the serial cannot answer fast enough to make contact with the host software.
  27. lastnr=0;
  28. //power to SD reader
  29. #if SDPOWER > -1
  30. SET_OUTPUT(SDPOWER);
  31. WRITE(SDPOWER,HIGH);
  32. #endif //SDPOWER
  33. autostart_atmillis=_millis()+5000;
  34. }
  35. char *createFilename(char *buffer,const dir_t &p) //buffer>12characters
  36. {
  37. char *pos=buffer;
  38. for (uint8_t i = 0; i < 11; i++)
  39. {
  40. if (p.name[i] == ' ')continue;
  41. if (i == 8)
  42. {
  43. *pos++='.';
  44. }
  45. *pos++=p.name[i];
  46. }
  47. *pos++=0;
  48. return buffer;
  49. }
  50. /**
  51. +* Dive into a folder and recurse depth-first to perform a pre-set operation lsAction:
  52. +* LS_Count - Add +1 to nrFiles for every file within the parent
  53. +* LS_GetFilename - Get the filename of the file indexed by nrFiles
  54. +* LS_SerialPrint - Print the full path and size of each file to serial output
  55. +* LS_SerialPrint_LFN - Print the full path, long filename and size of each file to serial output
  56. +*/
  57. void CardReader::lsDive(const char *prepend, SdFile parent, const char * const match/*=NULL*/) {
  58. static uint8_t recursionCnt = 0;
  59. // RAII incrementer for the recursionCnt
  60. class _incrementer
  61. {
  62. public:
  63. _incrementer() {recursionCnt++;}
  64. ~_incrementer() {recursionCnt--;}
  65. } recursionCntIncrementer;
  66. dir_t p;
  67. uint8_t cnt = 0;
  68. // Read the next entry from a directory
  69. for (position = parent.curPosition(); parent.readDir(p, longFilename) > 0; position = parent.curPosition()) {
  70. if (recursionCnt > MAX_DIR_DEPTH)
  71. return;
  72. else if (DIR_IS_SUBDIR(&p) && lsAction != LS_Count && lsAction != LS_GetFilename) { // If the entry is a directory and the action is LS_SerialPrint
  73. // Get the short name for the item, which we know is a folder
  74. char lfilename[FILENAME_LENGTH];
  75. createFilename(lfilename, p);
  76. // Allocate enough stack space for the full path to a folder, trailing slash, and nul
  77. bool prepend_is_empty = (prepend[0] == '\0');
  78. int len = (prepend_is_empty ? 1 : strlen(prepend)) + strlen(lfilename) + 1 + 1;
  79. char path[len];
  80. // Append the FOLDERNAME12/ to the passed string.
  81. // It contains the full path to the "parent" argument.
  82. // We now have the full path to the item in this folder.
  83. strcpy(path, prepend_is_empty ? "/" : prepend); // root slash if prepend is empty
  84. strcat(path, lfilename); // FILENAME_LENGTH-1 characters maximum
  85. strcat(path, "/"); // 1 character
  86. // Serial.print(path);
  87. // Get a new directory object using the full path
  88. // and dive recursively into it.
  89. if (lsAction == LS_SerialPrint_LFN)
  90. printf_P(PSTR("DIR_ENTER: %s \"%s\"\n"), path, longFilename[0] ? longFilename : lfilename);
  91. SdFile dir;
  92. if (!dir.open(parent, lfilename, O_READ)) {
  93. if (lsAction == LS_SerialPrint || lsAction == LS_SerialPrint_LFN) {
  94. //SERIAL_ECHO_START();
  95. //SERIAL_ECHOPGM(_i("Cannot open subdir"));////MSG_SD_CANT_OPEN_SUBDIR
  96. //SERIAL_ECHOLN(lfilename);
  97. }
  98. }
  99. lsDive(path, dir);
  100. // close() is done automatically by destructor of SdFile
  101. if (lsAction == LS_SerialPrint_LFN)
  102. puts_P(PSTR("DIR_EXIT"));
  103. }
  104. else {
  105. uint8_t pn0 = p.name[0];
  106. if (pn0 == DIR_NAME_FREE) break;
  107. if (pn0 == DIR_NAME_DELETED || pn0 == '.') continue;
  108. if (longFilename[0] == '.') continue;
  109. if (!DIR_IS_FILE_OR_SUBDIR(&p) || (p.attributes & DIR_ATT_HIDDEN)) continue;
  110. filenameIsDir = DIR_IS_SUBDIR(&p);
  111. if (!filenameIsDir && (p.name[8] != 'G' || p.name[9] == '~')) continue;
  112. switch (lsAction) {
  113. case LS_Count:
  114. nrFiles++;
  115. break;
  116. case LS_SerialPrint_LFN:
  117. case LS_SerialPrint:
  118. createFilename(filename, p);
  119. SERIAL_PROTOCOL(prepend);
  120. SERIAL_PROTOCOL(filename);
  121. MYSERIAL.write(' ');
  122. if (lsAction == LS_SerialPrint_LFN)
  123. printf_P(PSTR("\"%s\" "), LONGEST_FILENAME);
  124. SERIAL_PROTOCOLLN(p.fileSize);
  125. manage_heater();
  126. break;
  127. case LS_GetFilename:
  128. //SERIAL_ECHOPGM("File: ");
  129. createFilename(filename, p);
  130. // cluster = parent.curCluster();
  131. // position = parent.curPosition();
  132. /*MYSERIAL.println(filename);
  133. SERIAL_ECHOPGM("Write date: ");
  134. writeDate = p.lastWriteDate;
  135. MYSERIAL.println(writeDate);
  136. writeTime = p.lastWriteTime;
  137. SERIAL_ECHOPGM("Creation date: ");
  138. MYSERIAL.println(p.creationDate);
  139. SERIAL_ECHOPGM("Access date: ");
  140. MYSERIAL.println(p.lastAccessDate);
  141. SERIAL_ECHOLNPGM("");*/
  142. crmodDate = p.lastWriteDate;
  143. crmodTime = p.lastWriteTime;
  144. // There are scenarios when simple modification time is not enough (on MS Windows)
  145. // For example - extract an old g-code from an archive onto the SD card.
  146. // In such case the creation time is current time (which is correct), but the modification time
  147. // stays the same - i.e. old.
  148. // Therefore let's pick the most recent timestamp from both creation and modification timestamps
  149. if( crmodDate < p.creationDate || ( crmodDate == p.creationDate && crmodTime < p.creationTime ) ){
  150. crmodDate = p.creationDate;
  151. crmodTime = p.creationTime;
  152. }
  153. //writeDate = p.lastAccessDate;
  154. if (match != NULL) {
  155. if (strcasecmp(match, filename) == 0) return;
  156. }
  157. else if (cnt == nrFiles) return;
  158. cnt++;
  159. break;
  160. }
  161. }
  162. } // while readDir
  163. }
  164. void CardReader::ls(bool printLFN)
  165. {
  166. lsAction = printLFN ? LS_SerialPrint_LFN : LS_SerialPrint;
  167. //if(lsAction==LS_Count)
  168. //nrFiles=0;
  169. root.rewind();
  170. lsDive("",root);
  171. }
  172. void CardReader::initsd()
  173. {
  174. cardOK = false;
  175. if(root.isOpen())
  176. root.close();
  177. #ifdef SDSLOW
  178. if (!card.init(SPI_HALF_SPEED,SDSS)
  179. #if defined(LCD_SDSS) && (LCD_SDSS != SDSS)
  180. && !card.init(SPI_HALF_SPEED,LCD_SDSS)
  181. #endif
  182. )
  183. #else
  184. if (!card.init(SPI_FULL_SPEED,SDSS)
  185. #if defined(LCD_SDSS) && (LCD_SDSS != SDSS)
  186. && !card.init(SPI_FULL_SPEED,LCD_SDSS)
  187. #endif
  188. )
  189. #endif
  190. {
  191. //if (!card.init(SPI_HALF_SPEED,SDSS))
  192. SERIAL_ECHO_START;
  193. SERIAL_ECHOLNRPGM(_n("SD init fail"));////MSG_SD_INIT_FAIL
  194. }
  195. else if (!volume.init(&card))
  196. {
  197. SERIAL_ERROR_START;
  198. SERIAL_ERRORLNRPGM(_n("volume.init failed"));////MSG_SD_VOL_INIT_FAIL
  199. }
  200. else if (!root.openRoot(&volume))
  201. {
  202. SERIAL_ERROR_START;
  203. SERIAL_ERRORLNRPGM(_n("openRoot failed"));////MSG_SD_OPENROOT_FAIL
  204. }
  205. else
  206. {
  207. cardOK = true;
  208. SERIAL_ECHO_START;
  209. SERIAL_ECHOLNRPGM(_n("SD card ok"));////MSG_SD_CARD_OK
  210. }
  211. workDir=root;
  212. curDir=&root;
  213. workDirDepth = 0;
  214. #ifdef SDCARD_SORT_ALPHA
  215. presort();
  216. #endif
  217. /*
  218. if(!workDir.openRoot(&volume))
  219. {
  220. SERIAL_ECHOLNPGM(MSG_SD_WORKDIR_FAIL);
  221. }
  222. */
  223. }
  224. void CardReader::setroot(bool doPresort)
  225. {
  226. workDir=root;
  227. workDirDepth = 0;
  228. curDir=&workDir;
  229. #ifdef SDCARD_SORT_ALPHA
  230. if (doPresort)
  231. presort();
  232. else
  233. presort_flag = true;
  234. #endif
  235. }
  236. void CardReader::release()
  237. {
  238. sdprinting = false;
  239. cardOK = false;
  240. SERIAL_ECHO_START;
  241. SERIAL_ECHOLNRPGM(_n("SD card released"));////MSG_SD_CARD_RELEASED
  242. }
  243. void CardReader::startFileprint()
  244. {
  245. if(cardOK)
  246. {
  247. sdprinting = true;
  248. Stopped = false;
  249. #ifdef SDCARD_SORT_ALPHA
  250. //flush_presort();
  251. #endif
  252. }
  253. }
  254. void CardReader::openLogFile(const char* name)
  255. {
  256. logging = true;
  257. openFile(name, false);
  258. }
  259. void CardReader::getDirName(char* name, uint8_t level)
  260. {
  261. workDirParents[level].getFilename(name);
  262. }
  263. uint16_t CardReader::getWorkDirDepth() {
  264. return workDirDepth;
  265. }
  266. void CardReader::getAbsFilename(char *t)
  267. {
  268. uint8_t cnt=0;
  269. *t='/';t++;cnt++;
  270. for(uint8_t i=0;i<workDirDepth;i++)
  271. {
  272. workDirParents[i].getFilename(t); //SDBaseFile.getfilename!
  273. while(*t!=0 && cnt< MAXPATHNAMELENGTH)
  274. {t++;cnt++;} //crawl counter forward.
  275. }
  276. if(cnt<MAXPATHNAMELENGTH-13)
  277. file.getFilename(t);
  278. else
  279. t[0]=0;
  280. }
  281. void CardReader::printAbsFilenameFast()
  282. {
  283. SERIAL_PROTOCOL('/');
  284. for (uint8_t i = 0; i < getWorkDirDepth(); i++)
  285. {
  286. SERIAL_PROTOCOL(dir_names[i]);
  287. SERIAL_PROTOCOL('/');
  288. }
  289. SERIAL_PROTOCOL(LONGEST_FILENAME);
  290. }
  291. /**
  292. * @brief Dive into subfolder
  293. *
  294. * Method sets curDir to point to root, in case fileName is null.
  295. * Method sets curDir to point to workDir, in case fileName path is relative
  296. * (doesn't start with '/')
  297. * Method sets curDir to point to dir, which is specified by absolute path
  298. * specified by fileName. In such case fileName is updated so it points to
  299. * file name without the path.
  300. *
  301. * @param[in,out] fileName
  302. * expects file name including path
  303. * in case of absolute path, file name without path is returned
  304. */
  305. bool CardReader::diveSubfolder (const char *&fileName)
  306. {
  307. curDir=&root;
  308. if (!fileName)
  309. return 1;
  310. const char *dirname_start, *dirname_end;
  311. if (fileName[0] == '/') // absolute path
  312. {
  313. setroot(false);
  314. dirname_start = fileName + 1;
  315. while (*dirname_start)
  316. {
  317. dirname_end = strchr(dirname_start, '/');
  318. //SERIAL_ECHO("start:");SERIAL_ECHOLN((int)(dirname_start-name));
  319. //SERIAL_ECHO("end :");SERIAL_ECHOLN((int)(dirname_end-name));
  320. if (dirname_end && dirname_end > dirname_start)
  321. {
  322. const size_t maxLen = 12;
  323. char subdirname[maxLen+1];
  324. const size_t len = ((static_cast<size_t>(dirname_end-dirname_start))>maxLen) ? maxLen : (dirname_end-dirname_start);
  325. strncpy(subdirname, dirname_start, len);
  326. subdirname[len] = 0;
  327. if (!chdir(subdirname, false))
  328. return 0;
  329. curDir = &workDir;
  330. dirname_start = dirname_end + 1;
  331. }
  332. else // the reminder after all /fsa/fdsa/ is the filename
  333. {
  334. fileName = dirname_start;
  335. //SERIAL_ECHOLN("remaider");
  336. //SERIAL_ECHOLN(fname);
  337. break;
  338. }
  339. }
  340. }
  341. else //relative path
  342. {
  343. curDir = &workDir;
  344. }
  345. return 1;
  346. }
  347. void CardReader::openFile(const char* name,bool read, bool replace_current/*=true*/)
  348. {
  349. if(!cardOK)
  350. return;
  351. if(file.isOpen()) //replacing current file by new file, or subfile call
  352. {
  353. if(!replace_current)
  354. {
  355. if((int)file_subcall_ctr>(int)SD_PROCEDURE_DEPTH-1)
  356. {
  357. // SERIAL_ERROR_START;
  358. // SERIAL_ERRORPGM("trying to call sub-gcode files with too many levels. MAX level is:");
  359. // SERIAL_ERRORLN(SD_PROCEDURE_DEPTH);
  360. kill(_n("trying to call sub-gcode files with too many levels."), 1);
  361. return;
  362. }
  363. SERIAL_ECHO_START;
  364. SERIAL_ECHOPGM("SUBROUTINE CALL target:\"");
  365. SERIAL_ECHO(name);
  366. SERIAL_ECHOPGM("\" parent:\"");
  367. //store current filename and position
  368. getAbsFilename(filenames[file_subcall_ctr]);
  369. SERIAL_ECHO(filenames[file_subcall_ctr]);
  370. SERIAL_ECHOPGM("\" pos");
  371. SERIAL_ECHOLN(sdpos);
  372. filespos[file_subcall_ctr]=sdpos;
  373. file_subcall_ctr++;
  374. }
  375. else
  376. {
  377. SERIAL_ECHO_START;
  378. SERIAL_ECHOPGM("Now doing file: ");
  379. SERIAL_ECHOLN(name);
  380. }
  381. file.close();
  382. }
  383. else //opening fresh file
  384. {
  385. file_subcall_ctr=0; //resetting procedure depth in case user cancels print while in procedure
  386. SERIAL_ECHO_START;
  387. SERIAL_ECHOPGM("Now fresh file: ");
  388. SERIAL_ECHOLN(name);
  389. }
  390. sdprinting = false;
  391. const char *fname=name;
  392. if (!diveSubfolder(fname))
  393. return;
  394. if(read)
  395. {
  396. if (file.open(curDir, fname, O_READ))
  397. {
  398. getfilename(0, fname);
  399. filesize = file.fileSize();
  400. SERIAL_PROTOCOLRPGM(_N("File opened: "));////MSG_SD_FILE_OPENED
  401. printAbsFilenameFast();
  402. SERIAL_PROTOCOLRPGM(_n(" Size: "));////MSG_SD_SIZE
  403. SERIAL_PROTOCOLLN(filesize);
  404. sdpos = 0;
  405. SERIAL_PROTOCOLLNRPGM(MSG_FILE_SELECTED);
  406. lcd_setstatuspgm(MSG_FILE_SELECTED);
  407. scrollstuff = 0;
  408. }
  409. else
  410. {
  411. SERIAL_PROTOCOLRPGM(MSG_SD_OPEN_FILE_FAIL);
  412. SERIAL_PROTOCOL(fname);
  413. SERIAL_PROTOCOLLN('.');
  414. }
  415. }
  416. else
  417. { //write
  418. if (!file.open(curDir, fname, O_CREAT | O_APPEND | O_WRITE | O_TRUNC))
  419. {
  420. SERIAL_PROTOCOLRPGM(MSG_SD_OPEN_FILE_FAIL);
  421. SERIAL_PROTOCOL(fname);
  422. SERIAL_PROTOCOLLN('.');
  423. }
  424. else
  425. {
  426. saving = true;
  427. SERIAL_PROTOCOLRPGM(_N("Writing to file: "));////MSG_SD_WRITE_TO_FILE
  428. SERIAL_PROTOCOLLN(name);
  429. lcd_setstatus(fname);
  430. }
  431. }
  432. }
  433. void CardReader::removeFile(const char* name)
  434. {
  435. if(!cardOK) return;
  436. file.close();
  437. sdprinting = false;
  438. const char *fname=name;
  439. if (!diveSubfolder(fname))
  440. return;
  441. if (file.remove(curDir, fname))
  442. {
  443. SERIAL_PROTOCOLPGM("File deleted:");
  444. SERIAL_PROTOCOLLN(fname);
  445. sdpos = 0;
  446. #ifdef SDCARD_SORT_ALPHA
  447. presort();
  448. #endif
  449. }
  450. else
  451. {
  452. SERIAL_PROTOCOLPGM("Deletion failed, File: ");
  453. SERIAL_PROTOCOL(fname);
  454. SERIAL_PROTOCOLLN('.');
  455. }
  456. }
  457. uint32_t CardReader::getFileSize()
  458. {
  459. return filesize;
  460. }
  461. void CardReader::getStatus(bool arg_P)
  462. {
  463. if (isPrintPaused)
  464. {
  465. if (saved_printing && (saved_printing_type == PRINTING_TYPE_SD))
  466. SERIAL_PROTOCOLLNPGM("SD print paused");
  467. else
  468. SERIAL_PROTOCOLLNPGM("Print saved");
  469. }
  470. else if (sdprinting)
  471. {
  472. if (arg_P)
  473. {
  474. printAbsFilenameFast();
  475. SERIAL_PROTOCOLLN();
  476. }
  477. else
  478. SERIAL_PROTOCOLLN(LONGEST_FILENAME);
  479. SERIAL_PROTOCOLRPGM(_N("SD printing byte "));////MSG_SD_PRINTING_BYTE
  480. SERIAL_PROTOCOL(sdpos);
  481. SERIAL_PROTOCOL('/');
  482. SERIAL_PROTOCOLLN(filesize);
  483. uint16_t time = ( _millis() - starttime ) / 60000U;
  484. SERIAL_PROTOCOL(itostr2(time/60));
  485. SERIAL_PROTOCOL(':');
  486. SERIAL_PROTOCOLLN(itostr2(time%60));
  487. }
  488. else
  489. SERIAL_PROTOCOLLNPGM("Not SD printing");
  490. }
  491. void CardReader::write_command(char *buf)
  492. {
  493. char* begin = buf;
  494. char* npos = 0;
  495. char* end = buf + strlen(buf) - 1;
  496. file.writeError = false;
  497. if((npos = strchr(buf, 'N')) != NULL)
  498. {
  499. begin = strchr(npos, ' ') + 1;
  500. end = strchr(npos, '*') - 1;
  501. }
  502. end[1] = '\r';
  503. end[2] = '\n';
  504. end[3] = '\0';
  505. file.write(begin);
  506. if (file.writeError)
  507. {
  508. SERIAL_ERROR_START;
  509. SERIAL_ERRORLNRPGM(MSG_SD_ERR_WRITE_TO_FILE);
  510. }
  511. }
  512. #define CHUNK_SIZE 64
  513. void CardReader::write_command_no_newline(char *buf)
  514. {
  515. file.write(buf, CHUNK_SIZE);
  516. if (file.writeError)
  517. {
  518. SERIAL_ERROR_START;
  519. SERIAL_ERRORLNRPGM(MSG_SD_ERR_WRITE_TO_FILE);
  520. SERIAL_PROTOCOLLNPGM("An error while writing to the SD Card.");
  521. }
  522. }
  523. void CardReader::checkautostart(bool force)
  524. {
  525. if(!force)
  526. {
  527. if(!autostart_stilltocheck)
  528. return;
  529. if(autostart_atmillis<_millis())
  530. return;
  531. }
  532. autostart_stilltocheck=false;
  533. if(!cardOK)
  534. {
  535. initsd();
  536. if(!cardOK) //fail
  537. return;
  538. }
  539. char autoname[30];
  540. sprintf_P(autoname, PSTR("auto%i.g"), lastnr);
  541. for(int8_t i=0;i<(int8_t)strlen(autoname);i++)
  542. autoname[i]=tolower(autoname[i]);
  543. dir_t p;
  544. root.rewind();
  545. bool found=false;
  546. while (root.readDir(p, NULL) > 0)
  547. {
  548. for(int8_t i=0;i<(int8_t)strlen((char*)p.name);i++)
  549. p.name[i]=tolower(p.name[i]);
  550. //Serial.print((char*)p.name);
  551. //Serial.print(" ");
  552. //Serial.println(autoname);
  553. if(p.name[9]!='~') //skip safety copies
  554. if(strncmp((char*)p.name,autoname,5)==0)
  555. {
  556. char cmd[30];
  557. // M23: Select SD file
  558. sprintf_P(cmd, PSTR("M23 %s"), autoname);
  559. enquecommand(cmd);
  560. // M24: Start/resume SD print
  561. enquecommand_P(PSTR("M24"));
  562. found=true;
  563. }
  564. }
  565. if(!found)
  566. lastnr=-1;
  567. else
  568. lastnr++;
  569. }
  570. void CardReader::closefile(bool store_location)
  571. {
  572. file.sync();
  573. file.close();
  574. saving = false;
  575. logging = false;
  576. if(store_location)
  577. {
  578. //future: store printer state, filename and position for continuing a stopped print
  579. // so one can unplug the printer and continue printing the next day.
  580. }
  581. }
  582. void CardReader::getfilename(uint16_t nr, const char * const match/*=NULL*/)
  583. {
  584. curDir=&workDir;
  585. lsAction=LS_GetFilename;
  586. nrFiles=nr;
  587. curDir->rewind();
  588. lsDive("",*curDir,match);
  589. }
  590. void CardReader::getfilename_simple(uint32_t position, const char * const match/*=NULL*/)
  591. {
  592. curDir = &workDir;
  593. lsAction = LS_GetFilename;
  594. nrFiles = 0;
  595. curDir->seekSet(position);
  596. lsDive("", *curDir, match);
  597. }
  598. void CardReader::getfilename_next(uint32_t position, const char * const match/*=NULL*/)
  599. {
  600. curDir = &workDir;
  601. lsAction = LS_GetFilename;
  602. nrFiles = 1;
  603. curDir->seekSet(position);
  604. lsDive("", *curDir, match);
  605. }
  606. uint16_t CardReader::getnrfilenames()
  607. {
  608. curDir=&workDir;
  609. lsAction=LS_Count;
  610. nrFiles=0;
  611. curDir->rewind();
  612. lsDive("",*curDir);
  613. //SERIAL_ECHOLN(nrFiles);
  614. return nrFiles;
  615. }
  616. bool CardReader::chdir(const char * relpath, bool doPresort)
  617. {
  618. SdFile newfile;
  619. SdFile *parent=&root;
  620. if(workDir.isOpen())
  621. parent=&workDir;
  622. if(!newfile.open(*parent,relpath, O_READ) || ((workDirDepth + 1) >= MAX_DIR_DEPTH))
  623. {
  624. SERIAL_ECHO_START;
  625. SERIAL_ECHORPGM(_n("Cannot enter subdir: "));////MSG_SD_CANT_ENTER_SUBDIR
  626. SERIAL_ECHOLN(relpath);
  627. return 0;
  628. }
  629. else
  630. {
  631. strcpy(dir_names[workDirDepth], relpath);
  632. puts(relpath);
  633. if (workDirDepth < MAX_DIR_DEPTH) {
  634. for (int d = ++workDirDepth; d--;)
  635. workDirParents[d+1] = workDirParents[d];
  636. workDirParents[0]=*parent;
  637. }
  638. workDir=newfile;
  639. #ifdef SDCARD_SORT_ALPHA
  640. if (doPresort)
  641. presort();
  642. else
  643. presort_flag = true;
  644. #endif
  645. return 1;
  646. }
  647. }
  648. void CardReader::updir()
  649. {
  650. if(workDirDepth > 0)
  651. {
  652. --workDirDepth;
  653. workDir = workDirParents[0];
  654. for (unsigned int d = 0; d < workDirDepth; d++)
  655. {
  656. workDirParents[d] = workDirParents[d+1];
  657. }
  658. #ifdef SDCARD_SORT_ALPHA
  659. presort();
  660. #endif
  661. }
  662. }
  663. #ifdef SDCARD_SORT_ALPHA
  664. /**
  665. * Get the name of a file in the current directory by sort-index
  666. */
  667. void CardReader::getfilename_sorted(const uint16_t nr) {
  668. if (nr < sort_count)
  669. getfilename_simple(sort_positions[sort_order[nr]]);
  670. else
  671. getfilename(nr);
  672. }
  673. /**
  674. * Read all the files and produce a sort key
  675. *
  676. * We can do this in 3 ways...
  677. * - Minimal RAM: Read two filenames at a time sorting along...
  678. * - Some RAM: Buffer the directory just for this sort
  679. * - Most RAM: Buffer the directory and return filenames from RAM
  680. */
  681. void CardReader::presort() {
  682. if (farm_mode || IS_SD_INSERTED == false) return; //sorting is not used in farm mode
  683. uint8_t sdSort = eeprom_read_byte((uint8_t*)EEPROM_SD_SORT);
  684. if (sdSort == SD_SORT_NONE) return; //sd sort is turned off
  685. KEEPALIVE_STATE(IN_HANDLER);
  686. // Throw away old sort index
  687. flush_presort();
  688. // If there are files, sort up to the limit
  689. uint16_t fileCnt = getnrfilenames();
  690. if (fileCnt > 0) {
  691. // Never sort more than the max allowed
  692. // If you use folders to organize, 20 may be enough
  693. if (fileCnt > SDSORT_LIMIT) {
  694. lcd_show_fullscreen_message_and_wait_P(_i("Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100."));////MSG_FILE_CNT c=20 r=6
  695. fileCnt = SDSORT_LIMIT;
  696. }
  697. lcd_clear();
  698. // uint32_t positions[fileCnt];
  699. // By default re-read the names from SD for every compare
  700. // retaining only two filenames at a time. This is very
  701. // slow but is safest and uses minimal RAM.
  702. char name1[LONG_FILENAME_LENGTH + 1];
  703. uint16_t crmod_time_bckp;
  704. uint16_t crmod_date_bckp;
  705. #if HAS_FOLDER_SORTING
  706. uint16_t dirCnt = 0;
  707. #endif
  708. position = 0;
  709. //might need to also load the file at position 0 for filenameIsDir to work on the first file
  710. if (fileCnt > 1) {
  711. // Init sort order.
  712. for (uint16_t i = 0; i < fileCnt; i++) {
  713. if (!IS_SD_INSERTED) return;
  714. manage_heater();
  715. if (i == 0)
  716. getfilename(0);
  717. else
  718. getfilename_next(position);
  719. sort_order[i] = i;
  720. sort_positions[i] = position;
  721. #if HAS_FOLDER_SORTING
  722. if (filenameIsDir) dirCnt++;
  723. #endif
  724. }
  725. #ifdef QUICKSORT
  726. quicksort(0, fileCnt - 1);
  727. #elif defined(SHELLSORT)
  728. #define _SORT_CMP_NODIR() (strcasecmp(name2, name1) < 0)
  729. #define _SORT_CMP_TIME_NODIR() (((crmod_date_bckp == crmodDate) && (crmod_time_bckp < crmodTime)) || (crmod_date_bckp < crmodDate))
  730. #if HAS_FOLDER_SORTING
  731. #define _SORT_CMP_DIR(fs) ((dir1 == filenameIsDir) ? _SORT_CMP_NODIR() : (fs < 0 ? filenameIsDir : !filenameIsDir))
  732. #define _SORT_CMP_TIME_DIR(fs) ((dir1 == filenameIsDir) ? _SORT_CMP_TIME_NODIR() : (fs < 0 ? filenameIsDir : !filenameIsDir))
  733. #endif
  734. for (uint8_t runs = 0; runs < 2; runs++)
  735. {
  736. uint8_t* sortingBaseArray;
  737. //run=0: sorts all files and moves folders to the beginning
  738. //run=1: assumes all folders are at the beginning of the list and sorts them
  739. lcd_set_cursor(0, 1);
  740. lcd_printf_P(PSTR("%-20.20S"), (runs == 0)?_i("Sorting files"):_i("Sorting folders"));
  741. uint16_t sortCountFiles = 0;
  742. if (runs == 0)
  743. {
  744. sortingBaseArray = sort_order;
  745. sortCountFiles = fileCnt;
  746. }
  747. #if HAS_FOLDER_SORTING
  748. else
  749. {
  750. sortingBaseArray = sort_order + /* sizeof(sort_order[0]) * */ (fileCnt - dirCnt);
  751. sortCountFiles = dirCnt;
  752. }
  753. #endif
  754. if (sortCountFiles < 2) break;
  755. uint16_t counter = 0;
  756. uint16_t total = 0;
  757. for (uint16_t i = sortCountFiles/2; i > 0; i /= 2) total += sortCountFiles - i; //total runs for progress bar
  758. for (uint16_t gap = sortCountFiles/2; gap > 0; gap /= 2)
  759. {
  760. for (uint16_t i = gap; i < sortCountFiles; i++)
  761. {
  762. if (!IS_SD_INSERTED) return;
  763. int8_t percent = (counter * 100) / total;
  764. lcd_set_cursor(0, 2);
  765. for (int column = 0; column < 20; column++) {
  766. if (column < (percent / 5)) lcd_print('\xFF'); //simple progress bar
  767. else lcd_print(' ');
  768. }
  769. counter++;
  770. manage_heater();
  771. uint8_t orderBckp = sortingBaseArray[i];
  772. getfilename_simple(sort_positions[orderBckp]);
  773. strcpy(name1, LONGEST_FILENAME); // save (or getfilename below will trounce it)
  774. crmod_date_bckp = crmodDate;
  775. crmod_time_bckp = crmodTime;
  776. #if HAS_FOLDER_SORTING
  777. bool dir1 = filenameIsDir;
  778. #endif
  779. uint16_t j = i;
  780. getfilename_simple(sort_positions[sortingBaseArray[j - gap]]);
  781. char *name2 = LONGEST_FILENAME; // use the string in-place
  782. #if HAS_FOLDER_SORTING
  783. while (j >= gap && ((sdSort == SD_SORT_TIME)?_SORT_CMP_TIME_DIR(FOLDER_SORTING):_SORT_CMP_DIR(FOLDER_SORTING)))
  784. #else
  785. while (j >= gap && ((sdSort == SD_SORT_TIME)?_SORT_CMP_TIME_NODIR():_SORT_CMP_NODIR()))
  786. #endif
  787. {
  788. sortingBaseArray[j] = sortingBaseArray[j - gap];
  789. j -= gap;
  790. #ifdef SORTING_DUMP
  791. for (uint16_t z = 0; z < sortCountFiles; z++)
  792. {
  793. printf_P(PSTR("%2u "), sortingBaseArray[z]);
  794. }
  795. printf_P(PSTR("i%2d j%2d gap%2d orderBckp%2d\n"), i, j, gap, orderBckp);
  796. #endif
  797. if (j < gap) break;
  798. getfilename_simple(sort_positions[sortingBaseArray[j - gap]]);
  799. name2 = LONGEST_FILENAME; // use the string in-place
  800. }
  801. sortingBaseArray[j] = orderBckp;
  802. }
  803. }
  804. }
  805. #else //Bubble Sort
  806. uint32_t counter = 0;
  807. uint16_t total = 0.5*(fileCnt - 1)*(fileCnt);
  808. // Compare names from the array or just the two buffered names
  809. #define _SORT_CMP_NODIR() (strcasecmp(name1, name2) < 0) //true if lowercase(name1) < lowercase(name2)
  810. #define _SORT_CMP_TIME_NODIR() (((crmod_date_bckp == crmodDate) && (crmod_time_bckp > crmodTime)) || (crmod_date_bckp > crmodDate))
  811. #if HAS_FOLDER_SORTING
  812. #define _SORT_CMP_DIR(fs) ((dir1 == filenameIsDir) ? _SORT_CMP_NODIR() : (fs < 0 ? dir1 : !dir1))
  813. #define _SORT_CMP_TIME_DIR(fs) ((dir1 == filenameIsDir) ? _SORT_CMP_TIME_NODIR() : (fs < 0 ? dir1 : !dir1))
  814. #endif
  815. lcd_set_cursor(0, 1);
  816. lcd_printf_P(PSTR("%-20.20S"), _i("Sorting files"));
  817. for (uint16_t i = fileCnt; --i;) {
  818. if (!IS_SD_INSERTED) return;
  819. bool didSwap = false;
  820. int8_t percent = (counter * 100) / total;//((counter * 100) / pow((fileCnt-1),2));
  821. lcd_set_cursor(0, 2);
  822. for (int column = 0; column < 20; column++) {
  823. if (column < (percent / 5)) lcd_print('\xFF'); //simple progress bar
  824. else lcd_print(' ');
  825. }
  826. counter++;
  827. //MYSERIAL.println(int(i));
  828. for (uint16_t j = 0; j < i; ++j) {
  829. if (!IS_SD_INSERTED) return;
  830. #ifdef SORTING_DUMP
  831. for (uint16_t z = 0; z < fileCnt; z++)
  832. {
  833. printf_P(PSTR("%2u "), sort_order[z]);
  834. }
  835. MYSERIAL.println();
  836. #endif
  837. manage_heater();
  838. const uint16_t o1 = sort_order[j], o2 = sort_order[j + 1];
  839. counter++;
  840. getfilename_simple(sort_positions[o1]);
  841. strcpy(name1, LONGEST_FILENAME); // save (or getfilename below will trounce it)
  842. crmod_date_bckp = crmodDate;
  843. crmod_time_bckp = crmodTime;
  844. #if HAS_FOLDER_SORTING
  845. bool dir1 = filenameIsDir;
  846. #endif
  847. getfilename_simple(sort_positions[o2]);
  848. char *name2 = LONGEST_FILENAME; // use the string in-place
  849. // Sort the current pair according to settings.
  850. if (
  851. #if HAS_FOLDER_SORTING
  852. (sdSort == SD_SORT_TIME && _SORT_CMP_TIME_DIR(FOLDER_SORTING)) || (sdSort == SD_SORT_ALPHA && _SORT_CMP_DIR(FOLDER_SORTING))
  853. #else
  854. (sdSort == SD_SORT_TIME && _SORT_CMP_TIME_NODIR()) || (sdSort == SD_SORT_ALPHA && _SORT_CMP_NODIR())
  855. #endif
  856. )
  857. {
  858. sort_order[j] = o2;
  859. sort_order[j + 1] = o1;
  860. didSwap = true;
  861. }
  862. }
  863. if (!didSwap) break;
  864. } //end of bubble sort loop
  865. #endif
  866. lcd_set_cursor(0, 2);
  867. for (int column = 0; column <= 19; column++)
  868. lcd_print('\xFF'); //simple progress bar
  869. _delay(300);
  870. lcd_clear();
  871. }
  872. else {
  873. sort_order[0] = 0;
  874. getfilename(0);
  875. sort_positions[0] = position;
  876. }
  877. sort_count = fileCnt;
  878. }
  879. lcd_update(2);
  880. KEEPALIVE_STATE(NOT_BUSY);
  881. lcd_timeoutToStatus.start();
  882. }
  883. void CardReader::flush_presort() {
  884. if (sort_count > 0) {
  885. sort_count = 0;
  886. }
  887. }
  888. #endif // SDCARD_SORT_ALPHA
  889. void CardReader::printingHasFinished()
  890. {
  891. st_synchronize();
  892. if(file_subcall_ctr>0) //heading up to a parent file that called current as a procedure.
  893. {
  894. file.close();
  895. file_subcall_ctr--;
  896. openFile(filenames[file_subcall_ctr],true,true);
  897. setIndex(filespos[file_subcall_ctr]);
  898. startFileprint();
  899. }
  900. else
  901. {
  902. quickStop();
  903. file.close();
  904. sdprinting = false;
  905. if(SD_FINISHED_STEPPERRELEASE)
  906. {
  907. finishAndDisableSteppers();
  908. //enquecommand_P(PSTR(SD_FINISHED_RELEASECOMMAND));
  909. }
  910. autotempShutdown();
  911. #ifdef SDCARD_SORT_ALPHA
  912. //presort();
  913. #endif
  914. }
  915. }
  916. bool CardReader::ToshibaFlashAir_GetIP(uint8_t *ip)
  917. {
  918. memset(ip, 0, 4);
  919. return card.readExtMemory(1, 1, 0x400+0x150, 4, ip);
  920. }
  921. #endif //SDSUPPORT