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
90125706
Commit
90125706
authored
Jul 28, 2008
by
dinesh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
using string.h
parent
e2da7d35
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
50 deletions
+4
-50
tools/_infotojson/infotojson.c
tools/_infotojson/infotojson.c
+3
-50
tools/_infotojson/infotojson.h
tools/_infotojson/infotojson.h
+1
-0
No files found.
tools/_infotojson/infotojson.c
View file @
90125706
/* This extract info from _info.c and create json file and also optionally store to db */
#include "infotojson.h"
/* Is A == B ? */
#define streq(a,b) (strcmp((a),(b)) == 0)
/* Does A start with B ? */
#define strstarts(a,b) (strncmp((a),(b),strlen(b)) == 0)
/* This version adds one byte (for nul term) */
static
void
*
grab_file
(
void
*
ctx
,
const
char
*
filename
)
{
...
...
@@ -37,47 +31,6 @@ static void *grab_file(void *ctx, const char *filename)
return
buffer
;
}
/* This is a dumb one which copies. We could mangle instead. */
static
char
**
split
(
const
char
*
text
)
{
char
**
lines
=
NULL
;
unsigned
int
max
=
64
,
num
=
0
;
lines
=
talloc_array
(
text
,
char
*
,
max
+
1
);
while
(
*
text
!=
'\0'
)
{
unsigned
int
len
=
strcspn
(
text
,
"
\n
"
);
lines
[
num
]
=
talloc_array
(
lines
,
char
,
len
+
1
);
memcpy
(
lines
[
num
],
text
,
len
);
lines
[
num
][
len
]
=
'\0'
;
text
+=
len
+
1
;
if
(
++
num
==
max
)
lines
=
talloc_realloc
(
text
,
lines
,
char
*
,
max
*=
2
+
1
);
}
lines
[
num
]
=
NULL
;
return
lines
;
}
/*combin desc into an array to write to db*/
static
char
*
combinedesc
(
char
**
desc
)
{
unsigned
int
i
=
0
,
size
=
0
;;
char
*
combine
;
for
(
i
=
0
;
desc
[
i
];
i
++
)
size
+=
strlen
(
desc
[
i
]);
combine
=
(
char
*
)
palloc
((
size
+
i
)
*
sizeof
(
char
));
strcpy
(
combine
,
desc
[
0
]);
for
(
i
=
1
;
desc
[
i
];
i
++
)
{
strcat
(
combine
,
"
\n
"
);
strcat
(
combine
,
desc
[
i
]);
}
strreplace
(
combine
,
'\''
,
' '
);
return
combine
;
}
/*creating json structure for storing to file/db*/
struct
json
*
createjson
(
char
**
infofile
,
char
*
author
)
{
...
...
@@ -168,10 +121,10 @@ int storejsontodb(struct json *jsonobj, char *db)
q
=
db_query
(
handle
,
query
);
if
(
!
q
->
num_rows
)
cmd
=
aprintf
(
"INSERT INTO search VALUES(
\"
%s
\"
,
\"
%s
\"
,
\"
%s
\"
,'%s
\'
);"
,
jsonobj
->
module
,
jsonobj
->
author
,
jsonobj
->
title
,
combinedesc
(
jsonobj
->
desc
));
jsonobj
->
module
,
jsonobj
->
author
,
jsonobj
->
title
,
strjoin
(
NULL
,
jsonobj
->
desc
,
"
\n
"
));
else
cmd
=
aprintf
(
"UPDATE search set author=
\"
%s
\"
, title=
\"
%s
\"
, desc='%s
\'
where module=
\"
%s
\"
;"
,
jsonobj
->
author
,
jsonobj
->
title
,
combinedesc
(
jsonobj
->
desc
),
jsonobj
->
module
);
jsonobj
->
author
,
jsonobj
->
title
,
strjoin
(
NULL
,
jsonobj
->
desc
,
"
\n
"
),
jsonobj
->
module
);
db_command
(
handle
,
cmd
);
db_close
(
handle
);
...
...
@@ -195,7 +148,7 @@ int main(int argc, char *argv[])
if
(
!
file
)
err
(
1
,
"Reading file %s"
,
argv
[
1
]);
lines
=
s
plit
(
file
);
lines
=
s
trsplit
(
NULL
,
file
,
"
\n
"
,
NULL
);
//extract info from lines
infofile
=
extractinfo
(
lines
);
...
...
tools/_infotojson/infotojson.h
View file @
90125706
...
...
@@ -13,6 +13,7 @@
#include <sqlite3.h>
#include "database.h"
#include "ccan/talloc/talloc.h"
#include "ccan/string/string.h"
#include "utils.h"
struct
json
...
...
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