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
43ee471f
Commit
43ee471f
authored
Oct 01, 2014
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed main function for minimal command-line usage (just simple minification operations, for now)
parent
28178a42
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
116 additions
and
87 deletions
+116
-87
main.ml
main.ml
+114
-87
types.ml
types.ml
+2
-0
No files found.
main.ml
View file @
43ee471f
...
@@ -2,63 +2,106 @@ open Lexing
...
@@ -2,63 +2,106 @@ open Lexing
open
Types
open
Types
type
args
=
{
type
args
=
{
mutable
infiles
:
string
list
;
infiles
:
string
list
;
mutable
outfile
:
string
option
;
outfile
:
string
option
;
mutable
verbose
:
bool
;
verbose
:
bool
;
mutable
prune
:
bool
;
whitespace
:
bool
;
mutable
unfold
:
bool
;
color
:
bool
;
mutable
upto
:
int
option
;
font
:
bool
;
shorthands
:
bool
;
duplicates
:
bool
;
echo
:
bool
;
}
}
(* Parse command-line arguments *)
let
parse_args
()
=
let
parse_args
()
=
let
args
=
{
let
usage
=
infiles
=
[]
;
"Usage: "
^
Sys
.
argv
.
(
0
)
^
outfile
=
None
;
" [<options>] [<file> ...]
\n
\
verbose
=
false
;
\n
\
prune
=
true
;
Generic options:
\n
\
unfold
=
true
;
-h, --help Show this help message
\n
\
upto
=
None
;
-v, --verbose Verbose mode: show compression rate
\n
\
}
in
-o <file> Output file (defaults to stdout)
\n
\
<file> ... Input files (default is to read from stdin)
\n
\
\n
\
Optimization flags (if none are specified, all are enabled):
\n
\
-w, --whitespace Eliminate unnecessary whitespaces (has the greatest \
effect, omit for pretty-printing)
\n
\
-c, --color Shorten colors
\n
\
-f, --font Shorten font weights
\n
\
-s, --shorthands Generate shorthand properties
\n
\
-d, --duplicates Prune duplicate properties (WARNING: may affect \
cross-browser hacks)
\n
\
-p, --pretty Shorthand for -c -f -s -d
\n
\
-e, --echo Just parse and pretty-print, no optimizations
\n
"
in
let
args_spec
=
[
let
default_args
=
{
(
"<file> ..."
,
Arg
.
Rest
(
fun
_
->
()
)
,
infiles
=
[]
;
" Input files (default is to read from stdin)"
);
outfile
=
None
;
verbose
=
false
;
(
"-o"
,
Arg
.
String
(
fun
s
->
args
.
outfile
<-
Some
s
)
,
whitespace
=
false
;
"<file> Output file (defaults to stdout)"
);
color
=
false
;
font
=
false
;
(
"-v"
,
Arg
.
Unit
(
fun
_
->
args
.
verbose
<-
true
)
,
shorthands
=
false
;
" Verbose mode: show compression rate"
);
duplicates
=
false
;
echo
=
false
;
(
"-no-prune"
,
Arg
.
Unit
(
fun
_
->
args
.
prune
<-
false
)
,
}
in
" Don't prune duplicate properties (skip step 5 below)"
);
(
"-no-unfold"
,
Arg
.
Unit
(
fun
_
->
args
.
unfold
<-
false
)
,
" Only minify whitespace, colors and shorthands \
(skip steps 2-7 below)"
);
(
"-upto"
,
Arg
.
Int
(
fun
i
->
args
.
upto
<-
Some
i
)
,
"<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
let
usage
=
let
rec
handle
args
=
function
"Usage: "
^
Sys
.
argv
.
(
0
)
^
" [-o <file>] [-v] [-no-prune] [-upto <step>] \
|
(
"-v"
|
"--verbose"
)
::
tl
->
[<file> ...] "
handle
{
args
with
verbose
=
true
}
tl
|
(
"-w"
|
"--whitespace"
)
::
tl
->
handle
{
args
with
whitespace
=
true
}
tl
|
(
"-c"
|
"--color"
)
::
tl
->
handle
{
args
with
color
=
true
}
tl
|
(
"-f"
|
"--font"
)
::
tl
->
handle
{
args
with
font
=
true
}
tl
|
(
"-s"
|
"--shorthands"
)
::
tl
->
handle
{
args
with
shorthands
=
true
}
tl
|
(
"-d"
|
"-duplicates"
)
::
tl
->
handle
{
args
with
duplicates
=
true
}
tl
|
(
"-p"
|
"--pretty"
)
::
tl
->
handle
args
(
"-c"
::
"-f"
::
"-s"
::
"-d"
::
tl
)
|
(
"-e"
|
"--echo"
)
::
tl
->
handle
{
args
with
echo
=
true
}
tl
|
(
"-h"
|
"--help"
)
::
tl
->
prerr_string
usage
;
raise
Exit_success
|
[
"-o"
]
->
raise
(
Failure
(
"missing output file name"
))
|
"-o"
::
next
::
tl
when
next
.
[
0
]
=
'
-
'
->
raise
(
Failure
(
"missing output file name"
))
|
"-o"
::
filename
::
tl
->
handle
{
args
with
outfile
=
Some
filename
}
tl
|
arg
::
tl
when
arg
.
[
0
]
=
'
-
'
->
prerr_string
usage
;
raise
(
Failure
(
"unknown option "
^
arg
))
|
filename
::
tl
->
handle
{
args
with
infiles
=
args
.
infiles
@
[
filename
]}
tl
|
[]
->
args
in
in
Arg
.
parse
args_spec
(
fun
f
->
args
.
infiles
<-
args
.
infiles
@
[
f
])
usage
;
match
handle
default_args
(
List
.
tl
(
Array
.
to_list
Sys
.
argv
))
with
args
|
{
whitespace
=
false
;
color
=
false
;
font
=
false
;
shorthands
=
false
;
duplicates
=
false
;
echo
=
false
;
_
}
as
args
->
{
args
with
whitespace
=
true
;
color
=
true
;
font
=
true
;
shorthands
=
true
;
duplicates
=
true
}
|
args
->
args
let
parse_files
=
function
let
parse_files
=
function
|
[]
->
|
[]
->
...
@@ -76,21 +119,6 @@ let parse_files = function
...
@@ -76,21 +119,6 @@ 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
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
|
None
->
print_endline
|
None
->
print_endline
...
@@ -98,31 +126,28 @@ let handle_args args =
...
@@ -98,31 +126,28 @@ 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
let
upto
=
match
args
.
upto
with
Some
i
->
i
|
None
->
0
in
let
switch
flag
fn
=
if
flag
then
fn
else
fun
x
->
x
in
let
input
,
stylesheet
=
parse_files
args
.
infiles
in
let
input
,
css
=
parse_files
args
.
infiles
in
let
css
=
css
let
rec
do_steps
i
stylesheet
=
function
|>
(
switch
args
.
color
Color
.
compress
)
|
_
when
i
=
upto
->
(*|> (switch args.font Font.compress)*)
write_output
(
Stringify
.
string_of_stylesheet
stylesheet
)
|>
(
switch
args
.
shorthands
Shorthand
.
compress
)
(*|> (switch args.duplicates Duplicates.compress)*)
|
[]
->
let
output
=
Stringify
.
minify_stylesheet
stylesheet
in
write_output
output
;
if
args
.
verbose
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
|
step
::
tl
->
do_steps
(
i
+
1
)
(
step
stylesheet
)
tl
in
in
let
output
=
if
args
.
whitespace
then
Stringify
.
minify_stylesheet
css
else
Stringify
.
string_of_stylesheet
css
in
write_output
output
;
do_steps
1
stylesheet
steps
if
args
.
verbose
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
()
=
...
@@ -137,6 +162,8 @@ let main () =
...
@@ -137,6 +162,8 @@ let main () =
prerr_endline
(
"Error: "
^
msg
^
": "
^
Stringify
.
string_of_box
box
);
prerr_endline
(
"Error: "
^
msg
^
": "
^
Stringify
.
string_of_box
box
);
|
Failure
msg
->
|
Failure
msg
->
prerr_endline
(
"Error: "
^
msg
);
prerr_endline
(
"Error: "
^
msg
);
|
Exit_success
->
exit
0
end
;
end
;
exit
1
exit
1
...
...
types.ml
View file @
43ee471f
...
@@ -86,3 +86,5 @@ exception Syntax_error of string
...
@@ -86,3 +86,5 @@ exception Syntax_error of string
exception
Loc_error
of
loc
*
string
exception
Loc_error
of
loc
*
string
exception
Box_error
of
box
*
string
exception
Box_error
of
box
*
string
exception
Exit_success
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