~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cslib/CSS3Protocol.h

Added the PBMS daemon plugin.

(Augen zu und durch!)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __CSS3PROTOCOL_H__
 
2
#define __CSS3PROTOCOL_H__
 
3
/* Copyright (c) 2009 PrimeBase Technologies GmbH, Germany
 
4
 *
 
5
 * PrimeBase Media Stream for MySQL
 
6
 *
 
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.
 
11
 *
 
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.
 
16
 *
 
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
 
20
 *
 
21
 *  Created by Barry Leslie on 10/02/09.
 
22
 *
 
23
 */
 
24
 
 
25
#include "CSHTTPStream.h"
 
26
class S3ProtocolCon;
 
27
 
 
28
#define PUB_KEY_BIT             ((uint8_t)1)
 
29
#define PRIV_KEY_BIT    ((uint8_t)2)
 
30
#define SERVER_BIT              ((uint8_t)4)
 
31
 
 
32
 
 
33
class CSS3Protocol: public CSRefObject {
 
34
        private:
 
35
        S3ProtocolCon *con_data;
 
36
        
 
37
        CSStringBuffer *s3_server;
 
38
        
 
39
        CSString *s3_public_key;
 
40
        CSString *s3_private_key;
 
41
        
 
42
        uint8_t s3_ready; // A flag to indicate if the S3 protocol has been fully initialised.
 
43
        uint32_t s3_maxRetrys; 
 
44
        
 
45
        CSString *s3_getSignature(const char *verb, 
 
46
                                                                const char *md5, 
 
47
                                                                const char *content_type, 
 
48
                                                                const char *date, 
 
49
                                                                const char *bucket, 
 
50
                                                                const char *key,
 
51
                                                                CSString *headers = NULL 
 
52
                                                        );
 
53
                                                        
 
54
        public:
 
55
        CSS3Protocol();
 
56
                
 
57
        ~CSS3Protocol();
 
58
        
 
59
        void s3_setServer(const char *server_arg)
 
60
        {
 
61
                s3_server->setLength(0);
 
62
                if (server_arg && *server_arg) {
 
63
                        s3_ready |= SERVER_BIT;
 
64
                        
 
65
                        s3_server->append(server_arg);
 
66
                        if (server_arg[strlen(server_arg)-1] != '/')
 
67
                                s3_server->append("/");
 
68
                } else {
 
69
                        s3_ready ^= SERVER_BIT;
 
70
                }
 
71
        }
 
72
        const char *s3_getServer() { return s3_server->getCString();}
 
73
        
 
74
        void s3_setPublicKey(const char *key_arg) 
 
75
        {
 
76
                s3_public_key->release();
 
77
                s3_public_key = NULL;
 
78
                if (key_arg && *key_arg) {
 
79
                        s3_ready |= PUB_KEY_BIT;                                        
 
80
                        s3_public_key = CSString::newString(key_arg);
 
81
                } else {
 
82
                        s3_ready ^= PUB_KEY_BIT;
 
83
                }
 
84
        }
 
85
        const char *s3_getPublicKey() { return s3_public_key->getCString();}
 
86
        
 
87
        void s3_setPrivateKey(const char *key_arg)
 
88
        {
 
89
                s3_private_key->release();
 
90
                s3_private_key = NULL;
 
91
                if (key_arg && *key_arg) {
 
92
                        s3_ready |= PRIV_KEY_BIT;                                       
 
93
                        s3_private_key = CSString::newString(key_arg);
 
94
                } else {
 
95
                        s3_ready ^= PRIV_KEY_BIT;
 
96
                }
 
97
        }
 
98
 
 
99
        const char *s3_getPrivateKey() { return s3_private_key->getCString();}
 
100
        
 
101
        bool s3_isReady() { return ((s3_ready & SERVER_BIT) && (s3_ready & PUB_KEY_BIT) && (s3_ready & PRIV_KEY_BIT));}
 
102
        
 
103
        // s3_getAuthorization() returns the S3 Authorization sting and the time on which it was based.
 
104
        CSString *s3_getAuthorization(const char *bucket, const char *key, const char *content_type, uint32_t *s3AuthorizationTime);
 
105
        
 
106
        CSVector *s3_send(CSInputStream *input, const char *bucket, const char *key, off_t size, const char *content_type = NULL, Md5Digest *digest = NULL, const char *s3Authorization = NULL, time_t s3AuthorizationTime = 0);
 
107
 
 
108
        // s3_receive() returns false if the object was not found.
 
109
        CSVector *s3_receive(CSOutputStream *output, const char *bucket, const char *key, bool *found);
 
110
 
 
111
        // s3_delete() returns false if the object was not found.
 
112
        bool s3_delete(const char *bucket, const char *key);
 
113
        
 
114
        void s3_copy(const char *dest_server, const char *dest_bucket, const char *dest_key, const char *src_bucket, const char *src_key);
 
115
        
 
116
#ifndef NO_XML2 
 
117
        // s3_list() returns a CSString list if the keys in the bucket with the specified prefix.
 
118
        // The list size returned can be limited with the 'max' parameter. The value 0 indicates no max.
 
119
        CSVector *s3_list(const char *bucket, const char *key_prefix = NULL, uint32_t max = 0);
 
120
#endif 
 
121
 
 
122
        CSString *s3_getDataURL(const char *bucket, const char *key, uint32_t keep_alive);
 
123
};
 
124
 
 
125
#endif //__CSS3PROTOCOL_H__