1
#ifndef __CSS3PROTOCOL_H__
2
#define __CSS3PROTOCOL_H__
3
/* Copyright (c) 2009 PrimeBase Technologies GmbH, Germany
5
* PrimeBase Media Stream for MySQL
7
* This program is free software; you can redistribute it and/or modify
8
* it under the terms of the GNU General Public License as published by
9
* the Free Software Foundation; either version 2 of the License, or
10
* (at your option) any later version.
12
* This program is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
* GNU General Public License for more details.
17
* You should have received a copy of the GNU General Public License
18
* along with this program; if not, write to the Free Software
19
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
* Created by Barry Leslie on 10/02/09.
25
#include "CSHTTPStream.h"
28
#define PUB_KEY_BIT ((uint8_t)1)
29
#define PRIV_KEY_BIT ((uint8_t)2)
30
#define SERVER_BIT ((uint8_t)4)
33
class CSS3Protocol: public CSRefObject {
36
CSStringBuffer *s3_server;
38
CSString *s3_public_key;
39
CSString *s3_private_key;
41
uint8_t s3_ready; // A flag to indicate if the S3 protocol has been fully initialised.
42
uint32_t s3_maxRetrys;
44
CSString *s3_getSignature(const char *verb,
46
const char *content_type,
50
CSString *headers = NULL
58
void s3_setServer(const char *server_arg)
60
s3_server->setLength(0);
61
if (server_arg && *server_arg) {
62
s3_ready |= SERVER_BIT;
64
s3_server->append(server_arg);
65
if (server_arg[strlen(server_arg)-1] != '/')
66
s3_server->append("/");
68
s3_ready ^= SERVER_BIT;
71
const char *s3_getServer() { return s3_server->getCString();}
73
void s3_setPublicKey(const char *key_arg)
75
s3_public_key->release();
77
if (key_arg && *key_arg) {
78
s3_ready |= PUB_KEY_BIT;
79
s3_public_key = CSString::newString(key_arg);
81
s3_ready ^= PUB_KEY_BIT;
84
const char *s3_getPublicKey() { return s3_public_key->getCString();}
86
void s3_setPrivateKey(const char *key_arg)
88
s3_private_key->release();
89
s3_private_key = NULL;
90
if (key_arg && *key_arg) {
91
s3_ready |= PRIV_KEY_BIT;
92
s3_private_key = CSString::newString(key_arg);
94
s3_ready ^= PRIV_KEY_BIT;
98
const char *s3_getPrivateKey() { return s3_private_key->getCString();}
100
bool s3_isReady() { return ((s3_ready & SERVER_BIT) && (s3_ready & PUB_KEY_BIT) && (s3_ready & PRIV_KEY_BIT));}
102
// s3_getAuthorization() returns the S3 Authorization sting and the time on which it was based.
103
CSString *s3_getAuthorization(const char *bucket, const char *key, const char *content_type, uint32_t *s3AuthorizationTime);
105
CSVector *s3_send(CSInputStream *input, const char *bucket, const char *key, off64_t size, const char *content_type = NULL, Md5Digest *digest = NULL, const char *s3Authorization = NULL, time_t s3AuthorizationTime = 0);
107
// s3_receive() returns false if the object was not found.
108
CSVector *s3_receive(CSOutputStream *output, const char *bucket, const char *key, bool *found);
110
// s3_delete() returns false if the object was not found.
111
bool s3_delete(const char *bucket, const char *key);
113
void s3_copy(const char *dest_server, const char *dest_bucket, const char *dest_key, const char *src_bucket, const char *src_key);
115
// s3_list() returns a CSString list if the keys in the bucket with the specified prefix.
116
// The list size returned can be limited with the 'max' parameter. The value 0 indicates no max.
117
CSVector *s3_list(const char *bucket, const char *key_prefix = NULL, uint32_t max = 0);
119
CSString *s3_getDataURL(const char *bucket, const char *key, uint32_t keep_alive);
122
#endif //__CSS3PROTOCOL_H__