1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
|
/*
* ipptransform3d utility for converting 3MF and STL files to G-code.
*
* Copyright 2016-2019 by the IEEE-ISTO Printer Working Group.
*
* Licensed under Apache License v2.0. See the file "LICENSE" for more
* information.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <cups/cups.h>
#include <cups/thread.h>
#include <fcntl.h>
#include <termios.h>
#include <sys/select.h>
#include <sys/ioctl.h>
#ifdef __APPLE__
# include <IOKit/serial/ioss.h>
#endif /* __APPLE__ */
#ifdef __linux
/*
* <termios.h> does not define termios2 structure, but <asm-generic/termbits.h>
* is not compatible with <termios.h> header...
*/
struct termios2 {
tcflag_t c_iflag; /* input mode flags */
tcflag_t c_oflag; /* output mode flags */
tcflag_t c_cflag; /* control mode flags */
tcflag_t c_lflag; /* local mode flags */
cc_t c_line; /* line discipline */
cc_t c_cc[NCCS]; /* control characters */
speed_t c_ispeed; /* input speed */
speed_t c_ospeed; /* output speed */
};
#endif /* __linux */
#ifndef _WIN32
# include <spawn.h>
# include <poll.h>
# include <sys/wait.h>
#endif /* !_WIN32 */
/*
* Local types...
*/
typedef struct gcode_buffer_s /**** Buffer for G-code status lines ****/
{
char buffer[8192], /* Buffer */
*bufptr; /* Pointer info buffer */
size_t bytes; /* Bytes in buffer */
} gcode_buffer_t;
/*
* Local globals...
*/
static int Verbosity = 0; /* Log level */
/*
* Local functions...
*/
static int gcode_fill(gcode_buffer_t *buf, int device_fd, int wait_secs);
static char *gcode_gets(gcode_buffer_t *buf);
static int gcode_puts(gcode_buffer_t *buf, int device_fd, char *line, int linenum);
static size_t load_env_options(cups_option_t **options);
static int open_device(const char *device_uri);
static void usage(int status) _CUPS_NORETURN;
static int xform_document(const char *filename, const char *outformat, size_t num_options, cups_option_t *options, gcode_buffer_t *buf, int device_fd);
/*
* 'main()' - Main entry for transform utility.
*/
int /* O - Exit status */
main(int argc, /* I - Number of command-line args */
char *argv[]) /* I - Command-line arguments */
{
int i; /* Looping var */
const char *filename = NULL, /* File to transform */
*content_type, /* Source content type */
*device_uri, /* Destination URI */
*output_type, /* Destination content type */
*opt; /* Option character */
size_t num_options; /* Number of options */
cups_option_t *options; /* Options */
int fd = 1; /* Output file/socket */
int status = 0; /* Exit status */
gcode_buffer_t buffer; /* G-code response buffer */
/*
* Process the command-line...
*/
num_options = load_env_options(&options);
content_type = getenv("CONTENT_TYPE");
device_uri = getenv("DEVICE_URI");
output_type = getenv("OUTPUT_TYPE");
if ((opt = getenv("SERVER_LOGLEVEL")) != NULL)
{
if (!strcmp(opt, "debug"))
Verbosity = 2;
else if (!strcmp(opt, "info"))
Verbosity = 1;
}
for (i = 1; i < argc; i ++)
{
if (argv[i][0] == '-' && argv[i][1] != '-')
{
for (opt = argv[i] + 1; *opt; opt ++)
{
switch (*opt)
{
case 'd' :
i ++;
if (i >= argc)
usage(1);
device_uri = argv[i];
break;
case 'i' :
i ++;
if (i >= argc)
usage(1);
content_type = argv[i];
break;
case 'm' :
i ++;
if (i >= argc)
usage(1);
output_type = argv[i];
break;
case 'o' :
i ++;
if (i >= argc)
usage(1);
num_options = cupsParseOptions(argv[i], num_options, &options);
break;
case 'v' : /* Be verbose... */
Verbosity ++;
break;
default :
fprintf(stderr, "ERROR: Unknown option '-%c'.\n", *opt);
usage(1);
break;
}
}
}
else if (!strcmp(argv[i], "--help"))
usage(0);
else if (!strncmp(argv[i], "--", 2))
{
fprintf(stderr, "ERROR: Unknown option '%s'.\n", argv[i]);
usage(1);
}
else if (!filename)
filename = argv[i];
else
usage(1);
}
/*
* Check that we have everything we need...
*/
if (!filename)
usage(1);
if (!content_type)
{
if ((opt = strrchr(filename, '.')) != NULL)
{
if (!strcmp(opt, ".3mf"))
content_type = "model/3mf";
else if (!strcmp(opt, ".stl"))
content_type = "application/sla";
}
}
if (!content_type)
{
fprintf(stderr, "ERROR: Unknown format for \"%s\", please specify with '-i' option.\n", filename);
usage(1);
}
else if (strcmp(content_type, "application/sla") && strcmp(content_type, "model/3mf"))
{
fprintf(stderr, "ERROR: Unsupported format \"%s\" for \"%s\".\n", content_type, filename);
usage(1);
}
if (!output_type)
{
fputs("ERROR: Unknown output format, please specify with '-m' option.\n", stderr);
usage(1);
}
else if (strcmp(output_type, "application/g-code") && strncmp(output_type, "application/g-code;", 19))
{
fprintf(stderr, "ERROR: Unsupported output format \"%s\".\n", output_type);
usage(1);
}
/*
* If the device URI is specified, open the connection...
*/
if (device_uri)
{
if (strncmp(device_uri, "usbserial:///dev/", 17))
{
fprintf(stderr, "ERROR: Unsupported device URI \"%s\".\n", device_uri);
usage(1);
}
fd = open_device(device_uri);
/*
* Initialize the G-code response buffer and wait for the printer to send
* us its firmware information, etc.
*/
memset(&buffer, 0, sizeof(buffer));
buffer.bufptr = buffer.buffer;
while (gcode_fill(&buffer, fd, 15))
{
const char *info; /* Information from printer */
while ((info = gcode_gets(&buffer)) != NULL)
fprintf(stderr, "DEBUG: %s\n", info);
}
}
/*
* Do transform...
*/
status = xform_document(filename, output_type, num_options, options, &buffer, fd);
gcode_puts(&buffer, fd, "", 1);
if (fd != 1)
close(fd);
return (status);
}
/*
* 'gcode_fill()' - Fill the G-code buffer with more data...
*/
static int /* O - 1 on success, 0 on failure */
gcode_fill(gcode_buffer_t *buf, /* I - Buffer */
int device_fd, /* I - Device file descriptor */
int wait_secs) /* I - Timeout in seconds */
{
ssize_t bytes; /* Bytes read */
if (wait_secs > 0)
{
/*
* Wait for data ready...
*/
fd_set input; /* select() mask */
struct timeval timeout; /* Timeout */
FD_ZERO(&input);
FD_SET(device_fd, &input);
timeout.tv_sec = wait_secs;
timeout.tv_usec = 0;
while (select(device_fd + 1, &input, NULL, NULL, &timeout) < 0)
{
if (errno != EINTR)
return (0);
}
if (!FD_ISSET(device_fd, &input))
return (0);
}
if (buf->bufptr > buf->buffer)
{
/*
* Compact remaining bytes in buffer...
*/
bytes = buf->bufptr - buf->buffer;
if (bytes < buf->bytes)
memmove(buf->buffer, buf->bufptr, buf->bytes - (size_t)bytes);
buf->bufptr = buf->buffer;
buf->bytes -= (size_t)bytes;
}
/*
* Read more bytes into the buffer...
*/
while ((bytes = read(device_fd, buf->buffer + buf->bytes, sizeof(buf->buffer) - buf->bytes - 1)) < 0)
{
if (errno != EINTR)
return (0);
}
buf->bytes += (size_t)bytes;
buf->buffer[buf->bytes] = '\0';
return (1);
}
/*
* 'gcode_gets()' - Get a line from the G-code buffer.
*/
static char * /* O - Line or NULL if no full line */
gcode_gets(gcode_buffer_t *buf) /* I - Buffer */
{
char *start = buf->bufptr;
char *end = strchr(start, '\n');
if (end)
{
*end++ = '\0';
buf->bufptr = end;
return (start);
}
else if (start == buf->buffer && buf->bytes == (sizeof(buf->buffer) - 1))
{
buf->bufptr = buf->buffer + buf->bytes;
return (buf->buffer);
}
else
return (NULL);
}
/*
* 'gcode_puts()' - Write a line of G-code, complete with line number and checksum.
*/
static int /* O - Next line number */
gcode_puts(gcode_buffer_t *buf, /* I - G-code buffer */
int device_fd, /* I - Device file */
char *line, /* I - Line from G-code file */
int linenum) /* I - Line number in G-code file */
{
char buffer[8192], /* Output buffer */
*ptr; /* Pointer into line/buffer */
unsigned char checksum; /* XOR checksum */
size_t len; /* Length of output buffer remaining */
ssize_t bytes; /* Bytes written */
int ok = 0; /* Line written OK? */
/*
* First eliminate any trailing comments and whitespace...
*/
if ((ptr = strchr(line, ';')) != NULL)
*ptr = '\0';
ptr = line + strlen(line) - 1;
while (ptr >= line && isspace(*ptr & 255))
*ptr-- = '\0';
if (!line[0])
return (linenum); /* Nothing left... */
/*
* Then compute a simple XOR checksum and format the output line...
*/
snprintf(buffer, sizeof(buffer), "N%d %s", linenum, line);
for (ptr = buffer, checksum = 0; *ptr; ptr ++)
checksum ^= (unsigned char)*ptr;
snprintf(buffer, sizeof(buffer), "N%d %s*%d\n", linenum ++, line, checksum);
fprintf(stderr, "DEBUG: >%s", buffer);
/*
* Finally, write the line to the output device and wait for an OK...
*/
do
{
char *resp; /* Response from printer */
for (ptr = buffer, len = strlen(buffer); len > 0;)
{
if ((bytes = write(device_fd, ptr, len)) < 0)
{
if (errno != EAGAIN && errno != EINTR && errno != ENOTTY)
return (-1);
}
else
{
len -= (size_t)bytes;
ptr += bytes;
}
}
tcdrain(device_fd);
do
{
while ((resp = gcode_gets(buf)) == NULL)
{
if (!gcode_fill(buf, device_fd, 30))
{
fputs("DEBUG: No response from printer.\n", stderr);
return (-1);
}
}
fprintf(stderr, "DEBUG: %s\n", resp);
if (!resp)
{
fputs("DEBUG: Unable to read response from printer.\n", stderr);
return (-1);
}
}
while (strcmp(resp, "ok") && strncmp(resp, "Resend:", 7));
if (!strncmp(resp, "Resend:", 7))
{
if (atoi(resp + 7) != (linenum - 1))
{
fprintf(stderr, "DEBUG: Printer asked us to resend a previous line (%s, on line %d)\n", resp + 7, linenum);
return (-1);
}
ok = 0;
}
else
ok = 1;
}
while (!ok);
return (linenum);
}
/*
* 'load_env_options()' - Load options from the environment.
*/
extern char **environ;
static size_t /* O - Number of options */
load_env_options(
cups_option_t **options) /* I - Options */
{
int i; /* Looping var */
char name[256], /* Option name */
*nameptr, /* Pointer into name */
*envptr; /* Pointer into environment variable */
size_t num_options = 0; /* Number of options */
*options = NULL;
/*
* Load all of the IPP_xxx environment variables as options...
*/
for (i = 0; environ[i]; i ++)
{
envptr = environ[i];
if (strncmp(envptr, "IPP_", 4))
continue;
for (nameptr = name, envptr += 4; *envptr && *envptr != '='; envptr ++)
{
if (nameptr > (name + sizeof(name) - 1))
continue;
if (*envptr == '_')
*nameptr++ = '-';
else
*nameptr++ = (char)tolower(*envptr);
}
*nameptr = '\0';
if (*envptr == '=')
envptr ++;
num_options = cupsAddOption(name, envptr, num_options, options);
}
return (num_options);
}
/*
* 'open_device()' - Open a serial port device...
*/
static int /* O - File descriptor or -1 on error */
open_device(const char *device_uri) /* I - Device URI */
{
char filename[1024], /* Device filename */
*options; /* Pointer to options */
int device_fd, /* Serial device */
device_state; /* Serial control lines */
#ifdef __linux
struct termios2 opts; /* Serial port options */
#else
struct termios opts; /* Serial port options */
#endif /* __linux */
int baud = 250000; /* Baud rate */
/*
* Open the serial port device...
*/
if (strncmp(device_uri, "usbserial:///dev/", 17))
return (-1);
strlcpy(filename, device_uri + 12, sizeof(filename));
if ((options = strchr(filename, '?')) != NULL)
*options++ = '\0';
do
{
if ((device_fd = open(filename, O_RDWR | O_NOCTTY | O_EXCL | O_NDELAY)) == -1)
{
if (errno == EBUSY)
{
fputs("INFO: Printer busy; will retry in 30 seconds.\n", stderr);
sleep(30);
}
else
{
fprintf(stderr, "ERROR: Unable to open device file \"%s\": %s\n", filename, strerror(errno));
return (-1);
}
}
}
while (device_fd < 0);
/*
* Set any options provided...
*/
tcgetattr(device_fd, (struct termios *)&opts);
cfmakeraw((struct termios *)&opts);
opts.c_cflag |= CREAD | CLOCAL; /* Enable reader */
opts.c_cflag &= (unsigned)~CRTSCTS; /* No RTS/CTS flow control */
opts.c_cflag &= (unsigned)~CSIZE; /* 8-bits */
opts.c_cflag |= CS8;
opts.c_cflag &= (unsigned)~PARENB; /* No parity */
opts.c_cflag &= (unsigned)~CSTOPB; /* 1 stop bit */
if (options && !strncasecmp(options, "baud=", 5))
{
/*
* Set the baud rate...
*/
baud = atoi(options + 5);
}
/*
* Set serial port settings and then toggle DTR...
*/
#ifdef __APPLE__ /* USB serial doesn't follow POSIX, grrr... */
cfsetispeed(&opts, B9600);
cfsetospeed(&opts, B9600);
tcsetattr(device_fd, TCSANOW, &opts);
ioctl(device_fd, IOSSIOSPEED, &baud);
#elif defined(__linux) /* Linux needs to use non-POSIX termios2 ioctl, grrr... */
opts.c_cflag &= (unsigned)~CBAUD;
// opts.c_cflag != BOTHER;
opts.c_ospeed = opts.c_ispeed = (speed_t)baud;
ioctl(device_fd, TCSETS2, &opts);
#else /* Other platforms default to POSIX termios */
cfsetispeed(&opts, baud);
cfsetospeed(&opts, baud);
tcsetattr(device_fd, TCSANOW, &opts);
#endif /* __APPLE__ */
fcntl(device_fd, F_SETFL, 0);
ioctl(device_fd, TIOCMGET, &device_state);
device_state |= TIOCM_DTR;
ioctl(device_fd, TIOCMSET, &device_state);
usleep(100000);
device_state &= ~TIOCM_DTR;
ioctl(device_fd, TIOCMSET, &device_state);
return (device_fd);
}
/*
* 'usage()' - Show program usage.
*/
static void
usage(int status) /* I - Exit status */
{
puts("Usage: ipptransform [options] filename\n");
puts("Options:");
puts(" --help");
puts(" -d device-uri");
puts(" -i input/format");
puts(" -m output/format");
puts(" -o \"name=value [... name=value]\"");
puts(" -v\n");
puts("Device URIs: usbserial:///dev/...");
puts("Input Formats: application/sla, model/3mf");
puts("Output Formats: application/g-code;machine=FOO");
puts("Options: materials-col, platform-temperature, print-accuracy, print-base, print-quality, print-supports");
exit(status);
}
/*
* 'xform_document()' - Transform and print a document.
*/
static int /* O - 0 on success, 1 on failure */
xform_document(
const char *filename, /* I - Input file */
const char *outformat, /* I - Output format */
size_t num_options, /* I - Number of options */
cups_option_t *options, /* I - Options */
gcode_buffer_t *buf, /* I - G-code response buffer */
int device_fd) /* I - Device file */
{
#ifdef _WIN32
return (0);
#else
int i; /* Looping var */
const char *val; /* Option value */
int pid, /* Process ID */
status; /* Exit status */
const char *myargv[100]; /* Command-line arguments */
int myargc; /* Number of arguments */
const char *machine; /* Machine name in output format */
char curapath[1024], /* CuraEngine path */
json[1024], /* JSON settings name */
material_temp[1024], /* Extruder temperature setting */
platform_temp[1024]; /* Platform temperature setting */
posix_spawn_file_actions_t actions; /* Spawn file actions */
int mystdout[2] = {-1, -1}; /* Pipe for stdout */
struct pollfd polldata[2]; /* Poll data */
int pollcount; /* Number of pipes to poll */
char data[32768], /* Data from stdout */
*dataptr, /* Pointer to end of data */
*ptr, /* Pointer into data */
*end; /* End of data */
ssize_t bytes; /* Bytes read */
int linenum = 1; /* G-code line number */
int platform, /* platform-temperature value */
material, /* material-temperature value */
quality; /* print-quality value */
const char *base, /* print-base value */
*supports; /* print-supports value */
/*
* Look for the machine name in the output format...
*/
if ((machine = strstr(outformat, ";machine=")) != NULL)
machine += 9;
else
machine = "ultimaker2";
strlcpy(curapath, CURAENGINE, sizeof(curapath));
if ((ptr = strstr(curapath, "Cura.app/")) != NULL)
{
/*
* macOS bundle, locate the resources within the bundle...
*/
ptr[8] = '\0'; /* Trim at slash... */
snprintf(json, sizeof(json), "%s/Contents/Resources/resources/definitions/%s.def.json", curapath, machine);
}
else if ((ptr = strstr(curapath, "/bin/CuraEngine")) != NULL)
{
/*
* Standard install, use the same prefix but look under "prefix/share/CuraEngine/"...
*/
*ptr = '\0';
snprintf(json, sizeof(json), "%s/share/CuraEngine/resources/definitions/%s.def.json", curapath, machine);
}
else
{
/*
* Rely on CURA_ENGINE_SEARCH_PATH...
*/
snprintf(json, sizeof(json), "%s.def.json", machine);
}
/*
* Setup the CuraEngine command-line arguments...
*/
myargv[0] = CURAENGINE;
myargc = 1;
myargv[myargc++] = "slice";
myargv[myargc++] = "-vv";
myargv[myargc++] = "-j";
myargv[myargc++] = json;
myargv[myargc++] = "-s";
myargv[myargc++] = "machine_gcode_flavor=0";
/*
* Get the extruder and build platform temperatures...
*/
if ((val = cupsGetOption("platform-temperature", num_options, options)) != NULL)
platform = atoi(val);
else if ((val = getenv("IPP_PLATFORM_TEMPERATURE_DEFAULT")) != NULL)
platform = atoi(val);
else
platform = 0;
if (platform > 0)
{
fprintf(stderr, "DEBUG: Build platform temperature is %dC...\n", platform);
snprintf(platform_temp, sizeof(platform_temp), "material_bed_temperature=%d", platform);
myargv[myargc++] = "-s";
myargv[myargc++] = platform_temp;
}
if ((val = cupsGetOption("materials-col", num_options, options)) == NULL)
val = getenv("IPP_MATERIALS_COL_DEFAULT");
if (val)
fprintf(stderr, "DEBUG: materials-col=%s\n", val);
if (val && (ptr = strstr(val, "material-temperature=")) != NULL)
{
/* TODO: Support multiple materials (Issue #90) */
material = atoi(ptr + 21);
snprintf(material_temp, sizeof(material_temp), "material_print_temperature=%d", platform);
fprintf(stderr, "DEBUG: Extruder temperature is %dC...\n", material);
myargv[myargc++] = "-s";
myargv[myargc++] = material_temp;
}
/*
* Get the print accuracy settings...
*/
/* TODO: Support print-accuracy (Issue #91) */
/*
* Get the print quality settings...
*/
if ((val = cupsGetOption("print-quality", num_options, options)) != NULL)
quality = atoi(val);
else if ((val = getenv("IPP_PRINT_QUALITY_DEFAULT")) != NULL)
quality = atoi(val);
else
quality = 4; /* Normal */
/* TODO: Sigh, fix all of the print quality settings since the latest CuraEngine has renamed them all... (Issue #92) */
switch (quality)
{
case 3 : /* Draft */
myargv[myargc++] = "-s";
myargv[myargc++] = "insetXSpeed=60";
myargv[myargc++] = "-s";
myargv[myargc++] = "inset0Speed=60";
myargv[myargc++] = "-s";
myargv[myargc++] = "extrusionWidth=500";
myargv[myargc++] = "-s";
myargv[myargc++] = "upSkinCount=3";
myargv[myargc++] = "-s";
myargv[myargc++] = "initialLayerSpeed=30";
myargv[myargc++] = "-s";
myargv[myargc++] = "minimalLayerTime=3";
myargv[myargc++] = "-s";
myargv[myargc++] = "infillSpeed=60";
myargv[myargc++] = "-s";
myargv[myargc++] = "initialLayerThickness=300";
myargv[myargc++] = "-s";
myargv[myargc++] = "layerThickness=200";
myargv[myargc++] = "-s";
myargv[myargc++] = "printSpeed=60";
myargv[myargc++] = "-s";
myargv[myargc++] = "layer0extrusionWidth=500";
myargv[myargc++] = "-s";
myargv[myargc++] = "sparseInfillLineDistance=5000";
myargv[myargc++] = "-s";
myargv[myargc++] = "downSkinCount=3";
break;
case 5 : /* High */
myargv[myargc++] = "-s";
myargv[myargc++] = "insetXSpeed=50";
myargv[myargc++] = "-s";
myargv[myargc++] = "inset0Speed=50";
myargv[myargc++] = "-s";
myargv[myargc++] = "extrusionWidth=400";
myargv[myargc++] = "-s";
myargv[myargc++] = "upSkinCount=10";
myargv[myargc++] = "-s";
myargv[myargc++] = "initialLayerSpeed=15";
myargv[myargc++] = "-s";
myargv[myargc++] = "minimalLayerTime=5";
myargv[myargc++] = "-s";
myargv[myargc++] = "infillSpeed=50";
myargv[myargc++] = "-s";
myargv[myargc++] = "initialLayerThickness=300";
myargv[myargc++] = "-s";
myargv[myargc++] = "layerThickness=60";
myargv[myargc++] = "-s";
myargv[myargc++] = "printSpeed=50";
myargv[myargc++] = "-s";
myargv[myargc++] = "layer0extrusionWidth=400";
myargv[myargc++] = "-s";
myargv[myargc++] = "sparseInfillLineDistance=2000";
myargv[myargc++] = "-s";
myargv[myargc++] = "downSkinCount=10";
break;
default : /* Normal/default */
myargv[myargc++] = "-s";
myargv[myargc++] = "insetXSpeed=50";
myargv[myargc++] = "-s";
myargv[myargc++] = "inset0Speed=50";
myargv[myargc++] = "-s";
myargv[myargc++] = "extrusionWidth=400";
myargv[myargc++] = "-s";
myargv[myargc++] = "upSkinCount=6";
myargv[myargc++] = "-s";
myargv[myargc++] = "initialLayerSpeed=20";
myargv[myargc++] = "-s";
myargv[myargc++] = "minimalLayerTime=5";
myargv[myargc++] = "-s";
myargv[myargc++] = "infillSpeed=50";
myargv[myargc++] = "-s";
myargv[myargc++] = "initialLayerThickness=300";
myargv[myargc++] = "-s";
myargv[myargc++] = "layerThickness=100";
myargv[myargc++] = "-s";
myargv[myargc++] = "endCode=M25";
myargv[myargc++] = "-s";
myargv[myargc++] = "printSpeed=50";
myargv[myargc++] = "-s";
myargv[myargc++] = "layer0extrusionWidth=400";
myargv[myargc++] = "-s";
myargv[myargc++] = "sparseInfillLineDistance=2000";
myargv[myargc++] = "-s downSkinCount=6";
break;
}
/*
* Get the print base settings...
*/
if ((base = cupsGetOption("print-base", num_options, options)) == NULL)
if ((base = getenv("IPP_PRINT_BASE_DEFAULT")) == NULL)
base = "none";
if (!strcmp(base, "brim"))
{
/*
* Print a brim...
*/
/* TODO: Add brim settings (Issue #92) */
}
else if (!strcmp(base, "raft"))
{
/*
* Print a raft...
*/
myargv[myargc++] = "-s";
myargv[myargc++] = "raftSurfaceLineSpacing=400";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftInterfaceLineSpacing=800";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftSurfaceSpeed=20";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftBaseSpeed=20";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftFanSpeed=0";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftSurfaceThickness=270";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftBaseThickness=300";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftMargin=5000";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftAirGap=0";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftInterfaceThickness=270";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftSurfaceLayers=2";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftSurfaceLinewidth=400";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftInterfaceLinewidth=400";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftBaseLinewidth=1000";
myargv[myargc++] = "-s";
myargv[myargc++] = "raftAirGapLayer0=220";
}
else if (!strcmp(base, "skirt"))
{
/*
* Print a skirt...
*/
/* TODO: Add skirt settings (Issue #92) */
}
if ((supports = cupsGetOption("print-supports", num_options, options)) == NULL)
if ((supports = getenv("IPP_PRINT_SUPPORTS_DEFAULT")) == NULL)
supports = "none";
if (strcmp(supports, "none"))
{
/*
* Print supports...
*/
myargv[myargc++] = "-s";
myargv[myargc++] = "supportAngle=60";
myargv[myargc++] = "-s";
myargv[myargc++] = "supportXYDistance=700";
myargv[myargc++] = "-s";
myargv[myargc++] = "supportZDistance=150";
myargv[myargc++] = "-s";
myargv[myargc++] = "supportEverywhere=0";
myargv[myargc++] = "-s";
myargv[myargc++] = "supportLineDistance=3333";
myargv[myargc++] = "-s";
myargv[myargc++] = "supportType=0";
}
myargv[myargc++] = "-l";
myargv[myargc++] = (char *)filename;
myargv[myargc ] = NULL;
fprintf(stderr, "DEBUG: %s", myargv[0]);
for (i = 1; i < myargc; i ++)
fprintf(stderr, " %s", myargv[i]);
fputs("\n", stderr);
if (pipe(mystdout))
{
fprintf(stderr, "ERROR: Unable to create pipe for stdout: %s\n", strerror(errno));
return (1);
}
posix_spawn_file_actions_init(&actions);
posix_spawn_file_actions_addopen(&actions, 0, "/dev/null", O_RDONLY, 0);
if (mystdout[1] < 0)
posix_spawn_file_actions_addopen(&actions, 1, "/dev/null", O_WRONLY, 0);
else
posix_spawn_file_actions_adddup2(&actions, mystdout[1], 1);
if (posix_spawn(&pid, myargv[0], &actions, NULL, (char **)myargv, environ))
{
fprintf(stderr, "ERROR: Unable to start CuraEngine command: %s", strerror(errno));
posix_spawn_file_actions_destroy(&actions);
return (1);
}
fprintf(stderr, "DEBUG: Started CuraEngine command, pid=%d\n", pid);
/*
* Free memory used for command...
*/
posix_spawn_file_actions_destroy(&actions);
/*
* Read from the stdout and stderr pipes until EOF...
*/
close(mystdout[1]);
pollcount = 0;
polldata[pollcount].fd = mystdout[0];
polldata[pollcount].events = POLLIN;
pollcount ++;
polldata[pollcount].fd = device_fd;
polldata[pollcount].events = POLLIN;
pollcount ++;
dataptr = data;
while (poll(polldata, (nfds_t)pollcount, -1))
{
if (polldata[1].revents & POLLIN)
{
/*
* Read status info back (eventually do something with it...)
*/
if (gcode_fill(buf, device_fd, 0))
{
while ((ptr = gcode_gets(buf)) != NULL)
fprintf(stderr, "DEBUG: %s\n", ptr);
}
}
if (polldata[0].revents & POLLIN)
{
/*
* Read G-code...
*/
if ((bytes = read(mystdout[0], dataptr, sizeof(data) - (size_t)(dataptr - data + 1))) > 0)
{
dataptr += bytes;
*dataptr = '\0';
for (end = data; (ptr = strchr(end, '\n')) != NULL; end = ptr)
{
/*
* Send whole lines to the printer...
*/
*ptr++ = '\0';
if ((linenum = gcode_puts(buf, device_fd, end, linenum)) < 0)
{
perror("ERROR: Unable to write print data");
break;
}
}
if (end > data)
{
/*
* Copy remainder to beginning of buffer...
*/
dataptr -= (end - data);
if (dataptr > data)
memmove(data, end, (size_t)(dataptr - data));
}
}
}
}
close(mystdout[0]);
/*
* Wait for child to complete...
*/
# ifdef HAVE_WAITPID
while (waitpid(pid, &status, 0) < 0);
# else
while (wait(&status) < 0);
# endif /* HAVE_WAITPID */
return (status);
#endif /* _WIN32 */
}
|