aboutsummaryrefslogtreecommitdiffstats
path: root/src/emc/tooldata/tooldata.hh
blob: 47a5ac1e3e0fdea5a7daebf2577aae000cb68222 (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
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
/*
** This file is part of a refactor of internal  tool data management
** and incorporates work from removed files:
**     src/emc/ini/initool.hh
**     src/emc/rs274ngc/tool_parse.h
**
** Copyright: 2021
** Author:    Dewey Garrett <dgarrett@panix.com>
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef TOOL_DATA_H
#define TOOL_DATA_H

#include "canon.hh"
#include "emc_nml.hh"

#ifdef CPLUSPLUS
extern"C" {
#endif

typedef enum {
    IDX_OK = 0,
    IDX_NEW,
    IDX_FAIL,
} toolidx_t;

typedef enum {
    DB_NOTUSED=0,  // equivalent to not specifying in inifile
    DB_ACTIVE,
} tooldb_t;

typedef enum {
    SPINDLE_LOAD,
    SPINDLE_UNLOAD,
    TOOL_OFFSET,
} tool_notify_t;
//----------------------------------------------------------
// tooldata_*(): access to internal tool table data:
struct    CANON_TOOL_TABLE tooldata_entry_init(void);
toolidx_t tooldata_put(struct CANON_TOOL_TABLE tdata,int idx);
toolidx_t tooldata_get(CANON_TOOL_TABLE* pdata,int idx);

void   tooldata_init(bool random_tool_changer);
void   tooldata_reset(void);
void   tooldata_last_index_set(int idx);
int    tooldata_last_index_get(void);
int    tooldata_find_index_for_tool(int toolno);

// ignore_zero_values:1 for file writes
//                   :0 for use with tooldata_db_notify()
void   tooldata_format_toolline (int idx,
                                 bool ignore_zero_values,
                                 CANON_TOOL_TABLE tdata,
                                 char * ttcomments[],
                                 char formatted_line[CANON_TOOL_ENTRY_LEN]
                                 );

void   tooldata_add_init(int nonrandom_start_idx);
int    tooldata_read_entry(const char *input_line,
                           char *ttcomments[]);

void   tooldata_set_db(tooldb_t mode);

//----------------------------------------------------------
int tooldata_load(const char *filename,
                  char *ttcomments[CANON_POCKETS_MAX]);

int tooldata_save(const char *filename,
                  char *ttcomments[CANON_POCKETS_MAX]);

//----------------------------------------------------------
//mmap specific
int  tool_mmap_creator(EMC_TOOL_STAT const  *ptr,int random_toolchanger);
int  tool_mmap_user(void);
void tool_mmap_close(void);
bool tool_mmap_is_random_toolchanger(void);

//----------------------------------------------------------
//nml specific
int tool_nml_register(CANON_TOOL_TABLE *tblptr);

//----------------------------------------------------------
// database interface

// tool table file for tool in spindle
// (preserved on normal exit for random_toolchanger)
#define DB_SPINDLE_SAVE "./db_spindle.tbl"

int   tooldata_db_init(char db_find_progname[],int random_toolchanger);
int   tooldata_db_notify(tool_notify_t ntype,
                         int toolno,
                         int pocketno,
                         CANON_TOOL_TABLE tdata);
int   tooldata_db_getall(void);
#ifdef CPLUSPLUS
}

#endif
#endif
bues.ch cgit interface