Add proper per-file copyright notices/licenses and top-level license.
[bluesky.git] / bluesky / main.c
1 /* Blue Sky: File Systems in the Cloud
2  *
3  * Copyright (C) 2009  The Regents of the University of California
4  * Written by Michael Vrable <mvrable@cs.ucsd.edu>
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. Neither the name of the University nor the names of its contributors
15  *    may be used to endorse or promote products derived from this software
16  *    without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  */
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <inttypes.h>
34 #include <stdint.h>
35 #include <glib.h>
36
37 #include "bluesky-private.h"
38
39 /* Small test program for BlueSkyFS.  Doesn't do much useful. */
40
41 int main(int argc, char *argv[])
42 {
43     g_thread_init(NULL);
44
45     printf("BlueSkyFS starting...\n");
46
47     printf("  time = %"PRIi64"\n", bluesky_get_current_time());
48
49     BlueSkyFS *fs = bluesky_new_fs("export");
50
51     BlueSkyInode *root;
52     root = bluesky_new_inode(BLUESKY_ROOT_INUM, fs, BLUESKY_DIRECTORY);
53     root->nlink = 1;
54     root->mode = 0755;
55     bluesky_insert_inode(fs, root);
56
57     BlueSkyInode *file;
58     file = bluesky_new_inode(bluesky_fs_alloc_inode(fs), fs, BLUESKY_REGULAR);
59     file->nlink = 1;
60     file->mode = 0755;
61     bluesky_insert_inode(fs, file);
62     bluesky_directory_insert(root, "foo", file->inum);
63
64     file = bluesky_new_inode(bluesky_fs_alloc_inode(fs), fs, BLUESKY_REGULAR);
65     file->nlink = 1;
66     file->mode = 0755;
67     bluesky_insert_inode(fs, file);
68     bluesky_directory_insert(root, "bar", file->inum);
69
70     file = bluesky_new_inode(bluesky_fs_alloc_inode(fs), fs, BLUESKY_REGULAR);
71     file->nlink = 1;
72     file->mode = 0755;
73     bluesky_insert_inode(fs, file);
74     bluesky_directory_insert(root, "baz", file->inum);
75
76     bluesky_directory_dump(root);
77     bluesky_directory_lookup(root, "foo");
78     bluesky_directory_lookup(root, "bar");
79     bluesky_directory_lookup(root, "baz");
80
81     return 0;
82 }