Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
eca10446
Commit
eca10446
authored
Jun 10, 2014
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools: use tal/grab_file
Signed-off-by:
Rusty Russell
<
rusty@rustcorp.com.au
>
parent
f3eecc2c
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
26 additions
and
38 deletions
+26
-38
tools/Makefile
tools/Makefile
+1
-0
tools/ccanlint/Makefile
tools/ccanlint/Makefile
+1
-0
tools/ccanlint/tests/info_documentation_exists.c
tools/ccanlint/tests/info_documentation_exists.c
+2
-1
tools/ccanlint/tests/tests_coverage.c
tools/ccanlint/tests/tests_coverage.c
+2
-1
tools/ccanlint/tests/tests_pass_valgrind.c
tools/ccanlint/tests/tests_pass_valgrind.c
+2
-1
tools/depends.c
tools/depends.c
+4
-4
tools/doc_extract.c
tools/doc_extract.c
+2
-1
tools/manifest.c
tools/manifest.c
+3
-2
tools/namespacize.c
tools/namespacize.c
+4
-3
tools/read_config_header.c
tools/read_config_header.c
+2
-1
tools/tools.c
tools/tools.c
+3
-23
tools/tools.h
tools/tools.h
+0
-1
No files found.
tools/Makefile
View file @
eca10446
...
...
@@ -10,6 +10,7 @@ DEP_OBJS = ccan/err/err.o \
ccan/str/str.o
\
ccan/take/take.o
\
ccan/tal/tal.o
\
ccan/tal/grab_file/grab_file.o
\
ccan/tal/link/link.o
\
ccan/tal/path/path.o
\
ccan/tal/str/str.o
\
...
...
tools/ccanlint/Makefile
View file @
eca10446
...
...
@@ -23,6 +23,7 @@ CORE_OBJS := \
ccan/strmap/strmap.o
\
ccan/take/take.o
\
ccan/tal/tal.o
\
ccan/tal/grab_file/grab_file.o
\
ccan/tal/link/link.o
\
ccan/tal/path/path.o
\
ccan/tal/str/str.o
\
...
...
tools/ccanlint/tests/info_documentation_exists.c
View file @
eca10446
...
...
@@ -12,6 +12,7 @@
#include <err.h>
#include <ccan/str/str.h>
#include <ccan/noerr/noerr.h>
#include <ccan/tal/grab_file/grab_file.h>
static
void
check_info_documentation_exists
(
struct
manifest
*
m
,
unsigned
int
*
timeleft
,
...
...
@@ -50,7 +51,7 @@ static void create_info_template_doc(struct manifest *m, struct score *score)
err
(
1
,
"Writing to _info.new to insert documentation"
);
}
oldcontents
=
tal_grab_file
(
m
,
m
->
info_file
->
fullname
,
NULL
);
oldcontents
=
grab_file
(
m
,
m
->
info_file
->
fullname
);
if
(
!
oldcontents
)
{
unlink_noerr
(
"_info.new"
);
err
(
1
,
"Reading %s"
,
m
->
info_file
->
fullname
);
...
...
tools/ccanlint/tests/tests_coverage.c
View file @
eca10446
...
...
@@ -2,6 +2,7 @@
#include <tools/tools.h>
#include <ccan/str/str.h>
#include <ccan/tal/path/path.h>
#include <ccan/tal/grab_file/grab_file.h>
#include <ccan/foreach/foreach.h>
#include <sys/types.h>
#include <sys/stat.h>
...
...
@@ -99,7 +100,7 @@ static void analyze_coverage(struct manifest *m, bool full_gcov,
apostrophe
=
strchr
(
filename
,
'\''
);
*
apostrophe
=
'\0'
;
if
(
lines_matter
)
{
file
=
tal_grab_file
(
score
,
filename
,
NULL
);
file
=
grab_file
(
score
,
filename
);
if
(
!
file
)
{
score
->
error
=
tal_fmt
(
score
,
"Reading %s"
,
...
...
tools/ccanlint/tests/tests_pass_valgrind.c
View file @
eca10446
...
...
@@ -3,6 +3,7 @@
#include <ccan/str/str.h>
#include <ccan/take/take.h>
#include <ccan/foreach/foreach.h>
#include <ccan/tal/grab_file/grab_file.h>
#include "tests_pass.h"
#include <sys/types.h>
#include <sys/stat.h>
...
...
@@ -180,7 +181,7 @@ static void do_run_tests_vg(struct manifest *m,
continue
;
}
output
=
tal_grab_file
(
i
,
i
->
valgrind_log
,
NULL
);
output
=
grab_file
(
i
,
i
->
valgrind_log
);
/* No valgrind errors? */
if
(
!
output
||
output
[
0
]
==
'\0'
)
{
err
=
NULL
;
...
...
tools/depends.c
View file @
eca10446
...
...
@@ -2,6 +2,7 @@
#include <ccan/read_write_all/read_write_all.h>
#include <ccan/rbuf/rbuf.h>
#include <ccan/tal/path/path.h>
#include <ccan/tal/grab_file/grab_file.h>
#include <ccan/compiler/compiler.h>
#include <ccan/err/err.h>
#include "tools.h"
...
...
@@ -42,11 +43,10 @@ lines_from_cmd(const void *ctx, const char *format, ...)
char
*
compile_info
(
const
void
*
ctx
,
const
char
*
dir
)
{
char
*
info_c_file
,
*
info
,
*
compiled
,
*
output
;
size_t
len
;
int
fd
;
/* Copy it to a file with proper .c suffix. */
info
=
tal_grab_file
(
ctx
,
tal_fmt
(
ctx
,
"%s/_info"
,
dir
),
&
len
);
info
=
grab_file
(
ctx
,
tal_fmt
(
ctx
,
"%s/_info"
,
dir
)
);
if
(
!
info
)
return
NULL
;
...
...
@@ -54,7 +54,7 @@ char *compile_info(const void *ctx, const char *dir)
fd
=
open
(
info_c_file
,
O_WRONLY
|
O_CREAT
|
O_EXCL
,
0600
);
if
(
fd
<
0
)
return
NULL
;
if
(
!
write_all
(
fd
,
info
,
len
))
if
(
!
write_all
(
fd
,
info
,
tal_count
(
info
)
-
1
))
return
NULL
;
if
(
close
(
fd
)
!=
0
)
...
...
@@ -126,7 +126,7 @@ static char **get_one_safe_deps(const void *ctx,
bool
correct_style
=
false
;
fname
=
path_join
(
ctx
,
dir
,
"_info"
);
raw
=
tal_grab_file
(
fname
,
fname
,
NULL
);
raw
=
grab_file
(
fname
,
fname
);
if
(
!
raw
)
errx
(
1
,
"Could not open %s"
,
fname
);
...
...
tools/doc_extract.c
View file @
eca10446
/* This merely extracts, doesn't do XML or anything. */
#include <ccan/str/str.h>
#include <ccan/err/err.h>
#include <ccan/tal/grab_file/grab_file.h>
#include "tools.h"
#include <string.h>
#include <stdio.h>
...
...
@@ -45,7 +46,7 @@ int main(int argc, char *argv[])
struct
list_head
*
list
;
struct
doc_section
*
d
;
file
=
tal_grab_file
(
NULL
,
argv
[
i
],
NULL
);
file
=
grab_file
(
NULL
,
argv
[
i
]
);
if
(
!
file
)
err
(
1
,
"Reading file %s"
,
argv
[
i
]);
lines
=
tal_strsplit
(
file
,
file
,
"
\n
"
,
STR_EMPTY_OK
);
...
...
tools/manifest.c
View file @
eca10446
...
...
@@ -3,6 +3,7 @@
#include "tools.h"
#include <ccan/str/str.h>
#include <ccan/tal/link/link.h>
#include <ccan/tal/grab_file/grab_file.h>
#include <ccan/tal/path/path.h>
#include <ccan/hash/hash.h>
#include <ccan/htable/htable_type.h>
...
...
@@ -43,10 +44,10 @@ static struct htable_manifest *manifests;
const
char
*
get_ccan_file_contents
(
struct
ccan_file
*
f
)
{
if
(
!
f
->
contents
)
{
f
->
contents
=
tal_grab_file
(
f
,
f
->
fullname
,
&
f
->
contents_size
);
f
->
contents
=
grab_file
(
f
,
f
->
fullname
);
if
(
!
f
->
contents
)
err
(
1
,
"Reading file %s"
,
f
->
fullname
);
f
->
contents_size
=
tal_count
(
f
->
contents
)
-
1
;
}
return
f
->
contents
;
}
...
...
tools/namespacize.c
View file @
eca10446
...
...
@@ -13,6 +13,7 @@
#include "ccan/take/take.h"
#include "ccan/rbuf/rbuf.h"
#include "ccan/tal/path/path.h"
#include "ccan/tal/grab_file/grab_file.h"
#include "ccan/err/err.h"
#include "tools.h"
...
...
@@ -259,7 +260,7 @@ static void analyze_headers(const char *dir, struct replace **repl)
hdr
=
tal_fmt
(
dir
,
"%s.h"
,
path_join
(
NULL
,
dir
,
take
(
path_basename
(
NULL
,
dir
))));
contents
=
tal_grab_file
(
dir
,
hdr
,
NULL
);
contents
=
grab_file
(
dir
,
hdr
);
if
(
!
contents
)
err
(
1
,
"Reading %s"
,
hdr
);
...
...
@@ -334,7 +335,7 @@ static const char *rewrite_file(const char *filename,
int
fd
;
verbose
(
"Rewriting %s
\n
"
,
filename
);
file
=
tal_grab_file
(
filename
,
filename
,
NULL
);
file
=
grab_file
(
filename
,
filename
);
if
(
!
file
)
err
(
1
,
"Reading file %s"
,
filename
);
...
...
@@ -431,7 +432,7 @@ static struct replace *read_replacement_file(const char *depdir)
char
*
replname
=
path_join
(
depdir
,
depdir
,
".namespacize"
);
char
*
file
,
**
line
;
file
=
tal_grab_file
(
replname
,
replname
,
NULL
);
file
=
grab_file
(
replname
,
replname
);
if
(
!
file
)
{
if
(
errno
!=
ENOENT
)
err
(
1
,
"Opening %s"
,
replname
);
...
...
tools/read_config_header.c
View file @
eca10446
#include <ccan/err/err.h>
#include <ccan/str/str.h>
#include <ccan/tal/path/path.h>
#include <ccan/tal/grab_file/grab_file.h>
#include "read_config_header.h"
#include "tools.h"
#include <string.h>
...
...
@@ -94,7 +95,7 @@ char *read_config_header(const char *ccan_dir, bool verbose)
unsigned
int
i
;
char
*
config_header
;
config_header
=
tal_grab_file
(
NULL
,
fname
,
NULL
);
config_header
=
grab_file
(
NULL
,
fname
);
tal_free
(
fname
);
if
(
!
config_header
)
...
...
tools/tools.c
View file @
eca10446
...
...
@@ -6,6 +6,7 @@
#include <ccan/noerr/noerr.h>
#include <ccan/time/time.h>
#include <ccan/tal/path/path.h>
#include <ccan/tal/grab_file/grab_file.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/time.h>
...
...
@@ -218,7 +219,6 @@ char *temp_file(const void *ctx, const char *extension, const char *srcname)
bool
move_file
(
const
char
*
oldname
,
const
char
*
newname
)
{
char
*
contents
;
size_t
size
;
int
fd
;
bool
ret
;
...
...
@@ -233,7 +233,7 @@ bool move_file(const char *oldname, const char *newname)
}
/* Try copy and delete: not atomic! */
contents
=
tal_grab_file
(
NULL
,
oldname
,
&
siz
e
);
contents
=
grab_file
(
NULL
,
oldnam
e
);
if
(
!
contents
)
{
if
(
tools_verbose
)
printf
(
"read failed: %s
\n
"
,
strerror
(
errno
));
...
...
@@ -248,7 +248,7 @@ bool move_file(const char *oldname, const char *newname)
goto
free
;
}
ret
=
write_all
(
fd
,
contents
,
size
);
ret
=
write_all
(
fd
,
contents
,
tal_count
(
contents
)
-
1
);
if
(
close
(
fd
)
!=
0
)
ret
=
false
;
...
...
@@ -272,23 +272,3 @@ void *do_tal_realloc(void *p, size_t size)
tal_resize
((
char
**
)
&
p
,
size
);
return
p
;
}
void
*
tal_grab_file
(
const
void
*
ctx
,
const
char
*
filename
,
size_t
*
size
)
{
struct
rbuf
rbuf
;
char
*
buf
=
tal_arr
(
ctx
,
char
,
0
);
if
(
!
rbuf_open
(
&
rbuf
,
filename
,
buf
,
0
))
return
tal_free
(
buf
);
if
(
!
rbuf_fill_all
(
&
rbuf
,
do_tal_realloc
)
&&
errno
)
rbuf
.
buf
=
tal_free
(
rbuf
.
buf
);
else
{
rbuf
.
buf
[
rbuf
.
len
]
=
'\0'
;
if
(
size
)
*
size
=
rbuf
.
len
;
}
close
(
rbuf
.
fd
);
return
rbuf
.
buf
;
}
tools/tools.h
View file @
eca10446
...
...
@@ -57,7 +57,6 @@ void keep_temp_dir(void);
bool
move_file
(
const
char
*
oldname
,
const
char
*
newname
);
void
*
do_tal_realloc
(
void
*
p
,
size_t
size
);
void
*
tal_grab_file
(
const
void
*
ctx
,
const
char
*
filename
,
size_t
*
size
);
/* Freed on exit: a good parent for auto cleanup. */
tal_t
*
autofree
(
void
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment