Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mincss
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
Taddeüs Kroes
mincss
Commits
64d75979
Commit
64d75979
authored
Jul 31, 2014
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed command-line usage
parent
5fcf5957
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
92 additions
and
71 deletions
+92
-71
main.ml
main.ml
+74
-51
util.ml
util.ml
+18
-20
No files found.
main.ml
View file @
64d75979
...
@@ -4,10 +4,10 @@ open Types
...
@@ -4,10 +4,10 @@ open Types
type
args
=
{
type
args
=
{
mutable
infiles
:
string
list
;
mutable
infiles
:
string
list
;
mutable
outfile
:
string
option
;
mutable
outfile
:
string
option
;
mutable
verbose
:
int
;
mutable
verbose
:
bool
;
mutable
echo
:
bool
;
mutable
prune
:
bool
;
mutable
pretty
:
bool
;
mutable
unfold
:
bool
;
mutable
unfold
:
bool
;
mutable
upto
:
int
option
;
}
}
(* Parse command-line arguments *)
(* Parse command-line arguments *)
...
@@ -15,35 +15,46 @@ let parse_args () =
...
@@ -15,35 +15,46 @@ let parse_args () =
let
args
=
{
let
args
=
{
infiles
=
[]
;
infiles
=
[]
;
outfile
=
None
;
outfile
=
None
;
verbose
=
1
;
verbose
=
false
;
echo
=
fals
e
;
prune
=
tru
e
;
pretty
=
fals
e
;
unfold
=
tru
e
;
u
nfold
=
fals
e
;
u
pto
=
Non
e
;
}
in
}
in
let
args_spec
=
[
let
args_spec
=
[
(
"<file> ..."
,
Arg
.
Rest
(
fun
_
->
()
)
,
(
"<file> ..."
,
Arg
.
Rest
(
fun
_
->
()
)
,
"
Optional i
nput files (default is to read from stdin)"
);
"
I
nput files (default is to read from stdin)"
);
(
"-o"
,
Arg
.
String
(
fun
s
->
args
.
outfile
<-
Some
s
)
,
(
"-o"
,
Arg
.
String
(
fun
s
->
args
.
outfile
<-
Some
s
)
,
"<file> Output file (defaults to stdout)"
);
"<file> Output file (defaults to stdout)"
);
(
"-v"
,
Arg
.
Int
(
fun
i
->
args
.
verbose
<-
i
)
,
(
"-v"
,
Arg
.
Unit
(
fun
_
->
args
.
verbose
<-
true
)
,
"<num> Set verbosity (0: nothing, 1: errors (default), \
" Verbose mode: show compression rate"
);
2: compression rate, 3: debug)"
);
(
"-no-prune"
,
Arg
.
Unit
(
fun
_
->
args
.
prune
<-
false
)
,
(
"--echo"
,
Arg
.
Unit
(
fun
_
->
args
.
echo
<-
true
)
,
" Don't prune duplicate properties (skip step 5 below)"
);
" Don't minify, just pretty-print the parsed CSS"
);
(
"-no-unfold"
,
Arg
.
Unit
(
fun
_
->
args
.
unfold
<-
false
)
,
(
"--pretty"
,
Arg
.
Unit
(
fun
_
->
args
.
pretty
<-
true
)
,
" Only minify whitespace, colors and shorthands \
" Minify, but pretty-print the parsed CSS (for debugging)"
);
(skip steps 2-7 below)"
);
(
"--unfold"
,
Arg
.
Unit
(
fun
_
->
args
.
unfold
<-
true
)
,
(
"-upto"
,
Arg
.
Int
(
fun
i
->
args
.
upto
<-
Some
i
)
,
" Only unfold shorthands (for debugging)"
);
"<step> Stop after the specified step (for debugging): \
\n
\
1: parse
\n
\
2: unfold shorthands
\n
\
3: unfold selectors
\n
\
4: unfold blocks
\n
\
5: prune duplicates
\n
\
6: combine selectors
\n
\
7: concatenate blocks
\n
\
8: optimize blocks
\n
\
9: minify"
);
]
in
]
in
let
usage
=
let
usage
=
"Usage: "
^
Sys
.
argv
.
(
0
)
^
" [-o <file>] [-v
<verbosity>] [<file> ...] "
^
"Usage: "
^
Sys
.
argv
.
(
0
)
^
" [-o <file>] [-v
] [-no-prune] [-upto <step>] \
"[--pretty | --echo]
"
[<file> ...]
"
in
in
Arg
.
parse
args_spec
(
fun
f
->
args
.
infiles
<-
args
.
infiles
@
[
f
])
usage
;
Arg
.
parse
args_spec
(
fun
f
->
args
.
infiles
<-
args
.
infiles
@
[
f
])
usage
;
...
@@ -65,7 +76,20 @@ let parse_files = function
...
@@ -65,7 +76,20 @@ let parse_files = function
(
String
.
concat
""
inputs
,
List
.
concat
stylesheets
)
(
String
.
concat
""
inputs
,
List
.
concat
stylesheets
)
let
handle_args
args
=
let
handle_args
args
=
let
input
,
stylesheet
=
parse_files
args
.
infiles
in
let
steps
=
(*let switch flag fn = if flag then fn else fun s -> s in*)
[
(*
switch args.unfold Unfold.unfold_shorthands;
switch args.unfold Unfold.unfold_selectors;
switch args.unfold Unfold.unfold_blocks;
switch (args.unfold && args.prune) Unfold.prune_duplicates;
switch args.unfold Combine.combine_selectors;
switch args.unfold Concat.concat_blocks;
Optimize.optimize_blocks;
*)
]
in
let
write_output
=
let
write_output
=
match
args
.
outfile
with
match
args
.
outfile
with
...
@@ -74,42 +98,41 @@ let handle_args args =
...
@@ -74,42 +98,41 @@ let handle_args args =
fun
css
->
let
f
=
open_out
name
in
output_string
f
css
;
close_out
f
fun
css
->
let
f
=
open_out
name
in
output_string
f
css
;
close_out
f
in
in
match
args
with
let
upto
=
match
args
.
upto
with
Some
i
->
i
|
None
->
0
in
|
{
echo
=
true
}
->
write_output
(
Stringify
.
string_of_stylesheet
stylesheet
)
let
input
,
stylesheet
=
parse_files
args
.
infiles
in
|
{
unfold
=
true
}
->
let
stylesheet
=
Shorthand
.
unfold_stylesheet
stylesheet
in
let
rec
do_steps
i
stylesheet
=
function
write_output
(
Stringify
.
string_of_stylesheet
stylesheet
)
|
_
when
i
=
upto
->
|
_
->
write_output
(
Stringify
.
string_of_stylesheet
stylesheet
)
let
stylesheet
=
Color
.
compress
stylesheet
in
let
stylesheet
=
Shorthand
.
compress
stylesheet
in
|
[]
->
let
output
=
Stringify
.
minify_stylesheet
stylesheet
in
let
stringify
=
write_output
output
;
if
args
.
pretty
then
Stringify
.
string_of_stylesheet
if
args
.
verbose
then
begin
else
Stringify
.
minify_stylesheet
let
il
=
String
.
length
input
in
in
let
ol
=
String
.
length
output
in
let
output
=
stringify
stylesheet
in
Printf
.
fprintf
stderr
"compression: %d -> %d bytes (%d%% of original)
\n
"
il
ol
(
int_of_float
(
float_of_int
ol
/.
float_of_int
il
*.
100
.
))
end
|
step
::
tl
->
do_steps
(
i
+
1
)
(
step
stylesheet
)
tl
in
write_output
output
;
do_steps
1
stylesheet
steps
if
args
.
verbose
>=
2
then
begin
let
il
=
String
.
length
input
in
let
ol
=
String
.
length
output
in
Printf
.
fprintf
stderr
"compression: %d -> %d bytes (%d%% of original)
\n
"
il
ol
(
int_of_float
(
float_of_int
ol
/.
float_of_int
il
*.
100
.
))
end
(* Main function, returns exit status *)
(* Main function, returns exit status *)
let
main
()
=
let
main
()
=
let
args
=
parse_args
()
in
begin
begin
try
try
handle_args
args
;
handle_args
(
parse_args
()
)
;
exit
0
exit
0
with
with
|
Loc_error
(
loc
,
msg
)
->
|
Loc_error
(
loc
,
msg
)
->
Util
.
prerr_loc_msg
(
args
.
verbose
>=
1
)
loc
(
"Error: "
^
msg
);
Util
.
prerr_loc_msg
loc
(
"Error: "
^
msg
);
|
Box_error
(
box
,
msg
)
->
|
Box_error
(
box
,
msg
)
->
prerr_endline
(
"Error: "
^
msg
^
": "
^
Stringify
.
string_of_box
box
);
prerr_endline
(
"Error: "
^
msg
^
": "
^
Stringify
.
string_of_box
box
);
|
Failure
msg
->
|
Failure
msg
->
...
...
util.ml
View file @
64d75979
...
@@ -78,26 +78,24 @@ let prerr_loc (fname, ystart, yend, xstart, xend) =
...
@@ -78,26 +78,24 @@ let prerr_loc (fname, ystart, yend, xstart, xend) =
end
end
done
done
let
prerr_loc_msg
verbose
loc
msg
=
let
prerr_loc_msg
loc
msg
=
if
verbose
then
begin
let
(
fname
,
ystart
,
yend
,
xstart
,
xend
)
=
loc
in
let
(
fname
,
ystart
,
yend
,
xstart
,
xend
)
=
loc
in
if
loc
!=
noloc
then
begin
if
loc
!=
noloc
then
begin
let
line_s
=
if
yend
!=
ystart
let
line_s
=
if
yend
!=
ystart
then
sprintf
"lines %d-%d"
ystart
yend
then
sprintf
"lines %d-%d"
ystart
yend
else
sprintf
"line %d"
ystart
else
sprintf
"line %d"
ystart
in
in
let
char_s
=
if
xend
!=
xstart
||
yend
!=
ystart
let
char_s
=
if
xend
!=
xstart
||
yend
!=
ystart
then
sprintf
"characters %d-%d"
xstart
xend
then
sprintf
"characters %d-%d"
xstart
xend
else
sprintf
"character %d"
xstart
else
sprintf
"character %d"
xstart
in
in
eprintf
"File
\"
%s
\"
, %s, %s:
\n
"
fname
line_s
char_s
;
eprintf
"File
\"
%s
\"
, %s, %s:
\n
"
fname
line_s
char_s
;
end
;
end
;
eprintf
"%s
\n
"
msg
;
eprintf
"%s
\n
"
msg
;
if
loc
!=
noloc
then
if
verbose
&&
loc
!=
noloc
then
try
prerr_loc
loc
try
prerr_loc
loc
with
Sys_error
_
->
()
with
Sys_error
_
->
()
end
(** AST traversal *)
(** AST traversal *)
...
...
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