Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LDI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Grant Weddell
LDI
Commits
46aeebe1
Commit
46aeebe1
authored
4 years ago
by
Tony Zhang
Browse files
Options
Downloads
Patches
Plain Diff
Ref Exp
parent
f98f7bc1
No related branches found
No related tags found
1 merge request
!7
Rewrite Parsers for SQLP Query, Schema, and Referring Type Expression
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
SQLPRefExp.y
+20
-15
20 additions, 15 deletions
SQLPRefExp.y
util.c
+38
-3
38 additions, 3 deletions
util.c
util.h
+8
-2
8 additions, 2 deletions
util.h
with
66 additions
and
20 deletions
SQLPRefExp.y
+
20
−
15
View file @
46aeebe1
...
@@ -21,63 +21,68 @@
...
@@ -21,63 +21,68 @@
SQLPRefExp
SQLPRefExp
: RefExpTypeComponentList
: RefExpTypeComponentList
{
{
$$ =
$1
;
$$ =
create_cons_cell_w_atom("SQLP_REF_EXP", create_list("REF_EXP_TYPE_COMPONENT", $1))
;
};
};
RefExpTypeComponentList
RefExpTypeComponentList
: RefExpTypeComponent
List
';' RefExpTypeComponent
: RefExpTypeComponent ';' RefExpTypeComponent
List
{
{
$$ = NULL;
cdr($1) = $3;
$$ = $1;
}
}
| RefExpTypeComponent
| RefExpTypeComponent
{
{
$$ =
NULL
;
$$ =
$1
;
};
};
RefExpTypeComponent
RefExpTypeComponent
: Guard REF AttributePath
: Guard REF AttributePath
{
{
$$ = NULL;
cdr($1) = $3;
$$ = create_cons_cell_w_atom("REF_EXP_TYPE_COMPONENT", $1);
}
}
| Guard REF '(' AttributePathList ')'
| Guard REF '(' AttributePathList ')'
{
{
$$ = NULL;
cdr($1) = $4;
$$ = create_cons_cell_w_atom("REF_EXP_TYPE_COMPONENT", $1);
};
};
Guard
Guard
: TableIdentifier
: TableIdentifier
{
{
$$ =
NULL
;
$$ =
create_cons_cell_w_atom("GUARD", $1)
;
};
};
AttributePathList
AttributePathList
: AttributePath
List
',' AttributePath
: AttributePath ',' AttributePath
List
{
{
$$ = NULL;
cdr($1) = $3;
$$ = $1;
}
}
| AttributePath
| AttributePath
{
{
$$ =
NULL
;
$$ =
create_list("ATTRIBUTE", $1)
;
};
};
AttributePath
AttributePath
: Attribute
Path
'.' Attribute
Identifier
: Attribute
Identifier
'.' Attribute
Path
{
{
$$ = NULL;
cdr($1) = $3;
$$ = $1;
}
}
| AttributeIdentifier
| AttributeIdentifier
{
{
$$ =
NULL
;
$$ =
$1
;
};
};
AttributeIdentifier
AttributeIdentifier
: IDENTIFIER
: IDENTIFIER
{
{
$$ =
NULL
;
$$ =
create_identifier("ATTRIBUTE\0", $1)
;
}
}
TableIdentifier
TableIdentifier
: IDENTIFIER
: IDENTIFIER
{
{
$$ =
NULL
;
$$ =
create_identifier("TABLE\0", $1)
;
};
};
This diff is collapsed.
Click to expand it.
util.c
+
38
−
3
View file @
46aeebe1
...
@@ -11,7 +11,7 @@ cons_cell* create_cons_cell(void* car, cons_cell* cdr) {
...
@@ -11,7 +11,7 @@ cons_cell* create_cons_cell(void* car, cons_cell* cdr) {
atom
*
create_atom
(
char
*
val
)
{
atom
*
create_atom
(
char
*
val
)
{
printf
(
"create_atom: %s
\n
"
,
val
);
//
printf("create_atom: %s\n", val);
atom
*
new_atom
=
malloc
(
sizeof
(
atom
));
atom
*
new_atom
=
malloc
(
sizeof
(
atom
));
new_atom
->
val
=
malloc
(
sizeof
(
char
)
*
(
strlen
(
val
)
+
1
));
new_atom
->
val
=
malloc
(
sizeof
(
char
)
*
(
strlen
(
val
)
+
1
));
strcpy
(
new_atom
->
val
,
val
);
strcpy
(
new_atom
->
val
,
val
);
...
@@ -28,10 +28,45 @@ cons_cell* create_cons_cell_w_atom(char* val, cons_cell* cdr) {
...
@@ -28,10 +28,45 @@ cons_cell* create_cons_cell_w_atom(char* val, cons_cell* cdr) {
return
new_cons
;
return
new_cons
;
}
}
void
*
car
(
cons_cell
*
cc
)
{
void
*
&
car
(
cons_cell
*
cc
)
{
return
cc
->
car
;
return
cc
->
car
;
}
}
void
*
cdr
(
cons_cell
*
cc
)
{
cons_cell
*
&
cdr
(
cons_cell
*
cc
)
{
return
cc
->
cdr
;
return
cc
->
cdr
;
}
}
cons_cell
*
create_table_identifier
(
char
*
type
,
char
*
identifier
)
{
char
str
[
100
];
strcpy
(
str
,
type
);
strcat
(
str
,
"_IDENTIFIER
\0
"
);
cons_cell
*
cc
=
create_cons_cell_w_atom
(
identifier
,
NULL
);
return
create_cons_cell_w_atom
(
str
,
cc
);
}
cons_cell
*
create_list
(
char
*
type
,
cons_cell
*
list
)
{
char
str
[
100
];
strcpy
(
str
,
type
);
strcat
(
str
,
"_LIST
\0
"
);
return
create_cons_cell
(
str
,
list
);
}
static
void
print_cons_tree_helper
(
cons_cell
*
cc
,
unsigned
int
padding
)
{
if
(
cc
==
NULL
)
{
return
;
}
if
(
cc
->
is_atom
)
{
for
(
unsigned
int
i
=
0
;
i
<
padding
;
++
i
)
{
printf
(
" "
);
}
printf
(
"%s
\n
"
,
((
atom
*
)
car
(
cc
))
->
val
);
print_cons_tree_helper
(
cdr
(
cc
),
padding
);
}
else
{
print_cons_tree_helper
(
car
(
cc
),
padding
+
2
);
print_cons_tree_helper
(
cdr
(
cc
),
padding
);
}
}
void
print_cons_tree
(
cons_cell
*
cc
)
{
print_cons_tree_helper
(
cc
,
0
);
}
This diff is collapsed.
Click to expand it.
util.h
+
8
−
2
View file @
46aeebe1
...
@@ -29,8 +29,14 @@ atom* create_atom(char* val);
...
@@ -29,8 +29,14 @@ atom* create_atom(char* val);
// Creates a cons_cell that has an atom as its car
// Creates a cons_cell that has an atom as its car
cons_cell
*
create_cons_cell_w_atom
(
char
*
val
,
cons_cell
*
cdr
);
cons_cell
*
create_cons_cell_w_atom
(
char
*
val
,
cons_cell
*
cdr
);
void
*
car
(
cons_cell
*
cc
);
void
*
&
car
(
cons_cell
*
cc
);
void
*
cdr
(
cons_cell
*
cc
);
cons_cell
*&
cdr
(
cons_cell
*
cc
);
cons_cell
*
create_identifier
(
char
*
type
,
char
*
identifier
);
cons_cell
*
create_list
(
char
*
type
,
cons_cell
*
list
);
void
print_cons_tree
(
cons_cell
*
cc
);
#endif
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment