1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
/* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (c) 2013-2018, University of Amsterdam
VU University Amsterdam
CWI, Amsterdam
All rights reserved.
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 COPYRIGHT HOLDERS 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 THE
COPYRIGHT OWNER 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.
*/
:- module(atom,
[ restyle_identifier/3, % +Style, +In, +Out
identifier_parts/2, % +Identifier, -Parts
join_identifier_parts/3 % +Style, +Parts, -Identifier
]).
:- use_module(library(apply)).
/** <module> Operations on atoms
This library provides operations on atoms that are not covered by
builtin predicates. The current implementation is just a start, making
code developed in _xpce_ and duplicated in various projects reusable.
*/
/*******************************
* RESTYLE IDENTIFIERS *
*******************************/
%! restyle_identifier(+Style, +In, -Out) is det.
%
% Restyle an identifier by extracting the alnum substrings and
% joining them together according to Style.
%
% @arg Style is one of `'OneTwo'`, `oneTwo`, `one_two`, `'One_Two'` or
% a term style(CapitaliseFirst, CapitaliseRest, Separator).
% @see join_identifier_parts/3.
restyle_identifier(Style, In, Out) :-
identifier_parts(In, Parts),
join_identifier_parts(Style, Parts, Out).
%! identifier_parts(+Identifier, -Parts) is det.
%
% Parts is a list of atoms that make up Identifier. The parts
% found are turned into lowercase, unless all its characters are
% uppercase. E.g.,
%
% ?- identifier_parts('sourceCodeURI', X).
% X = [source, code, 'URI'].
identifier_parts(';', [';']) :- !.
identifier_parts('|', ['|']) :- !.
identifier_parts('!', ['!']) :- !.
identifier_parts(',', [',']) :- !.
identifier_parts(Name, Parts) :-
atom_codes(Name, Codes),
( phrase(identifier_parts(Parts), Codes)
-> true
; maplist(is_symbol_code, Codes)
-> Parts = [Name]
).
is_symbol_code(Code) :-
code_type(Code, prolog_symbol).
identifier_parts([H|T]) -->
identifier_part(H),
!,
identifier_parts(T).
identifier_parts([]) --> [].
identifier_part(H) -->
string(Codes, Tail),
sep(Tail),
!,
{ Codes = [_|_],
atom_codes(H0, Codes),
( maplist(is_upper, Codes)
-> H = H0
; downcase_atom(H0, H)
)
}.
string(T,T) --> [].
string([H|T], L) --> [H], string(T, L).
sep([]) --> sep_char, !, sep_chars.
sep([T]), [N] -->
[T,N],
{ code_type(T, lower),
code_type(N, upper)
}.
sep([],[],[]).
sep_char -->
[H],
{ \+ code_type(H, alnum) }.
sep_chars --> sep_char, !, sep_chars.
sep_chars --> [].
%! join_identifier_parts(+Style, +Parts, -Identifier)
%
% Join parts of an identifier according to Style. Style is one of:
%
% - 'OneTwo'
% - oneTwo
% - one_two
% - 'One_Two'
% Predefined self explanatory style identifiers
% - style(+CapitaliseFirst, +CapitaliseRest, +Separator)
% This generalises the above styles. CapitaliseFirst defines
% whether the first character of the first part must be a
% capital, CapitaliseRest defines capitalization of the remaining
% identifier parts and Separator is the character to place between
% the parts.
join_identifier_parts(Style, [First|Parts], Identifier) :-
style(Style, CapFirst, CapRest, Sep),
capitalise(CapFirst, First, H),
maplist(capitalise(CapRest), Parts, T),
atomic_list_concat([H|T], Sep, Identifier).
%! style(?Style, ?CapitaliseFirst, ?CapitaliseRest, ?Separator)
style('OneTwo', true, true, '').
style(oneTwo, false, true, '').
style(one_two, false, false, '_').
style('One_Two', true, true, '_').
style(style(CFirst, CRest, Sep), CFirst, CRest, Sep).
capitalise(false, X, X) :- !.
capitalise(true, X, Y) :-
atom_codes(X, [H0|T]),
code_type(H0, to_lower(H)),
atom_codes(Y, [H|T]).
|