0.9.8.10
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Create.h
Go to the documentation of this file.
1 /* -*- c++ -*-
2  * Copyright (C) 2007-2015 Hypertable, Inc.
3  *
4  * This file is part of Hypertable.
5  *
6  * Hypertable is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 3
9  * of the License, or any later version.
10  *
11  * Hypertable is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19  * 02110-1301, USA.
20  */
21 
26 
27 #ifndef FsBroker_Lib_Request_Parameters_Create_h
28 #define FsBroker_Lib_Request_Parameters_Create_h
29 
30 #include <Common/Serializable.h>
31 
32 #include <string>
33 
34 using namespace std;
35 
36 namespace Hypertable {
37 namespace FsBroker {
38 namespace Lib {
39 namespace Request {
40 namespace Parameters {
41 
44 
46  class Create : public Serializable {
47  public:
48 
51  Create() {}
52 
63  Create(const string &fname, uint32_t flags, int32_t bufsz,
64  int32_t replication, int64_t blksz)
65  : m_fname(fname), m_flags(flags), m_bufsz(bufsz),
66  m_replication(replication), m_blksz(blksz) {}
67 
70  const char *get_name() { return m_fname.c_str(); }
71 
74  uint32_t get_flags() { return m_flags; }
75 
78  int32_t get_buffer_size() { return m_bufsz; }
79 
82  int32_t get_replication() { return m_replication; }
83 
86  int64_t get_block_size() { return m_blksz; }
87 
88  private:
89 
90  uint8_t encoding_version() const override;
91 
92  size_t encoded_length_internal() const override;
93 
94  void encode_internal(uint8_t **bufp) const override;
95 
96  void decode_internal(uint8_t version, const uint8_t **bufp,
97  size_t *remainp) override;
98 
100  string m_fname;
101 
103  uint32_t m_flags;
104 
106  int32_t m_bufsz;
107 
109  int32_t m_replication;
110 
112  int64_t m_blksz;
113  };
114 
116 
117 }}}}}
118 
119 #endif // FsBroker_Lib_Request_Parameters_Create_h
STL namespace.
Create(const string &fname, uint32_t flags, int32_t bufsz, int32_t replication, int64_t blksz)
Constructor.
Definition: Create.h:63
int32_t get_buffer_size()
Gets buffer size.
Definition: Create.h:78
Declarations for Serializable.
Hypertable definitions
int32_t get_replication()
Gets replication factor.
Definition: Create.h:82
Mixin class that provides a standard serialization interface.
Definition: Serializable.h:65
const char * get_name()
Gets file name.
Definition: Create.h:70
uint32_t get_flags()
Gets create flags.
Definition: Create.h:74
Request parameters for create requests.
Definition: Create.h:46