string.hpp 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. /*
  2. * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
  3. * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #ifndef __PJPP_STRING_HPP__
  20. #define __PJPP_STRING_HPP__
  21. #include <pj/string.h>
  22. #include <pj++/pool.hpp>
  23. #include <pj/assert.h>
  24. //
  25. // String wrapper class for pj_str_t.
  26. //
  27. class Pj_String : public pj_str_t
  28. {
  29. public:
  30. //
  31. // Default constructor.
  32. //
  33. Pj_String()
  34. {
  35. pj_assert(sizeof(Pj_String) == sizeof(pj_str_t));
  36. ptr=NULL;
  37. slen=0;
  38. }
  39. //
  40. // Construct the buffer from a char* (use with care)
  41. //
  42. Pj_String(char *str)
  43. {
  44. set(str);
  45. }
  46. //
  47. // Construct from a const char*.
  48. //
  49. Pj_String(Pj_Pool &pool, const char *src)
  50. {
  51. set(pool, src);
  52. }
  53. //
  54. // Construct from pj_str_t&.
  55. //
  56. explicit Pj_String(pj_str_t &s)
  57. {
  58. ptr = s.ptr;
  59. slen = s.slen;
  60. }
  61. //
  62. // Construct from const pj_str_t& (use with care!).
  63. //
  64. explicit Pj_String(const pj_str_t &s)
  65. {
  66. ptr = (char*)s.ptr;
  67. slen = s.slen;
  68. }
  69. //
  70. // Construct by copying from const pj_str_t*.
  71. //
  72. Pj_String(Pj_Pool &pool, const pj_str_t *s)
  73. {
  74. set(pool, s);
  75. }
  76. //
  77. // Construct by copying from Pj_String
  78. //
  79. Pj_String(Pj_Pool &pool, const Pj_String &rhs)
  80. {
  81. set(pool, rhs);
  82. }
  83. //
  84. // Construct from another Pj_String, use with care!
  85. //
  86. explicit Pj_String(const Pj_String &rhs)
  87. {
  88. ptr = rhs.ptr;
  89. slen = rhs.slen;
  90. }
  91. //
  92. // Construct from a char* and a length.
  93. //
  94. Pj_String(char *str, pj_size_t len)
  95. {
  96. set(str, len);
  97. }
  98. //
  99. // Construct from pair of pointer.
  100. //
  101. Pj_String(char *begin, char *end)
  102. {
  103. pj_strset3(this, begin, end);
  104. }
  105. //
  106. // You can cast Pj_String to pj_str_t*
  107. //
  108. operator pj_str_t*()
  109. {
  110. return this;
  111. }
  112. //
  113. // You can cast const Pj_String to const pj_str_t*
  114. //
  115. operator const pj_str_t*() const
  116. {
  117. return this;
  118. }
  119. //
  120. // Get the length of the string.
  121. //
  122. pj_size_t length() const
  123. {
  124. return pj_strlen(this);
  125. }
  126. //
  127. // Get the length of the string.
  128. //
  129. pj_size_t size() const
  130. {
  131. return length();
  132. }
  133. //
  134. // Get the string buffer.
  135. //
  136. const char *buf() const
  137. {
  138. return ptr;
  139. }
  140. //
  141. // Initialize buffer from char*.
  142. //
  143. void set(char *str)
  144. {
  145. pj_strset2(this, str);
  146. }
  147. //
  148. // Initialize by copying from a const char*.
  149. //
  150. void set(Pj_Pool &pool, const char *s)
  151. {
  152. pj_strdup2(pool, this, s);
  153. }
  154. //
  155. // Initialize from pj_str_t*.
  156. //
  157. void set(pj_str_t *s)
  158. {
  159. pj_strassign(this, s);
  160. }
  161. //
  162. // Initialize by copying from const pj_str_t*.
  163. //
  164. void set(Pj_Pool &pool, const pj_str_t *s)
  165. {
  166. pj_strdup(pool, this, s);
  167. }
  168. //
  169. // Initialize from char* and length.
  170. //
  171. void set(char *str, pj_size_t len)
  172. {
  173. pj_strset(this, str, len);
  174. }
  175. //
  176. // Initialize from pair of pointers.
  177. //
  178. void set(char *begin, char *end)
  179. {
  180. pj_strset3(this, begin, end);
  181. }
  182. //
  183. // Initialize from other Pj_String.
  184. //
  185. void set(Pj_String &rhs)
  186. {
  187. pj_strassign(this, &rhs);
  188. }
  189. //
  190. // Initialize by copying from a Pj_String*.
  191. //
  192. void set(Pj_Pool &pool, const Pj_String *s)
  193. {
  194. pj_strdup(pool, this, s);
  195. }
  196. //
  197. // Initialize by copying from other Pj_String.
  198. //
  199. void set(Pj_Pool &pool, const Pj_String &s)
  200. {
  201. pj_strdup(pool, this, &s);
  202. }
  203. //
  204. // Copy the contents of other string.
  205. //
  206. void strcpy(const pj_str_t *s)
  207. {
  208. pj_strcpy(this, s);
  209. }
  210. //
  211. // Copy the contents of other string.
  212. //
  213. void strcpy(const Pj_String &rhs)
  214. {
  215. pj_strcpy(this, &rhs);
  216. }
  217. //
  218. // Copy the contents of other string.
  219. //
  220. void strcpy(const char *s)
  221. {
  222. pj_strcpy2(this, s);
  223. }
  224. //
  225. // Compare string.
  226. //
  227. int strcmp(const char *s) const
  228. {
  229. return pj_strcmp2(this, s);
  230. }
  231. //
  232. // Compare string.
  233. //
  234. int strcmp(const pj_str_t *s) const
  235. {
  236. return pj_strcmp(this, s);
  237. }
  238. //
  239. // Compare string.
  240. //
  241. int strcmp(const Pj_String &rhs) const
  242. {
  243. return pj_strcmp(this, &rhs);
  244. }
  245. //
  246. // Compare string.
  247. //
  248. int strncmp(const char *s, pj_size_t len) const
  249. {
  250. return pj_strncmp2(this, s, len);
  251. }
  252. //
  253. // Compare string.
  254. //
  255. int strncmp(const pj_str_t *s, pj_size_t len) const
  256. {
  257. return pj_strncmp(this, s, len);
  258. }
  259. //
  260. // Compare string.
  261. //
  262. int strncmp(const Pj_String &rhs, pj_size_t len) const
  263. {
  264. return pj_strncmp(this, &rhs, len);
  265. }
  266. //
  267. // Compare string.
  268. //
  269. int stricmp(const char *s) const
  270. {
  271. return pj_stricmp2(this, s);
  272. }
  273. //
  274. // Compare string.
  275. //
  276. int stricmp(const pj_str_t *s) const
  277. {
  278. return pj_stricmp(this, s);
  279. }
  280. //
  281. // Compare string.
  282. //
  283. int stricmp(const Pj_String &rhs) const
  284. {
  285. return stricmp(&rhs);
  286. }
  287. //
  288. // Compare string.
  289. //
  290. int strnicmp(const char *s, pj_size_t len) const
  291. {
  292. return pj_strnicmp2(this, s, len);
  293. }
  294. //
  295. // Compare string.
  296. //
  297. int strnicmp(const pj_str_t *s, pj_size_t len) const
  298. {
  299. return pj_strnicmp(this, s, len);
  300. }
  301. //
  302. // Compare string.
  303. //
  304. int strnicmp(const Pj_String &rhs, pj_size_t len) const
  305. {
  306. return strnicmp(&rhs, len);
  307. }
  308. //
  309. // Compare contents for equality.
  310. //
  311. bool operator==(const char *s) const
  312. {
  313. return strcmp(s) == 0;
  314. }
  315. //
  316. // Compare contents for equality.
  317. //
  318. bool operator==(const pj_str_t *s) const
  319. {
  320. return strcmp(s) == 0;
  321. }
  322. //
  323. // Compare contents for equality.
  324. //
  325. bool operator==(const Pj_String &rhs) const
  326. {
  327. return pj_strcmp(this, &rhs) == 0;
  328. }
  329. //
  330. // Assign from char*
  331. //
  332. Pj_String& operator=(char *s)
  333. {
  334. set(s);
  335. return *this;
  336. }
  337. ///
  338. // Assign from another Pj_String, use with care!
  339. //
  340. Pj_String& operator=(const Pj_String &rhs)
  341. {
  342. ptr = rhs.ptr;
  343. slen = rhs.slen;
  344. return *this;
  345. }
  346. //
  347. // Find a character in the string.
  348. //
  349. char *strchr(int chr)
  350. {
  351. return pj_strchr(this, chr);
  352. }
  353. //
  354. // Find a character in the string.
  355. //
  356. char *find(int chr)
  357. {
  358. return strchr(chr);
  359. }
  360. //
  361. // Concatenate string.
  362. //
  363. void strcat(const Pj_String &rhs)
  364. {
  365. pj_strcat(this, &rhs);
  366. }
  367. //
  368. // Left trim.
  369. //
  370. void ltrim()
  371. {
  372. pj_strltrim(this);
  373. }
  374. //
  375. // Right trim.
  376. //
  377. void rtrim()
  378. {
  379. pj_strrtrim(this);
  380. }
  381. //
  382. // Left and right trim.
  383. //
  384. void trim()
  385. {
  386. pj_strtrim(this);
  387. }
  388. //
  389. // Convert to unsigned long.
  390. //
  391. unsigned long to_ulong() const
  392. {
  393. return pj_strtoul(this);
  394. }
  395. //
  396. // Convert from unsigned long.
  397. //
  398. void from_ulong(unsigned long value)
  399. {
  400. slen = pj_utoa(value, ptr);
  401. }
  402. //
  403. // Convert from unsigned long with padding.
  404. //
  405. void from_ulong_with_pad(unsigned long value, int min_dig=0, int pad=' ')
  406. {
  407. slen = pj_utoa_pad(value, ptr, min_dig, pad);
  408. }
  409. };
  410. #endif /* __PJPP_STRING_HPP__ */