FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
circuitpython/unix/input.c at stable · ProGamerCode/circuitpython · GitHub
ProGamerCode
/
circuitpython
Public
forked from
adafruit/circuitpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
circuitpython
/
unix
/
input.c
Copy path
More file actions
More file actions
Latest commit
History
History
History
121 lines (115 loc) · 3.65 KB
Breadcrumbs
circuitpython
/
unix
/
input.c
Copy path
File metadata and controls
121 lines (115 loc) · 3.65 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include
<stdio.h>
#include
<stdlib.h>
#include
<string.h>
#include
<fcntl.h>
#include
"py/mpstate.h"
#include
"py/mphal.h"
#include
"input.h"
#if
MICROPY_USE_READLINE
==
1
#include
"lib/mp-readline/readline.h"
#endif
#if
MICROPY_USE_READLINE
==
0
char
*
prompt
(
char
*
p
) {
// simple read string
static
char
buf
[
256
];
fputs
(
p
,
stdout
);
char
*
s
=
fgets
(
buf
,
sizeof
(
buf
),
stdin
);
if
(!
s
) {
return
NULL
;
}
int
l
=
strlen
(
buf
);
if
(
buf
[
l
-
1
]
==
'\n'
) {
buf
[
l
-
1
]
=
0
;
}
else
{
l
++
;
}
char
*
line
=
malloc
(
l
);
memcpy
(
line
,
buf
,
l
);
return
line
;
}
#endif
void
prompt_read_history
(
void
) {
#if
MICROPY_USE_READLINE_HISTORY
#if
MICROPY_USE_READLINE
==
1
readline_init0
();
// will clear history pointers
char
*
home
=
getenv
(
"HOME"
);
if
(
home
!=
NULL
) {
vstr_t
vstr
;
vstr_init
(
&
vstr
,
50
);
vstr_printf
(
&
vstr
,
"%s/.micropython.history"
,
home
);
int
fd
=
open
(
vstr_null_terminated_str
(
&
vstr
),
O_RDONLY
);
if
(
fd
!=
-1
) {
vstr_reset
(
&
vstr
);
for
(;;) {
char
c
;
int
sz
=
read
(
fd
,
&
c
,
1
);
if
(
sz
<
0
) {
break
;
}
if
(
sz
==
0
||
c
==
'\n'
) {
readline_push_history
(
vstr_null_terminated_str
(
&
vstr
));
if
(
sz
==
0
) {
break
;
}
vstr_reset
(
&
vstr
);
}
else
{
vstr_add_byte
(
&
vstr
,
c
);
}
}
close
(
fd
);
}
vstr_clear
(
&
vstr
);
}
#endif
#endif
}
void
prompt_write_history
(
void
) {
#if
MICROPY_USE_READLINE_HISTORY
#if
MICROPY_USE_READLINE
==
1
char
*
home
=
getenv
(
"HOME"
);
if
(
home
!=
NULL
) {
vstr_t
vstr
;
vstr_init
(
&
vstr
,
50
);
vstr_printf
(
&
vstr
,
"%s/.micropython.history"
,
home
);
int
fd
=
open
(
vstr_null_terminated_str
(
&
vstr
),
O_CREAT
|
O_TRUNC
|
O_WRONLY
,
0644
);
if
(
fd
!=
-1
) {
for
(
int
i
=
MP_ARRAY_SIZE
(
MP_STATE_PORT
(
readline_hist
))
-
1
;
i
>=
0
;
i
--
) {
const
char
*
line
=
MP_STATE_PORT
(
readline_hist
)[
i
];
if
(
line
!=
NULL
) {
int
res
;
res
=
write
(
fd
,
line
,
strlen
(
line
));
res
=
write
(
fd
,
"\n"
,
1
);
(
void
)
res
;
}
}
close
(
fd
);
}
}
#endif
#endif
}
Back
|
FazBrowse Home
|
New Git URL