aboutsummaryrefslogtreecommitdiff
path: root/brep/options.cli
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-08-14 13:03:08 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-08-23 13:53:50 +0200
commitbcd246076540a8353fa55fc0a5e19343c1a2dbc9 (patch)
tree9fe2c24ca33b3d670267a5cbc8c8c756589f359b /brep/options.cli
parent24903813d11813f8ff9ac906d23b21e6c33b981d (diff)
Implement package search service mockup
Diffstat (limited to 'brep/options.cli')
-rw-r--r--brep/options.cli34
1 files changed, 27 insertions, 7 deletions
diff --git a/brep/options.cli b/brep/options.cli
index 2894979..8062f59 100644
--- a/brep/options.cli
+++ b/brep/options.cli
@@ -3,7 +3,7 @@
// license : MIT; see accompanying LICENSE file
include <string>;
-include <cstdint>;
+include <cstdint>; // uint16_t
namespace brep
{
@@ -22,23 +22,43 @@ namespace brep
std::uint16_t db-port = 5432;
};
- class search: module, db
+ class package_search: module, db
{
- size_t results-on-page = 10;
+ std::uint16_t results-on-page = 10;
};
- class view: module, db
+ class package_version_search: module, db
{
+ std::uint16_t results-on-page = 10;
};
}
- // Web module request parameters.
+ // Web module HTTP request parameters.
//
namespace params
{
- class search
+ // Use parameters long names in the C++ code, short aliases in HTTP URL.
+ //
+ class package_search
{
- size_t page = 0;
+ // Display package search result list starting from this page.
+ //
+ std::uint16_t page | p = 0;
+
+ // Package search criteria.
+ //
+ std::string query | q = "";
+ };
+
+ class package_version_search
+ {
+ // Display package version search result list starting from this page.
+ //
+ std::uint16_t page | p = 0;
+
+ // Package version search criteria.
+ //
+ std::string query | q = "";
};
}
}