split()
[folly.git] / folly / experimental / StringGen.h
1 /*
2  * Copyright 2012 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef FOLLY_STRINGGEN_H_
18 #define FOLLY_STRINGGEN_H_
19
20 #include "folly/Range.h"
21
22 namespace folly {
23 namespace gen {
24
25 namespace detail {
26 class StringResplitter;
27 class SplitStringSource;
28 }  // namespace detail
29
30 /**
31  * Split the output from a generator into StringPiece "lines" delimited by
32  * the given delimiter.  Delimters are NOT included in the output.
33  *
34  * resplit() behaves as if the input strings were concatenated into one long
35  * string and then split.
36  */
37 // make this a template so we don't require StringResplitter to be complete
38 // until use
39 template <class S=detail::StringResplitter>
40 S resplit(char delimiter) {
41   return S(delimiter);
42 }
43
44 template <class S=detail::SplitStringSource>
45 S split(const StringPiece& source, char delimiter) {
46   return S(source, delimiter);
47 }
48
49 }  // namespace gen
50 }  // namespace folly
51
52 #include "folly/experimental/StringGen-inl.h"
53
54 #endif /* FOLLY_STRINGGEN_H_ */
55