forked from yangyangwithgnu/hardseed
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
761515d
commit baea17c
Showing
38 changed files
with
5,119 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
PROJECT(main) | ||
|
||
|
||
SET(SRC_LIST ../src/main.cpp | ||
../src/lib/self/TopicsListWebpage.cpp ../src/lib/self/AichengTopicsListWebpage.cpp ../src/lib/self/CaoliuTopicsListWebpage.cpp | ||
../src/lib/self/TopicWebpage.cpp ../src/lib/self/AichengTopicWebpage.cpp ../src/lib/self/CaoliuTopicWebpage.cpp | ||
../src/lib/self/SeedWebpage.cpp ../src/lib/self/JandownSeedWebpage.cpp ../src/lib/self/RmdownSeedWebpage.cpp | ||
../src/lib/self/Aicheng.cpp ../src/lib/self/Caoliu.cpp | ||
../src/lib/helper/Webpage.cpp | ||
../src/lib/helper/Time.cpp ../src/lib/helper/CmdlineOption.cpp ../src/lib/helper/Misc.cpp | ||
../src/lib/3rd/json11/json11.cpp) | ||
|
||
# linux | ||
#>>>>>>>>>>>>>>>>>>>>>> | ||
|
||
## debug | ||
#SET(CMAKE_CXX_COMPILER "clang++") | ||
#SET(CMAKE_CXX_FLAGS "-std=c++11 -Werror -Weverything -Wno-documentation -Wno-disabled-macro-expansion -Wno-float-equal -Wno-c++98-compat -Wno-c++98-compat-pedantic -Wno-global-constructors -Wno-exit-time-destructors -Wno-missing-prototypes -Wno-padded -Wno-old-style-cast -Wno-weak-vtables") | ||
#SET(CMAKE_BUILD_TYPE debug) | ||
#ADD_EXECUTABLE(main ${SRC_LIST}) | ||
#TARGET_LINK_LIBRARIES(main curl pthread) | ||
|
||
# release | ||
SET(CMAKE_CXX_COMPILER "g++") | ||
SET(CMAKE_CXX_FLAGS "-std=c++11 -O3") | ||
SET(CMAKE_BUILD_TYPE release) | ||
ADD_EXECUTABLE(hardseed ${SRC_LIST}) | ||
TARGET_LINK_LIBRARIES(hardseed curl pthread) | ||
INSTALL(PROGRAMS hardseed DESTINATION /usr/bin/) | ||
|
||
#<<<<<<<<<<<<<<<<<<<<<< | ||
|
||
|
||
## cygwin | ||
##>>>>>>>>>>>>>>>>>>>>>> | ||
|
||
#SET(CMAKE_CXX_COMPILER "g++") | ||
#SET(CMAKE_CXX_FLAGS "-std=c++11 -O3 -s -DCYGWIN") | ||
#SET(CMAKE_BUILD_TYPE release) | ||
#ADD_EXECUTABLE(hardseed ${SRC_LIST}) | ||
#target_link_libraries(hardseed /bin/cygcurl-4.dll) | ||
#target_link_libraries(hardseed /lib/libiconv.a) | ||
|
||
##<<<<<<<<<<<<<<<<<<<<<< | ||
|
||
|
||
## osX | ||
##>>>>>>>>>>>>>>>>>>>>>> | ||
|
||
#SET(CMAKE_CXX_COMPILER "g++") | ||
#SET(CMAKE_CXX_FLAGS "-std=c++11 -O3") | ||
#SET(CMAKE_BUILD_TYPE release) | ||
#ADD_EXECUTABLE(hardseed ${SRC_LIST}) | ||
#TARGET_LINK_LIBRARIES(hardseed curl pthread iconv) | ||
#INSTALL(PROGRAMS hardseed DESTINATION /usr/bin/) | ||
|
||
##<<<<<<<<<<<<<<<<<<<<<< |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Copyright (c) 2013 Dropbox, Inc. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
json11 | ||
------ | ||
|
||
json11 is a tiny JSON library for C++11, providing JSON parsing and serialization. | ||
|
||
The core object provided by the library is json11::Json. A Json object represents any JSON | ||
value: null, bool, number (int or double), string (std::string), array (std::vector), or | ||
object (std::map). | ||
|
||
Json objects act like values. They can be assigned, copied, moved, compared for equality or | ||
order, and so on. There are also helper methods Json::dump, to serialize a Json to a string, and | ||
Json::parse (static) to parse a std::string as a Json object. | ||
|
||
It's easy to make a JSON object with C++11's new initializer syntax: | ||
|
||
Json my_json = Json::object { | ||
{ "key1", "value1" }, | ||
{ "key2", false }, | ||
{ "key3", Json::array { 1, 2, 3 } }, | ||
}; | ||
std::string json_str = my_json.dump(); | ||
|
||
There are also implicit constructors that allow standard and user-defined types to be | ||
automatically converted to JSON. For example: | ||
|
||
class Point { | ||
public: | ||
int x; | ||
int y; | ||
Point (int x, int y) : x(x), y(y) {} | ||
Json to_json() const { return Json::array { x, y }; } | ||
}; | ||
|
||
std::vector<Point> points = { { 1, 2 }, { 10, 20 }, { 100, 200 } }; | ||
std::string points_json = Json(points).dump(); | ||
|
||
JSON values can have their values queried and inspected: | ||
|
||
Json json = Json::array { Json::object { { "k", "v" } } }; | ||
std::string str = json[0]["k"].string_value(); | ||
|
||
More documentation is still to come. For now, see json11.hpp. |
Oops, something went wrong.