/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /* $Rev$ $Date$ */ /** * Shopping cart component implementation. */ #include #include #include "string.hpp" #include "function.hpp" #include "list.hpp" #include "value.hpp" #include "monad.hpp" namespace tuscany { namespace store { const string cartId("1234"); /** * Get the shopping cart from the cache. Return an empty * cart if not found. */ const list getcart(const value& id, const lambda&)> cache) { const value cart = cache(mklist("get", mklist(id))); if (isNil(cart)) return value(list()); return (list)cart; } /** * Returns a UUID. */ const value uuid() { apr_uuid_t uuid; apr_uuid_get(&uuid); char buf[APR_UUID_FORMATTED_LENGTH]; apr_uuid_format(buf, &uuid); return string(buf, APR_UUID_FORMATTED_LENGTH); } /** * Post a new item to the cart. Create a new cart if necessary. */ const failable post(unused const list& collection, const value& item, const lambda&)> cache) { const value id(uuid()); const list newItem(mklist(car(item), id, caddr(item))); const list cart(cons(newItem, getcart(cartId, cache))); cache(mklist("put", mklist(cartId), cart)); return value(mklist(id)); } /** * Find an item in the cart. */ const value find(const value& id, const list& cart) { if (isNil(cart)) return cons(string("Item"), mklist("0", list())); if (id == cadr(car(cart))) return car(cart); return find(id, cdr(cart)); } /** * Return items from the cart. */ const failable get(const list& id, const lambda&)> cache) { if (isNil(id)) return value(append(mklist(string("Your Cart"), cartId), getcart(cartId, cache))); return find(car(id), getcart(cartId, cache)); } /** * Delete items from the cart. */ const failable del(const list& id, unused const lambda&)> cache) { if (isNil(id)) return cache(mklist("delete", mklist(cartId))); return value(true); } /** * Return the price of an item. */ const double price(const list& item) { return cadr(assoc("price", caddr(item))); } /** * Sum the prices of a list of items. */ const double sum(const list& items) { if (isNil(items)) return 0; return price(car(items)) + sum(cdr(items)); } /** * Return the total price of the items in the cart. */ const failable gettotal(const lambda&)> cache) { const list cart(getcart(cartId, cache)); return value(sum(cart)); } /** * TODO remove this JSON-RPC specific function. */ const failable listMethods(unused const lambda&)> converter) { return value(mklist(string("Service.gettotal"))); } } } extern "C" { const tuscany::value apply(const tuscany::list& params) { const tuscany::value func(car(params)); if (func == "post") return tuscany::store::post(cadr(params), caddr(params), cadddr(params)); if (func == "get") return tuscany::store::get(cadr(params), caddr(params)); if (func == "delete") return tuscany::store::del(cadr(params), caddr(params)); if (func == "gettotal") return tuscany::store::gettotal(cadr(params)); if (func == "listMethods") return tuscany::store::listMethods(cadr(params)); return tuscany::mkfailure(); } }