-
Notifications
You must be signed in to change notification settings - Fork 0
/
chamadasPython.cpp
133 lines (102 loc) · 3.66 KB
/
chamadasPython.cpp
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
#include <Python.h>
#include <iostream>
#include "chamadasPython.h"
void setupApiPython() {
Py_Initialize();
atexit(*Py_Finalize);
}
string queryDadosTemperatura() {
PyObject *pName, *pModule, *pFunc, *pArgs, *pValue;
// Objeto que representa o arquivo .py
char filename[] = "conexaoFirebase";
pName = PyUnicode_FromString(filename);
PyErr_Print();
// Objeto que representa o modulo em Python
pModule = PyImport_Import(pName);
PyErr_Print();
// Objeto que representa a funcao chamada "getDadosColuna" do arquivo .py
char nomeFuncao[] = "getDadosTemp";
pFunc = PyObject_GetAttrString(pModule, nomeFuncao);
PyErr_Print();
// Objeto que representa um argumento chamado pArgs com o valor "temp"
// "temp" eh uma coluna da nossa base
pArgs = PyTuple_Pack(1, PyUnicode_FromString((char*)"temp"));
PyErr_Print();
// Chama a funcao pFunc com os argumentos pArgs e retorna objeto pValue
pValue = PyObject_CallObject(pFunc, pArgs);
PyErr_Print();
// Transforma em string do C++
auto result = _PyUnicode_AsString(pValue);
PyErr_Print();
return result;
}
string queryDadosPorta() {
PyObject *pName, *pModule, *pFunc, *pArgs, *pValue;
// Objeto que representa o arquivo .py
char filename[] = "conexaoFirebase";
pName = PyUnicode_FromString(filename);
PyErr_Print();
// Objeto que representa o modulo em Python
pModule = PyImport_Import(pName);
PyErr_Print();
// Objeto que representa a funcao chamada "getDadosColuna" do arquivo .py
char nomeFuncao[] = "getDadosPorta";
pFunc = PyObject_GetAttrString(pModule, nomeFuncao);
PyErr_Print();
// Objeto que representa um argumento chamado pArgs com o valor "teste"
// "teste" eh uma coluna da nossa base
pArgs = PyTuple_Pack(1, PyUnicode_FromString((char*) "teste"));
PyErr_Print();
// Chama a funcao pFunc com os argumentos pArgs e retorna objeto pValue
pValue = PyObject_CallObject(pFunc, pArgs);
PyErr_Print();
// Transforma em string do C++
auto result = _PyUnicode_AsString(pValue);
PyErr_Print();
return result;
}
int insertDadosPorta(string dadoNovo) {
PyObject *pName, *pModule, *pFunc, *pArgs;
PyErr_Print();
// Objeto que representa o arquivo .py
char filename[] = "conexaoFirebase";
pName = PyUnicode_FromString(filename);
PyErr_Print();
// Objeto que representa o modulo em Python
pModule = PyImport_Import(pName);
PyErr_Print();
// Objeto que representa a funcao chamada "getDadosColuna" do arquivo .py
char nomeFuncao[] = "insertDadosPorta";
pFunc = PyObject_GetAttrString(pModule, nomeFuncao);
PyErr_Print();
// Objeto que representa um argumento chamado pArgs com o valor "teste"
// "teste" eh uma coluna da nossa base
pArgs = PyTuple_Pack(1, PyUnicode_FromString((char*) dadoNovo.c_str()));
PyErr_Print();
// Chama a funcao pFunc com os argumentos pArgs e retorna objeto pValue
PyObject_CallObject(pFunc, pArgs);
PyErr_Print();
return 0;
}
int insertDadosTemperatura(string dadoNovo) {
PyObject *pName, *pModule, *pFunc, *pArgs;
// Objeto que representa o arquivo .py
char filename[] = "conexaoFirebase";
pName = PyUnicode_FromString(filename);
PyErr_Print();
// Objeto que representa o modulo em Python
pModule = PyImport_Import(pName);
PyErr_Print();
// Objeto que representa a funcao chamada "getDadosColuna" do arquivo .py
char nomeFuncao[] = "insertDadosTemperatura";
pFunc = PyObject_GetAttrString(pModule, nomeFuncao);
PyErr_Print();
// Objeto que representa um argumento chamado pArgs com o valor "temp"
// "temp" eh uma coluna da nossa base
pArgs = PyTuple_Pack(1, PyUnicode_FromString((char*) dadoNovo.c_str()));
PyErr_Print();
// Chama a funcao pFunc com os argumentos pArgs e retorna objeto pValue
PyObject_CallObject(pFunc, pArgs);
PyErr_Print();
return 0;
}