summaryrefslogtreecommitdiff
path: root/src/emc/usr_intf/emcsched.hh
blob: ebe0e8d303ed1f3e8b3a473627a89e9390e1c54b (plain)
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
/********************************************************************
* Description: emcsched.hh
*   Headers for common program scheduling calls
*
*   Derived from a work by Fred Proctor & Will Shackleford
*   Further derived from work by jmkasunich, Alex Joni
*
* Author: Eric H. Johnson
* License: GPL Version 2
* System: Linux
*
* Copyright (c) 2009 All rights reserved.
*
* Last change:
********************************************************************/

#ifndef EMCSCHED_HH
#define EMCSCHED_HH

#include "emc_nml.hh"
#include "nml_oi.hh"            // NML_ERROR_LEN
#include <string>

using namespace std;

typedef enum {
  qsStop, qsRun, qsPause, qsResume, qsError, qsUnknown} queueStatusType;

typedef struct {  
    int priority;
    int tagId;
    float xpos, ypos, zpos;
    int zone;
    char fileName[255];
    float feedOverride;
    float spindleOverride;
    int tool;
    } qRecType;

extern int addProgram(int pri, int tag, float x, float y, float z, int azone, string progName, float feedOvr, float spindleOvr, int toolNum);
extern void updateQueue();
extern int getQueueSize();
extern void clearQueue();
extern int getStatus();
extern void queueStart();
extern void queueStop();
extern void queuePause();
extern int getProgramById(int id, qRecType *qRec);
extern int getProgramByIndex(int idx, qRecType *qRec);
extern int getQueueCRC();
extern int getFirstTagId();
extern int getLastTagId();
extern int deleteProgramById(int id);
extern int deleteProgramByIndex(int idx);
extern int changePriorityById(int id, int newPriority);
extern int changePriorityByIndex(int idx, int newPriority);
extern int getPriorityById(int id, int &pri);
extern int getPriorityByIndex(int idx, int &pri);
extern int getNextTagId();
extern void resetTagIds(int startId);
extern void schedInit();

#endif				/* ifndef SHCOM_HH */