Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
5739314c
Commit
5739314c
authored
May 23, 2017
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a tiny JSON parser for private use by libvarnishapi.
parent
cbda52ae
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
623 additions
and
0 deletions
+623
-0
Makefile.am
lib/libvarnishapi/Makefile.am
+2
-0
flint.lnt
lib/libvarnishapi/flint.lnt
+2
-0
vjsn.c
lib/libvarnishapi/vjsn.c
+561
-0
vjsn.h
lib/libvarnishapi/vjsn.h
+58
-0
No files found.
lib/libvarnishapi/Makefile.am
View file @
5739314c
...
...
@@ -12,6 +12,8 @@ lib_LTLIBRARIES = libvarnishapi.la
libvarnishapi_la_LDFLAGS
=
$(AM_LDFLAGS)
-version-info
1:6:0
libvarnishapi_la_SOURCES
=
\
vjsn.c
\
vjsn.h
\
vsm_api.h
\
vsl_api.h
\
vxp.h
\
...
...
lib/libvarnishapi/flint.lnt
View file @
5739314c
+fan
-esym(759, VJSN_*) // could be moved hdr->mod
-esym(765, VJSN_*) // could be made static
-esym(788, vex_rhs_e::*)
-esym(788, VSL_transaction_e::*)
-esym(769, vex_rhs_e::VEX__UNSET)
...
...
lib/libvarnishapi/vjsn.c
0 → 100644
View file @
5739314c
This diff is collapsed.
Click to expand it.
lib/libvarnishapi/vjsn.h
0 → 100644
View file @
5739314c
/*-
* Copyright (c) 2017 Varnish Software AS
* All rights reserved.
*
* Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
extern
const
char
VJSN_OBJECT
[];
extern
const
char
VJSN_ARRAY
[];
extern
const
char
VJSN_NUMBER
[];
extern
const
char
VJSN_STRING
[];
extern
const
char
VJSN_TRUE
[];
extern
const
char
VJSN_FALSE
[];
extern
const
char
VJSN_NULL
[];
struct
vjsn_val
{
unsigned
magic
;
#define VJSN_VAL_MAGIC 0x08a06b80
const
char
*
type
;
const
char
*
name
;
VTAILQ_ENTRY
(
vjsn_val
)
list
;
VTAILQ_HEAD
(,
vjsn_val
)
children
;
char
*
value
;
};
struct
vjsn
{
unsigned
magic
;
#define VJSN_MAGIC 0x86a7f02b
char
*
raw
;
char
*
ptr
;
struct
vjsn_val
*
value
;
const
char
*
err
;
};
struct
vjsn
*
vjsn_parse
(
const
char
*
,
const
char
**
);
void
vjsn_dump
(
const
struct
vjsn
*
js
,
FILE
*
fo
);
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