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
16b7eb13
Commit
16b7eb13
authored
Aug 04, 2008
by
Rusty Russell
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
0f126c41
e52dc42b
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
62 additions
and
72 deletions
+62
-72
ccan/string/string.c
ccan/string/string.c
+52
-0
ccan/string/string.h
ccan/string/string.h
+4
-0
tools/_infotojson/infotojson.c
tools/_infotojson/infotojson.c
+0
-34
tools/doc_extract.c
tools/doc_extract.c
+0
-29
tools/grab_file.c
tools/grab_file.c
+6
-6
tools/tools.h
tools/tools.h
+0
-3
No files found.
ccan/string/string.c
View file @
16b7eb13
...
...
@@ -6,6 +6,10 @@
#include <stdlib.h>
#include "string.h"
#include "talloc/talloc.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
char
**
strsplit
(
const
void
*
ctx
,
const
char
*
string
,
const
char
*
delims
,
unsigned
int
*
nump
)
...
...
@@ -42,3 +46,51 @@ char *strjoin(const void *ctx, char *strings[], const char *delim)
}
return
ret
;
}
static
int
close_no_errno
(
int
fd
)
{
int
ret
=
0
,
serrno
=
errno
;
if
(
close
(
fd
)
<
0
)
ret
=
errno
;
errno
=
serrno
;
return
ret
;
}
void
*
grab_fd
(
const
void
*
ctx
,
int
fd
)
{
int
ret
;
unsigned
int
max
=
16384
,
size
=
0
;
char
*
buffer
;
buffer
=
talloc_array
(
ctx
,
char
,
max
+
1
);
while
((
ret
=
read
(
fd
,
buffer
+
size
,
max
-
size
))
>
0
)
{
size
+=
ret
;
if
(
size
==
max
)
buffer
=
talloc_realloc
(
ctx
,
buffer
,
char
,
max
*=
2
+
1
);
}
if
(
ret
<
0
)
{
talloc_free
(
buffer
);
buffer
=
NULL
;
}
else
buffer
[
size
]
=
'\0'
;
return
buffer
;
}
void
*
grab_file
(
const
void
*
ctx
,
const
char
*
filename
)
{
int
fd
;
char
*
buffer
;
if
(
streq
(
filename
,
"-"
))
fd
=
dup
(
STDIN_FILENO
);
else
fd
=
open
(
filename
,
O_RDONLY
,
0
);
if
(
fd
<
0
)
return
NULL
;
buffer
=
grab_fd
(
ctx
,
fd
);
close_no_errno
(
fd
);
return
buffer
;
}
ccan/string/string.h
View file @
16b7eb13
...
...
@@ -102,4 +102,8 @@ char **strsplit(const void *ctx, const char *string, const char *delims,
* }
*/
char
*
strjoin
(
const
void
*
ctx
,
char
*
strings
[],
const
char
*
delim
);
void
*
grab_fd
(
const
void
*
ctx
,
int
fd
);
void
*
grab_file
(
const
void
*
ctx
,
const
char
*
filename
);
#endif
/* CCAN_STRING_H */
tools/_infotojson/infotojson.c
View file @
16b7eb13
/* This extract info from _info.c and create json file and also optionally store to db */
#include "infotojson.h"
/* This version adds one byte (for nul term) */
static
void
*
grab_file
(
void
*
ctx
,
const
char
*
filename
)
{
unsigned
int
max
=
16384
,
size
=
0
;
int
ret
,
fd
;
char
*
buffer
;
if
(
streq
(
filename
,
"-"
))
fd
=
dup
(
STDIN_FILENO
);
else
fd
=
open
(
filename
,
O_RDONLY
,
0
);
if
(
fd
<
0
)
return
NULL
;
buffer
=
talloc_array
(
ctx
,
char
,
max
+
1
);
while
((
ret
=
read
(
fd
,
buffer
+
size
,
max
-
size
))
>
0
)
{
size
+=
ret
;
if
(
size
==
max
)
buffer
=
talloc_realloc
(
ctx
,
buffer
,
char
,
max
*=
2
+
1
);
}
if
(
ret
<
0
)
{
talloc_free
(
buffer
);
buffer
=
NULL
;
}
else
buffer
[
size
]
=
'\0'
;
close
(
fd
);
return
buffer
;
}
/*creating json structure for storing to file/db*/
static
struct
json
*
createjson
(
char
**
infofile
,
char
*
author
)
{
...
...
@@ -56,10 +26,6 @@ static struct json *createjson(char **infofile, char *author)
if
(
!
jsonobj
->
module
)
errx
(
1
,
"talloc error"
);
//jsonobj->module = (char *)palloc(sizeof(char) * (modulename - 1));
//strncpy(jsonobj->module, infofile[0], modulename - 1);
//jsonobj->module[modulename - 1] = '\0';
jsonobj
->
title
=
infofile
[
0
];
jsonobj
->
desc
=
&
infofile
[
1
];
...
...
tools/doc_extract.c
View file @
16b7eb13
...
...
@@ -11,35 +11,6 @@
#include "talloc/talloc.h"
#include "string/string.h"
/* This version adds one byte (for nul term) */
static
void
*
grab_file
(
void
*
ctx
,
const
char
*
filename
)
{
unsigned
int
max
=
16384
,
size
=
0
;
int
ret
,
fd
;
char
*
buffer
;
if
(
streq
(
filename
,
"-"
))
fd
=
dup
(
STDIN_FILENO
);
else
fd
=
open
(
filename
,
O_RDONLY
,
0
);
if
(
fd
<
0
)
return
NULL
;
buffer
=
talloc_array
(
ctx
,
char
,
max
+
1
);
while
((
ret
=
read
(
fd
,
buffer
+
size
,
max
-
size
))
>
0
)
{
size
+=
ret
;
if
(
size
==
max
)
buffer
=
talloc_realloc
(
ctx
,
buffer
,
char
,
max
*=
2
+
1
);
}
if
(
ret
<
0
)
{
talloc_free
(
buffer
);
buffer
=
NULL
;
}
else
buffer
[
size
]
=
'\0'
;
close
(
fd
);
return
buffer
;
}
int
main
(
int
argc
,
char
*
argv
[])
{
...
...
tools/grab_file.c
View file @
16b7eb13
...
...
@@ -7,16 +7,16 @@
#include <unistd.h>
#include <errno.h>
static
int
close_no_errno
(
int
fd
)
/*
static int close_no_errno(int fd)
{
int ret = 0, serrno = errno;
if (close(fd) < 0)
ret = errno;
errno = serrno;
return ret;
}
}
*/
void
*
grab_fd
(
const
void
*
ctx
,
int
fd
)
/*
void *grab_fd(const void *ctx, int fd)
{
int ret;
unsigned int max = 16384, size = 0;
...
...
@@ -35,10 +35,10 @@ void *grab_fd(const void *ctx, int fd)
buffer[size] = '\0';
return buffer;
}
}
*/
/* This version adds one byte (for nul term) */
void
*
grab_file
(
const
void
*
ctx
,
const
char
*
filename
)
/*
void *grab_file(const void *ctx, const char *filename)
{
int fd;
char *buffer;
...
...
@@ -54,5 +54,5 @@ void *grab_file(const void *ctx, const char *filename)
buffer = grab_fd(ctx, fd);
close_no_errno(fd);
return buffer;
}
}
*/
tools/tools.h
View file @
16b7eb13
...
...
@@ -5,8 +5,5 @@
char
**
get_deps
(
const
void
*
ctx
,
const
char
*
dir
);
void
*
grab_fd
(
const
void
*
ctx
,
int
fd
);
void
*
grab_file
(
const
void
*
ctx
,
const
char
*
filename
);
#endif
/* CCAN_TOOLS_H */
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