15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
23c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch * Copyright (C) 2013 Google Inc. All rights reserved.
302772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions are
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * met:
702772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch *
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     * Redistributions of source code must retain the above copyright
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * notice, this list of conditions and the following disclaimer.
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     * Redistributions in binary form must reproduce the above
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * copyright notice, this list of conditions and the following disclaimer
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * in the documentation and/or other materials provided with the
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * distribution.
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     * Neither the name of Google Inc. nor the names of its
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * contributors may be used to endorse or promote products derived from
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * this software without specific prior written permission.
1702772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch *
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
265c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
275c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
285c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
295c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
305c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
313c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch#ifndef WTF_h
323c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch#define WTF_h
335c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
343c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch#include "wtf/Compiler.h"
353c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch#include "wtf/CurrentTime.h"
368abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)#include "wtf/PartitionAlloc.h"
37a854de003a23bf3c7f95ec0f8154ada64092ff5cTorne (Richard Coles)#include "wtf/WTFExport.h"
385c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
393c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdochnamespace WTF {
405c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
413c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch// This function must be called exactly once from the main thread before using anything else in WTF.
423c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben MurdochWTF_EXPORT void initialize(TimeFunction currentTimeFunction, TimeFunction monotonicallyIncreasingTimeFunction);
433c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben MurdochWTF_EXPORT void shutdown();
44bfe3590b1806e3ff18f46ee3af5d4b83078f305aTorne (Richard Coles)WTF_EXPORT bool isShutdown();
455c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
461e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)class WTF_EXPORT Partitions {
473c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdochpublic:
488abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)    static void initialize();
498abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)    static void shutdown();
5009380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    static ALWAYS_INLINE PartitionRootGeneric* getBufferPartition()
511e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)    {
521e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)        if (UNLIKELY(!s_initialized))
531e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)            initialize();
541e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)        return m_bufferAllocator.root();
551e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)    }
563c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch
578abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)private:
581e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)    static bool s_initialized;
5909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    static PartitionAllocatorGeneric m_bufferAllocator;
608abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)};
613c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch
623c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch} // namespace WTF
633c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch
643c9e4aeaee9f9b0a9a814da07bcb33319c7ea363Ben Murdoch#endif // WTF_h
65