prompt
large_stringlengths
70
991k
completion
large_stringlengths
0
1.02k
<|file_name|>node.py<|end_file_name|><|fim▁begin|>class node: def __init__(self): self.outputs=[] def set(self): for out in self.outputs: out.set() def clear(self): for out in self.outputs: out.clear() class switch: def __init__(self): self.outputs=[] self.state=False self.input=False def set(self): self.input=True if(self.state): for out in self.outputs: out.set() def clear(self): self.input=False for out in self.outputs: out.clear() def open(self): self.state=False for out in self.outputs: out.clear() def close(self): self.input=True if(self.input): for out in self.outputs: out.set() class light: def __init__(self): self.outputs=[] def set(self): print('light set') for out in self.outputs: out.set() def clear(self): print('light cleared') for out in self.outputs: out.clear() if __name__ == '__main__': a=node() s=switch() b=node() l=light() a.outputs.append(s) s.outputs.append(b) b.outputs.append(l) <|fim▁hole|> s.close() print('switch close') s.open()<|fim▁end|>
a.set()
<|file_name|>reward.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python import matplotlib.pyplot as plt import sys import numpy from math import floor def movingAverage(x, N): cumsum = numpy.cumsum(numpy.insert(x, 0, 0)) return (cumsum[N:] - cumsum[:-N])/N<|fim▁hole|> filename = sys.argv[1] with open(filename) as f: print f.readline() time = [] temp = [] avg = [] for line in f: entry = line.split(":") time.append(float(entry[0])) temp.append(float(entry[1])) windowSize = 100 avg = [0] * (windowSize - 1) avg = avg + list( movingAverage(temp, windowSize)) ratio = 0.999 avg = avg[int(floor(len(avg )*ratio)): len(avg )-1] time = time[int(floor(len(time)*ratio)): len(time)-1] temp = temp[int(floor(len(temp)*ratio)): len(temp)-1] plt.plot(time, temp, 'r-') plt.plot(time, avg, 'ro') plt.show()<|fim▁end|>
filename = "reports/configuration.confrewardRecordReport.txt" if (len(sys.argv) > 1):
<|file_name|>test_models.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python # -*- coding: utf-8 -*- """ test_django-nupages ------------ Tests for `django-nupages` models module. """ import os import shutil import unittest from django.utils import timezone from django.core.urlresolvers import reverse from django.contrib.sites.models import Site from nupages import models from nupages import views class TestNupages(unittest.TestCase): def create_page( self, title="Test Page", description="yes, this is only a test", content="yes, this is only a test", custom_template="", site=Site.objects.create(domain="127.0.0.1:8000", name="127.0.0.1:8000")): return models.Page.objects.create( title=title, description=description, content=content, custom_template=custom_template, created=timezone.now(), site=site) def test_page_creation(self):<|fim▁hole|><|fim▁end|>
p = self.create_page() self.assertTrue(isinstance(p, models.Page)) self.assertEqual(p.__unicode__(), p.title) self.assertEqual(p.get_absolute_url(), reverse("nupages:detail", kwargs={'slug': p.slug}))
<|file_name|>models.py<|end_file_name|><|fim▁begin|># -*- coding: utf-8 -*- from __future__ import unicode_literals from django.conf import settings from django.core.cache import cache from django.db import models from django.db.models.signals import post_save try: from django.db.transaction import atomic except ImportError: from django.db.transaction import commit_on_success as atomic from django.utils.encoding import python_2_unicode_compatible from django.utils.timezone import now from .exceptions import MessagingPermissionDenied from .managers import ConversationManager, ParticipationManager from .settings import (PRIVATE_CONVERSATION_MEMBER_COUNT, CONVERSATION_CACHE_KEY_PATTERN) from .signals import message_sent from .utils import is_date_greater AUTH_USER_MODEL = getattr(settings, 'AUTH_USER_MODEL', 'auth.User') @python_2_unicode_compatible class Participation(models.Model): conversation = models.ForeignKey('Conversation', related_name='participations') user = models.ForeignKey(AUTH_USER_MODEL, related_name='participations') # messages in conversation seen at read_at = models.DateTimeField(null=True, blank=True, db_index=True) # replied to conversation at replied_at = models.DateTimeField(null=True, blank=True, db_index=True) # deleted conversation at deleted_at = models.DateTimeField(null=True, blank=True, db_index=True) objects = ParticipationManager() class Meta: ordering = ['conversation'] unique_together = ('conversation', 'user') def __str__(self): return "{0} - {1}".format(self.user.username, self.conversation) @property def is_deleted(self): return self.deleted_at is not None @property def is_read(self): return self.read_at is not None def read_conversation(self): """Mark the conversation as read by the participant who requested.""" self.read_at = now() self.save() def revoke(self): """Sets the deleted_at field of the participation to the time when the member in question left the conversation or was kicked out of it.""" if self.conversation.is_private: # can't leave one-on-one conversations return self.deleted_at = now() self.save() def reinstate(self): """Clears the deleted_at field of the participation, meaning the user re-joined the conversation.""" self.deleted_at = None self.save() @python_2_unicode_compatible class Conversation(models.Model): latest_message = models.ForeignKey('Message', related_name='conversation_of_latest', null=True, blank=True) creator = models.ForeignKey(AUTH_USER_MODEL, related_name='created_conversation') objects = ConversationManager() class Meta: ordering = ['latest_message'] def __str__(self): return "{0} - {1}".format(self.pk, self.latest_message) @property def active_participations(self): """Returns a queryset of active participations, meaning that revoked participations(when a user leaves a conversation) won't be included.""" return self.participations.filter(deleted_at__isnull=True) def add_participants(self, participants): """Adds participants to an existing conversation. :param participants: A QuerySet or list of user objects, who will be added to the conversation as participants.""" for user in participants: participation, created = Participation.objects.get_or_create( conversation=self, user=user ) if not created and participation.is_deleted: # participation already exists and it was marked as deleted, so # the user most likely left the conversation, but someone # re-added him/her participation.reinstate() def remove_participants(self, participants): """Removes participants from an existing conversation. :param participants: A QuerySet or list of user objects, whose participations will be revoked.""" for user in participants: participation = self.participations.get(user=user) participation.revoke() def is_read_by(self, participant): participation = self.participations.get(user=participant) return participation.is_read @property def participants(self): """Returns a list of user objects participating in this conversation""" return [p.user for p in self.active_participations.all()] @property def participant_names(self): """Returns a list of usernames who participate in this conversation.""" return list(self.active_participations.values_list('user__username', flat=True)) def has_participant(self, user): """Returns whether this user participates in this conversation. :param user: A User object (request.user probably)""" return self.active_participations.filter(user=user).exists() @property def is_private(self): """Returns whether the conversation is private or not. If there are more than PRIVATE_CONVERSATION_MEMBER_COUNT (2) participants in the conversation, it is not private.""" return (self.participations.count() == PRIVATE_CONVERSATION_MEMBER_COUNT) @classmethod def start(cls, creator, participants): """Starts a new conversation between the specified participants. :param creator: A User object (request.user probably) :param participants: A QuerySet or list of user objects, who will be added to the conversation as participants.""" conversation = cls.objects.create(creator=creator) conversation.add_participants(participants) return conversation @python_2_unicode_compatible class Message(models.Model): body = models.TextField() parent = models.ForeignKey('self', related_name='next_messages', blank=True, null=True) sender = models.ForeignKey(AUTH_USER_MODEL, related_name='messages') sent_at = models.DateTimeField(auto_now_add=True, db_index=True) conversation = models.ForeignKey('Conversation', related_name='messages') class Meta: ordering = ['-sent_at', '-id'] def __str__(self): return "{0} - {1}".format(self.sender.username, self.sent_at) @classmethod def __send_to_conversation(cls, body, sender, conversation, new_participants=None): """Internally used by both send_to_conversation and __send_to_users methods. Refactored as a separate method to avoid nesting the atomic decorator when __send_to_users needs to call __send_to_conversation.""" new_participants = list(new_participants) if new_participants else [] # check whether the sender is participating in the conversation or not # without this, arbitary users could send messages into conversations # which they're not even part of if not conversation.has_participant(sender): msg = "{0} not participating".format(sender.username) raise MessagingPermissionDenied(msg) if new_participants and conversation.is_private: # this conversation can NOT be extended to include additional # participants, instead a new conversation has to be started which # will include all the participants, but not the history of the # private conversation recipients = conversation.participants + new_participants return cls.__send_to_users(body, sender, recipients) # this was already a group conversation, so just add the new # participants to it conversation.add_participants(new_participants) message = cls.objects.create(body=body, parent=conversation.latest_message, sender=sender, conversation=conversation)<|fim▁hole|> # update latest message of conversation conversation.latest_message = message conversation.save() p_sender = sender.participations.get(conversation=conversation) p_recipients = conversation.active_participations.exclude(user=sender) # mark conversation as not read for all participants except the sender p_recipients.update(read_at=None) if not any(is_date_greater(pr.replied_at, p_sender.read_at) for pr in p_recipients): # if the sender's read_at time is greater than all the other # participant's replied_at time, it means the sender already read # all the messages the other's sent, so update the sender's read_at # value again, to reflect that the sender read it's own (just now # sent) message. fields = dict(replied_at=now(), read_at=now()) else: # if the sender's read_at time is less than any of the other # participants replied_at time, it means the sender didn't yet # read the other replier's message, so do not touch the sender's # read_at time. # this also means that if the sender replies to the conversation, # it doesnt't imply that he/she also read the latest message sent # before his/her message fields = dict(replied_at=now()) conversation.participations.filter(user=sender).update(**fields) return message @classmethod def __send_to_users(cls, body, sender, recipients): """Internally used by both send_to_users and __send_to_conversation methods. Refactored as a separate method to avoid nesting the atomic decorator when __send_to_conversation needs to call __send_to_users.""" participants = list(recipients) if not participants: raise MessagingPermissionDenied("No recipients specified.") # if sender is the only participant, deny message sending if sender in participants and len(participants) == 1: raise MessagingPermissionDenied("No self-messaging allowed.") participants.append(sender) conversations = Conversation.objects.for_participants(participants) if not conversations.exists(): # no conversation exists between the specified participants, so # create a new one conversation = Conversation.start(creator=sender, participants=participants) else: # a conversation exists between the specified participants, so send # the message to that conversation (conversation,) = conversations return cls.__send_to_conversation(body, sender, conversation) @classmethod @atomic def send_to_conversation(cls, body, sender, conversation, new_participants=None): """Sends a message to a specific conversation. The transaction is atomic, so if anything fails during message sending, nothing will be committed. :param body: Body of the new message :param sender: A User object (request.user probably) :param conversation: Conversation instance :param new_participants: Optional, if specified it should be a Queryset or list of user objects, who will be added to the existing conversation as new participants. """ return cls.__send_to_conversation(body, sender, conversation, new_participants) @classmethod @atomic def send_to_users(cls, body, sender, recipients): """Sends a message to a list of users. The transaction is atomic, so if anything fails during message sending, nothing will be committed. :param body: Body of the new message :param sender: A User object (request.user probably) :param recipients: Queryset or list of user objects who will receive the message.""" return cls.__send_to_users(body, sender, recipients) def clear_conversation_cache(sender, instance, **kwargs): """When a message is sent, the cached conversation (all of it's messages) shall be invalidated.""" key = CONVERSATION_CACHE_KEY_PATTERN.format(instance.conversation.pk) cache.delete(key) def fire_message_sent_signal(sender, instance, created, **kwargs): if created: message_sent.send(sender=sender, instance=instance) post_save.connect(clear_conversation_cache, sender=Message, dispatch_uid="clear_conversation_cache") post_save.connect(fire_message_sent_signal, sender=Message, dispatch_uid="fire_message_sent_signal")<|fim▁end|>
<|file_name|>index.ts<|end_file_name|><|fim▁begin|>import './stylus/app.styl' import VuetifyComponent from './components/Vuetify' import * as components from './components' import * as directives from './directives' import { VueConstructor } from 'vue'<|fim▁hole|>const Vuetify: VuetifyPlugin = { install (Vue: VueConstructor, args?: VuetifyUseOptions): void { Vue.use(VuetifyComponent, { components, directives, ...args }) }, version: __VUETIFY_VERSION__ } if (typeof window !== 'undefined' && window.Vue) { window.Vue.use(Vuetify) } export default Vuetify<|fim▁end|>
import { Vuetify as VuetifyPlugin, VuetifyUseOptions } from 'types'
<|file_name|>_each126.py<|end_file_name|><|fim▁begin|>from pycp2k.inputsection import InputSection class _each126(InputSection):<|fim▁hole|> def __init__(self): InputSection.__init__(self) self.Just_energy = None self.Powell_opt = None self.Qs_scf = None self.Xas_scf = None self.Md = None self.Pint = None self.Metadynamics = None self.Geo_opt = None self.Rot_opt = None self.Cell_opt = None self.Band = None self.Ep_lin_solver = None self.Spline_find_coeffs = None self.Replica_eval = None self.Bsse = None self.Shell_opt = None self.Tddft_scf = None self._name = "EACH" self._keywords = {'Bsse': 'BSSE', 'Cell_opt': 'CELL_OPT', 'Just_energy': 'JUST_ENERGY', 'Band': 'BAND', 'Xas_scf': 'XAS_SCF', 'Rot_opt': 'ROT_OPT', 'Replica_eval': 'REPLICA_EVAL', 'Tddft_scf': 'TDDFT_SCF', 'Shell_opt': 'SHELL_OPT', 'Md': 'MD', 'Pint': 'PINT', 'Metadynamics': 'METADYNAMICS', 'Geo_opt': 'GEO_OPT', 'Spline_find_coeffs': 'SPLINE_FIND_COEFFS', 'Powell_opt': 'POWELL_OPT', 'Qs_scf': 'QS_SCF', 'Ep_lin_solver': 'EP_LIN_SOLVER'}<|fim▁end|>
<|file_name|>DotImpl.java<|end_file_name|><|fim▁begin|>/** * Copyright 2009-2016 Université Paris Ouest and Sorbonne Universités, Univ. Paris 06 - CNRS UMR 7606 (LIP6) * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Project leader / Initial Contributor: * Lom Messan Hillah - <[email protected]> * * Contributors: * ${ocontributors} - <$oemails}> * * Mailing list: * [email protected] */ /** * (C) Sorbonne Universités, UPMC Univ Paris 06, UMR CNRS 7606 (LIP6/MoVe) * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Lom HILLAH (LIP6) - Initial models and implementation * Rachid Alahyane (UPMC) - Infrastructure and continuous integration * Bastien Bouzerau (UPMC) - Architecture * Guillaume Giffo (UPMC) - Code generation refactoring, High-level API */ package fr.lip6.move.pnml.symmetricnet.dots.impl; import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.FileChannel; import java.nio.charset.Charset; import java.util.List; import org.apache.axiom.om.OMElement; import org.eclipse.emf.common.util.DiagnosticChain; import org.eclipse.emf.ecore.EClass; import fr.lip6.move.pnml.framework.general.PnmlExport; import fr.lip6.move.pnml.framework.utils.IdRefLinker; import fr.lip6.move.pnml.framework.utils.ModelRepository; import fr.lip6.move.pnml.framework.utils.PNMLEncoding; import fr.lip6.move.pnml.framework.utils.PrettyPrintData; import fr.lip6.move.pnml.framework.utils.exception.InnerBuildException; import fr.lip6.move.pnml.framework.utils.exception.InvalidIDException; import fr.lip6.move.pnml.framework.utils.exception.VoidRepositoryException; import fr.lip6.move.pnml.symmetricnet.dots.Dot; import fr.lip6.move.pnml.symmetricnet.dots.DotsFactory; import fr.lip6.move.pnml.symmetricnet.dots.DotsPackage; import fr.lip6.move.pnml.symmetricnet.terms.Sort; import fr.lip6.move.pnml.symmetricnet.terms.impl.BuiltInSortImpl; /** * <!-- begin-user-doc --> * An implementation of the model object '<em><b>Dot</b></em>'. * <!-- end-user-doc --> * <p> * </p> * * @generated */ public class DotImpl extends BuiltInSortImpl implements Dot { /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ protected DotImpl() { super(); } /** * <!-- begin-user-doc --> * <!-- end-user-doc --><|fim▁hole|> */ @Override protected EClass eStaticClass() { return DotsPackage.Literals.DOT; } /** * Return the string containing the pnml output */ @Override public String toPNML() { //id 0 //idref 0 //attributes 0 //sons 0 Boolean prettyPrintStatus = ModelRepository.getInstance().isPrettyPrintActive(); String retline = ""; String headline = ""; PrettyPrintData prpd = null; if (prettyPrintStatus) { retline = "\n"; prpd = ModelRepository.getInstance().getPrettyPrintData(); headline = prpd.getCurrentLineHeader(); } StringBuilder sb = new StringBuilder(); sb.append(headline); sb.append("<dot"); if (prettyPrintStatus) { headline = prpd.increaseLineHeaderLevel(); } //begin attributes, id and id ref processing sb.append("/>"); sb.append(retline); //sons, follow processing /****/ if (prettyPrintStatus) { headline = prpd.decreaseLineHeaderLevel(); } return sb.toString(); } @Override @SuppressWarnings("unchecked") public void fromPNML(OMElement locRoot, IdRefLinker idr) throws InnerBuildException, InvalidIDException, VoidRepositoryException { //0 //0 //0 //0 @SuppressWarnings("unused") DotsFactory fact = DotsFactory.eINSTANCE; //processing id //processing idref //processing attributes //processing sons } /** * Return the string containing the pnml output */ @Override public void toPNML(FileChannel fc) { //id 0 //idref 0 //attributes 0 //sons 0 final int bufferSizeKB = 8; final int bufferSize = bufferSizeKB * 1024; final ByteBuffer bytebuf = ByteBuffer.allocateDirect(bufferSize); final String charsetEncoding = PNMLEncoding.UTF_8.getName(); Boolean prettyPrintStatus = ModelRepository.getInstance().isPrettyPrintActive(); String retline = ""; String headline = ""; PrettyPrintData prpd = null; if (prettyPrintStatus) { retline = "\n"; prpd = ModelRepository.getInstance().getPrettyPrintData(); headline = prpd.getCurrentLineHeader(); } StringBuilder sb = new StringBuilder(); sb.append(headline); sb.append("<dot"); if (prettyPrintStatus) { headline = prpd.increaseLineHeaderLevel(); } //begin attributes, id and id ref processing sb.append("/>"); sb.append(retline); //sons, follow processing /****/ if (prettyPrintStatus) { headline = prpd.decreaseLineHeaderLevel(); } try { writeIntoStream(bytebuf, fc, sb.toString().getBytes(Charset.forName(charsetEncoding))); } catch (IOException io) { io.printStackTrace(); // fail fast return; } sb = null; } /** * Writes buffer of a given max size into file channel. */ private static final void writeIntoStream(final ByteBuffer bytebuf, final FileChannel fc, final byte[] contents) throws IOException { final int chopSize = 6 * 1024; if (contents.length >= bytebuf.capacity()) { List<byte[]> chops = PnmlExport.chopBytes(contents, chopSize); for (byte[] buf : chops) { bytebuf.put(buf); bytebuf.flip(); fc.write(bytebuf); bytebuf.clear(); } } else { bytebuf.put(contents); bytebuf.flip(); fc.write(bytebuf); bytebuf.clear(); } } /** * - */ @Override public boolean validateOCL(DiagnosticChain diagnostics) { //this package has no validator class return true; } @Override public boolean equalSorts(Sort sort) { boolean isEqual = false; if (this.eClass().getName().equalsIgnoreCase(sort.eClass().getName())) { //by default they are the same sort, unless they have been named. isEqual = true; if (this.getContainerNamedSort() != null && sort.getContainerNamedSort() != null) { // we test them if they have been explicitly named. isEqual = this.getContainerNamedSort().getName() .equalsIgnoreCase(sort.getContainerNamedSort().getName()); }// otherwise, keep the default. } return isEqual; } } //DotImpl<|fim▁end|>
* @generated
<|file_name|>main.rs<|end_file_name|><|fim▁begin|>#[macro_use] extern crate rouille; #[macro_use] extern crate serde_derive; #[macro_use] extern crate serde_json; extern crate handlebars; mod controller; mod data_type; use std::path::{Path, PathBuf}; use std::fs::File; use std::io::prelude::*; use handlebars::Handlebars;<|fim▁hole|>use data_type::{TemplateContext, DayTemplate, TemplateWrapper, Trip}; const HOST : &'static str = "localhost:8000"; //#[get("/peru")] //fn index() -> Template { // let mut file = File::open("./content/data/text_content.json").unwrap(); // let mut data = String::new(); // file.read_to_string(&mut data).unwrap(); // let trip: Trip = serde_json::from_str(&data).unwrap(); // // Template::render("index", &trip) //} // // //#[get("/peru/style/<file..>")] //fn style(file: PathBuf) -> Option<NamedFile> { // NamedFile::open(Path::new("content/style/").join(file)).ok() //} // //#[get("/peru/js/<file..>")] //fn js(file: PathBuf) -> Option<NamedFile> { // NamedFile::open(Path::new("content/js/").join(file)).ok() //} // //#[get("/peru/images/<file..>")] //fn images(file: PathBuf) -> Option<NamedFile> { // NamedFile::open(Path::new("content/images/").join(file)).ok() //} // fn main() { println!("Server is running on {}", HOST); rouille::start_server(HOST, move |req| { //Serve static file { let response = rouille::match_assets(req, "."); if response.is_success() { return response; } } router!(req, (GET)(/peru/{id : i32}) => { controller::serve_article(&req, &id) }, (GET)(/peru) => { controller::serve_index(&req) }, _ => rouille::Response::empty_404() ) }, ); } // router.get("/blog", index_handler, "index_handler"); // router.get("/images/:imageId", handler, "handler"); // // mount.mount("/images/", Static::new(Path::new("content/images"))); // mount.mount("/images/min", Static::new(Path::new("content/images/min"))); // mount.mount("/style/", Static::new(Path::new("content/style"))); // mount.mount("/js/", Static::new(Path::new("content/js"))); // mount.mount("/", router); // // // fn index_handler(req: &mut Request) -> IronResult<Response> { // let mut file = File::open("./content/photos.json").unwrap(); // let mut data = String::new(); // file.read_to_string(&mut data).unwrap(); // let deserialized: Data = serde_json::from_str(&data).unwrap(); // // let mut host: String = "".to_string(); // for item in req.headers.iter() { // if item.name() == "Host" { // host = item.value_string(); // } // } // // Ok(Response::with((status::Ok, ShowOff::get_page(&host, deserialized)))) // } // fn handler(req: &mut Request) -> IronResult<Response> { // let mut file = File::open("./content/photos.json").unwrap(); // let mut data = String::new(); // file.read_to_string(&mut data).unwrap(); // let deserialized: Data = serde_json::from_str(&data).unwrap(); // // // let image_page = ImagePage {}; // // let ref query_image = // req.extensions.get::<Router>().unwrap().find("imageId").unwrap_or("/"); // let mut host: String = "".to_string(); // for item in req.headers.iter() { // if item.name() == "Host" { // host = item.value_string(); // } // } // // let result = query_image.parse::<usize>(); // match result { // Ok(i) => Ok(Response::with((status::Ok, image_page.get_page(&host, deserialized, i)))), // Err(_) => { // // let markup = html!{ // // h1 "Bad request!" // // }; // Ok(Response::with((status::Ok, "".to_string()))) // } // } // // // } // //0.0.0.0 For docker purpose // Iron::new(mount).http("0.0.0.0:3000").unwrap(); // Iron::new(mount).http("localhost:3000").unwrap(); //}<|fim▁end|>
<|file_name|>E0283.rs<|end_file_name|><|fim▁begin|>trait Generator { fn create() -> u32; } struct Impl; impl Generator for Impl { fn create() -> u32 { 1 } } impl Impl { fn new() -> Self { Impl{} } } impl Into<u32> for Impl { fn into(self) -> u32 { 1 } }<|fim▁hole|> fn foo(bar: u32) {} struct AnotherImpl; impl Generator for AnotherImpl { fn create() -> u32 { 2 } } fn main() { let cont: u32 = Generator::create(); //~ ERROR E0283 } fn buzz() { let foo_impl = Impl::new(); let bar = foo_impl.into() * 1u32; //~ ERROR E0283 foo(bar); }<|fim▁end|>
<|file_name|>ol_gmu.py<|end_file_name|><|fim▁begin|># -*- coding: utf-8 -*- """ openload.io urlresolver plugin Copyright (C) 2015 tknorris This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. """ import re import urllib2 from HTMLParser import HTMLParser from urlresolver9 import common from urlresolver9.resolver import ResolverError net = common.Net() def get_media_url(url): try: HTTP_HEADER = { 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/39.0', 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3', 'Accept-Encoding': 'none', 'Accept-Language': 'en-US,en;q=0.8', 'Referer': url} # 'Connection': 'keep-alive' html = net.http_GET(url, headers=HTTP_HEADER).content hiddenurl = HTMLParser().unescape(re.search('hiddenurl">(.+?)<\/span>', html, re.IGNORECASE).group(1)) s = [] for i in hiddenurl: j = ord(i) if (j >= 33 & j <= 126): s.append(chr(33 + ((j + 14) % 94))) else: s.append(chr(j)) res = ''.join(s) videoUrl = 'https://openload.co/stream/{0}?mime=true'.format(res) dtext = videoUrl.replace('https', 'http') headers = {'User-Agent': HTTP_HEADER['User-Agent']} req = urllib2.Request(dtext, None, headers) res = urllib2.urlopen(req) videourl = res.geturl() res.close() return videourl except Exception as e: common.log_utils.log_debug('Exception during openload resolve parse: %s' % e) raise <|fim▁hole|> raise ResolverError('Unable to resolve openload.io link. Filelink not found.')<|fim▁end|>
<|file_name|>xicidaili.py<|end_file_name|><|fim▁begin|>from pyquery import PyQuery as pq from proxypool.schemas.proxy import Proxy<|fim▁hole|>from loguru import logger BASE_URL = 'https://www.xicidaili.com/' class XicidailiCrawler(BaseCrawler): """ xididaili crawler, https://www.xicidaili.com/ """ urls = [BASE_URL] ignore = True def parse(self, html): """ parse html file to get proxies :return: """ doc = pq(html) items = doc('#ip_list tr:contains(高匿)').items() for item in items: country = item.find('td.country').text() if not country or country.strip() != '高匿': continue host = item.find('td:nth-child(2)').text() port = int(item.find('td:nth-child(3)').text()) yield Proxy(host=host, port=port) if __name__ == '__main__': crawler = XicidailiCrawler() for proxy in crawler.crawl(): print(proxy)<|fim▁end|>
from proxypool.crawlers.base import BaseCrawler
<|file_name|>UserService.java<|end_file_name|><|fim▁begin|>package pl.wavesoftware.examples.wildflyswarm.service.api; import pl.wavesoftware.examples.wildflyswarm.domain.User; import java.util.Collection; /** * @author Krzysztof Suszynski <[email protected]> * @since 04.03.16 */ public interface UserService { /**<|fim▁hole|> Collection<User> fetchActiveUsers(); }<|fim▁end|>
* Retrieves a collection of active users * @return a collection with only active users */
<|file_name|>exp_quat_func.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python """Exponential and Quaternion code for Lab 6. Course: EE 106, Fall 2015 Author: Victor Shia, 9/24/15 This Python file is a code skeleton Lab 6 which calculates the rigid body transform given a rotation / translation and computes the twist from rigid body transform. When you think you have the methods implemented correctly, you can test your code by running "python exp_quat_func.py at the command line. This code requires the NumPy and SciPy libraries and kin_func_skeleton which you should have written in lab 3. If you don't already have these installed on your personal computer, you can use the lab machines or the Ubuntu+ROS VM on the course page to complete this portion of the homework. """ import tf import rospy import sys from math import * import numpy as np from tf2_msgs.msg import TFMessage from geometry_msgs.msg import Transform, Vector3 import kin_func_skeleton as kfs def quaternion_to_exp(rot): """ Converts a quaternion vector in 3D to its corresponding omega and theta. This uses the quaternion -> exponential coordinate equation given in Lab 6 Args: rot - a (4,) nd array or 4x1 array: the quaternion vector (\vec{q}, q_o) Returns: omega - (3,) ndarray: the rotation vector theta - a scalar """ #YOUR CODE HERE theta = 2.0 * np.arccos(rot[-1]) if theta == 0: omega = np.array([0.0, 0.0, 0.0]) else: omega = ((1.0/sin(theta/2.0)) * rot[:-1]) return (omega, theta) def create_rbt(omega, theta, p): """ Creates a rigid body transform using omega, theta, and the translation component. g = [R,p; 0,1], where R = exp(omega * theta), p = trans Args: omega - (3,) ndarray : the axis you want to rotate about theta - scalar value trans - (3,) ndarray or 3x1 array: the translation component of the rigid body motion Returns: g - (4,4) ndarray : the rigid body transform """ #YOUR CODE HERE R = kfs.rotation_3d(omega, theta) g = np.array([[R[0][0], R[0][1], R[0][2], p[0]], [R[1][0], R[1][1], R[1][2], p[1]], [R[2][0], R[2][1], R[2][2], p[2]], [0, 0, 0, 1]]) return g def compute_gab(g0a,g0b): """ Creates a rigid body transform g_{ab} the converts between frame A and B given the coordinate frame A,B in relation to the origin Args: g0a - (4,4) ndarray : the rigid body transform from the origin to frame A g0b - (4,4) ndarray : the rigid body transform from the origin to frame B Returns: gab - (4,4) ndarray : the rigid body transform """ #YOUR CODE HERE gab = np.dot(np.linalg.inv(g0a),g0b) return gab def find_omega_theta(R): """ Given a rotation matrix R, finds the omega and theta such that R = exp(omega * theta) Args: R - (3,3) ndarray : the rotational component of the rigid body transform Returns: omega - (3,) ndarray : the axis you want to rotate about theta - scalar value """ #YOUR CODE HERE theta = np.arccos((np.trace(R) - 1)/2) omega = (1/(2*sin(theta)))*np.array([R[2][1] - R[1][2],R[0][2] - R[2][0],R[1][0] - R[0][1]]) return (omega, theta) def find_v(omega, theta, trans): """ Finds the linear velocity term of the twist (v,omega) given omega, theta and translation Args: omega - (3,) ndarray : the axis you want to rotate about theta - scalar value trans - (3,) ndarray of 3x1 list : the translation component of the rigid body transform Returns:<|fim▁hole|> v - (3,1) ndarray : the linear velocity term of the twist (v,omega) """ #YOUR CODE HERE A_1 = np.eye(3) - kfs.rotation_3d(omega, theta) #print A_1 A_1 = A_1.dot(kfs.skew_3d(omega)) #print A_1 A_2 = np.outer(omega, omega.T)*theta #print A_2 A = A_1 + A_2 #print A #print np.linalg.inv(A) v = np.dot(np.linalg.inv(A), trans) #print v return np.array([v]).T #-----------------------------Testing code-------------------------------------- #-------------(you shouldn't need to modify anything below here)---------------- def array_func_test(func_name, args, ret_desired): ret_value = func_name(*args) if not isinstance(ret_value, np.ndarray): print('[FAIL] ' + func_name.__name__ + '() returned something other than a NumPy ndarray') elif ret_value.shape != ret_desired.shape: print('[FAIL] ' + func_name.__name__ + '() returned an ndarray with incorrect dimensions') elif not np.allclose(ret_value, ret_desired, rtol=1e-3): print('[FAIL] ' + func_name.__name__ + '() returned an incorrect value') else: print('[PASS] ' + func_name.__name__ + '() returned the correct value!') def array_func_test_two_outputs(func_name, args, ret_desireds): ret_values = func_name(*args) for i in range(2): ret_value = ret_values[i] ret_desired = ret_desireds[i] if i == 0 and not isinstance(ret_value, np.ndarray): print('[FAIL] ' + func_name.__name__ + '() returned something other than a NumPy ndarray') elif i == 1 and not isinstance(ret_value, float): print('[FAIL] ' + func_name.__name__ + '() returned something other than a float') elif i == 0 and ret_value.shape != ret_desired.shape: print('[FAIL] ' + func_name.__name__ + '() returned an ndarray with incorrect dimensions') elif not np.allclose(ret_value, ret_desired, rtol=1e-3): print('[FAIL] ' + func_name.__name__ + '() returned an incorrect value') else: print('[PASS] ' + func_name.__name__ + '() returned the argument %d value!' % i) if __name__ == "__main__": print('Testing...') #Test quaternion_to_exp() arg1 = np.array([1.0, 2, 3, 0.1]) func_args = (arg1,) ret_desired = (np.array([1.005, 2.0101, 3.0151]), 2.94125) array_func_test_two_outputs(quaternion_to_exp, func_args, ret_desired) #Test create_rbt() arg1 = np.array([1.0, 2, 3]) arg2 = 2 arg3 = np.array([0.5,-0.5,1]) func_args = (arg1,arg2,arg3) ret_desired = np.array( [[ 0.4078, -0.6562, 0.6349, 0.5 ], [ 0.8384, 0.5445, 0.0242, -0.5 ], [-0.3616, 0.5224, 0.7722, 1. ], [ 0. , 0. , 0. , 1. ]]) array_func_test(create_rbt, func_args, ret_desired) #Test compute_gab(g0a,g0b) g0a = np.array( [[ 0.4078, -0.6562, 0.6349, 0.5 ], [ 0.8384, 0.5445, 0.0242, -0.5 ], [-0.3616, 0.5224, 0.7722, 1. ], [ 0. , 0. , 0. , 1. ]]) g0b = np.array( [[-0.6949, 0.7135, 0.0893, 0.5 ], [-0.192 , -0.3038, 0.9332, -0.5 ], [ 0.693 , 0.6313, 0.3481, 1. ], [ 0. , 0. , 0. , 1. ]]) func_args = (g0a, g0b) ret_desired = np.array([[-0.6949, -0.192 , 0.693 , 0. ], [ 0.7135, -0.3038, 0.6313, 0. ], [ 0.0893, 0.9332, 0.3481, 0. ], [ 0. , 0. , 0. , 1. ]]) array_func_test(compute_gab, func_args, ret_desired) #Test find_omega_theta R = np.array( [[ 0.4078, -0.6562, 0.6349 ], [ 0.8384, 0.5445, 0.0242 ], [-0.3616, 0.5224, 0.7722 ]]) func_args = (R,) ret_desired = (np.array([ 0.2673, 0.5346, 0.8018]), 1.2001156089449496) array_func_test_two_outputs(find_omega_theta, func_args, ret_desired) #Test find_v arg1 = np.array([1.0, 2, 3]) arg2 = 1 arg3 = np.array([0.5,-0.5,1]) func_args = (arg1,arg2,arg3) ret_desired = np.array([[-0.1255], [ 0.0431], [ 0.0726]]) array_func_test(find_v, func_args, ret_desired)<|fim▁end|>
<|file_name|>DebugRenderSystem.java<|end_file_name|><|fim▁begin|>/* * Copyright (c) 2013 Triforce - in association with the University of Pretoria and Epi-Use <Advance/> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package afk.ge.tokyo.ems.systems; import afk.bot.london.Sonar; import afk.ge.BBox; import afk.ge.ems.Engine; import afk.ge.ems.ISystem; import afk.ge.ems.Utils; import afk.ge.tokyo.ems.components.Camera; import afk.ge.tokyo.ems.components.Display; import afk.ge.tokyo.ems.components.Mouse; import afk.ge.tokyo.ems.components.Selection; import afk.ge.tokyo.ems.nodes.CollisionNode; import afk.ge.tokyo.ems.nodes.SonarNode; import afk.gfx.GfxEntity; import static afk.gfx.GfxEntity.*; import static afk.gfx.GfxUtils.X_AXIS; import static afk.gfx.GfxUtils.Y_AXIS; import static afk.gfx.GfxUtils.Z_AXIS; import afk.gfx.GraphicsEngine; import com.hackoeur.jglm.Mat4; import com.hackoeur.jglm.Matrices; import com.hackoeur.jglm.Vec3; import com.hackoeur.jglm.Vec4; import java.util.List; /** * * @author daniel */ public class DebugRenderSystem implements ISystem <|fim▁hole|> Engine engine; GraphicsEngine gfxEngine; public DebugRenderSystem(GraphicsEngine gfxEngine) { this.gfxEngine = gfxEngine; } @Override public boolean init(Engine engine) { this.engine = engine; return true; } @Override public void update(float t, float dt) { Camera camera = engine.getGlobal(Camera.class); Mouse mouse = engine.getGlobal(Mouse.class); Display display = engine.getGlobal(Display.class); Selection selection = engine.getGlobal(Selection.class); List<CollisionNode> nodes = engine.getNodeList(CollisionNode.class); for (CollisionNode node : nodes) { BBox bbox = new BBox(node.state, node.bbox); GfxEntity gfx = gfxEngine.getDebugEntity(bbox); gfx.position = bbox.getCenterPoint(); gfx.rotation = node.state.rot; gfx.scale = new Vec3(1); gfx.colour = selection.getEntity() == node.entity ? GREEN : MAGENTA; } List<SonarNode> snodes = engine.getNodeList(SonarNode.class); for (SonarNode node : snodes) { final Vec3[] POS_AXIS = { X_AXIS, Y_AXIS, Z_AXIS }; final Vec3[] NEG_AXIS = { X_AXIS.getNegated(), Y_AXIS.getNegated(), Z_AXIS.getNegated() }; Sonar sonar = node.controller.events.sonar; Mat4 m = Utils.getMatrix(node.state); Vec3 pos = node.state.pos.add(m.multiply(node.bbox.offset.toDirection()).getXYZ()); float[] sonarmins = { sonar.distance[3], sonar.distance[4], sonar.distance[5] }; float[] sonarmaxes = { sonar.distance[0], sonar.distance[1], sonar.distance[2] }; for (int i = 0; i < 3; i++) { if (!Float.isNaN(node.sonar.min.get(i))) { drawSonar(node, NEG_AXIS[i], sonarmins[i], node.sonar.min.get(i), pos.subtract(m.multiply(NEG_AXIS[i].scale(node.bbox.extent.get(i)).toDirection()).getXYZ())); } if (!Float.isNaN(node.sonar.max.get(i))) { drawSonar(node, POS_AXIS[i], sonarmaxes[i], node.sonar.max.get(i), pos.add(m.multiply(POS_AXIS[i].scale(node.bbox.extent.get(i)).toDirection()).getXYZ())); } } gfxEngine.getDebugEntity(new Vec3[] { new Vec3(-1000, 0, 0), new Vec3(1000, 0, 0) }).colour = new Vec3(0.7f, 0, 0); gfxEngine.getDebugEntity(new Vec3[] { new Vec3(0, -1000, 0), new Vec3(0, 1000, 0) }).colour = new Vec3(0, 0.7f, 0); gfxEngine.getDebugEntity(new Vec3[] { new Vec3(0, 0, -1000), new Vec3(0, 0, 1000) }).colour = new Vec3(0, 0, 0.7f); final float fov = 60.0f, near = 0.1f, far = 200.0f; Mat4 proj = Matrices.perspective(fov, display.screenWidth/display.screenHeight, near, far); Mat4 view = Matrices.lookAt(camera.eye, camera.at, camera.up); Mat4 cam = proj.multiply(view); Mat4 camInv = cam.getInverse(); Vec4 mouseNear4 = camInv.multiply(new Vec4(mouse.nx,mouse.ny,-1,1)); Vec4 mouseFar4 = camInv.multiply(new Vec4(mouse.nx,mouse.ny,1,1)); Vec3 mouseNear = mouseNear4.getXYZ().scale(1.0f/mouseNear4.getW()); Vec3 mouseFar = mouseFar4.getXYZ().scale(1.0f/mouseFar4.getW()); gfxEngine.getDebugEntity(new Vec3[] { mouseNear, mouseFar }).colour = new Vec3(1,0,0); } } private void drawSonar(SonarNode node, Vec3 axis, float sonar, float value, Vec3 pos) { GfxEntity gfx = gfxEngine.getDebugEntity(new Vec3[] { Vec3.VEC3_ZERO, axis.scale((Float.isInfinite(sonar) ? value : sonar)) }); gfx.position = pos; gfx.rotation = node.state.rot; gfx.scale = new Vec3(1); gfx.colour = MAGENTA; } @Override public void destroy() { } }<|fim▁end|>
{
<|file_name|>date.rs<|end_file_name|><|fim▁begin|>use std::fmt::{self, Show}; use std::str::FromStr; use time::Tm; use header::{Header, HeaderFormat}; use header::shared::util::from_one_raw_str; use header::shared::time::tm_from_str; // Egh, replace as soon as something better than time::Tm exists. /// The `Date` header field. #[derive(Copy, PartialEq, Clone)] pub struct Date(pub Tm); deref!(Date => Tm); impl Header for Date { fn header_name(_: Option<Date>) -> &'static str { "Date" } fn parse_header(raw: &[Vec<u8>]) -> Option<Date> { from_one_raw_str(raw) } } impl HeaderFormat for Date { fn fmt_header(&self, fmt: &mut fmt::Formatter) -> fmt::Result { let tm = **self; match tm.tm_utcoff { 0 => tm.rfc822().fmt(fmt), _ => tm.to_utc().rfc822().fmt(fmt)<|fim▁hole|> } } impl FromStr for Date { fn from_str(s: &str) -> Option<Date> { tm_from_str(s).map(Date) } } bench_header!(imf_fixdate, Date, { vec![b"Sun, 07 Nov 1994 08:48:37 GMT".to_vec()] }); bench_header!(rfc_850, Date, { vec![b"Sunday, 06-Nov-94 08:49:37 GMT".to_vec()] }); bench_header!(asctime, Date, { vec![b"Sun Nov 6 08:49:37 1994".to_vec()] });<|fim▁end|>
}
<|file_name|>xnxx.py<|end_file_name|><|fim▁begin|># coding: utf-8 from __future__ import unicode_literals from .common import InfoExtractor from ..compat import compat_urllib_parse_unquote class XNXXIE(InfoExtractor): _VALID_URL = r'https?://(?:video|www)\.xnxx\.com/video-?(?P<id>[0-9a-z]+)/'<|fim▁hole|> 'info_dict': { 'id': '55awb78', 'ext': 'flv', 'title': 'Skyrim Test Video', 'age_limit': 18, }, }, { 'url': 'http://video.xnxx.com/video1135332/lida_naked_funny_actress_5_', 'only_matching': True, }, { 'url': 'http://www.xnxx.com/video-55awb78/', 'only_matching': True, }] def _real_extract(self, url): video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) video_url = self._search_regex(r'flv_url=(.*?)&amp;', webpage, 'video URL') video_url = compat_urllib_parse_unquote(video_url) video_title = self._html_search_regex(r'<title>(.*?)\s+-\s+XNXX.COM', webpage, 'title') video_thumbnail = self._search_regex(r'url_bigthumb=(.*?)&amp;', webpage, 'thumbnail', fatal=False) return { 'id': video_id, 'url': video_url, 'title': video_title, 'ext': 'flv', 'thumbnail': video_thumbnail, 'age_limit': 18, }<|fim▁end|>
_TESTS = [{ 'url': 'http://www.xnxx.com/video-55awb78/skyrim_test_video', 'md5': 'ef7ecee5af78f8b03dca2cf31341d3a0',
<|file_name|>utils.py<|end_file_name|><|fim▁begin|>from django.utils.six.moves import input # From https://stackoverflow.com/a/39257511/1157536 def ask_for_confirmation(question, default=None): """Ask for confirmation before proceeding. """ result = input('{} '.format(question)) if not result and default is not None:<|fim▁hole|> while len(result) < 1 or result[0].lower() not in 'yn': result = input('Please answer yes or no: ') return result[0].lower() == 'y'<|fim▁end|>
return default
<|file_name|>IneffableTruth.js<|end_file_name|><|fim▁begin|>import React from 'react'; import SPELLS from 'common/SPELLS/index'; import { formatDuration } from 'common/format'; import StatisticBox, { STATISTIC_ORDER } from 'interface/others/StatisticBox'; import STATISTIC_CATEGORY from 'interface/others/STATISTIC_CATEGORY'; import SpellLink from 'common/SpellLink'; import SpellIcon from 'common/SpellIcon'; import Events from 'parser/core/Events'; import Analyzer, { SELECTED_PLAYER } from 'parser/core/Analyzer'; import SpellUsable from 'parser/shared/modules/SpellUsable'; import EventEmitter from 'parser/core/modules/EventEmitter'; import indexById from 'common/indexById'; import safeMerge from 'common/safeMerge'; import T_DEATH_KNIGHT from 'common/SPELLS/talents/deathknight'; import T_DEMON_HUNTER from 'common/SPELLS/talents/demonhunter'; import T_DRUID from 'common/SPELLS/talents/druid'; import T_HUNTER from 'common/SPELLS/talents/hunter'; import T_MAGE from 'common/SPELLS/talents/mage'; import T_MONK from 'common/SPELLS/talents/monk'; import T_PALADIN from 'common/SPELLS/talents/paladin'; import T_PRIEST from 'common/SPELLS/talents/priest'; import T_ROGUE from 'common/SPELLS/talents/rogue'; import T_SHAMAN from 'common/SPELLS/talents/shaman'; import T_WARLOCK from 'common/SPELLS/talents/warlock'; import T_WARRIOR from 'common/SPELLS/talents/warrior'; import DEATH_KNIGHT from 'common/SPELLS/deathknight'; import DEMON_HUNTER from 'common/SPELLS/demonhunter'; import DRUID from 'common/SPELLS/druid'; import HUNTER from 'common/SPELLS/hunter'; import MAGE from 'common/SPELLS/mage'; import MONK from 'common/SPELLS/monk'; import PALADIN from 'common/SPELLS/paladin'; import PRIEST from 'common/SPELLS/priest'; import ROGUE from 'common/SPELLS/rogue'; import SHAMAN from 'common/SPELLS/shaman'; import WARLOCK from 'common/SPELLS/warlock'; import WARRIOR from 'common/SPELLS/warrior'; const CLASS_ABILITIES = { ...safeMerge(T_DEATH_KNIGHT, T_DEMON_HUNTER, T_DRUID, T_HUNTER, T_MAGE, T_MONK, T_PALADIN, T_PRIEST, T_ROGUE, T_SHAMAN, T_WARLOCK, T_WARRIOR), ...safeMerge(DEATH_KNIGHT, DEMON_HUNTER, DRUID, HUNTER, MAGE, MONK, PALADIN, PRIEST, ROGUE, SHAMAN, WARLOCK, WARRIOR), }; indexById(CLASS_ABILITIES); const SMALL_TRUTH = 0.3; const BIG_TRUTH = 0.5; const debug = false; class IneffableTruth extends Analyzer { static dependencies = { spellUsable: SpellUsable, }; buffActive = false; lastTimestamp = 0; reducedDuration = []; reductionPercent = 0; constructor(...args) { super(...args); this.active = this.selectedCombatant.hasCorruptionByName("Ineffable Truth"); if (!this.active) { return; } this.reductionPercent += this.selectedCombatant.getCorruptionCount(SPELLS.INEFFABLE_TRUTH_T1.id) * SMALL_TRUTH; this.reductionPercent += this.selectedCombatant.getCorruptionCount(SPELLS.INEFFABLE_TRUTH_T2.id) * BIG_TRUTH; this.addEventListener(Events.applybuff.by(SELECTED_PLAYER).spell(SPELLS.INEFFABLE_TRUTH_BUFF), this.setBuffActive); this.addEventListener(Events.removebuff.by(SELECTED_PLAYER).spell(SPELLS.INEFFABLE_TRUTH_BUFF), this.setBuffInactive); this.addEventListener(EventEmitter.catchAll, this.reduceCooldowns); } setBuffActive(event) { this.buffActive = true; this.lastTimestamp = event.timestamp; } setBuffInactive() { this.buffActive = false; debug && this.log(this.reducedDuration); } reduceCooldowns(event) { if (!this.buffActive) { return; } /** * This is assuming that stacking this corruption works additive, might need adjustment in the future * 1x 50%: For every 1 second of elapsed time, reduce cooldowns for another 50% of that (0.5 seconds) * 1x 30% 1x 50%: For every 1 second of elapsed time, reduce cooldowns for another 80% of that (0.8 seconds) * 2x 50%: For every 1 second of elapsed time, reduce cooldowns for another 100% of that (1.0 seconds) */ const reduction = (event.timestamp - this.lastTimestamp) * this.reductionPercent; Object.keys(this.spellUsable._currentCooldowns) .filter(cd => CLASS_ABILITIES[cd]) .forEach(cooldown => {<|fim▁hole|> debug && this.log(cooldown); this.spellUsable.reduceCooldown(cooldown, reduction, event.timestamp); if (!this.reducedDuration[cooldown]) { this.reducedDuration[cooldown] = reduction; } else { this.reducedDuration[cooldown] += reduction; } }); this.lastTimestamp = event.timestamp; } get totalReduction() { return this.reducedDuration.reduce((acc, curr) => acc + curr, 0) / 1000; } statistic() { return ( <StatisticBox icon={<SpellIcon id={SPELLS.INEFFABLE_TRUTH_BUFF.id} />} value={`${formatDuration(this.totalReduction)} min reduction`} category={STATISTIC_CATEGORY.ITEMS} position={STATISTIC_ORDER.OPTIONAL(60)} label="Ineffable Truth" > <table className="table table-condensed"> <thead> <tr> <th /> <th>Spell</th> <th>Reduction</th> </tr> </thead> <tbody> { Object.entries(this.reducedDuration).map((cd) => ( <tr key={cd[0]}> <td><SpellIcon id={cd[0]} /></td> <td><SpellLink id={cd[0]} icon={false} /></td> <td>{formatDuration(cd[1] / 1000)}</td> </tr> ))} </tbody> </table> </StatisticBox> ); } } export default IneffableTruth;<|fim▁end|>
<|file_name|>model_control_one_enabled_Anscombe_Lag1Trend_Seasonal_WeekOfYear_SVR.py<|end_file_name|><|fim▁begin|>import tests.model_control.test_ozone_custom_models_enabled as testmod<|fim▁hole|> testmod.build_model( ['Anscombe'] , ['Lag1Trend'] , ['Seasonal_WeekOfYear'] , ['SVR'] );<|fim▁end|>
<|file_name|>ObjectMetadataProvider.java<|end_file_name|><|fim▁begin|>/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. <|fim▁hole|> * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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. */ package com.amazonaws.services.s3.transfer; import java.io.File; import com.amazonaws.services.s3.model.ObjectMetadata; /** * This is the callback interface which is used by TransferManager.uploadDirectory and * TransferManager.uploadFileList. The callback is invoked for each file that is uploaded by * <code>TransferManager</code> and given an opportunity to specify the metadata for each file. */ public interface ObjectMetadataProvider { /* * This method is called for every file that is uploaded by <code>TransferManager</code> * and gives an opportunity to specify the metadata for the file. * * @param file * The file being uploaded. * * @param metadata * The default metadata for the file. You can modify this object to specify * your own metadata. */ public void provideObjectMetadata(final File file, final ObjectMetadata metadata); }<|fim▁end|>
* * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License.
<|file_name|>CooperationServer.py<|end_file_name|><|fim▁begin|># -*- coding: utf-8 -*- # Copyright (c) 2010 - 2014 Detlev Offenbach <[email protected]> # """ Module implementing the cooperation server. """ from __future__ import unicode_literals from PyQt5.QtCore import pyqtSignal from PyQt5.QtNetwork import QTcpServer from .Connection import Connection import Preferences <|fim▁hole|> @signal newConnection(connection) emitted after a new connection was received (Connection) """ newConnection = pyqtSignal(Connection) def __init__(self, address, parent=None): """ Constructor @param address address the server should listen on (QHostAddress) @param parent reference to the parent object (QObject) """ super(CooperationServer, self).__init__(parent) self.__address = address def incomingConnection(self, socketDescriptor): """ Public method handling an incoming connection. @param socketDescriptor native socket descriptor (integer) """ connection = Connection(self) connection.setSocketDescriptor(socketDescriptor) self.newConnection.emit(connection) def startListening(self, port=-1, findFreePort=False): """ Public method to start listening for new connections. @param port port to listen on (integer) @param findFreePort flag indicating to search for a free port depending on the configuration (boolean) @return tuple giving a flag indicating success (boolean) and the port the server listens on """ res = self.listen(self.__address, port) if findFreePort and Preferences.getCooperation("TryOtherPorts"): endPort = port + Preferences.getCooperation("MaxPortsToTry") while not res and port < endPort: port += 1 res = self.listen(self.__address, port) return res, port<|fim▁end|>
class CooperationServer(QTcpServer): """ Class implementing the cooperation server.
<|file_name|>redis.py<|end_file_name|><|fim▁begin|>""" Redis Blueprint =============== **Fabric environment:** .. code-block:: yaml blueprints: - blues.redis settings: redis: # bind: 0.0.0.0 # Set the bind address specifically (Default: 127.0.0.1) """ import re from fabric.decorators import task from fabric.utils import abort from refabric.context_managers import sudo from refabric.contrib import blueprints from . import debian from refabric.operations import run __all__ = ['start', 'stop', 'restart', 'setup', 'configure'] blueprint = blueprints.get(__name__) start = debian.service_task('redis-server', 'start') stop = debian.service_task('redis-server', 'stop') restart = debian.service_task('redis-server', 'restart') @task def setup(): """ Install and configure Redis """ install() configure() def install(): with sudo(): debian.apt_get('install', 'redis-server') def get_installed_version(): """ Get installed version as tuple. Parsed output format: Redis server v=2.8.4 sha=00000000:0 malloc=jemalloc-3.4.1 bits=64 build=a... """ retval = run('redis-server --version') m = re.match('.+v=(?P<version>[0-9\.]+).+', retval.stdout) try: _v = m.group('version') v = tuple(map(int, str(_v).split('.'))) return v except IndexError: abort('Failed to get installed redis version') @task def configure(): """ Configure Redis """ context = { 'bind': blueprint.get('bind', '127.0.0.1') } version = get_installed_version() if version <= (2, 4): config = 'redis-2.4.conf' elif version < (3, 0): config = 'redis-2.8.conf' else: config = 'redis-3.conf' <|fim▁hole|> debian.chown(location='/etc/redis/redis.conf', owner='redis', group='root') restart()<|fim▁end|>
uploads = blueprint.upload(config, '/etc/redis/redis.conf', context) if uploads: if debian.lbs_release() >= '16.04':
<|file_name|>user_group_pill.js<|end_file_name|><|fim▁begin|>"use strict"; const {strict: assert} = require("assert"); const {zrequire} = require("../zjsunit/namespace"); const {run_test} = require("../zjsunit/test"); const user_groups = zrequire("user_groups"); const user_group_pill = zrequire("user_group_pill"); const admins = { name: "Admins", description: "foo", id: 101, members: [10, 20], }; const testers = { name: "Testers", description: "bar", id: 102, members: [20, 50, 30, 40], }; const admins_pill = { id: admins.id, group_name: admins.name, type: "user_group", display_value: admins.name + ": " + admins.members.length + " users", }; const testers_pill = { id: testers.id, group_name: testers.name, type: "user_group", display_value: testers.name + ": " + testers.members.length + " users", }; const groups = [admins, testers]; for (const group of groups) { user_groups.add(group); } run_test("create_item", () => { function test_create_item(group_name, current_items, expected_item) {<|fim▁hole|> } test_create_item(" admins ", [], admins_pill); test_create_item("admins", [testers_pill], admins_pill); test_create_item("admins", [admins_pill], undefined); test_create_item("unknown", [], undefined); }); run_test("get_stream_id", () => { assert.equal(user_group_pill.get_group_name_from_item(admins_pill), admins.name); }); run_test("get_user_ids", () => { const items = [admins_pill, testers_pill]; const widget = {items: () => items}; const user_ids = user_group_pill.get_user_ids(widget); assert.deepEqual(user_ids, [10, 20, 30, 40, 50]); }); run_test("get_group_ids", () => { const items = [admins_pill, testers_pill]; const widget = {items: () => items}; const group_ids = user_group_pill.get_group_ids(widget); assert.deepEqual(group_ids, [101, 102]); });<|fim▁end|>
const item = user_group_pill.create_item_from_group_name(group_name, current_items); assert.deepEqual(item, expected_item);
<|file_name|>profiles.service.spec.ts<|end_file_name|><|fim▁begin|>/*<|fim▁hole|> * Copyright (C) 2016 - 2019 DataSwift Ltd - All Rights Reserved * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * Written by Augustinas Markevicius <[email protected]> 2016 */ /* tslint:disable:no-unused-variable */ import { TestBed, async, inject } from '@angular/core/testing'; import { ProfilesService } from './profiles.service'; import { AuthService } from '../core/services/auth.service'; import { HatApiService } from '../core/services/hat-api.service'; import { APP_CONFIG } from '../app.config'; import { of } from 'rxjs'; describe('ProfilesService', () => { beforeEach(() => { TestBed.configureTestingModule({ providers: [ ProfilesService, { provide: HatApiService, useValue: {} }, { provide: AuthService, useValue: { auth$: of(false) } }, { provide: APP_CONFIG, useValue: {} } ] }); }); it('should ...', inject([ProfilesService], (service: ProfilesService) => { expect(service).toBeTruthy(); })); });<|fim▁end|>
<|file_name|>error.rs<|end_file_name|><|fim▁begin|>use std::error::Error as StdError; use std::fmt::{self, Display}; /// An error that occurred while attempting to deal with the gateway. /// /// Note that - from a user standpoint - there should be no situation in which /// you manually handle these. #[derive(Clone, Debug)] pub enum Error { /// There was an error building a URL. BuildingUrl, /// The connection closed, potentially uncleanly. Closed(Option<u16>, String), /// Expected a Hello during a handshake ExpectedHello, /// Expected a Ready or an InvalidateSession InvalidHandshake, /// An indicator that an unknown opcode was received from the gateway. InvalidOpCode, /// When a session Id was expected (for resuming), but was not present. NoSessionId, /// Failed to reconnect after a number of attempts. ReconnectFailure, } impl Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { f.write_str(self.description()) } } impl StdError for Error { fn description(&self) -> &str { match *self {<|fim▁hole|> Error::BuildingUrl => "Error building url", Error::Closed(_, _) => "Connection closed", Error::ExpectedHello => "Expected a Hello", Error::InvalidHandshake => "Expected a valid Handshake", Error::InvalidOpCode => "Invalid OpCode", Error::NoSessionId => "No Session Id present when required", Error::ReconnectFailure => "Failed to Reconnect", } } }<|fim▁end|>
<|file_name|>test_postgresql.py<|end_file_name|><|fim▁begin|>import unittest from collections import OrderedDict from pypika import ( Array, Field, JSON, QueryException, Table, ) from pypika.dialects import PostgreSQLQuery class InsertTests(unittest.TestCase): table_abc = Table("abc") def test_array_keyword(self): q = PostgreSQLQuery.into(self.table_abc).insert(1, [1, "a", True]) self.assertEqual("INSERT INTO \"abc\" VALUES (1,ARRAY[1,'a',true])", str(q)) class JSONObjectTests(unittest.TestCase): def test_alias_set_correctly(self): table = Table('jsonb_table') q = PostgreSQLQuery.from_('abc').select(table.value.get_text_value('a').as_('name')) self.assertEqual('''SELECT "value"->>'a' "name" FROM "abc"''', str(q)) def test_json_value_from_dict(self): q = PostgreSQLQuery.select(JSON({"a": "foo"})) self.assertEqual('SELECT \'{"a":"foo"}\'', str(q)) def test_json_value_from_array_num(self): q = PostgreSQLQuery.select(JSON([1, 2, 3])) self.assertEqual("SELECT '[1,2,3]'", str(q)) def test_json_value_from_array_str(self): q = PostgreSQLQuery.select(JSON(["a", "b", "c"])) self.assertEqual('SELECT \'["a","b","c"]\'', str(q)) def test_json_value_from_dict_recursive(self): q = PostgreSQLQuery.select(JSON({"a": "z", "b": {"c": "foo"}, "d": 1})) # gotta split this one up to avoid the indeterminate order sql = str(q) start, end = 9, -2 self.assertEqual("SELECT '{}'", sql[:start] + sql[end:]) members_set = set(sql[start:end].split(",")) self.assertSetEqual({'"a":"z"', '"b":{"c":"foo"}', '"d":1'}, members_set) class JSONOperatorsTests(unittest.TestCase): # reference https://www.postgresql.org/docs/9.5/functions-json.html table_abc = Table("abc") def test_get_json_value_by_key(self): q = PostgreSQLQuery.from_(self.table_abc).select("*").where(self.table_abc.json.get_json_value("dates")) self.assertEqual('SELECT * FROM "abc" WHERE "json"->\'dates\'', str(q)) def test_get_json_value_by_index(self): q = PostgreSQLQuery.from_(self.table_abc).select("*").where(self.table_abc.json.get_json_value(1)) self.assertEqual('SELECT * FROM "abc" WHERE "json"->1', str(q)) def test_get_text_value_by_key(self): q = PostgreSQLQuery.from_(self.table_abc).select("*").where(self.table_abc.json.get_text_value("dates")) self.assertEqual('SELECT * FROM "abc" WHERE "json"->>\'dates\'', str(q)) def test_get_text_value_by_index(self): q = PostgreSQLQuery.from_(self.table_abc).select("*").where(self.table_abc.json.get_text_value(1)) self.assertEqual('SELECT * FROM "abc" WHERE "json"->>1', str(q)) def test_get_path_json_value(self): q = PostgreSQLQuery.from_(self.table_abc).select("*").where(self.table_abc.json.get_path_json_value("{a,b}")) self.assertEqual('SELECT * FROM "abc" WHERE "json"#>\'{a,b}\'', str(q)) def test_get_path_text_value(self): q = PostgreSQLQuery.from_(self.table_abc).select("*").where(self.table_abc.json.get_path_text_value("{a,b}")) self.assertEqual('SELECT * FROM "abc" WHERE "json"#>>\'{a,b}\'', str(q)) class JSONBOperatorsTests(unittest.TestCase): # reference https://www.postgresql.org/docs/9.5/functions-json.html table_abc = Table("abc") def test_json_contains_for_json(self): q = PostgreSQLQuery.select(JSON({"a": 1, "b": 2}).contains({"a": 1})) # gotta split this one up to avoid the indeterminate order sql = str(q) start, end = 9, -13 self.assertEqual("SELECT '{}'@>'{\"a\":1}'", sql[:start] + sql[end:]) members_set = set(sql[start:end].split(",")) self.assertSetEqual({'"a":1', '"b":2'}, members_set) def test_json_contains_for_field(self): q = ( PostgreSQLQuery.from_(self.table_abc) .select("*") .where(self.table_abc.json.contains({"dates": "2018-07-10 - 2018-07-17"})) ) self.assertEqual( "SELECT * " 'FROM "abc" ' 'WHERE "json"@>\'{"dates":"2018-07-10 - 2018-07-17"}\'', str(q), ) def test_json_contained_by_using_str_arg(self): q = ( PostgreSQLQuery.from_(self.table_abc) .select("*") .where( self.table_abc.json.contained_by( OrderedDict( [ ("dates", "2018-07-10 - 2018-07-17"), ("imported", "8"), ] ) ) ) ) self.assertEqual( 'SELECT * FROM "abc" ' 'WHERE "json"<@\'{"dates":"2018-07-10 - 2018-07-17","imported":"8"}\'', str(q), ) def test_json_contained_by_using_list_arg(self): q = ( PostgreSQLQuery.from_(self.table_abc) .select("*") .where(self.table_abc.json.contained_by(["One", "Two", "Three"])) ) self.assertEqual('SELECT * FROM "abc" WHERE "json"<@\'["One","Two","Three"]\'', str(q)) def test_json_contained_by_with_complex_criterion(self): q = ( PostgreSQLQuery.from_(self.table_abc) .select("*") .where(self.table_abc.json.contained_by(["One", "Two", "Three"]) & (self.table_abc.id == 26)) ) self.assertEqual( 'SELECT * FROM "abc" WHERE "json"<@\'["One","Two","Three"]\' AND "id"=26', str(q), ) def test_json_has_key(self): q = PostgreSQLQuery.from_(self.table_abc).select("*").where(self.table_abc.json.has_key("dates")) self.assertEqual('SELECT * FROM "abc" WHERE "json"?\'dates\'', str(q)) def test_json_has_keys(self): q = PostgreSQLQuery.from_(self.table_abc).select("*").where(self.table_abc.json.has_keys(["dates", "imported"])) self.assertEqual("SELECT * FROM \"abc\" WHERE \"json\"?&ARRAY['dates','imported']", str(q)) def test_json_has_any_keys(self): q = ( PostgreSQLQuery.from_(self.table_abc) .select("*") .where(self.table_abc.json.has_any_keys(["dates", "imported"])) ) self.assertEqual("SELECT * FROM \"abc\" WHERE \"json\"?|ARRAY['dates','imported']", str(q)) def test_subnet_contains_inet(self): q = ( PostgreSQLQuery.from_(self.table_abc) .select(self.table_abc.a.lshift(2)) .where(self.table_abc.cidr >> "1.1.1.1") ) self.assertEqual("SELECT \"a\"<<2 FROM \"abc\" WHERE \"cidr\">>'1.1.1.1'", str(q)) class DistinctOnTests(unittest.TestCase): table_abc = Table("abc")<|fim▁hole|> self.assertEqual('''SELECT DISTINCT ON("lname","fname") "lname","id" FROM "abc"''', str(q)) class ArrayTests(unittest.TestCase): def test_array_syntax(self): tb = Table("tb") q = PostgreSQLQuery.from_(tb).select(Array(1, "a", ["b", 2, 3])) self.assertEqual(str(q), "SELECT ARRAY[1,'a',ARRAY['b',2,3]] FROM \"tb\"") def test_render_alias_in_array_sql(self): tb = Table("tb") q = PostgreSQLQuery.from_(tb).select(Array(tb.col).as_("different_name")) self.assertEqual(str(q), 'SELECT ARRAY["col"] "different_name" FROM "tb"') class ReturningClauseTests(unittest.TestCase): @classmethod def setUpClass(cls) -> None: super().setUpClass() cls.table_abc = Table('abc') def test_returning_from_missing_table_raises_queryexception(self): field_from_diff_table = Field('xyz', table=Table('other')) with self.assertRaisesRegex(QueryException, "You can't return from other tables"): ( PostgreSQLQuery.from_(self.table_abc) .where(self.table_abc.foo == self.table_abc.bar) .delete() .returning(field_from_diff_table) ) def test_queryexception_if_returning_used_on_invalid_query(self): with self.assertRaisesRegex(QueryException, "Returning can't be used in this query"): PostgreSQLQuery.from_(self.table_abc).select('abc').returning('abc') def test_no_queryexception_if_returning_used_on_valid_query_type(self): # No exceptions for insert, update and delete queries with self.subTest('DELETE'): PostgreSQLQuery.from_(self.table_abc).where(self.table_abc.foo == self.table_abc.bar).delete().returning( "id" ) with self.subTest('UPDATE'): PostgreSQLQuery.update(self.table_abc).where(self.table_abc.foo == 0).set("foo", "bar").returning("id") with self.subTest('INSERT'): PostgreSQLQuery.into(self.table_abc).insert('abc').returning('abc') def test_return_field_from_join_table(self): new_table = Table('xyz') q = ( PostgreSQLQuery.update(self.table_abc) .join(new_table) .on(new_table.id == self.table_abc.xyz) .where(self.table_abc.foo == 0) .set("foo", "bar") .returning(new_table.a) ) self.assertEqual( 'UPDATE "abc" ' 'JOIN "xyz" ON "xyz"."id"="abc"."xyz" ' 'SET "foo"=\'bar\' ' 'WHERE "abc"."foo"=0 ' 'RETURNING "xyz"."a"', str(q), )<|fim▁end|>
def test_distinct_on(self): q = PostgreSQLQuery.from_(self.table_abc).distinct_on("lname", self.table_abc.fname).select("lname", "id")
<|file_name|>tracker.py<|end_file_name|><|fim▁begin|>import cv2 import time import numpy as np MAX_TARGETS = 3 TOP = 0 BOTTOM = 1 LEFT = 0 RIGHT = 1 def __init_tracker(frame): running_average_image = np.float32(frame) running_average_in_display_color_depth = frame.copy() difference = frame.copy() last_target_count = 1 last_target_change_time = 0.0 last_frame_entity_list = [] return None, \ running_average_image, \ running_average_in_display_color_depth, \ difference, \ last_target_count, \ last_target_change_time, \ last_frame_entity_list def __merge_collided_bboxes(bbox_list): # For every bbox... for this_bbox in bbox_list: # Collision detect every other bbox: for other_bbox in bbox_list: if this_bbox is other_bbox: continue # Skip self # Assume a collision to start out with: has_collision = True # These coords are in screen coords, so > means # "lower than" and "further right than". And < # means "higher than" and "further left than". # We also inflate the box size by 10% to deal with # fuzziness in the data. (Without this, there are many times a bbox # is short of overlap by just one or two pixels.) if (this_bbox[BOTTOM][0] * 1.1 < other_bbox[TOP][0] * 0.9): has_collision = False if (this_bbox[TOP][0] * .9 > other_bbox[BOTTOM][0] * 1.1): has_collision = False if (this_bbox[RIGHT][1] * 1.1 < other_bbox[LEFT][1] * 0.9): has_collision = False if (this_bbox[LEFT][1] * 0.9 > other_bbox[RIGHT][1] * 1.1): has_collision = False if has_collision: # merge these two bboxes into one, then start over: top_left_x = min(this_bbox[LEFT][0], other_bbox[LEFT][0]) top_left_y = min(this_bbox[LEFT][1], other_bbox[LEFT][1]) bottom_right_x = max(this_bbox[RIGHT][0], other_bbox[RIGHT][0]) bottom_right_y = max(this_bbox[RIGHT][1], other_bbox[RIGHT][1]) new_bbox = ((top_left_x, top_left_y), (bottom_right_x, bottom_right_y)) bbox_list.remove(this_bbox) bbox_list.remove(other_bbox) bbox_list.append(new_bbox) # Start over with the new list: return __merge_collided_bboxes(bbox_list) # When there are no collions between boxes, return that list: return bbox_list def __display_tracked_objects(frame): cv2.imshow('display', frame) cv2.waitKey(1) def track_object(frame, running_average_image, running_average_in_display_color_depth, difference, last_target_count, last_target_change_time, last_frame_entity_list): if difference is None: return __init_tracker(frame) frame_time = time.time() # Create a working "color image" to modify / blur color_image = frame.copy() # Smooth to get rid of false positives color_image = cv2.GaussianBlur(color_image, (19, 19), 0) # Use the Running Average as the static background # a = 0.020 leaves artifacts lingering way too long. # a = 0.320 works well at 320x240, 15fps. (1/a is roughly num frames.) cv2.accumulateWeighted(color_image, running_average_image, 0.320, None) # Convert the scale of the moving average. running_average_in_display_color_depth = cv2.convertScaleAbs( running_average_image) # Subtract the current frame from the moving average. cv2.absdiff(color_image, running_average_in_display_color_depth, difference) # Convert the image to greyscale. grey_image = cv2.cvtColor(difference, cv2.COLOR_BGR2GRAY) # Threshold the image to a black and white motion mask: _, grey_image = cv2.threshold(grey_image, 2, 255, cv2.THRESH_BINARY) # Smooth and threshold again to eliminate "sparkles" grey_image = cv2.GaussianBlur(grey_image, (19, 19), 0) _, grey_image = cv2.threshold(grey_image, 240, 255, cv2.THRESH_BINARY) non_black_coords_array = np.where(grey_image > 3) # Convert from numpy.where()'s two separate lists to one list of (x, y) tuples: non_black_coords_array = zip( non_black_coords_array[1], non_black_coords_array[0]) # Was using this to hold either pixel coords or polygon coords. points = [] bounding_box_list = [] # Now calculate movements using the white pixels as "motion" data _, contour, hierarchy = cv2.findContours( grey_image, cv2.RETR_CCOMP, cv2.CHAIN_APPROX_SIMPLE) for cnt in contour: [x, y, w, h] = cv2.boundingRect(cnt) point1 = (x, y) point2 = (x + w, y + h) bounding_box_list.append((point1, point2)) epsilon = 0.01 * cv2.arcLength(cnt, True) polygon_points = cv2.approxPolyDP(cnt, epsilon, True) # To track polygon points only (instead of every pixel): # Find the average size of the bbox (targets), then # remove any tiny bboxes (which are prolly just noise). # "Tiny" is defined as any box with 1/10th the area of the average box. # This reduces false positives on tiny "sparkles" noise. box_areas = [] for box in bounding_box_list: box_width = box[RIGHT][0] - box[LEFT][0] box_height = box[BOTTOM][0] - box[TOP][0] box_areas.append(box_width * box_height) average_box_area = 0.0 if len(box_areas): average_box_area = float(sum(box_areas)) / len(box_areas) trimmed_box_list = [] for box in bounding_box_list: box_width = box[RIGHT][0] - box[LEFT][0] box_height = box[BOTTOM][0] - box[TOP][0] # Only keep the box if it's not a tiny noise box: if (box_width * box_height) > average_box_area * 0.1: trimmed_box_list.append(box) bounding_box_list = __merge_collided_bboxes(trimmed_box_list) # Draw the merged box list: for box in bounding_box_list: cv2.rectangle(frame, box[0], box[1], (0, 255, 0), 1) # Here are our estimate points to track, based on merged & trimmed boxes: estimated_target_count = len(bounding_box_list) # Don't allow target "jumps" from few to many or many to few. # Only change the number of targets up to one target per n seconds. # This fixes the "exploding number of targets" when something stops moving # and the motion erodes to disparate little puddles all over the place. # 1 change per 0.35 secs if (frame_time - last_target_change_time) < .350: estimated_target_count = last_target_count else: if (last_target_count - estimated_target_count) > 1: estimated_target_count = last_target_count - 1 if (estimated_target_count - last_target_count) > 1:<|fim▁hole|> last_target_change_time = frame_time # Clip to the user-supplied maximum: estimated_target_count = min(estimated_target_count, MAX_TARGETS) # The estimated_target_count at this point is the maximum number of targets # we want to look for. If kmeans decides that one of our candidate # bboxes is not actually a target, we remove it from the target list below. # Using the numpy values directly (treating all pixels as points): points = non_black_coords_array center_points = [] list(points) if len(list(points)): # If we have all the "target_count" targets from last frame, # use the previously known targets (for greater accuracy). criteria = (cv2.TERM_CRITERIA_EPS + cv2.TERM_CRITERIA_MAX_ITER, 10, 1.0) flags = cv2.KMEANS_RANDOM_CENTERS compactness, labels, centers = cv2.kmeans( points, 2, None, criteria, 10, flags) for center_point in centers: center_points.append(center_point) # Now we have targets that are NOT computed from bboxes -- just # movement weights (according to kmeans). If any two targets are # within the same "bbox count", average them into a single target. # (Any kmeans targets not within a bbox are also kept.) trimmed_center_points = [] removed_center_points = [] for box in bounding_box_list: # Find the centers within this box: center_points_in_box = [] for center_point in center_points: if center_point[0] < box[RIGHT][0] and \ center_point[0] > box[LEFT][0] and \ center_point[1] < box[BOTTOM][1] and \ center_point[1] > box[TOP][1]: # This point is within the box. center_points_in_box.append(center_point) # Now see if there are more than one. If so, merge them. if len(center_points_in_box) > 1: # Merge them: x_list = [] y_list = [] for point in center_points_in_box: x_list.append(point[0]) y_list.append(point[1]) average_x = int(float(sum(x_list)) / len(x_list)) average_y = int(float(sum(y_list)) / len(y_list)) trimmed_center_points.append((average_x, average_y)) # Record that they were removed: removed_center_points += center_points_in_box if len(center_points_in_box) == 1: # Just use it. trimmed_center_points.append(center_points_in_box[0]) # If there are any center_points not within a bbox, just use them. # (It's probably a cluster comprised of a bunch of small bboxes.) for center_point in center_points: if (not center_point in trimmed_center_points) and \ (not center_point in removed_center_points): trimmed_center_points.append(center_point) # Determine if there are any new (or lost) targets: actual_target_count = len(trimmed_center_points) last_target_count = actual_target_count # Now build the list of physical entities (objects) this_frame_entity_list = [] # An entity is list: [name, color, last_time_seen, last_known_coords] for target in trimmed_center_points: # Is this a target near a prior entity (same physical entity)? entity_found = False entity_distance_dict = {} for entity in last_frame_entity_list: entity_coords = entity[3] delta_x = entity_coords[0] - target[0] delta_y = entity_coords[1] - target[1] distance = sqrt(pow(delta_x, 2) + pow(delta_y, 2)) entity_distance_dict[distance] = entity # Did we find any non-claimed entities (nearest to furthest): distance_list = entity_distance_dict.keys() distance_list.sort() for distance in distance_list: # Yes; see if we can claim the nearest one: nearest_possible_entity = entity_distance_dict[distance] # Don't consider entities that are already claimed: if nearest_possible_entity in this_frame_entity_list: continue # Found the nearest entity to claim: entity_found = True # Update last_time_seen nearest_possible_entity[2] = frame_time # Update the new location nearest_possible_entity[3] = target this_frame_entity_list.append(nearest_possible_entity) break if not entity_found: # It's a new entity. color = (random.randint(0, 255), random.randint( 0, 255), random.randint(0, 255)) name = hashlib.md5(str(frame_time) + str(color)).hexdigest()[:6] last_time_seen = frame_time new_entity = [name, color, last_time_seen, target] this_frame_entity_list.append(new_entity) # Now "delete" any not-found entities which have expired: entity_ttl = 1.0 # 1 sec for entity in last_frame_entity_list: last_time_seen = entity[2] if frame_time - last_time_seen > entity_ttl: # It's gone. pass else: # Save it for next time... not expired yet: this_frame_entity_list.append(entity) # For next frame: last_frame_entity_list = this_frame_entity_list center_point = None for entity in bounding_box_list: if (int(entity[1][0] - entity[0][0]) > 50) & (int(entity[1][1] - entity[0][1]) > 50): center_point = int( (entity[0][0] + entity[1][0]) / 2), int((entity[0][1] + entity[1][1]) / 2) cv2.circle(frame, center_point, 20, (0, 0, 255), 1) cv2.circle(frame, center_point, 10, (255, 0, 0), 2) __display_tracked_objects(frame) return center_point, \ running_average_image, \ running_average_in_display_color_depth, \ difference, \ last_target_count, \ last_target_change_time, \ last_frame_entity_list<|fim▁end|>
estimated_target_count = last_target_count + 1
<|file_name|>action.js<|end_file_name|><|fim▁begin|>var github = require('octonode'); var _ = require('lodash'); module.exports = { name:'action', description:'A command to show recent activity for all members of your org', example:'bosco action', cmd:cmd } function cmd(bosco) { getActivity(bosco); } function getActivity(bosco) { var client = github.client(bosco.config.get('github:authToken')); client.get('/orgs/tes/members', {}, function (err, status, body) { if(err) { return bosco.error('Unable to access github with given authKey: ' + err.message); } _.each(body, function(event) { console.dir(event); showUser(bosco, event); }); }); } function showUser(bosco, user) { var client = github.client(bosco.config.get('github:authToken'));<|fim▁hole|> client.get('/users/' + user + '/events', {}, function (err, status, body) { if(err) { return bosco.error('Unable to access github with given authKey: ' + err.message); } _.each(body, function(event) { var data = [user, event.type, event.repo.name, event.created_at]; console.dir(data.join(', ')); }); }); }<|fim▁end|>
<|file_name|>ex15_reading_files.py<|end_file_name|><|fim▁begin|># -- coding: utf-8 -- # Das Modul argv aus Packet sys wird importiert from sys import argv # Die Variablen script und filename werden entpackt # sie müssen dem Script als Argumente mitgegeben werden beim ausführen # z.B so: python ex15_reading_files.py ex15_sample.txt script, filename = argv # Der Inhalt der Datei ex15_sample.txt, der # dem Script beim Ausführen als Argument mitgegeben wurde, # wird in die Variable txt geschrieben txt = open(filename) # Der Dateiname von ex15_sample.txt wird ausgegeben print "Here's your file %r:" % filename # Der Inhalt von txt (und damit der Inhalt von ex15_sample.txt) wird ausgegeben print txt.read() # Man könnte denken, dass man es auch so machen könnte ... # print 'ex15_sample.txt'.read() # aber das geht NICHT, weil # String kein Attribut read haben!!! # AttributeError: 'str' object has no attribute 'read' print "Type the filename again:" # neue Eingabeaufforderung, dadurch wird der Inhalt der Datei (deren Namen man eingibt)<|fim▁hole|># in die Variable file_again geschrieben file_again = open(raw_input("> ")) # Der Inhalt von file_again wird ausgegeben print file_again.read(), 'geht!!!' # Inhalt von ex15_sample.txt wird in die Variable txt_again geschrieben txt_again = open('ex15_sample.txt') # Inhalt von txt_again wird ausgegeben print txt_again.read(), 'das geht auch'<|fim▁end|>
<|file_name|>bucket_test.go<|end_file_name|><|fim▁begin|>package kv_test import ( "context" "testing" "github.com/influxdata/influxdb" "github.com/influxdata/influxdb/kv" influxdbtesting "github.com/influxdata/influxdb/testing" ) func TestBoltBucketService(t *testing.T) { influxdbtesting.BucketService(initBoltBucketService, t) } func TestInmemBucketService(t *testing.T) { influxdbtesting.BucketService(initInmemBucketService, t) } func initBoltBucketService(f influxdbtesting.BucketFields, t *testing.T) (influxdb.BucketService, string, func()) { s, closeBolt, err := NewTestBoltStore() if err != nil { t.Fatalf("failed to create new kv store: %v", err) } svc, op, closeSvc := initBucketService(s, f, t) return svc, op, func() { closeSvc() closeBolt() } } func initInmemBucketService(f influxdbtesting.BucketFields, t *testing.T) (influxdb.BucketService, string, func()) { s, closeBolt, err := NewTestInmemStore() if err != nil { t.Fatalf("failed to create new kv store: %v", err) } svc, op, closeSvc := initBucketService(s, f, t) return svc, op, func() { closeSvc() closeBolt() } }<|fim▁hole|> svc := kv.NewService(s) svc.OrgBucketIDs = f.OrgBucketIDs svc.IDGenerator = f.IDGenerator svc.TimeGenerator = f.TimeGenerator if f.TimeGenerator == nil { svc.TimeGenerator = influxdb.RealTimeGenerator{} } ctx := context.Background() if err := svc.Initialize(ctx); err != nil { t.Fatalf("error initializing bucket service: %v", err) } for _, o := range f.Organizations { if err := svc.PutOrganization(ctx, o); err != nil { t.Fatalf("failed to populate organizations") } } for _, b := range f.Buckets { if err := svc.PutBucket(ctx, b); err != nil { t.Fatalf("failed to populate buckets") } } return svc, kv.OpPrefix, func() { for _, o := range f.Organizations { if err := svc.DeleteOrganization(ctx, o.ID); err != nil { t.Logf("failed to remove organization: %v", err) } } for _, b := range f.Buckets { if err := svc.DeleteBucket(ctx, b.ID); err != nil { t.Logf("failed to remove bucket: %v", err) } } } }<|fim▁end|>
func initBucketService(s kv.Store, f influxdbtesting.BucketFields, t *testing.T) (influxdb.BucketService, string, func()) {
<|file_name|>util.py<|end_file_name|><|fim▁begin|># -*- coding: utf-8 -*- # # ----------------------------------------------------------------------------------- # Copyright (c) Microsoft Open Technologies (Shanghai) Co. Ltd. All rights reserved. # # The MIT License (MIT) # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. # ----------------------------------------------------------------------------------- import importlib import json import os from datetime import datetime from hackathon.log import log try: from config import Config except ImportError: from config_sample import Config __all__ = [ "get_config", "safe_get_config", "get_class", "load_template", "call", "get_now", "Utility" ] def get_config(key): """Get configured value from configuration file according to specified key :type key: str or unicode :param key: the search key, separate section with '.'. For example: "mysql.connection" :Example: get_config("mysql.connection") :return configured value if specified key exists else None :rtype str or unicode or dict """ ret = Config for arg in key.split("."): if arg in ret and isinstance(ret, dict): ret = ret[arg] else: return None return ret def safe_get_config(key, default_value): """Get configured value from configuration file according to specified key and a default value :type key: str | unicode :param key: the search key, separate section with '.'. For example: "mysql.connection" :type default_value: object :param default_value: the default value if specified key cannot be found in configuration file :Example: safe_get_config("mysql.connection", "mysql://root:root@localhost:3306/db") :return configured value if specified key exists else the default value :rtype str or unicode or dict """ r = get_config(key) return r if r else default_value def get_class(kls): """Get the class object by it's name :type kls: str or unicode :param kls: the the full name, including module name of class name , of a class obj :return the class object :rtype classobj :Example: get_class("hackathon.user.UserManager") :raise ModuleException if module cannot be imported """ parts = kls.split('.') module = ".".join(parts[:-1]) m = __import__(module) for comp in parts[1:]: m = getattr(m, comp) return m def load_template(url): """Load hackathon template from file into a dict :type url: str|unicode :param url: the absolute path of the template. :return dict indicates a hackathon template :rtype dict """ try: template = json.load(file(url)) except Exception as e: log.error(e) return None return template def call(mdl_cls_func, cls_args, func_args): # todo refactoring the call method to use standard hackathon_scheduler mdl_name = mdl_cls_func[0] cls_name = mdl_cls_func[1] func_name = mdl_cls_func[2] log.debug('call: mdl_name [%s], cls_name [%s], func_name [%s]' % (mdl_name, cls_name, func_name)) mdl = importlib.import_module(mdl_name) cls = getattr(mdl, cls_name) func = getattr(cls(*cls_args), func_name) func(*func_args) def get_now(): """Return the current local date and time without tzinfo""" return datetime.utcnow() # tzinfo=None class Utility(object): """An utility class for those commonly used methods""" def get_now(self): """Return the current local date and time without tzinfo""" return get_now() def convert(self, value): """Convert unicode string to str""" if isinstance(value, dict): return {self.convert(key): self.convert(value) for key, value in value.iteritems()} elif isinstance(value, list): return [self.convert(element) for element in value] elif isinstance(value, unicode): return value.encode('utf-8') else: return value<|fim▁hole|> .. seealso:: get_config outside Utility class """ return get_config(key) def safe_get_config(self, key, default_value): """Get configured value from configuration file according to specified key and a default value .. seealso:: safe_get_config outside Utility class """ return safe_get_config(key, default_value) def mkdir_safe(self, path): """Create a directory if it doesn't exist :return the directory path """ if path and not (os.path.exists(path)): os.makedirs(path) return path<|fim▁end|>
def get_config(self, key): """Get configured value from configuration file according to specified key
<|file_name|>EnsayosConnection.js<|end_file_name|><|fim▁begin|><|fim▁hole|>var _graphqlRelay = require("graphql-relay"); var _EnsayoType = _interopRequireDefault(require("./EnsayoType"));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}var _default = (0, _graphqlRelay.connectionDefinitions)({ name: 'Ensayos', nodeType: _EnsayoType.default });exports.default = _default; //# sourceMappingURL=EnsayosConnection.js.map<|fim▁end|>
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;
<|file_name|>matching.rs<|end_file_name|><|fim▁begin|>/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use attr::{ParsedAttrSelectorOperation, AttrSelectorOperation, NamespaceConstraint}; use bloom::{BLOOM_HASH_MASK, BloomFilter}; use nth_index_cache::NthIndexCacheInner; use parser::{AncestorHashes, Combinator, Component, LocalName};<|fim▁hole|>pub use context::*; // The bloom filter for descendant CSS selectors will have a <1% false // positive rate until it has this many selectors in it, then it will // rapidly increase. pub static RECOMMENDED_SELECTOR_BLOOM_FILTER_SIZE: usize = 4096; bitflags! { /// Set of flags that are set on either the element or its parent (depending /// on the flag) if the element could potentially match a selector. pub struct ElementSelectorFlags: usize { /// When a child is added or removed from the parent, all the children /// must be restyled, because they may match :nth-last-child, /// :last-of-type, :nth-last-of-type, or :only-of-type. const HAS_SLOW_SELECTOR = 1 << 0; /// When a child is added or removed from the parent, any later /// children must be restyled, because they may match :nth-child, /// :first-of-type, or :nth-of-type. const HAS_SLOW_SELECTOR_LATER_SIBLINGS = 1 << 1; /// When a child is added or removed from the parent, the first and /// last children must be restyled, because they may match :first-child, /// :last-child, or :only-child. const HAS_EDGE_CHILD_SELECTOR = 1 << 2; /// The element has an empty selector, so when a child is appended we /// might need to restyle the parent completely. const HAS_EMPTY_SELECTOR = 1 << 3; } } impl ElementSelectorFlags { /// Returns the subset of flags that apply to the element. pub fn for_self(self) -> ElementSelectorFlags { self & (ElementSelectorFlags::HAS_EMPTY_SELECTOR) } /// Returns the subset of flags that apply to the parent. pub fn for_parent(self) -> ElementSelectorFlags { self & (ElementSelectorFlags::HAS_SLOW_SELECTOR | ElementSelectorFlags::HAS_SLOW_SELECTOR_LATER_SIBLINGS | ElementSelectorFlags::HAS_EDGE_CHILD_SELECTOR) } } /// Holds per-compound-selector data. struct LocalMatchingContext<'a, 'b: 'a, Impl: SelectorImpl> { shared: &'a mut MatchingContext<'b, Impl>, matches_hover_and_active_quirk: bool, } #[inline(always)] pub fn matches_selector_list<E>( selector_list: &SelectorList<E::Impl>, element: &E, context: &mut MatchingContext<E::Impl>, ) -> bool where E: Element { selector_list.0.iter().any(|selector| { matches_selector(selector, 0, None, element, context, &mut |_, _| {}) }) } #[inline(always)] fn may_match<E>(hashes: &AncestorHashes, bf: &BloomFilter) -> bool where E: Element, { // Check the first three hashes. Note that we can check for zero before // masking off the high bits, since if any of the first three hashes is // zero the fourth will be as well. We also take care to avoid the // special-case complexity of the fourth hash until we actually reach it, // because we usually don't. // // To be clear: this is all extremely hot. for i in 0..3 { let packed = hashes.packed_hashes[i]; if packed == 0 { // No more hashes left - unable to fast-reject. return true; } if !bf.might_contain_hash(packed & BLOOM_HASH_MASK) { // Hooray! We fast-rejected on this hash. return false; } } // Now do the slighty-more-complex work of synthesizing the fourth hash, // and check it against the filter if it exists. let fourth = hashes.fourth_hash(); fourth == 0 || bf.might_contain_hash(fourth) } /// Tracks whether we are currently looking for relevant links for a given /// complex selector. A "relevant link" is the element being matched if it is a /// link or the nearest ancestor link. /// /// `matches_complex_selector` creates a new instance of this for each complex /// selector we try to match for an element. This is done because `is_visited` /// and `is_unvisited` are based on relevant link state of only the current /// complex selector being matched (not the global relevant link status for all /// selectors in `MatchingContext`). #[derive(Clone, Copy, Debug, Eq, PartialEq)] pub enum RelevantLinkStatus { /// Looking for a possible relevant link. This is the initial mode when /// matching a selector. Looking, /// Not looking for a relevant link. We transition to this mode if we /// encounter a sibiling combinator (since only ancestor combinators are /// allowed for this purpose). NotLooking, /// Found a relevant link for the element being matched. Found, } impl Default for RelevantLinkStatus { fn default() -> Self { RelevantLinkStatus::NotLooking } } impl RelevantLinkStatus { /// If we found the relevant link for this element, record that in the /// overall matching context for the element as a whole and stop looking for /// addtional links. fn examine_potential_link<E>( &self, element: &E, context: &mut MatchingContext<E::Impl>, ) -> RelevantLinkStatus where E: Element, { // If a relevant link was previously found, we no longer want to look // for links. Only the nearest ancestor link is considered relevant. if *self != RelevantLinkStatus::Looking { return RelevantLinkStatus::NotLooking } if !element.is_link() { return *self } // We found a relevant link. Record this in the `MatchingContext`, // where we track whether one was found for _any_ selector (meaning // this field might already be true from a previous selector). context.relevant_link_found = true; // Also return `Found` to update the relevant link status for _this_ // specific selector's matching process. RelevantLinkStatus::Found } /// Returns whether an element is considered visited for the purposes of /// matching. This is true only if the element is a link, an relevant link /// exists for the element, and the visited handling mode is set to accept /// relevant links as visited. pub fn is_visited<E>( &self, element: &E, context: &MatchingContext<E::Impl>, ) -> bool where E: Element, { if !element.is_link() { return false } if context.visited_handling == VisitedHandlingMode::AllLinksVisitedAndUnvisited { return true; } // Non-relevant links are always unvisited. if *self != RelevantLinkStatus::Found { return false } context.visited_handling == VisitedHandlingMode::RelevantLinkVisited } /// Returns whether an element is considered unvisited for the purposes of /// matching. Assuming the element is a link, this is always true for /// non-relevant links, since only relevant links can potentially be treated /// as visited. If this is a relevant link, then is it unvisited if the /// visited handling mode is set to treat all links as unvisted (including /// relevant links). pub fn is_unvisited<E>( &self, element: &E, context: &MatchingContext<E::Impl> ) -> bool where E: Element, { if !element.is_link() { return false } if context.visited_handling == VisitedHandlingMode::AllLinksVisitedAndUnvisited { return true; } // Non-relevant links are always unvisited. if *self != RelevantLinkStatus::Found { return true } context.visited_handling == VisitedHandlingMode::AllLinksUnvisited } } /// A result of selector matching, includes 3 failure types, /// /// NotMatchedAndRestartFromClosestLaterSibling /// NotMatchedAndRestartFromClosestDescendant /// NotMatchedGlobally /// /// When NotMatchedGlobally appears, stop selector matching completely since /// the succeeding selectors never matches. /// It is raised when /// Child combinator cannot find the candidate element. /// Descendant combinator cannot find the candidate element. /// /// When NotMatchedAndRestartFromClosestDescendant appears, the selector /// matching does backtracking and restarts from the closest Descendant /// combinator. /// It is raised when /// NextSibling combinator cannot find the candidate element. /// LaterSibling combinator cannot find the candidate element. /// Child combinator doesn't match on the found element. /// /// When NotMatchedAndRestartFromClosestLaterSibling appears, the selector /// matching does backtracking and restarts from the closest LaterSibling /// combinator. /// It is raised when /// NextSibling combinator doesn't match on the found element. /// /// For example, when the selector "d1 d2 a" is provided and we cannot *find* /// an appropriate ancestor element for "d1", this selector matching raises /// NotMatchedGlobally since even if "d2" is moved to more upper element, the /// candidates for "d1" becomes less than before and d1 . /// /// The next example is siblings. When the selector "b1 + b2 ~ d1 a" is /// provided and we cannot *find* an appropriate brother element for b1, /// the selector matching raises NotMatchedAndRestartFromClosestDescendant. /// The selectors ("b1 + b2 ~") doesn't match and matching restart from "d1". /// /// The additional example is child and sibling. When the selector /// "b1 + c1 > b2 ~ d1 a" is provided and the selector "b1" doesn't match on /// the element, this "b1" raises NotMatchedAndRestartFromClosestLaterSibling. /// However since the selector "c1" raises /// NotMatchedAndRestartFromClosestDescendant. So the selector /// "b1 + c1 > b2 ~ " doesn't match and restart matching from "d1". #[derive(Clone, Copy, Eq, PartialEq)] enum SelectorMatchingResult { Matched, NotMatchedAndRestartFromClosestLaterSibling, NotMatchedAndRestartFromClosestDescendant, NotMatchedGlobally, } /// Matches a selector, fast-rejecting against a bloom filter. /// /// We accept an offset to allow consumers to represent and match against /// partial selectors (indexed from the right). We use this API design, rather /// than having the callers pass a SelectorIter, because creating a SelectorIter /// requires dereferencing the selector to get the length, which adds an /// unncessary cache miss for cases when we can fast-reject with AncestorHashes /// (which the caller can store inline with the selector pointer). #[inline(always)] pub fn matches_selector<E, F>( selector: &Selector<E::Impl>, offset: usize, hashes: Option<&AncestorHashes>, element: &E, context: &mut MatchingContext<E::Impl>, flags_setter: &mut F, ) -> bool where E: Element, F: FnMut(&E, ElementSelectorFlags), { // Use the bloom filter to fast-reject. if let Some(hashes) = hashes { if let Some(filter) = context.bloom_filter { if !may_match::<E>(hashes, filter) { return false; } } } matches_complex_selector(selector.iter_from(offset), element, context, flags_setter) } /// Whether a compound selector matched, and whether it was the rightmost /// selector inside the complex selector. pub enum CompoundSelectorMatchingResult { /// The selector was fully matched. FullyMatched, /// The compound selector matched, and the next combinator offset is /// `next_combinator_offset`. Matched { next_combinator_offset: usize, }, /// The selector didn't match. NotMatched, } /// Matches a compound selector belonging to `selector`, starting at offset /// `from_offset`, matching left to right. /// /// Requires that `from_offset` points to a `Combinator`. /// /// NOTE(emilio): This doesn't allow to match in the leftmost sequence of the /// complex selector, but it happens to be the case we don't need it. pub fn matches_compound_selector<E>( selector: &Selector<E::Impl>, mut from_offset: usize, context: &mut MatchingContext<E::Impl>, element: &E, ) -> CompoundSelectorMatchingResult where E: Element { if cfg!(debug_assertions) && from_offset != 0 { selector.combinator_at_parse_order(from_offset - 1); // This asserts. } let mut local_context = LocalMatchingContext { shared: context, matches_hover_and_active_quirk: false, }; for component in selector.iter_raw_parse_order_from(from_offset) { if matches!(*component, Component::Combinator(..)) { debug_assert_ne!(from_offset, 0, "Selector started with a combinator?"); return CompoundSelectorMatchingResult::Matched { next_combinator_offset: from_offset, } } if !matches_simple_selector( component, element, &mut local_context, &RelevantLinkStatus::NotLooking, &mut |_, _| {}) { return CompoundSelectorMatchingResult::NotMatched; } from_offset += 1; } CompoundSelectorMatchingResult::FullyMatched } /// Matches a complex selector. #[inline(always)] pub fn matches_complex_selector<E, F>( mut iter: SelectorIter<E::Impl>, element: &E, context: &mut MatchingContext<E::Impl>, flags_setter: &mut F, ) -> bool where E: Element, F: FnMut(&E, ElementSelectorFlags), { // If this is the special pseudo-element mode, consume the ::pseudo-element // before proceeding, since the caller has already handled that part. if context.matching_mode == MatchingMode::ForStatelessPseudoElement && context.nesting_level == 0 { // Consume the pseudo. match *iter.next().unwrap() { Component::PseudoElement(ref pseudo) => { if let Some(ref f) = context.pseudo_element_matching_fn { if !f(pseudo) { return false; } } } _ => { debug_assert!(false, "Used MatchingMode::ForStatelessPseudoElement \ in a non-pseudo selector"); } } // The only other parser-allowed Component in this sequence is a state // class. We just don't match in that case. if let Some(s) = iter.next() { debug_assert!(matches!(*s, Component::NonTSPseudoClass(..)), "Someone messed up pseudo-element parsing"); return false; } // Advance to the non-pseudo-element part of the selector, but let the // context note that . if iter.next_sequence().is_none() { return true; } } let result = matches_complex_selector_internal( iter, element, context, &mut RelevantLinkStatus::Looking, flags_setter, Rightmost::Yes, ); match result { SelectorMatchingResult::Matched => true, _ => false } } #[inline] fn matches_hover_and_active_quirk<Impl: SelectorImpl>( selector_iter: &SelectorIter<Impl>, context: &MatchingContext<Impl>, rightmost: Rightmost, ) -> bool { if context.quirks_mode() != QuirksMode::Quirks { return false; } if context.nesting_level != 0 { return false; } // This compound selector had a pseudo-element to the right that we // intentionally skipped. if matches!(rightmost, Rightmost::Yes) && context.matching_mode == MatchingMode::ForStatelessPseudoElement { return false; } selector_iter.clone().all(|simple| { match *simple { Component::LocalName(_) | Component::AttributeInNoNamespaceExists { .. } | Component::AttributeInNoNamespace { .. } | Component::AttributeOther(_) | Component::ID(_) | Component::Class(_) | Component::PseudoElement(_) | Component::Negation(_) | Component::FirstChild | Component::LastChild | Component::OnlyChild | Component::Empty | Component::NthChild(_, _) | Component::NthLastChild(_, _) | Component::NthOfType(_, _) | Component::NthLastOfType(_, _) | Component::FirstOfType | Component::LastOfType | Component::OnlyOfType => false, Component::NonTSPseudoClass(ref pseudo_class) => { Impl::is_active_or_hover(pseudo_class) }, _ => true, } }) } enum Rightmost { Yes, No, } #[inline(always)] fn next_element_for_combinator<E>( element: &E, combinator: Combinator, ) -> Option<E> where E: Element, { match combinator { Combinator::NextSibling | Combinator::LaterSibling => { element.prev_sibling_element() } Combinator::Child | Combinator::Descendant => { if element.blocks_ancestor_combinators() { return None; } element.parent_element() } Combinator::PseudoElement => { element.pseudo_element_originating_element() } } } fn matches_complex_selector_internal<E, F>( mut selector_iter: SelectorIter<E::Impl>, element: &E, context: &mut MatchingContext<E::Impl>, relevant_link: &mut RelevantLinkStatus, flags_setter: &mut F, rightmost: Rightmost, ) -> SelectorMatchingResult where E: Element, F: FnMut(&E, ElementSelectorFlags), { *relevant_link = relevant_link.examine_potential_link(element, context); debug!("Matching complex selector {:?} for {:?}, relevant link {:?}", selector_iter, element, relevant_link); let matches_all_simple_selectors = { let matches_hover_and_active_quirk = matches_hover_and_active_quirk(&selector_iter, context, rightmost); let mut local_context = LocalMatchingContext { shared: context, matches_hover_and_active_quirk, }; selector_iter.all(|simple| { matches_simple_selector( simple, element, &mut local_context, &relevant_link, flags_setter, ) }) }; let combinator = selector_iter.next_sequence(); if combinator.map_or(false, |c| c.is_sibling()) { flags_setter(element, ElementSelectorFlags::HAS_SLOW_SELECTOR_LATER_SIBLINGS); } if !matches_all_simple_selectors { return SelectorMatchingResult::NotMatchedAndRestartFromClosestLaterSibling; } let combinator = match combinator { None => return SelectorMatchingResult::Matched, Some(c) => c, }; let candidate_not_found = match combinator { Combinator::NextSibling | Combinator::LaterSibling => { // Only ancestor combinators are allowed while looking for // relevant links, so switch to not looking. *relevant_link = RelevantLinkStatus::NotLooking; SelectorMatchingResult::NotMatchedAndRestartFromClosestDescendant } Combinator::Child | Combinator::Descendant | Combinator::PseudoElement => { SelectorMatchingResult::NotMatchedGlobally } }; let mut next_element = next_element_for_combinator(element, combinator); loop { let element = match next_element { None => return candidate_not_found, Some(next_element) => next_element, }; let result = matches_complex_selector_internal( selector_iter.clone(), &element, context, relevant_link, flags_setter, Rightmost::No, ); match (result, combinator) { // Return the status immediately. (SelectorMatchingResult::Matched, _) | (SelectorMatchingResult::NotMatchedGlobally, _) | (_, Combinator::NextSibling) => { return result; } // Upgrade the failure status to // NotMatchedAndRestartFromClosestDescendant. (_, Combinator::PseudoElement) | (_, Combinator::Child) => { return SelectorMatchingResult::NotMatchedAndRestartFromClosestDescendant; } // If the failure status is // NotMatchedAndRestartFromClosestDescendant and combinator is // Combinator::LaterSibling, give up this Combinator::LaterSibling // matching and restart from the closest descendant combinator. (SelectorMatchingResult::NotMatchedAndRestartFromClosestDescendant, Combinator::LaterSibling) => { return result; } // The Combinator::Descendant combinator and the status is // NotMatchedAndRestartFromClosestLaterSibling or // NotMatchedAndRestartFromClosestDescendant, or the // Combinator::LaterSibling combinator and the status is // NotMatchedAndRestartFromClosestDescendant, we can continue to // matching on the next candidate element. _ => {}, } next_element = next_element_for_combinator(&element, combinator); } } /// Determines whether the given element matches the given single selector. #[inline] fn matches_simple_selector<E, F>( selector: &Component<E::Impl>, element: &E, context: &mut LocalMatchingContext<E::Impl>, relevant_link: &RelevantLinkStatus, flags_setter: &mut F, ) -> bool where E: Element, F: FnMut(&E, ElementSelectorFlags), { match *selector { Component::Combinator(_) => unreachable!(), Component::PseudoElement(ref pseudo) => { element.match_pseudo_element(pseudo, context.shared) } Component::LocalName(LocalName { ref name, ref lower_name }) => { let is_html = element.is_html_element_in_html_document(); element.get_local_name() == select_name(is_html, name, lower_name).borrow() } Component::ExplicitUniversalType | Component::ExplicitAnyNamespace => { true } Component::Namespace(_, ref url) | Component::DefaultNamespace(ref url) => { element.get_namespace() == url.borrow() } Component::ExplicitNoNamespace => { let ns = ::parser::namespace_empty_string::<E::Impl>(); element.get_namespace() == ns.borrow() } Component::ID(ref id) => { element.has_id(id, context.shared.classes_and_ids_case_sensitivity()) } Component::Class(ref class) => { element.has_class(class, context.shared.classes_and_ids_case_sensitivity()) } Component::AttributeInNoNamespaceExists { ref local_name, ref local_name_lower } => { let is_html = element.is_html_element_in_html_document(); element.attr_matches( &NamespaceConstraint::Specific(&::parser::namespace_empty_string::<E::Impl>()), select_name(is_html, local_name, local_name_lower), &AttrSelectorOperation::Exists ) } Component::AttributeInNoNamespace { ref local_name, ref local_name_lower, ref value, operator, case_sensitivity, never_matches, } => { if never_matches { return false } let is_html = element.is_html_element_in_html_document(); element.attr_matches( &NamespaceConstraint::Specific(&::parser::namespace_empty_string::<E::Impl>()), select_name(is_html, local_name, local_name_lower), &AttrSelectorOperation::WithValue { operator: operator, case_sensitivity: case_sensitivity.to_unconditional(is_html), expected_value: value, } ) } Component::AttributeOther(ref attr_sel) => { if attr_sel.never_matches { return false } let is_html = element.is_html_element_in_html_document(); element.attr_matches( &attr_sel.namespace(), select_name(is_html, &attr_sel.local_name, &attr_sel.local_name_lower), &match attr_sel.operation { ParsedAttrSelectorOperation::Exists => AttrSelectorOperation::Exists, ParsedAttrSelectorOperation::WithValue { operator, case_sensitivity, ref expected_value, } => { AttrSelectorOperation::WithValue { operator: operator, case_sensitivity: case_sensitivity.to_unconditional(is_html), expected_value: expected_value, } } } ) } Component::NonTSPseudoClass(ref pc) => { if context.matches_hover_and_active_quirk && context.shared.nesting_level == 0 && E::Impl::is_active_or_hover(pc) && !element.is_link() { return false; } element.match_non_ts_pseudo_class(pc, &mut context.shared, relevant_link, flags_setter) } Component::FirstChild => { matches_first_child(element, flags_setter) } Component::LastChild => { matches_last_child(element, flags_setter) } Component::OnlyChild => { matches_first_child(element, flags_setter) && matches_last_child(element, flags_setter) } Component::Root => { element.is_root() } Component::Empty => { flags_setter(element, ElementSelectorFlags::HAS_EMPTY_SELECTOR); element.is_empty() } Component::Scope => { match context.shared.scope_element { Some(ref scope_element) => element.opaque() == *scope_element, None => element.is_root(), } } Component::NthChild(a, b) => { matches_generic_nth_child(element, context, a, b, false, false, flags_setter) } Component::NthLastChild(a, b) => { matches_generic_nth_child(element, context, a, b, false, true, flags_setter) } Component::NthOfType(a, b) => { matches_generic_nth_child(element, context, a, b, true, false, flags_setter) } Component::NthLastOfType(a, b) => { matches_generic_nth_child(element, context, a, b, true, true, flags_setter) } Component::FirstOfType => { matches_generic_nth_child(element, context, 0, 1, true, false, flags_setter) } Component::LastOfType => { matches_generic_nth_child(element, context, 0, 1, true, true, flags_setter) } Component::OnlyOfType => { matches_generic_nth_child(element, context, 0, 1, true, false, flags_setter) && matches_generic_nth_child(element, context, 0, 1, true, true, flags_setter) } Component::Negation(ref negated) => { context.shared.nesting_level += 1; let result = !negated.iter().all(|ss| { matches_simple_selector( ss, element, context, relevant_link, flags_setter, ) }); context.shared.nesting_level -= 1; result } } } fn select_name<'a, T>(is_html: bool, local_name: &'a T, local_name_lower: &'a T) -> &'a T { if is_html { local_name_lower } else { local_name } } #[inline] fn matches_generic_nth_child<E, F>( element: &E, context: &mut LocalMatchingContext<E::Impl>, a: i32, b: i32, is_of_type: bool, is_from_end: bool, flags_setter: &mut F, ) -> bool where E: Element, F: FnMut(&E, ElementSelectorFlags), { if element.ignores_nth_child_selectors() { return false; } flags_setter(element, if is_from_end { ElementSelectorFlags::HAS_SLOW_SELECTOR } else { ElementSelectorFlags::HAS_SLOW_SELECTOR_LATER_SIBLINGS }); // Grab a reference to the appropriate cache. let mut cache = context.shared.nth_index_cache.as_mut().map(|c| { c.get(is_of_type, is_from_end) }); // Lookup or compute the index. let index = if let Some(i) = cache.as_mut().and_then(|c| c.lookup(element.opaque())) { i } else { let i = nth_child_index(element, is_of_type, is_from_end, cache.as_mut().map(|s| &mut **s)); cache.as_mut().map(|c| c.insert(element.opaque(), i)); i }; debug_assert_eq!(index, nth_child_index(element, is_of_type, is_from_end, None), "invalid cache"); // Is there a non-negative integer n such that An+B=index? match index.checked_sub(b) { None => false, Some(an) => match an.checked_div(a) { Some(n) => n >= 0 && a * n == an, None /* a == 0 */ => an == 0, }, } } #[inline] fn same_type<E: Element>(a: &E, b: &E) -> bool { a.get_local_name() == b.get_local_name() && a.get_namespace() == b.get_namespace() } #[inline] fn nth_child_index<E>( element: &E, is_of_type: bool, is_from_end: bool, mut cache: Option<&mut NthIndexCacheInner>, ) -> i32 where E: Element, { // The traversal mostly processes siblings left to right. So when we walk // siblings to the right when computing NthLast/NthLastOfType we're unlikely // to get cache hits along the way. As such, we take the hit of walking the // siblings to the left checking the cache in the is_from_end case (this // matches what Gecko does). The indices-from-the-left is handled during the // regular look further below. if let Some(ref mut c) = cache { if is_from_end && !c.is_empty() { let mut index: i32 = 1; let mut curr = element.clone(); while let Some(e) = curr.prev_sibling_element() { curr = e; if !is_of_type || same_type(element, &curr) { if let Some(i) = c.lookup(curr.opaque()) { return i - index; } index += 1; } } } } let mut index: i32 = 1; let mut curr = element.clone(); let next = |e: E| if is_from_end { e.next_sibling_element() } else { e.prev_sibling_element() }; while let Some(e) = next(curr) { curr = e; if !is_of_type || same_type(element, &curr) { // If we're computing indices from the left, check each element in the // cache. We handle the indices-from-the-right case at the top of this // function. if !is_from_end { if let Some(i) = cache.as_mut().and_then(|c| c.lookup(curr.opaque())) { return i + index } } index += 1; } } index } #[inline] fn matches_first_child<E, F>(element: &E, flags_setter: &mut F) -> bool where E: Element, F: FnMut(&E, ElementSelectorFlags), { flags_setter(element, ElementSelectorFlags::HAS_EDGE_CHILD_SELECTOR); element.prev_sibling_element().is_none() } #[inline] fn matches_last_child<E, F>(element: &E, flags_setter: &mut F) -> bool where E: Element, F: FnMut(&E, ElementSelectorFlags), { flags_setter(element, ElementSelectorFlags::HAS_EDGE_CHILD_SELECTOR); element.next_sibling_element().is_none() }<|fim▁end|>
use parser::{Selector, SelectorImpl, SelectorIter, SelectorList}; use std::borrow::Borrow; use tree::Element;
<|file_name|>mod.rs<|end_file_name|><|fim▁begin|>pub mod tcp; pub use self::tcp::{TcpListener, TcpListenerBuilder, TcpStream}; #[inline]<|fim▁hole|>}<|fim▁end|>
pub fn init() { ::sys::net::init()
<|file_name|>Message.java<|end_file_name|><|fim▁begin|>package com.inmobi.messaging; /* * #%L * messaging-client-core * %% * Copyright (C) 2012 - 2014 InMobi * %% * Licensed 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. * #L% */ import java.nio.ByteBuffer; /** * Message class holding the data. * */ public final class Message implements MessageBase { private ByteBuffer data; public Message() { } /** * Create new message with {@link ByteBuffer} * * @param data The {@link ByteBuffer} */ public Message(ByteBuffer data) { this.data = data; } /** * Create new message with byte array * * @param data The byte array. */ public Message(byte[] data) { this.data = ByteBuffer.wrap(data); } /** * Get the data associated with message.<|fim▁hole|> public ByteBuffer getData() { return data; } public synchronized void set(ByteBuffer data) { this.data = data; } public synchronized void clear() { data.clear(); } public long getSize() { return data.limit(); } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((data == null) ? 0 : data.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Message other = (Message) obj; if (data == null) { if (other.data != null) { return false; } } else if (!data.equals(other.data)) { return false; } return true; } @Override public Message clone() { Message m = new Message(data.duplicate()); return m; } }<|fim▁end|>
* * @return {@link ByteBuffer} holding the data. */
<|file_name|>peer.py<|end_file_name|><|fim▁begin|>from utils import instrument from azove.utils import recursive_int_to_big_endian import mock @given(u'a packet') # noqa def step_impl(context): context.packet = context.packeter.dump_packet('this is a test packet') @when(u'peer.send_packet is called') # noqa def step_impl(context): context.peer.send_packet(context.packet) @when(u'all data with the peer is processed') # noqa def step_impl(context): context.peer.run() @then(u'the packet sent through connection should be the given packet') # noqa def step_impl(context): assert context.sent_packets == [context.packet] @when(u'peer.send_Hello is called') # noqa def step_impl(context): context.peer.send_Hello() @then(u'the packet sent through connection should be a Hello packet') # noqa def step_impl(context): packet = context.packeter.dump_Hello() assert context.sent_packets == [packet] @given(u'a valid Hello packet') # noqa def step_impl(context): context.packet = context.packeter.dump_Hello() @given(u'a Hello packet with protocol version incompatible') # noqa def step_impl(context): packeter = context.packeter data = [packeter.cmd_map_by_name['Hello'], 'incompatible_protocal_version', packeter.NETWORK_ID, packeter.CLIENT_ID, packeter.config.getint('network', 'listen_port'), packeter.CAPABILITIES, packeter.config.get('wallet', 'coinbase') ] context.packet = packeter.dump_packet(data) @given(u'a Hello packet with network id incompatible') # noqa def step_impl(context): packeter = context.packeter data = [packeter.cmd_map_by_name['Hello'], packeter.PROTOCOL_VERSION, 'incompatible_network_id', packeter.CLIENT_ID, packeter.config.getint('network', 'listen_port'), packeter.CAPABILITIES, packeter.config.get('wallet', 'coinbase') ] context.packet = packeter.dump_packet(data) @when(u'peer.send_Hello is instrumented') # noqa def step_impl(context): context.peer.send_Hello = instrument(context.peer.send_Hello) @then(u'peer.send_Hello should be called once') # noqa def step_impl(context): func = context.peer.send_Hello assert func.call_count == 1 @when(u'peer.send_Disconnect is instrumented') # noqa def step_impl(context): context.peer.send_Disconnect = instrument(context.peer.send_Disconnect) @when(u'the packet is received from peer') # noqa def step_impl(context): context.add_recv_packet(context.packet) @then(u'peer.send_Disconnect should be called once with args: reason') # noqa def step_impl(context): func = context.peer.send_Disconnect assert func.call_count == 1 assert len(func.call_args[0]) == 1 or 'reason' in func.call_args[1] @when(u'peer.send_Ping is called') # noqa def step_impl(context): context.peer.send_Ping() @then(u'the packet sent through connection should be a Ping packet') # noqa def step_impl(context): packet = context.packeter.dump_Ping() assert context.sent_packets == [packet] @given(u'a Ping packet') # noqa def step_impl(context): context.packet = context.packeter.dump_Ping() @when(u'peer.send_Pong is instrumented') # noqa def step_impl(context): context.peer.send_Pong = instrument(context.peer.send_Pong) @then(u'peer.send_Pong should be called once') # noqa def step_impl(context): func = context.peer.send_Pong assert func.call_count == 1 @when(u'peer.send_Pong is called') # noqa def step_impl(context): context.peer.send_Pong() @then(u'the packet sent through connection should be a Pong packet') # noqa def step_impl(context): packet = context.packeter.dump_Pong() assert context.sent_packets == [packet] @given(u'a Pong packet') # noqa def step_impl(context): context.packet = context.packeter.dump_Pong() @when(u'handler for a disconnect_requested signal is registered') # noqa def step_impl(context): from pyethereum.signals import peer_disconnect_requested context.disconnect_requested_handler = mock.MagicMock() peer_disconnect_requested.connect(context.disconnect_requested_handler) @when(u'peer.send_Disconnect is called') # noqa def step_impl(context): context.peer.send_Disconnect() @then(u'the packet sent through connection should be' # noqa ' a Disconnect packet') def step_impl(context): packet = context.packeter.dump_Disconnect() assert context.sent_packets == [packet] @then(u'the disconnect_requested handler should be called once' # noqa ' after sleeping for at least 2 seconds') def step_impl(context): import time # time is already pathced for mocks assert context.disconnect_requested_handler.call_count == 1 sleeping = sum(x[0][0] for x in time.sleep.call_args_list) assert sleeping >= 2 @given(u'a Disconnect packet') # noqa def step_impl(context): context.packet = context.packeter.dump_Disconnect() @then(u'the disconnect_requested handler should be called once') # noqa def step_impl(context): assert context.disconnect_requested_handler.call_count == 1 @when(u'peer.send_GetPeers is called') # noqa def step_impl(context): context.peer.send_GetPeers() @then(u'the packet sent through connection should be' # noqa ' a GetPeers packet') def step_impl(context): packet = context.packeter.dump_GetPeers() assert context.sent_packets == [packet] @given(u'a GetPeers packet') # noqa def step_impl(context): context.packet = context.packeter.dump_GetPeers() @given(u'peers data') # noqa def step_impl(context): context.peers_data = [ ['127.0.0.1', 1234, 'local'], ['1.0.0.1', 1234, 'remote'], ] @when(u'getpeers_received signal handler is connected') # noqa def step_impl(context): from pyethereum.signals import getpeers_received handler = mock.MagicMock() context.getpeers_received_handler = handler getpeers_received.connect(handler) @then(u'the getpeers_received signal handler should be called once') # noqa def step_impl(context): assert context.getpeers_received_handler.call_count == 1 @when(u'peer.send_Peers is called') # noqa def step_impl(context): context.peer.send_Peers(context.peers_data) @then(u'the packet sent through connection should be a Peers packet' # noqa ' with the peers data') def step_impl(context): assert context.sent_packets == [ context.packeter.dump_Peers(context.peers_data)] @given(u'a Peers packet with the peers data') # noqa def step_impl(context): context.packet = context.packeter.dump_Peers(context.peers_data) @when(u'handler for new_peers_received signal is registered') # noqa def step_impl(context): context.new_peer_received_handler = mock.MagicMock() from pyethereum.signals import peer_addresses_received peer_addresses_received.connect(context.new_peer_received_handler) <|fim▁hole|>@then(u'the new_peers_received handler should be called once' # noqa ' with all peers') def step_impl(context): call_args = context.new_peer_received_handler.call_args_list[0] call_peers = call_args[1]['addresses'] assert len(call_peers) == len(context.peers_data) pairs = zip(call_peers, context.peers_data) for call, peer in pairs: assert call == peer #assert call[1]['address'] == peer @when(u'peer.send_GetTransactions is called') # noqa def step_impl(context): context.peer.send_GetTransactions() @then(u'the packet sent through connection should be' # noqa ' a GetTransactions packet') def step_impl(context): packet = context.packeter.dump_GetTransactions() assert context.sent_packets == [packet] @given(u'a GetTransactions packet') # noqa def step_impl(context): context.packet = context.packeter.dump_GetTransactions() @given(u'transactions data') # noqa def step_impl(context): context.transactions_data = [ ['nonce-1', 'receiving_address-1', 1], ['nonce-2', 'receiving_address-2', 2], ['nonce-3', 'receiving_address-3', 3], ] @when(u'gettransactions_received signal handler is connected') # noqa def step_impl(context): from pyethereum.signals import gettransactions_received handler = mock.MagicMock() context.gettransactions_received_handler = handler gettransactions_received.connect(handler) @then(u'the gettransactions_received signal handler' # noqa ' should be called once') def step_impl(context): assert context.gettransactions_received_handler.call_count == 1 @when(u'peer.send_Transactions is called') # noqa def step_impl(context): context.peer.send_Transactions(context.transactions_data) @then(u'the packet sent through connection should be' # noqa ' a Transactions packet with the transactions data') def step_impl(context): packet = context.packeter.dump_Transactions(context.transactions_data) assert context.sent_packets == [packet] @given(u'a Transactions packet with the transactions data') # noqa def step_impl(context): packet = context.packeter.dump_Transactions(context.transactions_data) context.packet = packet @when(u'handler for a new_transactions_received signal is registered') # noqa def step_impl(context): context.new_transactions_received_handler = mock.MagicMock() from pyethereum.signals import remote_transactions_received remote_transactions_received.connect( context.new_transactions_received_handler) @then(u'the new_transactions_received handler' # noqa ' should be called once with the transactions data') def step_impl(context): mock = context.new_transactions_received_handler assert mock.call_count == 1 assert mock.call_args[1]['transactions'] == recursive_int_to_big_endian( context.transactions_data) @given(u'blocks data') # noqa def step_impl(context): # FIXME here we need real blocks.Block objects context.blocks_data = [ ['block_headerA', ['txA1', 'txA2'], ['uncleA1', 'uncleA2']], ['block_headerB', ['txB', 'txB'], ['uncleB', 'uncleB2']], ] @when(u'peer.send_Blocks is called') # noqa def step_impl(context): context.peer.send_Blocks(context.blocks_data) @then(u'the packet sent through connection should be' # noqa ' a Blocks packet with the blocks data') def step_impl(context): packet = context.packeter.dump_Blocks(context.blocks_data) assert context.sent_packets == [packet] @given(u'a Blocks packet with the blocks data') # noqa def step_impl(context): context.packet = context.packeter.dump_Blocks(context.blocks_data) @when(u'handler for a new_blocks_received signal is registered') # noqa def step_impl(context): context.new_blocks_received_handler = mock.MagicMock() from pyethereum.signals import remote_blocks_received remote_blocks_received.connect(context.new_blocks_received_handler) @then(u'the new_blocks_received handler should be' # noqa ' called once with the blocks data') def step_impl(context): context.new_blocks_received_handler = mock.MagicMock() from pyethereum.signals import remote_blocks_received remote_blocks_received.connect( context.new_blocks_received_handler) @given(u'a GetChain request data') # noqa def step_impl(context): context.request_data = ['Parent1', 'Parent2', 3] @when(u'peer.send_GetChain is called withe the request data') # noqa def step_impl(context): context.peer.send_GetChain(context.request_data) @then(u'the packet sent through connection' # noqa ' should be a GetChain packet') def step_impl(context): packet = context.packeter.dump_GetChain(context.request_data) assert context.sent_packets == [packet] @given(u'a GetChain packet with the request data') # noqa def step_impl(context): context.packet = context.packeter.dump_GetChain(context.request_data) @given(u'a chain data provider') # noqa def step_impl(context): from pyethereum.signals import (local_chain_requested) def handler(sender, **kwargs): pass context.blocks_requested_handler = handler local_chain_requested.connect(handler) @when(u'peer.send_Blocks is instrumented') # noqa def step_impl(context): context.peer.send_Blocks = instrument(context.peer.send_Blocks) @when(u'peer.send_NotInChain is called') # noqa def step_impl(context): context.peer.send_NotInChain('some hash') @then(u'the packet sent through connection should' # noqa ' be a NotInChain packet') def step_impl(context): packet = context.packeter.dump_NotInChain('some hash') assert context.sent_packets == [packet] @given(u'a NotInChain packet') # noqa def step_impl(context): context.packet = context.packeter.dump_NotInChain('some hash')<|fim▁end|>
<|file_name|>FormatData_sr_ME.java<|end_file_name|><|fim▁begin|>/* * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ /* * COPYRIGHT AND PERMISSION NOTICE * * Copyright (C) 1991-2007 Unicode, Inc. All rights reserved. * Distributed under the Terms of Use in http://www.unicode.org/copyright.html. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of the Unicode data files and any associated documentation (the "Data * Files") or Unicode software and any associated documentation (the * "Software") to deal in the Data Files or Software without restriction, * including without limitation the rights to use, copy, modify, merge, * publish, distribute, and/or sell copies of the Data Files or Software, and * to permit persons to whom the Data Files or Software are furnished to do * so, provided that (a) the above copyright notice(s) and this permission * notice appear with all copies of the Data Files or Software, (b) both the * above copyright notice(s) and this permission notice appear in associated * documentation, and (c) there is clear notice in each modified Data File or * in the Software as well as in the documentation associated with the Data * File(s) or Software that the data or software has been modified. * * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR * CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR * PERFORMANCE OF THE DATA FILES OR SOFTWARE.<|fim▁hole|> * authorization of the copyright holder. */ package sun.text.resources.sr; import sun.util.resources.ParallelListResourceBundle; public class FormatData_sr_ME extends ParallelListResourceBundle { protected final Object[][] getContents() { return new Object[][] { }; } }<|fim▁end|>
* * Except as contained in this notice, the name of a copyright holder shall not * be used in advertising or otherwise to promote the sale, use or other * dealings in these Data Files or Software without prior written
<|file_name|>paginator.py<|end_file_name|><|fim▁begin|>class Paginator(object): def __init__(self, collection, page_number=0, limit=20, total=-1): self.collection = collection self.page_number = int(page_number) self.limit = int(limit) self.total = int(total) @property def page(self): start = self.page_number * self.limit end = start + self.limit try: return self.collection[start:end] except Exception as detail: print detail return [] @property def current_page(self): return self.page_number + 1 @property def page_count(self): if self.total != -1: pages = abs(self.total / self.limit)+1 return pages else: return None @property def has_previous(self): return True if (self.page_number > 0) else False @property def has_next(self): return True if (len(self.page) == self.limit) else False @property def previous_page(self): if self.has_previous: return self.page_number-1 @property def next_page(self): if self.has_next: return self.page_number+1 def previous_page_link(self, request): return self.__build_url(self.previous_page, request.full_url()) def next_page_link(self, request): return self.__build_url(self.next_page, request.full_url())<|fim▁hole|> #check if there is a query string if url.find('?') != -1: if re.search(r'page=\d',url) != None: page_str = "&page=%d" % page_num return re.sub(r'&page=\d+', page_str, url) else: return "%s&page=%d" % (url, page_num) else: return "%s?page=%d" % (url, page_num)<|fim▁end|>
def __build_url(self, page_num, url): import re
<|file_name|>fpu.rs<|end_file_name|><|fim▁begin|>#![allow(unused_imports)] <|fim▁hole|>use dynasmrt::DynasmApi; include!("gen_x64/fpu.rs.gen");<|fim▁end|>
use dynasmrt::dynasm;
<|file_name|>feature-gate.rs<|end_file_name|><|fim▁begin|>// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // option. This file may not be copied, modified, or distributed // except according to those terms. // Test that structural match is only permitted with a feature gate, // and that if a feature gate is supplied, it permits the type to be // used in a match. // revisions: with_gate no_gate // gate-test-structural_match #![allow(unused)] #![feature(rustc_attrs)] #![cfg_attr(with_gate, feature(structural_match))] #[structural_match] //[no_gate]~ ERROR semantics of constant patterns is not yet settled<|fim▁hole|>struct Foo { x: u32 } const FOO: Foo = Foo { x: 0 }; #[rustc_error] fn main() { //[with_gate]~ ERROR compilation successful let y = Foo { x: 1 }; match y { FOO => { } _ => { } } }<|fim▁end|>
<|file_name|>script2.js<|end_file_name|><|fim▁begin|><|fim▁hole|>// Second function function mySecondFunction(number1, number2){ return number1 + number2; }<|fim▁end|>
<|file_name|>views.py<|end_file_name|><|fim▁begin|>from django.http import Http404 from rest_framework import generics, permissions from rest_framework.reverse import reverse from rest_framework.response import Response from rest_framework.views import APIView from core.utils import filter_files_by_n_slashes from .serializers import (FileBrowserPathListSerializer, FileBrowserPathSerializer, FileBrowserPathFileSerializer) from .services import get_path_folders, get_path_file_queryset, get_path_file_model_class class FileBrowserPathList(generics.ListAPIView): """ A view for the initial page of the collection of file browser paths. The returned collection only has a single element. """ http_method_names = ['get'] serializer_class = FileBrowserPathListSerializer permission_classes = (permissions.IsAuthenticated,) def list(self, request, *args, **kwargs): """ Overriden to append a query list to the response. """ response = super(FileBrowserPathList, self).list(request, *args, **kwargs) # append query list query_url = reverse('filebrowserpath-list-query-search', request=request) data = [{'name': 'path', 'value': ''}] queries = [{'href': query_url, 'rel': 'search', 'data': data}] response.data['queries'] = queries return response def get_queryset(self): """ Overriden to return a custom queryset that is only comprised by the initial path (empty path). """ username = self.request.user.username objects = [{'path': '', 'subfolders': f'SERVICES,{username}'}] return self.filter_queryset(objects) class FileBrowserPathListQuerySearch(generics.ListAPIView): """ A view for the collection of file browser paths resulting from a query search. The returned collection only has at most one element. """ http_method_names = ['get'] permission_classes = (permissions.IsAuthenticated,) def get_queryset(self): """ Overriden to return a custom queryset. """ username = self.request.user.username path = self.request.GET.get('path', '') if not path: objects = [{'path': '', 'subfolders': f'SERVICES,{username}'}]<|fim▁hole|> try: subfolders = get_path_folders(path, username) except ValueError: objects = [] else: objects = [{'path': path, 'subfolders': ','.join(subfolders)}] return self.filter_queryset(objects) def get_serializer_class(self, *args, **kwargs): """ Overriden to return the serializer class that should be used for serializing output. """ path = self.request.GET.get('path', '') if not path: return FileBrowserPathListSerializer self.kwargs['path'] = path.strip('/') return FileBrowserPathSerializer class FileBrowserPath(APIView): """ A file browser path view. """ http_method_names = ['get'] permission_classes = (permissions.IsAuthenticated,) def get(self, request, *args, **kwargs): """ Overriden to be able to make a GET request to an actual file resource. """ username = request.user.username path = kwargs.get('path') try: subfolders = get_path_folders(path, username) except ValueError: raise Http404('Not found.') object = {'path': path, 'subfolders': ','.join(subfolders)} serializer = self.get_serializer(object) return Response(serializer.data) def get_serializer(self, *args, **kwargs): """ Return the serializer instance that should be used for serializing output. """ kwargs.setdefault('context', self.get_serializer_context()) return FileBrowserPathSerializer(*args, **kwargs) def get_serializer_context(self): """ Extra context provided to the serializer class. """ return {'request': self.request, 'view': self} class FileBrowserPathFileList(generics.ListAPIView): """ A view for the collection of a file browser path's files. """ http_method_names = ['get'] permission_classes = (permissions.IsAuthenticated, ) def get_queryset(self): """ Overriden to return a custom queryset. """ username = self.request.user.username path = self.kwargs.get('path') try: qs = get_path_file_queryset(path, username) except ValueError: raise Http404('Not found.') n_slashes = path.count('/') + 1 return filter_files_by_n_slashes(qs, str(n_slashes)) def get_serializer_class(self): """ Overriden to return the serializer class that should be used for serializing output. """ username = self.request.user.username path = self.kwargs.get('path') model_class = get_path_file_model_class(path, username) FileBrowserPathFileSerializer.Meta.model = model_class return FileBrowserPathFileSerializer<|fim▁end|>
else: path = path.strip('/')
<|file_name|>FieldTransformer.java<|end_file_name|><|fim▁begin|>/******************************************************************************* * Copyright (c) 1998, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.mappings.transformers; import org.eclipse.persistence.sessions.Session; import org.eclipse.persistence.core.mappings.transformers.CoreFieldTransformer; import org.eclipse.persistence.mappings.foundation.AbstractTransformationMapping; /** * PUBLIC:<|fim▁hole|> * Transformation Mapping. * @author mmacivor * @since 10.1.3 */ public interface FieldTransformer extends CoreFieldTransformer<Session> { /** * Initialize this transformer. Only required if the user needs some special * information from the mapping in order to do the transformation * @param mapping - the mapping this transformer is associated with. */ public void initialize(AbstractTransformationMapping mapping); /** * @param instance - an instance of the domain class which contains the attribute * @param session - the current session * @param fieldName - the name of the field being transformed. Used if the user wants to use this transformer for multiple fields. * @return - The value to be written for the field associated with this transformer */ @Override public Object buildFieldValue(Object instance, String fieldName, Session session); }<|fim▁end|>
* This interface is used by the Transformation Mapping to build the value for a * specific field. The user must provide implementations of this interface to the
<|file_name|>javascript.js<|end_file_name|><|fim▁begin|>'use strict'; // Test dependencies are required and exposed in common/bootstrap.js require('../../common/bootstrap'); process.on('uncaughtException', function(err) { console.error(err.stack); }); var codeContents = 'console.log("testing deploy");'; var reference = new Buffer(codeContents); var lists = deployment.js.lists; var listRuleLength = lists.includes.length + lists.ignores.length + lists.blacklist.length; var sandbox = sinon.sandbox.create(); var FIXTURE_PATH = path.join(__dirname, '/../../../test/unit/fixtures'); exports['Deployment: JavaScript'] = { setUp(done) { this.deploy = sandbox.spy(Tessel.prototype, 'deploy'); this.appStop = sandbox.spy(commands.app, 'stop'); this.appStart = sandbox.spy(commands.app, 'start'); this.deleteFolder = sandbox.spy(commands, 'deleteFolder'); this.createFolder = sandbox.spy(commands, 'createFolder'); this.untarStdin = sandbox.spy(commands, 'untarStdin'); this.execute = sandbox.spy(commands.js, 'execute'); this.openStdinToFile = sandbox.spy(commands, 'openStdinToFile'); this.chmod = sandbox.spy(commands, 'chmod'); this.push = sandbox.spy(deploy, 'push'); this.createShellScript = sandbox.spy(deploy, 'createShellScript'); this.injectBinaryModules = sandbox.stub(deployment.js, 'injectBinaryModules').callsFake(() => Promise.resolve()); this.resolveBinaryModules = sandbox.stub(deployment.js, 'resolveBinaryModules').callsFake(() => Promise.resolve()); this.tarBundle = sandbox.stub(deployment.js, 'tarBundle').callsFake(() => Promise.resolve(reference)); this.warn = sandbox.stub(log, 'warn'); this.info = sandbox.stub(log, 'info'); this.tessel = TesselSimulator(); this.end = sandbox.spy(this.tessel._rps.stdin, 'end'); this.fetchCurrentBuildInfo = sandbox.stub(this.tessel, 'fetchCurrentBuildInfo').returns(Promise.resolve('40b2b46a62a34b5a26170c75f7e717cea673d1eb')); this.fetchNodeProcessVersions = sandbox.stub(this.tessel, 'fetchNodeProcessVersions').returns(Promise.resolve(processVersions)); this.requestBuildList = sandbox.stub(updates, 'requestBuildList').returns(Promise.resolve(tesselBuilds)); this.pWrite = sandbox.stub(Preferences, 'write').returns(Promise.resolve()); this.exists = sandbox.stub(fs, 'exists').callsFake((fpath, callback) => callback(true)); this.spinnerStart = sandbox.stub(log.spinner, 'start'); this.spinnerStop = sandbox.stub(log.spinner, 'stop'); deleteTemporaryDeployCode() .then(done); }, tearDown(done) { this.tessel.mockClose(); sandbox.restore(); deleteTemporaryDeployCode() .then(done) .catch(function(err) { throw err; }); }, bundling(test) { test.expect(1); this.tarBundle.restore(); createTemporaryDeployCode().then(() => { var tb = deployment.js.tarBundle({ target: DEPLOY_DIR_JS }); tb.then(bundle => { /* $ t2 run app.js INFO Looking for your Tessel... INFO Connected to arnold over LAN INFO Writing app.js to RAM on arnold (2.048 kB)... INFO Deployed. INFO Running app.js... testing deploy INFO Stopping script... */ test.equal(bundle.length, 2048); test.done(); }) .catch(error => { test.ok(false, error.toString()); test.done(); }); }); }, createShellScriptDefaultEntryPoint(test) { test.expect(1); var shellScript = `#!/bin/sh exec node --harmony /app/remote-script/index.js --key=value`; var opts = { lang: deployment.js, resolvedEntryPoint: 'index.js', binopts: ['--harmony'], subargs: ['--key=value'], }; this.end.restore(); this.end = sandbox.stub(this.tessel._rps.stdin, 'end').callsFake((buffer) => { test.equal(buffer.toString(), shellScript); test.done(); }); this.exec = sandbox.stub(this.tessel.connection, 'exec').callsFake((command, callback) => { return callback(null, this.tessel._rps); }); deploy.createShellScript(this.tessel, opts); }, createShellScriptDefaultEntryPointNoSubargs(test) { test.expect(1); var shellScript = `#!/bin/sh exec node --harmony /app/remote-script/index.js`; var opts = { lang: deployment.js, resolvedEntryPoint: 'index.js', binopts: ['--harmony'], subargs: [], }; this.end.restore(); this.end = sandbox.stub(this.tessel._rps.stdin, 'end').callsFake((buffer) => { test.equal(buffer.toString(), shellScript); test.done(); }); this.exec = sandbox.stub(this.tessel.connection, 'exec').callsFake((command, callback) => { return callback(null, this.tessel._rps); }); deploy.createShellScript(this.tessel, opts); }, createShellScriptDefaultEntryPointNoExtraargs(test) { test.expect(1); var shellScript = `#!/bin/sh exec node /app/remote-script/index.js`; var opts = { lang: deployment.js, resolvedEntryPoint: 'index.js', binopts: [], subargs: [], }; this.end.restore(); this.end = sandbox.stub(this.tessel._rps.stdin, 'end').callsFake((buffer) => { test.equal(buffer.toString(), shellScript); test.done(); }); this.exec = sandbox.stub(this.tessel.connection, 'exec').callsFake((command, callback) => { return callback(null, this.tessel._rps); }); deploy.createShellScript(this.tessel, opts); }, createShellScriptSendsCorrectEntryPoint(test) { test.expect(1); var shellScript = `#!/bin/sh exec node /app/remote-script/index.js --key=value`; var opts = { lang: deployment.js, resolvedEntryPoint: 'index.js', binopts: [], subargs: ['--key=value'], }; this.end.restore(); this.end = sandbox.stub(this.tessel._rps.stdin, 'end').callsFake((buffer) => { test.equal(buffer.toString(), shellScript); test.done(); }); this.exec = sandbox.stub(this.tessel.connection, 'exec').callsFake((command, callback) => { return callback(null, this.tessel._rps); }); deploy.createShellScript(this.tessel, opts); }, processCompletionOrder(test) { // Array of processes we've started but haven't completed yet var processesAwaitingCompletion = []; this.tessel._rps.on('control', (data) => { // Push new commands into the queue processesAwaitingCompletion.push(data); }); // Create the temporary folder with example code createTemporaryDeployCode() .then(() => { var closeAdvance = (event) => { // If we get an event listener for the close event of a process if (event === 'close') { // Wait some time before actually closing it setTimeout(() => { // We should only have one process waiting for completion test.equal(processesAwaitingCompletion.length, 1); // Pop that process off processesAwaitingCompletion.shift(); // Emit the close event to keep it going this.tessel._rps.emit('close'); }, 200); } }; // When we get a listener that the Tessel process needs to close before advancing this.tessel._rps.on('newListener', closeAdvance); // Actually deploy the script this.tessel.deploy({ entryPoint: path.relative(process.cwd(), DEPLOY_FILE_JS), compress: true, push: false, single: false }) // If it finishes, it was successful .then(() => { this.tessel._rps.removeListener('newListener', closeAdvance); test.done(); }) // If not, there was an issue .catch(function(err) { test.equal(err, undefined, 'We hit a catch statement that we should not have.'); }); }); } }; exports['deployment.js.compress with uglify.es.minify()'] = { setUp(done) { this.minify = sandbox.spy(uglify.es, 'minify'); this.spinnerStart = sandbox.stub(log.spinner, 'start'); this.spinnerStop = sandbox.stub(log.spinner, 'stop'); done(); }, tearDown(done) { sandbox.restore(); done(); }, minifySuccess(test) { test.expect(1); deployment.js.compress('es', 'let f = 1'); test.equal(this.minify.callCount, 1); test.done(); }, minifyFailureReturnsOriginalSource(test) { test.expect(2); const result = deployment.js.compress('es', '#$%^'); // Assert that we tried to minify test.equal(this.minify.callCount, 1); // Assert that compress just gave back // the source as-is, even though the // parser failed. test.equal(result, '#$%^'); test.done(); }, ourOptionsParse(test) { test.expect(2); const ourExplicitSettings = { toplevel: true, warnings: false, }; const ourExplicitSettingsKeys = Object.keys(ourExplicitSettings); try { // Force the acorn parse step of the // compress operation to fail. This // will ensure that that the uglify // attempt is made. deployment.js.compress('es', '#$%^'); } catch (error) { // there is nothing we can about this. } const optionsSeen = this.minify.lastCall.args[1]; ourExplicitSettingsKeys.forEach(key => { test.equal(optionsSeen[key], ourExplicitSettings[key]); }); test.done(); }, noOptionsCompress(test) { test.expect(23); const optionsCompress = { // ------ booleans: true, cascade: true, conditionals: true, comparisons: true, ecma: 6, evaluate: true, hoist_funs: true, hoist_vars: true, if_return: true, join_vars: true, loops: true, passes: 3, properties: true, sequences: true, unsafe: true, // ------ dead_code: true, unsafe_math: true, keep_infinity: true, // ------ arrows: false, keep_fargs: false, keep_fnames: false, warnings: false, drop_console: false, }; const optionsCompressKeys = Object.keys(optionsCompress); deployment.js.compress('es', 'var a = 1;', {}); const optionsSeen = this.minify.lastCall.args[1].compress; optionsCompressKeys.forEach(key => { test.equal(optionsSeen[key], optionsCompress[key]); }); test.done(); }, ourOptionsCompress(test) { test.expect(23); const ourExplicitSettings = { // ------ booleans: true, cascade: true, conditionals: true, comparisons: true, ecma: 6, evaluate: true, hoist_funs: true, hoist_vars: true, if_return: true, join_vars: true, loops: true, passes: 3, properties: true, sequences: true, unsafe: true, // ------ dead_code: true, unsafe_math: true, keep_infinity: true, // ------ arrows: false, keep_fargs: false, keep_fnames: false, warnings: false, drop_console: false, }; const ourExplicitSettingsKeys = Object.keys(ourExplicitSettings); deployment.js.compress('es', 'var a = 1;'); const optionsSeen = this.minify.lastCall.args[1].compress; ourExplicitSettingsKeys.forEach(key => { test.equal(optionsSeen[key], ourExplicitSettings[key]); }); test.done(); }, theirOptionsCompress(test) { test.expect(20); var theirExplicitSettings = { // ------ booleans: false, cascade: false, conditionals: false, comparisons: false, evaluate: false, hoist_funs: false, hoist_vars: false, if_return: false, join_vars: false, loops: false, properties: false, sequences: false, unsafe: false, // ------ dead_code: false, unsafe_math: false, keep_infinity: false, // ------ keep_fargs: true, keep_fnames: true, warnings: true, drop_console: true, }; var theirExplicitSettingsKeys = Object.keys(theirExplicitSettings); deployment.js.compress('es', 'var a = 1;', { compress: theirExplicitSettings }); const optionsSeen = this.minify.lastCall.args[1].compress; theirExplicitSettingsKeys.forEach(key => { test.equal(optionsSeen[key], theirExplicitSettings[key]); }); test.done(); }, minifyFromBuffer(test) { test.expect(1); test.equal(deployment.js.compress('es', new Buffer(codeContents)), codeContents); test.done(); }, minifyFromString(test) { test.expect(1); test.equal(deployment.js.compress('es', codeContents), codeContents); test.done(); }, minifyWithBareReturns(test) { test.expect(1); deployment.js.compress('es', 'return;'); test.equal(this.minify.lastCall.args[1].parse.bare_returns, true); test.done(); }, avoidCompleteFailure(test) { test.expect(1); this.minify.restore(); this.minify = sandbox.stub(uglify.js, 'minify').callsFake(() => { return { error: new SyntaxError('whatever') }; }); test.equal(deployment.js.compress('es', 'return;'), 'return;'); test.done(); }, }; exports['deployment.js.compress with uglify.js.minify()'] = { setUp(done) { this.minify = sandbox.spy(uglify.js, 'minify'); this.spinnerStart = sandbox.stub(log.spinner, 'start'); this.spinnerStop = sandbox.stub(log.spinner, 'stop'); done(); }, tearDown(done) { sandbox.restore(); done(); }, minifySuccess(test) { test.expect(1); deployment.js.compress('js', 'let f = 1'); test.equal(this.minify.callCount, 1); test.done(); }, minifyFailureReturnsOriginalSource(test) { test.expect(2); const result = deployment.js.compress('js', '#$%^'); // Assert that we tried to minify test.equal(this.minify.callCount, 1); // Assert that compress just gave back // the source as-is, even though the // parser failed. test.equal(result, '#$%^'); test.done(); }, ourOptionsParse(test) { test.expect(2); const ourExplicitSettings = { toplevel: true, warnings: false, }; const ourExplicitSettingsKeys = Object.keys(ourExplicitSettings); try { // Force the acorn parse step of the // compress operation to fail. This // will ensure that that the uglify // attempt is made. deployment.js.compress('js', '#$%^'); } catch (error) { // there is nothing we can about this. } const optionsSeen = this.minify.lastCall.args[1]; ourExplicitSettingsKeys.forEach(key => { test.equal(optionsSeen[key], ourExplicitSettings[key]); }); test.done(); }, noOptionsCompress(test) { test.expect(15); const optionsCompress = { // ------ booleans: true, cascade: true, conditionals: true, comparisons: true, hoist_funs: true, if_return: true, join_vars: true, loops: true, passes: 2, properties: true, sequences: true, // ------ explicitly false keep_fargs: false, keep_fnames: false, warnings: false, drop_console: false, }; const optionsCompressKeys = Object.keys(optionsCompress); deployment.js.compress('js', 'var a = 1;', {}); const optionsSeen = this.minify.lastCall.args[1].compress; optionsCompressKeys.forEach(key => { test.equal(optionsSeen[key], optionsCompress[key]); }); test.done(); }, ourOptionsCompress(test) { test.expect(15); const ourExplicitSettings = { // ------ booleans: true, cascade: true, conditionals: true, comparisons: true, hoist_funs: true, if_return: true, join_vars: true, loops: true, passes: 2, properties: true, sequences: true, // ------ explicitly false keep_fargs: false, keep_fnames: false, warnings: false, drop_console: false, }; const ourExplicitSettingsKeys = Object.keys(ourExplicitSettings); deployment.js.compress('js', 'var a = 1;'); const optionsSeen = this.minify.lastCall.args[1].compress; ourExplicitSettingsKeys.forEach(key => { test.equal(optionsSeen[key], ourExplicitSettings[key]); }); test.done(); }, theirOptionsCompress(test) { test.expect(15); var theirExplicitSettings = { // ------ booleans: true, cascade: true, conditionals: true, comparisons: true, hoist_funs: true, if_return: true, join_vars: true, loops: true, passes: 2, properties: true, sequences: true, // ------ explicitly false keep_fargs: false, keep_fnames: false, warnings: false, drop_console: false, }; var theirExplicitSettingsKeys = Object.keys(theirExplicitSettings); deployment.js.compress('js', 'var a = 1;', { compress: theirExplicitSettings }); const optionsSeen = this.minify.lastCall.args[1].compress; theirExplicitSettingsKeys.forEach(key => { test.equal(optionsSeen[key], theirExplicitSettings[key]); }); test.done(); }, minifyFromBuffer(test) { test.expect(1); test.equal(deployment.js.compress('js', new Buffer(codeContents)), codeContents); test.done(); }, minifyFromString(test) { test.expect(1); test.equal(deployment.js.compress('js', codeContents), codeContents); test.done(); }, minifyWithBareReturns(test) { test.expect(1); deployment.js.compress('js', 'return;'); test.equal(this.minify.lastCall.args[1].parse.bare_returns, true); test.done(); }, avoidCompleteFailure(test) { test.expect(1); this.minify.restore(); this.minify = sandbox.stub(uglify.js, 'minify').callsFake(() => { return { error: new SyntaxError('whatever') }; }); const result = deployment.js.compress('js', 'return;'); test.equal(result, 'return;'); test.done(); }, theReasonForUsingBothVersionsOfUglify(test) { test.expect(2); this.minify.restore(); this.es = sandbox.spy(uglify.es, 'minify'); this.js = sandbox.spy(uglify.js, 'minify'); const code = tags.stripIndents ` var Class = function() {}; Class.prototype.method = function() {}; module.exports = Class; `; deployment.js.compress('es', code); deployment.js.compress('js', code); test.equal(this.es.callCount, 1); test.equal(this.js.callCount, 1); test.done(); }, }; exports['deployment.js.tarBundle'] = { setUp(done) { this.copySync = sandbox.spy(fs, 'copySync'); this.outputFileSync = sandbox.spy(fs, 'outputFileSync'); this.writeFileSync = sandbox.spy(fs, 'writeFileSync'); this.remove = sandbox.spy(fs, 'remove'); this.readdirSync = sandbox.spy(fs, 'readdirSync'); this.globSync = sandbox.spy(glob, 'sync'); this.collect = sandbox.spy(Project.prototype, 'collect'); this.exclude = sandbox.spy(Project.prototype, 'exclude'); this.mkdirSync = sandbox.spy(fsTemp, 'mkdirSync'); this.addIgnoreRules = sandbox.spy(Ignore.prototype, 'addIgnoreRules'); this.project = sandbox.spy(deployment.js, 'project'); this.compress = sandbox.spy(deployment.js, 'compress'); this.warn = sandbox.stub(log, 'warn'); this.info = sandbox.stub(log, 'info'); this.spinnerStart = sandbox.stub(log.spinner, 'start'); this.spinnerStop = sandbox.stub(log.spinner, 'stop'); done(); }, tearDown(done) { sandbox.restore(); done(); }, actionsGlobRules(test) { test.expect(1); const target = 'test/unit/fixtures/ignore'; const rules = glob.rules(target, '.tesselignore'); test.deepEqual( rules.map(path.normalize), [ // Found in "test/unit/fixtures/ignore/.tesselignore" 'a/**/*.*', 'mock-foo.js', // Found in "test/unit/fixtures/ignore/nested/.tesselignore" 'nested/b/**/*.*', 'nested/file.js' ].map(path.normalize) ); test.done(); }, actionsGlobFiles(test) { test.expect(1); const target = 'test/unit/fixtures/ignore'; const rules = glob.rules(target, '.tesselignore'); const files = glob.files(target, rules); test.deepEqual(files, ['mock-foo.js']); test.done(); }, actionsGlobFilesNested(test) { test.expect(1); const target = 'test/unit/fixtures/ignore'; const files = glob.files(target, ['**/.tesselignore']); test.deepEqual(files, [ '.tesselignore', 'nested/.tesselignore' ]); test.done(); }, actionsGlobFilesNonNested(test) { test.expect(1); const target = 'test/unit/fixtures/ignore'; const files = glob.files(target, ['.tesselignore']); test.deepEqual(files, ['.tesselignore']); test.done(); }, noOptionsTargetFallbackToCWD(test) { test.expect(2); const target = path.normalize('test/unit/fixtures/project'); sandbox.stub(process, 'cwd').returns(target); sandbox.spy(path, 'relative'); /* project ├── .tesselignore ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── .tesselignore │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 9 files */ deployment.js.tarBundle({ compress: true, full: true, }).then(() => { test.equal(path.relative.firstCall.args[0], path.normalize('test/unit/fixtures/project')); test.equal(path.relative.firstCall.args[1], path.normalize('test/unit/fixtures/project')); test.done(); }); }, full(test) { test.expect(8); const target = 'test/unit/fixtures/project'; /* project ├── .tesselignore ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── .tesselignore │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 9 files */ deployment.js.tarBundle({ target: path.normalize(target), compress: true, full: true, }).then(bundle => { // One call for .tesselinclude // One call for the single rule found within // Three calls for the deploy lists // * 2 (We need all ignore rules ahead of time for ignoring binaries) test.equal(this.globSync.callCount, 5 + listRuleLength); // addIgnoreRules might be called many times, but we only // care about tracking the call that's explicitly made by // tessel's deploy operation test.deepEqual(this.addIgnoreRules.getCall(0).args[0], [ '**/.tesselignore', '**/.tesselinclude', ]); // These things don't happen in the --full path test.equal(this.project.callCount, 0); test.equal(this.exclude.callCount, 0); test.equal(this.compress.callCount, 0); test.equal(this.writeFileSync.callCount, 0); test.equal(this.remove.callCount, 0); // End // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } test.deepEqual(entries, [ 'index.js', 'nested/another.js', 'node_modules/foo/index.js', 'package.json', ]); test.done(); }); }); }, fullHitsErrorFromFstreamIgnore(test) { test.expect(1); // Need to stub function in _actual_ fs (but we use fs-extra) const fs = require('fs'); sandbox.stub(fs, 'readFile').callsFake((file, callback) => { callback('foo'); }); const target = 'test/unit/fixtures/project'; deployment.js.tarBundle({ target: path.normalize(target), compress: true, full: true, }) .then(() => { test.ok(false, 'tarBundle should not resolve'); test.done(); }) .catch(error => { test.equal(error.toString(), 'foo'); test.done(); }); }, slim(test) { test.expect(9); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project'; /* project ├── .tesselignore ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── .tesselignore │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 9 files */ deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }).then(bundle => { // These things happen in the --slim path test.equal(this.project.callCount, 1); test.equal(this.compress.callCount, 2); test.equal(this.mkdirSync.callCount, 1); test.equal(this.outputFileSync.callCount, 3); // End /* $ find . -type f -name .tesselignore -exec cat {} \+ mock-foo.js other.js package.json */ test.equal(this.exclude.callCount, 1); test.deepEqual(this.exclude.lastCall.args[0], [ 'mock-foo.js', 'test/unit/fixtures/project/mock-foo.js', 'other.js', 'test/unit/fixtures/project/other.js', 'node_modules/foo/package.json', 'test/unit/fixtures/project/node_modules/foo/package.json' ].map(path.normalize)); const minified = this.compress.lastCall.returnValue; test.equal(this.compress.callCount, 2); test.equal(minified.indexOf('!!mock-foo!!') === -1, true); // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } test.deepEqual(entries, [ 'index.js', 'node_modules/foo/index.js', 'package.json' ]); test.done(); }); }); }, slimHitsErrorFromFstreamReader(test) { test.expect(1); const pipe = fstream.Reader.prototype.pipe; // Need to stub function in _actual_ fs (but we use fs-extra) this.readerPipe = sandbox.stub(fstream.Reader.prototype, 'pipe').callsFake(function() { this.emit('error', new Error('foo')); return pipe.apply(this, arguments); }); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project'; deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }) .then(() => { test.ok(false, 'tarBundle should not resolve'); test.done(); }) .catch(error => { test.equal(error.toString(), 'Error: foo'); test.done(); }); }, slimHitsErrorInfsRemove(test) { test.expect(1); this.remove.restore(); this.remove = sandbox.stub(fs, 'remove').callsFake((temp, handler) => { handler(new Error('foo')); }); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project'; deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }) .then(() => { this.remove.reset(); test.ok(false, 'tarBundle should not resolve'); test.done(); }) .catch(error => { test.equal(error.toString(), 'Error: foo'); test.done(); }); }, slimHitsErrorFromCompress(test) { test.expect(1); this.compress.restore(); this.compress = sandbox.stub(deployment.js, 'compress').callsFake(() => { throw new Error('foo'); }); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project'; deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }) .then(() => { test.ok(false, 'tarBundle should not resolve'); test.done(); }) .catch(error => { test.equal(error.toString(), 'Error: foo'); test.done(); }); }, slimHitsErrorFromProjectCollect(test) { test.expect(1); this.collect.restore(); this.collect = sandbox.stub(Project.prototype, 'collect').callsFake((handler) => { handler(new Error('foo')); }); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project'; deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }) .then(() => { test.ok(false, 'tarBundle should not resolve'); test.done(); }) .catch(error => { test.equal(error.toString(), 'Error: foo'); test.done(); }); }, slimHitsErrorFromProject(test) { test.expect(1); this.collect.restore(); this.collect = sandbox.stub(Project.prototype, 'collect').callsFake(function() { this.emit('error', new Error('foo')); }); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project'; deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }) .then(() => { test.ok(false, 'tarBundle should not resolve'); test.done(); }) .catch(error => { test.equal(error.toString(), 'Error: foo'); test.done(); }); }, compressionProducesNoErrors(test) { test.expect(1); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/syntax-error'; deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }).then(bundle => { extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } test.deepEqual(entries, [ 'arrow.js', 'index.js', 'package.json', ]); test.done(); }); }).catch(() => { test.ok(false, 'Compression should not produce errors'); test.done(); }); }, compressionIsSkipped(test) { test.expect(2); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/syntax-error'; deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: false, slim: true, }).then(bundle => { extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } // compression mechanism is never called when --compress=false test.equal(this.compress.callCount, 0); test.deepEqual(entries, [ 'arrow.js', 'index.js', 'package.json', ]); test.done(); }); }).catch(() => { test.ok(false, 'Compression should not produce errors'); test.done(); }); }, slimTesselInit(test) { test.expect(5); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/init'; /* init ├── index.js └── package.json 0 directories, 2 files */ deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }).then(bundle => { test.equal(this.project.callCount, 1); test.equal(this.compress.callCount, 1); test.equal(this.mkdirSync.callCount, 1); const minified = this.compress.lastCall.returnValue; test.equal(minified, 'const e=require("tessel"),{2:o,3:l}=e.led;o.on(),setInterval(()=>{o.toggle(),l.toggle()},100),console.log("I\'m blinking! (Press CTRL + C to stop)");'); // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } test.deepEqual(entries, ['index.js', 'package.json']); test.done(); }); }); }, slimSingle(test) { test.expect(4); const target = 'test/unit/fixtures/project'; const entryPoint = 'index.js'; deployment.js.tarBundle({ target: path.normalize(target), entryPoint: entryPoint, compress: true, resolvedEntryPoint: entryPoint, single: true, slim: true, }).then(bundle => { test.equal(this.project.callCount, 1); test.equal(this.compress.callCount, 1); test.equal(bundle.length, 2048); extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } test.deepEqual(entries, ['index.js']); test.done(); }); }); }, slimSingleNested(test) { test.expect(4); const target = 'test/unit/fixtures/project'; const entryPoint = 'another.js'; deployment.js.tarBundle({ target: path.normalize(target), entryPoint: entryPoint, compress: true, resolvedEntryPoint: path.join('nested', entryPoint), single: true, slim: true, }).then(bundle => { test.equal(this.project.callCount, 1); test.equal(this.compress.callCount, 1); test.equal(bundle.length, 2560); extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } test.deepEqual(entries, ['nested/another.js']); test.done(); }); }); }, fullSingle(test) { test.expect(3); const target = 'test/unit/fixtures/project'; const entryPoint = 'index.js'; deployment.js.tarBundle({ target: path.normalize(target), entryPoint: entryPoint, compress: true, resolvedEntryPoint: entryPoint, single: true, full: true, }).then(bundle => { test.equal(this.addIgnoreRules.callCount, 3); test.equal(bundle.length, 2048); extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } test.deepEqual(entries, ['index.js']); test.done(); }); }); }, fullSingleNested(test) { test.expect(2); const target = 'test/unit/fixtures/project'; const entryPoint = 'another.js'; deployment.js.tarBundle({ target: path.normalize(target), entryPoint: entryPoint, compress: true, resolvedEntryPoint: path.join('nested', entryPoint), single: true, full: true, }).then(bundle => { test.equal(bundle.length, 2560); extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } test.deepEqual(entries, ['nested/another.js']); test.done(); }); }); }, slimIncludeOverridesIgnore(test) { test.expect(9); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project-include-overrides-ignore'; /* project-include-overrides-ignore ├── .tesselignore ├── .tesselinclude ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── .tesselignore │   ├── .tesselinclude │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 11 files */ deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }).then(bundle => { test.equal(this.globSync.callCount, 8 + listRuleLength); /* All .tesselignore rules are negated by all .tesselinclude rules: $ find . -type f -name .tesselignore -exec cat {} \+ mock-foo.js other.js package.json $ find . -type f -name .tesselinclude -exec cat {} \+ mock-foo.js other.js package.json */ // 'other.js' doesn't appear in the source, but is explicitly included test.equal(this.copySync.callCount, 1); test.equal(this.copySync.lastCall.args[0].endsWith('other.js'), true); // Called, but without any arguments test.equal(this.exclude.callCount, 1); test.equal(this.exclude.lastCall.args[0].length, 0); test.equal(this.project.callCount, 1); // 3 js files are compressed test.equal(this.compress.callCount, 3); test.equal(this.remove.callCount, 1); // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } // Since the .tesselignore rules are ALL negated by .tesselinclude rules, // the additional files are copied into the temporary bundle dir, and // then included in the tarred bundle. test.deepEqual(entries, [ 'index.js', 'mock-foo.js', 'node_modules/foo/index.js', 'node_modules/foo/package.json', 'other.js', 'package.json', ]); test.done(); }); }); }, fullIncludeOverridesIgnore(test) { test.expect(8); const target = 'test/unit/fixtures/project-include-overrides-ignore'; /* project-include-overrides-ignore ├── .tesselignore ├── .tesselinclude ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── .tesselignore │   ├── .tesselinclude │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 11 files */ deployment.js.tarBundle({ target: path.normalize(target), compress: true, full: true, }).then(bundle => { test.equal(this.globSync.callCount, 8 + listRuleLength); // addIgnoreRules might be called many times, but we only // care about tracking the call that's explicitly made by // tessel's deploy operation test.deepEqual(this.addIgnoreRules.getCall(0).args[0], [ '**/.tesselignore', '**/.tesselinclude', ]); /* $ find . -type f -name .tesselignore -exec cat {} \+ mock-foo.js other.js package.json */ test.equal(this.exclude.callCount, 0); // These things don't happen in the --full path test.equal(this.project.callCount, 0); test.equal(this.compress.callCount, 0); test.equal(this.writeFileSync.callCount, 0); test.equal(this.remove.callCount, 0); // End // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } // The .tesselignore rules are ALL overridden by .tesselinclude rules test.deepEqual(entries, [ 'index.js', 'mock-foo.js', 'nested/another.js', 'node_modules/foo/index.js', 'other.js', 'package.json' ]); test.done(); }); }); }, slimIncludeWithoutIgnore(test) { test.expect(9); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project-include-without-ignore'; /* project-include-without-ignore ├── .tesselinclude ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── .tesselinclude │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 9 files */ deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }).then(bundle => { test.equal(this.globSync.callCount, 5 + listRuleLength); /* There are NO .tesselignore rules, but there are .tesselinclude rules: $ find . -type f -name .tesselignore -exec cat {} \+ (no results) $ find . -type f -name .tesselinclude -exec cat {} \+ mock-foo.js other.js package.json */ // Called, but without any arguments test.equal(this.exclude.callCount, 1); test.equal(this.exclude.lastCall.args[0].length, 0); // 'other.js' doesn't appear in the source, but is explicitly included test.equal(this.copySync.callCount, 1); test.equal(this.copySync.lastCall.args[0].endsWith('other.js'), true); test.equal(this.project.callCount, 1); test.equal(this.compress.callCount, 3); test.equal(this.remove.callCount, 1); // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } // There are no .tesselignore rules, all .tesselinclude rules are // respected the additional files are copied into the temporary // bundle dir, and then included in the tarred bundle. test.deepEqual(entries, [ 'index.js', 'mock-foo.js', 'node_modules/foo/index.js', 'node_modules/foo/package.json', 'other.js', 'package.json' ]); test.done(); }); }); }, fullIncludeWithoutIgnore(test) { test.expect(8); /* !! TAKE NOTE!! This is actually the default behavior. That is to say: these files would be included, whether they are listed in the .tesselinclude file or not. */ const target = 'test/unit/fixtures/project-include-without-ignore'; /* project-include-without-ignore ├── .tesselinclude ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── .tesselinclude │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 9 files */ deployment.js.tarBundle({ target: path.normalize(target), compress: true, full: true, }).then(bundle => { test.equal(this.globSync.callCount, 5 + listRuleLength); // addIgnoreRules might be called many times, but we only // care about tracking the call that's explicitly made by // tessel's deploy operation test.deepEqual(this.addIgnoreRules.getCall(0).args[0], [ '**/.tesselignore', '**/.tesselinclude', ]); /* There are NO .tesselignore rules, but there are .tesselinclude rules: $ find . -type f -name .tesselignore -exec cat {} \+ (no results) $ find . -type f -name .tesselinclude -exec cat {} \+ mock-foo.js other.js package.json */ test.equal(this.exclude.callCount, 0); // These things don't happen in the --full path test.equal(this.project.callCount, 0); test.equal(this.compress.callCount, 0); test.equal(this.writeFileSync.callCount, 0); test.equal(this.remove.callCount, 0); // End // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } // There are no .tesselignore rules, all .tesselinclude rules are // respected the additional files are copied into the temporary // bundle dir, and then included in the tarred bundle. test.deepEqual(entries, [ 'index.js', 'mock-foo.js', 'nested/another.js', 'node_modules/foo/index.js', 'node_modules/foo/package.json', 'other.js', 'package.json' ]); test.done(); }); }); }, slimIncludeHasNegateRules(test) { test.expect(8); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project-include-has-negate-rules'; /* project-include-has-negate-rules . ├── .tesselinclude ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── .tesselinclude │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 9 files */ deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }).then(bundle => { test.equal(this.globSync.callCount, 6 + listRuleLength); /* There are NO .tesselignore rules, but there are .tesselinclude rules: $ find . -type f -name .tesselignore -exec cat {} \+ (no results) $ find . -type f -name .tesselinclude -exec cat {} \+ !mock-foo.js other.js package.json The negated rule will be transferred. */ test.equal(this.exclude.callCount, 1); // Called once for the extra file matching // the .tesselinclude rules test.equal(this.copySync.callCount, 1); test.equal(this.project.callCount, 1); test.equal(this.compress.callCount, 2); // The 4 files discovered and listed in the dependency graph // See bundle extraction below. test.equal(this.outputFileSync.callCount, 4); test.equal(this.remove.callCount, 1); // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } // There are no .tesselignore rules, but the .tesselinclude rules // include a negated pattern. The additional, non-negated files // are copied into the temporary bundle dir, and then included // in the tarred bundle. test.deepEqual(entries, [ 'index.js', // mock-foo.js MUST NOT BE PRESENT 'node_modules/foo/index.js', 'node_modules/foo/package.json', 'other.js', 'package.json', ]); test.done(); }); }); }, fullIncludeHasNegateRules(test) { test.expect(8); const target = 'test/unit/fixtures/project-include-has-negate-rules'; /* project-include-has-negate-rules . ├── .tesselinclude ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── .tesselinclude │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 9 files */ deployment.js.tarBundle({ target: path.normalize(target), compress: true, full: true, }).then(bundle => { test.equal(this.globSync.callCount, 6 + listRuleLength); // addIgnoreRules might be called many times, but we only // care about tracking the call that's explicitly made by // tessel's deploy operation test.deepEqual(this.addIgnoreRules.getCall(0).args[0], [ '**/.tesselignore', '**/.tesselinclude', ]); // This is where the negated rule is transferred. test.deepEqual(this.addIgnoreRules.getCall(1).args[0], [ // Note that the "!" was stripped from the rule 'mock-foo.js', ]); /* There are NO .tesselignore rules, but there are .tesselinclude rules: $ find . -type f -name .tesselignore -exec cat {} \+ (no results) $ find . -type f -name .tesselinclude -exec cat {} \+ !mock-foo.js other.js package.json The negated rule will be transferred. */ // These things don't happen in the --full path test.equal(this.project.callCount, 0); test.equal(this.compress.callCount, 0); test.equal(this.writeFileSync.callCount, 0); test.equal(this.remove.callCount, 0); // End // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } // There are no .tesselignore rules, all .tesselinclude rules are // respected the additional files are copied into the temporary // bundle dir, and then included in the tarred bundle. test.deepEqual(entries, [ 'index.js', // mock-foo.js is NOT present 'nested/another.js', 'node_modules/foo/index.js', 'node_modules/foo/package.json', 'other.js', 'package.json' ]); test.done(); }); }); }, slimSingleInclude(test) { test.expect(2); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project-include-without-ignore'; /* project-include-without-ignore ├── .tesselinclude ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── .tesselinclude │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 9 files */ deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, single: true, }).then(bundle => { test.equal(this.globSync.callCount, 5 + listRuleLength); /* There are .tesselinclude rules, but the single flag is present so they don't matter. The only file sent must be the file specified. */ // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } // Only the explicitly specified `index.js` will // be included in the deployed code. test.deepEqual(entries, [ 'index.js', ]); test.done(); }); }); }, detectAssetsWithoutInclude(test) { test.expect(4); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project-assets-without-include'; /* project-assets-without-include ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── index.js │   └── package.json ├── other.js └── package.json 3 directories, 7 files */ deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }).then(() => { test.equal(this.readdirSync.callCount, 1); test.equal(this.readdirSync.lastCall.args[0], path.normalize(target)); test.equal(this.warn.callCount, 1); test.equal(this.warn.firstCall.args[0], 'Some assets in this project were not deployed (see: t2 run --help)'); test.done(); }); }, detectAssetsWithoutIncludeEliminatedByDepGraph(test) { test.expect(3); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project-assets-without-include-eliminated-by-dep-graph'; /* project-assets-without-include ├── index.js ├── mock-foo.js ├── nested │   └── another.js ├── node_modules │   └── foo │   ├── index.js │   └── package.json └── package.json 3 directories, 6 files */ deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }).then(() => { test.equal(this.readdirSync.callCount, 1); test.equal(this.readdirSync.lastCall.args[0], path.normalize(target)); test.equal(this.warn.callCount, 0); // Ultimately, all assets were accounted for, even though // no tesselinclude existed. test.done(); }); }, alwaysExplicitlyProvideProjectDirname(test) { test.expect(1); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project'; deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }).then(() => { test.deepEqual(this.project.lastCall.args[0], { entry: path.join(target, entryPoint), dirname: path.normalize(target), }); test.done(); }); }, detectAndEliminateBlacklistedAssets(test) { test.expect(1); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project-ignore-blacklisted'; /* project-ignore-blacklisted ├── index.js ├── node_modules │   └── tessel │   ├── index.js │   └── package.json └── package.json 2 directories, 4 files */ deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }).then((bundle) => { // Extract and inspect the bundle... extract(bundle, (error, entries) => { if (error) { test.ok(false, error.toString()); test.done(); } test.deepEqual(entries, [ 'index.js', 'package.json' ]); test.done(); }); }); }, iteratesBinaryModulesUsed(test) { test.expect(5); const entryPoint = 'index.js'; const target = 'test/unit/fixtures/project'; const details = { modulePath: '' }; this.minimatch = sandbox.stub(deployment.js, 'minimatch').returns(true); this.rules = sandbox.stub(glob, 'rules').callsFake(() => { return [ 'a', 'b', ]; }); this.forEach = sandbox.stub(Map.prototype, 'forEach').callsFake((handler) => { handler(details); }); deployment.js.tarBundle({ target: path.normalize(target), resolvedEntryPoint: entryPoint, compress: true, slim: true, }) .then(() => { test.equal(this.forEach.callCount, 2); test.equal(this.minimatch.callCount, 3); test.deepEqual(this.minimatch.getCall(0).args, ['', 'a', { matchBase: true, dot: true }]); test.deepEqual(this.minimatch.getCall(1).args, ['', 'b', { matchBase: true, dot: true }]); test.deepEqual(this.minimatch.getCall(2).args, ['', 'node_modules/**/tessel/**/*', { matchBase: true, dot: true }]); test.done(); }); }, }; var fixtures = { project: path.join(FIXTURE_PATH, '/find-project'), explicit: path.join(FIXTURE_PATH, '/find-project-explicit-main') }; exports['deploy.findProject'] = { setUp(done) { done(); }, tearDown(done) { sandbox.restore(); done(); }, home(test) { test.expect(1); var fake = path.normalize('/fake/test/home/dir'); this.homedir = sandbox.stub(os, 'homedir').returns(fake); this.lstatSync = sandbox.stub(fs, 'lstatSync').callsFake((file) => { return { isDirectory: () => { // naive for testing. return file.slice(-1) === '/'; } }; }); this.realpathSync = sandbox.stub(fs, 'realpathSync').callsFake((arg) => { // Ensure that "~" was transformed test.equal(arg, path.normalize('/fake/test/home/dir/foo')); test.done(); return ''; }); deploy.findProject({ lang: deployment.js, entryPoint: '~/foo/', compress: true, }); }, byFile(test) { test.expect(1); var target = 'test/unit/fixtures/find-project/index.js'; deploy.findProject({ lang: deployment.js, entryPoint: target, compress: true, }).then(project => { test.deepEqual(project, { pushdir: fixtures.project, program: path.join(fixtures.project, 'index.js'), entryPoint: 'index.js' }); test.done(); }); }, byDirectory(test) { test.expect(1); var target = 'test/unit/fixtures/find-project/'; deploy.findProject({ lang: deployment.js, entryPoint: target }).then(project => { test.deepEqual(project, { pushdir: fixtures.project, program: path.join(fixtures.project, 'index.js'), entryPoint: 'index.js' }); test.done(); }); }, byDirectoryBWExplicitMain(test) { test.expect(1); var target = 'test/unit/fixtures/find-project-explicit-main/'; deploy.findProject({ lang: deployment.js, entryPoint: target }).then(project => { test.deepEqual(project, { pushdir: fixtures.explicit, program: path.join(fixtures.explicit, 'app.js'), entryPoint: 'app.js' }); test.done(); }); }, byDirectoryMissingIndex(test) { test.expect(1); var target = 'test/unit/fixtures/find-project-no-index/index.js'; deploy.findProject({ lang: deployment.js, entryPoint: target }).then(() => { test.ok(false, 'findProject should not find a valid project here'); test.done(); }).catch(error => { test.ok(error.includes('ENOENT')); test.done(); }); }, byFileInSubDirectory(test) { test.expect(1); var target = 'test/unit/fixtures/find-project/test/index.js'; deploy.findProject({ lang: deployment.js, entryPoint: target }).then(project => { test.deepEqual(project, { pushdir: fixtures.project, program: path.join(fixtures.project, 'test/index.js'), entryPoint: path.normalize('test/index.js')<|fim▁hole|> }); test.done(); }); }, noPackageJsonSingle(test) { test.expect(1); var pushdir = path.normalize('test/unit/fixtures/project-no-package.json/'); var entryPoint = path.normalize('test/unit/fixtures/project-no-package.json/index.js'); var opts = { entryPoint: entryPoint, single: true, slim: true, lang: deployment.js, }; deploy.findProject(opts).then(project => { // Without the `single` flag, this would've continued upward // until it found a directory with a package.json. test.equal(project.pushdir, fs.realpathSync(pushdir)); test.done(); }); }, noPackageJsonUseProgramDirname(test) { test.expect(1); // This is no package.json here var entryPoint = path.normalize('test/unit/fixtures/project-no-package.json/index.js'); var opts = { entryPoint: entryPoint, lang: deployment.js, single: false, }; this.endOfLookup = sandbox.stub(deploy, 'endOfLookup').returns(true); deploy.findProject(opts).then(project => { test.equal(project.pushdir, path.dirname(path.join(process.cwd(), entryPoint))); test.done(); }); }, }; exports['deploy.sendBundle, error handling'] = { setUp(done) { this.tessel = TesselSimulator(); this.fetchCurrentBuildInfo = sandbox.stub(this.tessel, 'fetchCurrentBuildInfo').returns(Promise.resolve('40b2b46a62a34b5a26170c75f7e717cea673d1eb')); this.fetchNodeProcessVersions = sandbox.stub(this.tessel, 'fetchNodeProcessVersions').returns(Promise.resolve(processVersions)); this.requestBuildList = sandbox.stub(updates, 'requestBuildList').returns(Promise.resolve(tesselBuilds)); this.pathResolve = sandbox.stub(path, 'resolve'); this.failure = 'FAIL'; done(); }, tearDown(done) { this.tessel.mockClose(); sandbox.restore(); done(); }, findProject(test) { test.expect(1); this.findProject = sandbox.stub(deploy, 'findProject').callsFake(() => Promise.reject(this.failure)); deploy.sendBundle(this.tessel, { lang: deployment.js }).catch(error => { test.equal(error, this.failure); test.done(); }); }, resolveBinaryModules(test) { test.expect(1); this.pathResolve.restore(); this.pathResolve = sandbox.stub(path, 'resolve').returns(''); this.exists = sandbox.stub(fs, 'exists').callsFake((fpath, callback) => callback(true)); this.findProject = sandbox.stub(deploy, 'findProject').callsFake(() => Promise.resolve({ pushdir: '', entryPoint: '' })); this.resolveBinaryModules = sandbox.stub(deployment.js, 'resolveBinaryModules').callsFake(() => Promise.reject(this.failure)); deploy.sendBundle(this.tessel, { lang: deployment.js }).catch(error => { test.equal(error, this.failure); test.done(); }); }, tarBundle(test) { test.expect(1); this.pathResolve.restore(); this.pathResolve = sandbox.stub(path, 'resolve').returns(''); this.exists = sandbox.stub(fs, 'exists').callsFake((fpath, callback) => callback(true)); this.findProject = sandbox.stub(deploy, 'findProject').callsFake(() => Promise.resolve({ pushdir: '', entryPoint: '' })); this.resolveBinaryModules = sandbox.stub(deployment.js, 'resolveBinaryModules').callsFake(() => Promise.resolve()); this.tarBundle = sandbox.stub(deployment.js, 'tarBundle').callsFake(() => Promise.reject(this.failure)); deploy.sendBundle(this.tessel, { lang: deployment.js }).catch(error => { test.equal(error, this.failure); test.done(); }); }, }; exports['deployment.js.preBundle'] = { setUp(done) { this.tessel = TesselSimulator(); this.info = sandbox.stub(log, 'info'); this.exec = sandbox.stub(this.tessel.connection, 'exec').callsFake((command, callback) => { callback(null, this.tessel._rps); }); this.receive = sandbox.stub(this.tessel, 'receive').callsFake((rps, callback) => { rps.emit('close'); callback(); }); this.fetchCurrentBuildInfo = sandbox.stub(this.tessel, 'fetchCurrentBuildInfo').returns(Promise.resolve('40b2b46a62a34b5a26170c75f7e717cea673d1eb')); this.fetchNodeProcessVersions = sandbox.stub(this.tessel, 'fetchNodeProcessVersions').returns(Promise.resolve(processVersions)); this.requestBuildList = sandbox.stub(updates, 'requestBuildList').returns(Promise.resolve(tesselBuilds)); this.findProject = sandbox.stub(deploy, 'findProject').returns(Promise.resolve({ pushdir: '', entryPoint: '' })); this.resolveBinaryModules = sandbox.stub(deployment.js, 'resolveBinaryModules').returns(Promise.resolve()); this.tarBundle = sandbox.stub(deployment.js, 'tarBundle').returns(Promise.resolve(new Buffer([0x00]))); this.pathResolve = sandbox.stub(path, 'resolve'); this.preBundle = sandbox.spy(deployment.js, 'preBundle'); done(); }, tearDown(done) { this.tessel.mockClose(); sandbox.restore(); done(); }, preBundleChecksForNpmrc(test) { test.expect(1); const warning = tags.stripIndents `This project is missing an ".npmrc" file! To prepare your project for deployment, use the command: t2 init Once complete, retry:`; this.exists = sandbox.stub(fs, 'exists').callsFake((fpath, callback) => callback(false)); deployment.js.preBundle({ target: '/', }).catch(error => { test.equal(error.startsWith(warning), true); test.done(); }); }, preBundleReceivesTessel(test) { test.expect(1); this.pathResolve.restore(); this.pathResolve = sandbox.stub(path, 'resolve').returns(''); this.exists = sandbox.stub(fs, 'exists').callsFake((fpath, callback) => callback(true)); deploy.sendBundle(this.tessel, { target: '/', entryPoint: 'foo.js', lang: deployment.js }).then(() => { test.equal(this.preBundle.lastCall.args[0].tessel, this.tessel); test.done(); }); }, // // We need to find a way to provde the build version directly from the // // Tessel 2 itself. This approach makes deployment slow with a network // // connection, or impossible without one. // preBundleCallsfetchCurrentBuildInfoAndForwardsResult(test) { // test.expect(4); // deploy.sendBundle(this.tessel, { // target: '/', // entryPoint: 'foo.js', // lang: deployment.js // }).then(() => { // test.equal(this.fetchCurrentBuildInfo.callCount, 1); // test.equal(this.resolveBinaryModules.callCount, 1); // var args = this.resolveBinaryModules.lastCall.args[0]; // test.equal(args.tessel, this.tessel); // test.equal(args.tessel.versions, processVersions); // test.done(); // }); // }, // preBundleCallsrequestBuildListAndForwardsResult(test) { // test.expect(4); // deploy.sendBundle(this.tessel, { // target: '/', // entryPoint: 'foo.js', // lang: deployment.js // }).then(() => { // test.equal(this.requestBuildList.callCount, 1); // test.equal(this.resolveBinaryModules.callCount, 1); // var args = this.resolveBinaryModules.lastCall.args[0]; // test.equal(args.tessel, this.tessel); // test.equal(args.tessel.versions, processVersions); // test.done(); // }); // }, // preBundleCallsfetchNodeProcessVersionsAndForwardsResult(test) { // test.expect(4); // deploy.sendBundle(this.tessel, { // target: '/', // entryPoint: 'foo.js', // lang: deployment.js // }).then(() => { // test.equal(this.fetchNodeProcessVersions.callCount, 1); // test.equal(this.resolveBinaryModules.callCount, 1); // var args = this.resolveBinaryModules.lastCall.args[0]; // test.equal(args.tessel, this.tessel); // test.equal(args.tessel.versions, processVersions); // test.done(); // }); // }, }; exports['deployment.js.resolveBinaryModules'] = { setUp(done) { this.target = path.normalize('test/unit/fixtures/project-binary-modules'); this.relative = sandbox.stub(path, 'relative').callsFake(() => { return path.join(FIXTURE_PATH, '/project-binary-modules/'); }); this.globFiles = sandbox.spy(glob, 'files'); this.globSync = sandbox.stub(glob, 'sync').callsFake(() => { return [ path.normalize('node_modules/release/build/Release/release.node'), ]; }); this.readGypFileSync = sandbox.stub(deployment.js.resolveBinaryModules, 'readGypFileSync').callsFake(() => { return '{"targets": [{"target_name": "missing"}]}'; }); this.getRoot = sandbox.stub(bindings, 'getRoot').callsFake((file) => { var pathPart = ''; if (file.includes('debug')) { pathPart = 'debug'; } if (file.includes('linked')) { pathPart = 'linked'; } if (file.includes('missing')) { pathPart = 'missing'; } if (file.includes('release')) { pathPart = 'release'; } return path.normalize(`node_modules/${pathPart}/`); }); this.ifReachable = sandbox.stub(remote, 'ifReachable').callsFake(() => Promise.resolve()); done(); }, tearDown(done) { sandbox.restore(); done(); }, bailOnSkipBinary(test) { test.expect(2); this.target = path.normalize('test/unit/fixtures/project-skip-binary'); this.relative.restore(); this.relative = sandbox.stub(path, 'relative').callsFake(() => { return path.join(FIXTURE_PATH, '/project-skip-binary/'); }); // We WANT to read the actual gyp files if necessary this.readGypFileSync.restore(); // We WANT to glob the actual target directory this.globSync.restore(); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { test.equal(this.exists.callCount, 1); // test/unit/fixtures/skip-binary/ has the corresponding // dependencies for the following binary modules: // // debug-1.1.1-Debug-node-v46-linux-mipsel // release-1.1.1-Release-node-v46-linux-mipsel // // However, the latter has a "tessel.skipBinary = true" key in its package.json // // test.equal(this.exists.lastCall.args[0].endsWith(path.normalize('.tessel/binaries/debug-1.1.1-Debug-node-v46-linux-mipsel')), true); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, buildPathExpWindow(test) { test.expect(1); let descriptor = Object.getOwnPropertyDescriptor(process, 'platform'); Object.defineProperty(process, 'platform', { value: 'win32' }); this.match = sandbox.spy(String.prototype, 'match'); this.target = path.normalize('test/unit/fixtures/project-skip-binary'); this.relative.restore(); this.relative = sandbox.stub(path, 'relative').callsFake(() => { return path.join(FIXTURE_PATH, '/project-skip-binary/'); }); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { test.equal( this.match.lastCall.args[0].toString(), '/(?:build\\\\(Debug|Release|bindings)\\\\)/' ); // Restore this descriptor Object.defineProperty(process, 'platform', descriptor); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, noOptionsTargetFallbackToCWD(test) { test.expect(3); const target = path.normalize('test/unit/fixtures/project'); sandbox.stub(process, 'cwd').returns(target); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); deployment.js.resolveBinaryModules({ tessel: { versions: { modules: 46 }, }, }).then(() => { test.equal(this.relative.callCount, 1); test.equal(this.relative.lastCall.args[0], target); test.equal(this.relative.lastCall.args[1], target); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, noOptionsTargetFallbackToCWDNoRelative(test) { test.expect(1); this.relative.restore(); this.relative = sandbox.stub(path, 'relative').returns(''); this.cwd = sandbox.stub(process, 'cwd').returns(''); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); deployment.js.resolveBinaryModules({ tessel: { versions: { modules: 46 }, }, }).then(() => { test.ok(false, 'resolveBinaryModules should not resolve'); test.done(); }).catch(error => { // The thing to be found: // // node_modules/release/package.json // // Will not be found, because it doesn't exist, // but in this case, that's exactly what we want. test.equal(error.toString(), `Error: Cannot find module '${path.normalize('node_modules/release/package.json')}'`); test.done(); }); }, findsModulesMissingBinaryNodeFiles(test) { test.expect(2); this.globSync.restore(); this.globSync = sandbox.stub(glob, 'sync').callsFake(() => { return [ path.normalize('node_modules/release/build/Release/release.node'), path.normalize('node_modules/release/binding.gyp'), path.normalize('node_modules/missing/binding.gyp'), ]; }); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { test.deepEqual( this.globFiles.lastCall.args[1], ['node_modules/**/*.node', 'node_modules/**/binding.gyp'] ); test.equal(this.readGypFileSync.callCount, 1); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, spawnPythonScriptReturnsNull(test) { test.expect(1); this.readGypFileSync.restore(); this.readGypFileSync = sandbox.spy(deployment.js.resolveBinaryModules, 'readGypFileSync'); this.globSync.restore(); this.globSync = sandbox.stub(glob, 'sync').callsFake(() => { return [ path.normalize('node_modules/release/build/Release/release.node'), path.normalize('node_modules/release/binding.gyp'), path.normalize('node_modules/missing/binding.gyp'), ]; }); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); this.spawnSync = sandbox.stub(cp, 'spawnSync').callsFake(() => { return { output: null }; }); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { test.equal(this.readGypFileSync.lastCall.returnValue, ''); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, spawnPythonScript(test) { test.expect(7); this.readGypFileSync.restore(); this.readGypFileSync = sandbox.spy(deployment.js.resolveBinaryModules, 'readGypFileSync'); this.globSync.restore(); this.globSync = sandbox.stub(glob, 'sync').callsFake(() => { return [ path.normalize('node_modules/release/build/Release/release.node'), path.normalize('node_modules/release/binding.gyp'), path.normalize('node_modules/missing/binding.gyp'), ]; }); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); this.spawnSync = sandbox.stub(cp, 'spawnSync').callsFake(() => { return { output: [ null, new Buffer('{"targets": [{"target_name": "missing","sources": ["capture.c", "missing.cc"]}]}', 'utf8') ] }; }); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { test.deepEqual( this.globFiles.lastCall.args[1], ['node_modules/**/*.node', 'node_modules/**/binding.gyp'] ); test.equal(this.readGypFileSync.callCount, 1); test.equal(this.spawnSync.callCount, 1); test.equal(this.spawnSync.lastCall.args[0], 'python'); var python = this.spawnSync.lastCall.args[1][1]; test.equal(python.startsWith('import ast, json; print json.dumps(ast.literal_eval(open('), true); test.equal(python.endsWith(').read()));'), true); test.equal(python.includes('missing'), true); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, failsWithMessage(test) { test.expect(1); this.globSync.restore(); this.globSync = sandbox.stub(glob, 'sync').callsFake(() => { return [ path.normalize('node_modules/missing/binding.gyp'), ]; }); this.readGypFileSync.restore(); this.readGypFileSync = sandbox.stub(deployment.js.resolveBinaryModules, 'readGypFileSync').callsFake(() => { return '{"targets": [{"target_name": "missing",}]}'; // ^ // That's intentional. }); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(binaryModulesUsed => { test.equal(binaryModulesUsed.get('[email protected]').resolved, false); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, existsInLocalCache(test) { test.expect(2); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { test.equal(this.globFiles.callCount, 1); test.equal(this.exists.callCount, 1); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, existsInLocalCacheNodeGypLinkedBinPath(test) { test.expect(1); this.readGypFileSync.restore(); this.globSync.restore(); this.globSync = sandbox.stub(glob, 'sync').callsFake(() => { return [ path.normalize('node_modules/release/build/Release/release.node'), path.normalize('node_modules/linked/build/bindings/linked.node'), ]; }); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { test.equal(this.exists.callCount, 2); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, resolveFromRealDirFixtures(test) { test.expect(5); // We WANT to read the actual gyp files if necessary this.readGypFileSync.restore(); // We WANT to glob the actual target directory this.globSync.restore(); // To avoid making an actual network request, // make the program think these things are already // cached. The test to pass is that it calls fs.existsSync // with the correct things from the project directory (this.target) this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { test.equal(this.exists.callCount, 4); // test/unit/fixtures/project-binary-modules/ has the corresponding // dependencies for the following binary modules: var cachedBinaryPaths = [ '.tessel/binaries/debug-1.1.1-Debug-node-v46-linux-mipsel', '.tessel/binaries/linked-1.1.1-Release-node-v46-linux-mipsel', '.tessel/binaries/release-1.1.1-Release-node-v46-linux-mipsel', '.tessel/binaries/missing-1.1.1-Release-node-v46-linux-mipsel', ]; cachedBinaryPaths.forEach((cbp, callIndex) => { test.equal(this.exists.getCall(callIndex).args[0].endsWith(path.normalize(cbp)), true); }); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, requestsRemote(test) { test.expect(12); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => false); this.mkdirp = sandbox.stub(fs, 'mkdirp').callsFake((dir, handler) => { handler(); }); this.transform = new Transform(); this.transform.stubsUsed = []; this.rstream = null; this.pipe = sandbox.stub(stream.Stream.prototype, 'pipe').callsFake(() => { // After the second transform is piped, emit the end // event on the request stream; if (this.pipe.callCount === 2) { process.nextTick(() => this.rstream.emit('end')); } return this.rstream; }); this.createGunzip = sandbox.stub(zlib, 'createGunzip').callsFake(() => { this.transform.stubsUsed.push('createGunzip'); return this.transform; }); this.Extract = sandbox.stub(tar, 'Extract').callsFake(() => { this.transform.stubsUsed.push('Extract'); return this.transform; }); this.request = sandbox.stub(request, 'Request').callsFake((opts) => { this.rstream = new Request(opts); return this.rstream; }); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { test.equal(this.globFiles.callCount, 1); test.equal(this.exists.callCount, 1); test.equal(this.mkdirp.callCount, 1); test.equal(this.mkdirp.lastCall.args[0].endsWith(path.normalize('.tessel/binaries/release-1.1.1-Release-node-v46-linux-mipsel')), true); test.equal(this.request.callCount, 1); var requestArgs = this.request.lastCall.args[0]; test.equal(requestArgs.url, 'http://packages.tessel.io/npm/release-1.1.1-Release-node-v46-linux-mipsel.tgz'); test.equal(requestArgs.gzip, true); test.equal(this.pipe.callCount, 2); test.equal(this.createGunzip.callCount, 1); test.equal(this.Extract.callCount, 1); test.equal(this.transform.stubsUsed.length, 2); test.deepEqual(this.transform.stubsUsed, ['createGunzip', 'Extract']); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, requestsRemoteGunzipErrors(test) { test.expect(9); this.removeSync = sandbox.stub(fs, 'removeSync'); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => false); this.mkdirp = sandbox.stub(fs, 'mkdirp').callsFake((dir, handler) => { handler(); }); this.transform = new Transform(); this.transform.stubsUsed = []; this.rstream = null; this.pipe = sandbox.stub(stream.Stream.prototype, 'pipe').callsFake(() => { // After the second transform is piped, emit the end // event on the request stream; if (this.pipe.callCount === 2) { process.nextTick(() => this.rstream.emit('end')); } return this.rstream; }); this.createGunzip = sandbox.stub(zlib, 'createGunzip').callsFake(() => { this.transform.stubsUsed.push('createGunzip'); return this.transform; }); this.Extract = sandbox.stub(tar, 'Extract').callsFake(() => { this.transform.stubsUsed.push('Extract'); return this.transform; }); this.request = sandbox.stub(request, 'Request').callsFake((opts) => { this.rstream = new Request(opts); return this.rstream; }); // Hook into the ifReachable call to trigger an error at the gunzip stream this.ifReachable.restore(); this.ifReachable = sandbox.stub(remote, 'ifReachable').callsFake(() => { this.transform.emit('error', { code: 'Z_DATA_ERROR', }); return Promise.resolve(); }); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { test.equal(this.globFiles.callCount, 1); test.equal(this.exists.callCount, 1); test.equal(this.mkdirp.callCount, 1); test.equal(this.mkdirp.lastCall.args[0].endsWith(path.normalize('.tessel/binaries/release-1.1.1-Release-node-v46-linux-mipsel')), true); // The result of gunzip emitting an error: test.equal(this.removeSync.callCount, 1); test.equal(this.removeSync.lastCall.args[0].endsWith(path.normalize('.tessel/binaries/release-1.1.1-Release-node-v46-linux-mipsel')), true); test.equal(this.request.callCount, 1); test.equal(this.createGunzip.callCount, 1); test.deepEqual(this.transform.stubsUsed, ['createGunzip', 'Extract']); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, }; exports['deployment.js.injectBinaryModules'] = { setUp(done) { this.target = path.normalize('test/unit/fixtures/project-binary-modules'); this.relative = sandbox.stub(path, 'relative').callsFake(() => { return path.join(FIXTURE_PATH, '/project-binary-modules/'); }); this.globFiles = sandbox.spy(glob, 'files'); this.globSync = sandbox.stub(glob, 'sync').callsFake(() => { return [ path.normalize('node_modules/release/build/Release/release.node'), ]; }); this.getRoot = sandbox.stub(bindings, 'getRoot').callsFake((file) => { var pathPart = ''; if (file.includes('debug')) { pathPart = 'debug'; } if (file.includes('linked')) { pathPart = 'linked'; } if (file.includes('missing')) { pathPart = 'missing'; } if (file.includes('release')) { pathPart = 'release'; } return path.normalize(`node_modules/${pathPart}/`); }); this.globRoot = path.join(FIXTURE_PATH, '/project-binary-modules/'); this.copySync = sandbox.stub(fs, 'copySync'); this.exists = sandbox.stub(fs, 'existsSync').callsFake(() => true); done(); }, tearDown(done) { sandbox.restore(); done(); }, copies(test) { test.expect(17); this.globSync.restore(); this.globSync = sandbox.stub(glob, 'sync').callsFake(() => { return [ path.normalize('node_modules/debug/build/Debug/debug.node'), path.normalize('node_modules/debug/binding.gyp'), path.normalize('node_modules/linked/build/bindings/linked.node'), path.normalize('node_modules/linked/binding.gyp'), path.normalize('node_modules/missing/build/Release/missing.node'), path.normalize('node_modules/missing/binding.gyp'), path.normalize('node_modules/release/build/Release/release.node'), path.normalize('node_modules/release/binding.gyp'), ]; }); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { deployment.js.injectBinaryModules(this.globRoot, fsTemp.mkdirSync(), {}).then(() => { test.equal(this.copySync.callCount, 8); var args = this.copySync.args; /* This is an abbreviated view of what should be copied by this operation: [ [ 'debug-1.1.1-Release-node-v46-linux-mipsel/Debug/debug.node', 'debug/build/Debug/debug.node' ], [ 'debug/package.json', 'debug/package.json' ], [ 'linked-1.1.1-Release-node-v46-linux-mipsel/bindings/linked.node', 'linked/build/bindings/linked.node' ], [ 'linked/package.json', 'linked/package.json' ], [ 'missing-1.1.1-Release-node-v46-linux-mipsel/Release/missing.node', 'missing/build/Release/missing.node' ], [ 'missing/package.json', 'missing/package.json' ], [ 'release-1.1.1-Release-node-v46-linux-mipsel/Release/release.node', 'release/build/Release/release.node' ], [ 'release/package.json', 'release/package.json' ] ] */ // ----- fixtures/project-binary-modules/node_modules/debug test.equal( args[0][0].endsWith(path.normalize('debug-1.1.1-Debug-node-v46-linux-mipsel/Debug/debug.node')), true ); test.equal( args[0][1].endsWith(path.normalize('debug/build/Debug/debug.node')), true ); test.equal( args[1][0].endsWith(path.normalize('debug/package.json')), true ); test.equal( args[1][1].endsWith(path.normalize('debug/package.json')), true ); // ----- fixtures/project-binary-modules/node_modules/linked test.equal( args[2][0].endsWith(path.normalize('linked-1.1.1-Release-node-v46-linux-mipsel/bindings/linked.node')), true ); test.equal( args[2][1].endsWith(path.normalize('linked/build/bindings/linked.node')), true ); test.equal( args[3][0].endsWith(path.normalize('linked/package.json')), true ); test.equal( args[3][1].endsWith(path.normalize('linked/package.json')), true ); // ----- fixtures/project-binary-modules/node_modules/missing test.equal( args[4][0].endsWith(path.normalize('missing-1.1.1-Release-node-v46-linux-mipsel/Release/missing.node')), true ); test.equal( args[4][1].endsWith(path.normalize('missing/build/Release/missing.node')), true ); test.equal( args[5][0].endsWith(path.normalize('missing/package.json')), true ); test.equal( args[5][1].endsWith(path.normalize('missing/package.json')), true ); // ----- fixtures/project-binary-modules/node_modules/release test.equal( args[6][0].endsWith(path.normalize('release-1.1.1-Release-node-v46-linux-mipsel/Release/release.node')), true ); test.equal( args[6][1].endsWith(path.normalize('release/build/Release/release.node')), true ); test.equal( args[7][0].endsWith(path.normalize('release/package.json')), true ); test.equal( args[7][1].endsWith(path.normalize('release/package.json')), true ); test.done(); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }).catch(error => { test.ok(false, error.toString()); test.done(); }); }, doesNotCopyIgnoredBinaries(test) { test.expect(1); this.target = path.normalize('test/unit/fixtures/project-ignore-binary'); this.relative.restore(); this.relative = sandbox.stub(path, 'relative').callsFake(() => { return path.join(FIXTURE_PATH, '/project-ignore-binary/'); }); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { deployment.js.injectBinaryModules(this.globRoot, fsTemp.mkdirSync(), {}).then(() => { // Nothing gets copied! test.equal(this.copySync.callCount, 0); test.done(); }); }); }, usesBinaryHighestInTreeWhenEncounteringDuplicates(test) { test.expect(6); this.target = path.normalize('test/unit/fixtures/project-binary-modules-duplicate-lower-deps'); this.relative.restore(); this.relative = sandbox.stub(path, 'relative').callsFake(() => { return path.join(FIXTURE_PATH, '/project-binary-modules-duplicate-lower-deps/'); }); // We WANT to glob the actual target directory this.globSync.restore(); this.mapHas = sandbox.spy(Map.prototype, 'has'); this.mapGet = sandbox.spy(Map.prototype, 'get'); this.mapSet = sandbox.spy(Map.prototype, 'set'); this.arrayMap = sandbox.spy(Array.prototype, 'map'); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(binaryModulesUsed => { // Ensure that 2 modules with the same name and version were found! for (var i = 0; i < this.arrayMap.callCount; i++) { let call = this.arrayMap.getCall(i); if (call.thisValue.UNRESOLVED_BINARY_LIST) { test.equal(call.thisValue.length, 2); } } test.equal(this.mapHas.callCount, 2); test.equal(this.mapHas.getCall(0).args[0], '[email protected]'); test.equal(this.mapHas.getCall(1).args[0], '[email protected]'); // Ensure that only one of the two were included in the // final list of binary modules to bundle test.equal(binaryModulesUsed.size, 1); // Ensure that the swap has occurred test.equal( path.normalize(binaryModulesUsed.get('[email protected]').globPath), path.normalize('node_modules/release/build/Release/release.node') ); test.done(); }); }, fallbackWhenOptionsMissing(test) { test.expect(1); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(binaryModulesUsed => { binaryModulesUsed.clear(); // We need something to look at... sandbox.stub(binaryModulesUsed, 'forEach'); deployment.js.injectBinaryModules(this.globRoot, fsTemp.mkdirSync()).then(() => { test.equal(binaryModulesUsed.forEach.callCount, 1); test.done(); }); }); }, doesNotCopyWhenOptionsSingleTrue(test) { test.expect(1); // This would normally result in 8 calls to this.copySync this.globSync.restore(); this.globSync = sandbox.stub(glob, 'sync').callsFake(() => { return [ path.normalize('node_modules/debug/build/Debug/debug.node'), path.normalize('node_modules/debug/binding.gyp'), path.normalize('node_modules/linked/build/bindings/linked.node'), path.normalize('node_modules/linked/binding.gyp'), path.normalize('node_modules/missing/build/Release/missing.node'), path.normalize('node_modules/missing/binding.gyp'), path.normalize('node_modules/release/build/Release/release.node'), path.normalize('node_modules/release/binding.gyp'), ]; }); deployment.js.resolveBinaryModules({ target: this.target, tessel: { versions: { modules: 46 }, }, }).then(() => { deployment.js.injectBinaryModules(this.globRoot, fsTemp.mkdirSync(), { single: true }).then(() => { // Nothing gets copied! test.equal(this.copySync.callCount, 0); test.done(); }); }); }, rewriteBinaryBuildPlatformPaths(test) { test.expect(2); this.forEach = sandbox.stub(Map.prototype, 'forEach').callsFake((handler) => { handler({ binName: 'serialport.node', buildPath: path.normalize('/build/Release/node-v46-FAKE_PLATFORM-FAKE_ARCH/'), buildType: 'Release', globPath: path.normalize('node_modules/serialport/build/Release/node-v46-FAKE_PLATFORM-FAKE_ARCH/serialport.node'), ignored: false, name: 'serialport', modulePath: path.normalize('node_modules/serialport'), resolved: true, version: '2.0.6', extractPath: path.normalize('~/.tessel/binaries/serialport-2.0.6-Release-node-v46-linux-mipsel') }); }); var find = lists.binaryPathTranslations['*'][0].find; lists.binaryPathTranslations['*'][0].find = 'FAKE_PLATFORM-FAKE_ARCH'; deployment.js.injectBinaryModules(this.globRoot, fsTemp.mkdirSync(), {}).then(() => { // If the replacement operation did not work, these would still be // "FAKE_PLATFORM-FAKE_ARCH" test.equal(this.copySync.firstCall.args[0].endsWith(path.normalize('linux-mipsel/serialport.node')), true); test.equal(this.copySync.firstCall.args[1].endsWith(path.normalize('linux-mipsel/serialport.node')), true); // Restore the path translation... lists.binaryPathTranslations['*'][0].find = find; test.done(); }); }, tryTheirPathAndOurPath(test) { test.expect(3); this.copySync.restore(); this.copySync = sandbox.stub(fs, 'copySync').callsFake(() => { // Fail the first try/catch on THEIR PATH if (this.copySync.callCount === 1) { throw new Error('ENOENT: no such file or directory'); } }); this.forEach = sandbox.stub(Map.prototype, 'forEach').callsFake((handler) => { handler({ binName: 'node_sqlite3.node', // This path doesn't match our precompiler's output paths. // Will result in: // ERR! Error: ENOENT: no such file or directory, stat '~/.tessel/binaries/sqlite3-3.1.4-Release/node-v46-something-else/node_sqlite3.node' buildPath: path.normalize('/lib/binding/node-v46-something-else/'), buildType: 'Release', globPath: path.normalize('node_modules/sqlite3/lib/binding/node-v46-something-else/node_sqlite3.node'), ignored: false, name: 'sqlite3', modulePath: path.normalize('node_modules/sqlite3'), resolved: true, version: '3.1.4', extractPath: path.normalize('~/.tessel/binaries/sqlite3-3.1.4-Release'), }); }); deployment.js.injectBinaryModules(this.globRoot, fsTemp.mkdirSync(), {}).then(() => { // 2 calls: 1 call for each try/catch fs.copySync // 1 call: copy the package.json test.equal(fs.copySync.callCount, 3); // THEIR PATH test.equal(this.copySync.getCall(0).args[0].endsWith(path.normalize('node-v46-something-else/node_sqlite3.node')), true); // OUR PATH test.equal(this.copySync.getCall(1).args[0].endsWith(path.normalize('Release/node_sqlite3.node')), true); test.done(); }); }, tryCatchTwiceAndFailGracefullyWithMissingBinaryMessage(test) { test.expect(4); this.copySync.restore(); this.copySync = sandbox.stub(fs, 'copySync').callsFake(() => { throw new Error('E_THIS_IS_NOT_REAL'); }); this.forEach = sandbox.stub(Map.prototype, 'forEach').callsFake((handler) => { handler({ binName: 'not-a-thing.node', // This path doesn't match our precompiler's output paths. // Will result in: // ERR! Error: ENOENT: no such file or directory, stat '~/.tessel/binaries/not-a-thing-3.1.4-Release/node-v46-something-else/not-a-thing.node' buildPath: path.normalize('/lib/binding/node-v46-something-else/'), buildType: 'Release', globPath: path.normalize('node_modules/not-a-thing/lib/binding/node-v46-something-else/not-a-thing.node'), ignored: false, name: 'not-a-thing', modulePath: path.normalize('node_modules/not-a-thing'), resolved: true, version: '3.1.4', extractPath: path.normalize('~/.tessel/binaries/not-a-thing-3.1.4-Release'), }); }); this.error = sandbox.stub(log, 'error'); this.logMissingBinaryModuleWarning = sandbox.stub(deployment.js, 'logMissingBinaryModuleWarning'); deployment.js.injectBinaryModules(this.globRoot, fsTemp.mkdirSync(), {}).then(() => { // 2 calls: 1 call for each try/catch fs.copySync test.equal(this.copySync.callCount, 2); // Result of failing both attempts to copy test.equal(this.logMissingBinaryModuleWarning.callCount, 1); test.equal(this.error.callCount, 1); test.equal(String(this.error.lastCall.args[0]).includes('E_THIS_IS_NOT_REAL'), true); test.done(); }); } }; exports['deploy.createShellScript'] = { setUp(done) { this.info = sandbox.stub(log, 'info'); this.tessel = TesselSimulator(); done(); }, tearDown(done) { this.tessel.mockClose(); sandbox.restore(); done(); }, remoteShellScriptPathIsNotPathNormalized(test) { test.expect(2); this.exec = sandbox.stub(this.tessel.connection, 'exec').callsFake((command, callback) => { callback(null, this.tessel._rps); this.tessel._rps.emit('close'); }); var opts = { lang: deployment.js, resolvedEntryPoint: 'foo', binopts: [], subargs: [], }; deploy.createShellScript(this.tessel, opts).then(() => { test.deepEqual(this.exec.firstCall.args[0], ['dd', 'of=/app/start']); test.deepEqual(this.exec.lastCall.args[0], ['chmod', '+x', '/app/start']); test.done(); }); }, remoteShellScriptPathIsNotPathNormalizedWithSubargs(test) { test.expect(2); this.exec = sandbox.stub(this.tessel.connection, 'exec').callsFake((command, callback) => { callback(null, this.tessel._rps); this.tessel._rps.emit('close'); }); var opts = { lang: deployment.js, resolvedEntryPoint: 'foo', binopts: ['--harmony'], subargs: ['--key=value'], }; deploy.createShellScript(this.tessel, opts).then(() => { test.deepEqual(this.exec.firstCall.args[0], ['dd', 'of=/app/start']); test.deepEqual(this.exec.lastCall.args[0], ['chmod', '+x', '/app/start']); test.done(); }); } }; // Test dependencies are required and exposed in common/bootstrap.js exports['deployment.js.lists'] = { setUp(done) { done(); }, tearDown(done) { done(); }, checkIncludes(test) { test.expect(1); var includes = [ 'node_modules/**/aws-sdk/apis/*.json', 'node_modules/**/mime/types/*.types', 'node_modules/**/negotiator/**/*.js', 'node_modules/**/socket.io-client/socket.io.js', 'node_modules/**/socket.io-client/dist/socket.io.min.js', 'node_modules/**/socket.io-client/dist/socket.io.js', ]; test.deepEqual(lists.includes, includes); test.done(); }, checkIgnores(test) { test.expect(1); var ignores = [ 'node_modules/**/tessel/**/*', ]; test.deepEqual(lists.ignores, ignores); test.done(); }, checkCompression(test) { test.expect(1); /* This test just ensures that no one accidentally messes up the contents of the deploy-lists file, specifically for the compression options field */ var compressionOptions = { extend: { compress: { keep_fnames: true }, mangle: {} }, }; test.deepEqual(lists.compressionOptions, compressionOptions); test.done(); } }; exports['deployment.js.postRun'] = { setUp(done) { this.info = sandbox.stub(log, 'info'); this.originalProcessStdinProperties = { pipe: process.stdin.pipe, setRawMode: process.stdin.setRawMode, }; this.stdinPipe = sandbox.spy(); this.setRawMode = sandbox.spy(); process.stdin.pipe = this.stdinPipe; process.stdin.setRawMode = this.setRawMode; this.notRealTessel = { connection: { connectionType: 'LAN', }, }; done(); }, tearDown(done) { process.stdin.pipe = this.originalProcessStdinProperties.pipe; process.stdin.setRawMode = this.originalProcessStdinProperties.setRawMode; sandbox.restore(); done(); }, postRunLAN(test) { test.expect(2); deployment.js.postRun(this.notRealTessel, { remoteProcess: { stdin: null } }).then(() => { test.equal(process.stdin.pipe.callCount, 1); test.equal(process.stdin.setRawMode.callCount, 1); test.done(); }); }, postRunUSB(test) { test.expect(2); this.notRealTessel.connection.connectionType = 'USB'; deployment.js.postRun(this.notRealTessel, { remoteProcess: { stdin: null } }).then(() => { test.equal(process.stdin.pipe.callCount, 0); test.equal(process.stdin.setRawMode.callCount, 0); test.done(); }); }, }; exports['deployment.js.logMissingBinaryModuleWarning'] = { setUp(done) { this.warn = sandbox.stub(log, 'warn'); this.details = { binName: 'compiled-binary.node', buildPath: path.normalize('/build/Release/node-v46-FAKE_PLATFORM-FAKE_ARCH/'), buildType: 'Release', globPath: path.normalize('node_modules/compiled-binary/build/Release/node-v46-FAKE_PLATFORM-FAKE_ARCH/compiled-binary.node'), ignored: false, name: 'compiled-binary', modulePath: path.normalize('node_modules/compiled-binary'), resolved: true, version: '2.0.6', extractPath: path.normalize('~/.tessel/binaries/compiled-binary-2.0.6-Release-node-v46-linux-mipsel') }; done(); }, tearDown(done) { sandbox.restore(); done(); }, callsThroughToLogWarn(test) { test.expect(1); deployment.js.logMissingBinaryModuleWarning(this.details); test.equal(this.warn.callCount, 1); test.done(); }, includesModuleNameAndVersion(test) { test.expect(1); deployment.js.logMissingBinaryModuleWarning(this.details); var output = this.warn.lastCall.args[0]; test.equal(output.includes('Pre-compiled module is missing: [email protected]'), true); test.done(); }, }; exports['deployment.js.minimatch'] = { setUp(done) { done(); }, tearDown(done) { done(); }, callsThroughToMinimatch(test) { test.expect(1); const result = deployment.js.minimatch('', '', {}); test.equal(result, true); test.done(); }, };<|fim▁end|>
<|file_name|>fake.py<|end_file_name|><|fim▁begin|>class FakeFetcher(object): """ Used i.e. in Harvest tracker when we need credentials but don't fetcher """ def __init__(self, *args, **kwargs): pass def fetch_user_tickets(self, *args, **kwargs): pass<|fim▁hole|> def fetch_bugs_for_query(self, *args, **kwargs): pass def get_result(self): return []<|fim▁end|>
def fetch_all_tickets(self, *args, **kwargs): pass
<|file_name|>tablerow_test.py<|end_file_name|><|fim▁begin|>from sofi.ui import TableRow def test_basic(): assert(str(TableRow()) == "<tr></tr>") <|fim▁hole|> assert(str(TableRow("text", cl='abclass', ident='123', style="font-size:0.9em;", attrs={"data-test": 'abc'})) == "<tr id=\"123\" class=\"abclass\" style=\"font-size:0.9em;\" data-test=\"abc\">text</tr>")<|fim▁end|>
def test_text(): assert(str(TableRow("text")) == "<tr>text</tr>") def test_custom_class_ident_style_and_attrs():
<|file_name|>middleware.py<|end_file_name|><|fim▁begin|>import time from importlib import import_module from django.conf import settings from django.contrib.sessions.backends.base import UpdateError from django.shortcuts import redirect from django.utils.cache import patch_vary_headers from django.utils.http import cookie_date class SessionMiddleware(object): def __init__(self): engine = import_module(settings.SESSION_ENGINE) self.SessionStore = engine.SessionStore def process_request(self, request): session_key = request.COOKIES.get(settings.SESSION_COOKIE_NAME) request.session = self.SessionStore(session_key) def process_response(self, request, response): """ If request.session was modified, or if the configuration is to save the session every time, save the changes and set a session cookie or delete the session cookie if the session has been emptied. """ try: accessed = request.session.accessed modified = request.session.modified empty = request.session.is_empty() except AttributeError: pass else: # First check if we need to delete this cookie. # The session should be deleted only if the session is entirely empty if settings.SESSION_COOKIE_NAME in request.COOKIES and empty: response.delete_cookie(settings.SESSION_COOKIE_NAME, domain=settings.SESSION_COOKIE_DOMAIN) else: if accessed: patch_vary_headers(response, ('Cookie',)) if (modified or settings.SESSION_SAVE_EVERY_REQUEST) and not empty: if request.session.get_expire_at_browser_close(): max_age = None expires = None else: max_age = request.session.get_expiry_age() expires_time = time.time() + max_age expires = cookie_date(expires_time) # Save the session data and refresh the client cookie. # Skip session save for 500 responses, refs #3881.<|fim▁hole|> try: request.session.save() except UpdateError: # The user is now logged out; redirecting to same # page will result in a redirect to the login page # if required. return redirect(request.path) response.set_cookie(settings.SESSION_COOKIE_NAME, request.session.session_key, max_age=max_age, expires=expires, domain=settings.SESSION_COOKIE_DOMAIN, path=settings.SESSION_COOKIE_PATH, secure=settings.SESSION_COOKIE_SECURE or None, httponly=settings.SESSION_COOKIE_HTTPONLY or None) return response<|fim▁end|>
if response.status_code != 500:
<|file_name|>client.js<|end_file_name|><|fim▁begin|>"use strict"; var echo = require('echo'), Authorization = require('./auth.js'), Packer = require('./packer.js'), Request = require('./request.js'), RequestOptions = require('./req-options.js'), portMatch = /:(\d+)$/, parse = function (host, port) { var out = { "host": "localhost", "port": 80 }, match = portMatch.exec(host); if (match) { if (isNaN(port)) { port = match[1]; } host = host.slice(0, match.index); } if (host) { out.host = host; } if (!isNaN(port)) { out.port = Number(port); } return out; }, secs = function (ms) { var secs = ms / 1000; return '(' + secs.toFixed(3) + ' sec)'; }; function Client() { this.host = undefined; this.port = undefined; this.auth = undefined; this.timeout = undefined; this.verbose = undefined; } Client.prototype = { "request": function (options, data, done, fail) { var self = this, auth = self.auth, verbose = self.verbose, target = self.toString(options), req, authStr; if (auth) { authStr = auth.toString(options); } req = Request.create(options, authStr); req.on('response', function (res, options) { var code = res.statusCode, failed = function (msg) { if (msg && verbose) { echo(msg); } if (fail) { fail(code, options, res); } else { res._dump(); } }; if (verbose) { echo(target, 'returned', code, secs(options.duration)); } if (code === 401) { if (auth) { if (authStr) { failed('Invalid credentials.'); } else { auth.parse(res.headers); res._dump(); self.request(options, data, done, fail); } } else { failed('Credentials required.'); } } else if (Math.floor(code / 100) === 2) { if (done) { done(res, options); } } else { failed(); } }); req.on('timeout', function (seconds) { var sec = '(' + seconds + ' seconds)'; if (verbose) { echo(target, 'timed out.', sec); } auth.clear(); if (fail) { fail('ETIMEDOUT', options); } }); req.on('error', function (code, options) { if (verbose) { echo(target, code); } if (fail) { fail(code, options); } }); if (verbose) { echo(target); } req.send(data, self.timeout); }, "get": function (path, done, fail) {<|fim▁hole|> "postEmpty": function (path, done, fail) { var options = RequestOptions.createPOSTEmpty(this.host, this.port, path); this.request(options, undefined, done, fail); }, "post": function (path, mime, str, done, fail) { var options = RequestOptions.createPOSTAs(this.host, this.port, path, mime, str); this.request(options, str, done, fail); }, "postString": function (path, str, done, fail) { var options = RequestOptions.createPOSTString(this.host, this.port, path, str); this.request(options, str, done, fail); }, "postJSON": function (path, json, done, fail) { var data = JSON.stringify(json), options = RequestOptions.createPOSTJSON(this.host, this.port, path, data); this.request(options, data, done, fail); }, "postXML": function (path, xml, done, fail) { var data = Packer.packXML(xml), options = RequestOptions.createPOSTXML(this.host, this.port, path, data); this.request(options, data, done, fail); }, "toString": function (options) { var host = this.host + ':' + this.port, str = options.method + ' ' + host + options.path, max = 60; if (str.length > max) { return str.slice(0, max) + '...'; } return str; } }; module.exports = { "create": function (info) { var client = new Client(), parsed; if (!info) { info = {}; } parsed = parse(info.host, info.port); client.host = parsed.host; client.port = parsed.port; if (info.user) { client.auth = Authorization.create(info.user, info.pass); } client.timeout = info.timeout || 180; client.verbose = info.verbose; return client; } };<|fim▁end|>
var options = RequestOptions.createGET(this.host, this.port, path); this.request(options, undefined, done, fail); },
<|file_name|>bluetooth_server.py<|end_file_name|><|fim▁begin|>""" network/bluetooth_server.py Starts a bluetooth server with max 7 connections. Receives and sends data from/to paired client. PS3 controller: receive only Android App: receive/send """ import base64 from threading import Thread from bluetooth import * import protocol import thread import atexit PACKET_SIZE = 990 class BluetoothServer(Thread): <|fim▁hole|> self.driver = driver self.server_sock = BluetoothSocket(RFCOMM) # create socket self.server_sock.bind(("", PORT_ANY)) # bind to bluetooth adapter self.server_sock.listen(1) # server listens to accept 1 connection at a time self.port = self.server_sock.getsockname()[1] # socket is bound on this port # advertise service uuid = "9d7debbc-c85d-11d1-9eb4-006008c3a19a" # ID of the service advertise_service(self.server_sock, "Aranha", # start service, so the app can connect service_id=uuid, service_classes=[uuid, SERIAL_PORT_CLASS], profiles=[SERIAL_PORT_PROFILE]) atexit.register(self.server_sock.close) # accept clients and create threads for them def run(self): while True: print("Waiting for connection on RFCOMM channel %d" % self.port) client_sock, client_info = self.server_sock.accept() # wait for connection. if new connection, continue print("Accepted connection from ", client_info) # start client thread BluetoothClientThread(self.server_sock, client_sock, client_info, self.apphandler, self.driver).start() class BluetoothClientThread(Thread): def __init__(self, server_sock, client_sock, client_info, apphandler, driver): super(BluetoothClientThread, self).__init__() self.daemon = True self.server_sock = server_sock self.client_sock = client_sock self.client_info = client_info self.apphandler = apphandler self.driver = driver atexit.register(self.client_sock.close) atexit.register(self.server_sock.close) def run(self): while True: try: data = base64.b64decode(self.client_sock.recv(1024)) if len(data) == 0: break thread.start_new_thread(protocol.handle, (self, data, self.driver)) except IOError: break # close connection print("Closed connection from ", self.client_info) self.client_sock.close() self.is_alive = False def encode_and_send(self, header, msg): msg = base64.b64encode(msg) #print "strlen msg:", len(msg) self.client_sock.send(header + "" + str(len(msg)) + chr(0)) self.client_sock.send(msg)<|fim▁end|>
def __init__(self, apphandler, driver): super(BluetoothServer, self).__init__() self.daemon = True # if main is killed, this also gets killed self.apphandler = apphandler # pass apphandler object so we can pass control commands to it
<|file_name|>sortLayout.ts<|end_file_name|><|fim▁begin|>import { isSameDay } from '@proton/shared/lib/date-fns-utc'; import { CalendarViewEvent, CalendarViewEventTemporaryEvent } from '../../containers/calendar/interface'; const isAllDayPrio = (a: CalendarViewEvent, b: CalendarViewEvent) => { // If a is an all day event, // b is a part day event, // and the all day event starts on the same day that b ends and (b does not span multiple days) // The last check is needed because a part day event can span on 2 days without being seen // as a an all day event return a.isAllDay && !b.isAllDay && isSameDay(a.start, b.end) && isSameDay(b.start, b.end); }; export const sortEvents = (events: CalendarViewEvent[]) => { return events.sort((a, b) => { // Sort all day (and cross day events) events before if (isAllDayPrio(a, b)) { return -1; } if (isAllDayPrio(b, a)) { return 1; } return +a.start - +b.start || +b.end - +a.end; });<|fim▁hole|> const removeById = (arr: Partial<{ id: string }>[], id: string) => { const targetIdx = arr.findIndex((a) => { return a.id === id; }); // Should never happen if (targetIdx !== -1) { // Fine to mutate it. arr.splice(targetIdx, 1); } }; export const sortWithTemporaryEvent = ( events: CalendarViewEvent[], temporaryEvent: CalendarViewEventTemporaryEvent | undefined ) => { const eventsCopy = events.concat(); if (!temporaryEvent) { return sortEvents(eventsCopy); } // When dragging an event, remove the original event if (temporaryEvent.targetId) { removeById(eventsCopy, temporaryEvent.targetId); } if (!temporaryEvent.isAllDay) { return sortEvents([temporaryEvent, ...eventsCopy]); } // For all day events, push the event before any event that is overlapping const sortedEvents = sortEvents(eventsCopy); const idx = sortedEvents.findIndex((a) => { return a.end >= temporaryEvent.start; }); sortedEvents.splice(idx === -1 ? sortedEvents.length : idx, 0, temporaryEvent); return sortedEvents; };<|fim▁end|>
};
<|file_name|>ex_dates.py<|end_file_name|><|fim▁begin|>""" Using dates with timeseries models """ import statsmodels.api as sm import numpy as np import pandas # Getting started # --------------- data = sm.datasets.sunspots.load() # Right now an annual date series must be datetimes at the end of the year. from datetime import datetime dates = sm.tsa.datetools.dates_from_range('1700', length=len(data.endog)) # Using Pandas # ------------ # Make a pandas TimeSeries or DataFrame endog = pandas.TimeSeries(data.endog, index=dates)<|fim▁hole|> # and instantiate the model ar_model = sm.tsa.AR(endog, freq='A') pandas_ar_res = ar_model.fit(maxlag=9, method='mle', disp=-1) # Let's do some out-of-sample prediction pred = pandas_ar_res.predict(start='2005', end='2015') print pred # Using explicit dates # -------------------- ar_model = sm.tsa.AR(data.endog, dates=dates, freq='A') ar_res = ar_model.fit(maxlag=9, method='mle', disp=-1) pred = ar_res.predict(start='2005', end='2015') print pred # This just returns a regular array, but since the model has date information # attached, you can get the prediction dates in a roundabout way. print ar_res._data.predict_dates # This attribute only exists if predict has been called. It holds the dates # associated with the last call to predict. #..TODO: should this be attached to the results instance?<|fim▁end|>
<|file_name|>math.rs<|end_file_name|><|fim▁begin|>use cpu::Cpu; use cpu::addressing::*; use cpu::instructions::*; use cpu::instructions as instr; use bus::Bus; use cartridge::Cartridge; // ADD 8-bit tests #[test] fn add8_no_flags() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let inc = ImmediateAddressing(0xDE); cpu.regs.set_f(0b1111 << 4); cpu.regs.set_a(0x11); add_8(&mut cpu, &mut bus, &inc); assert_eq!(cpu.regs.a(), 0xEF); assert_eq!(cpu.regs.f(), 0); } #[test] fn add8_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let inc = ImmediateAddressing(0xF0); cpu.regs.set_f(0b1111 << 4); cpu.regs.set_a(0xF0); add_8(&mut cpu, &mut bus, &inc); assert_eq!(cpu.regs.a(), 0xE0); assert_eq!(cpu.regs.f(), 0b0001 << 4); } #[test] fn add8_half_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let inc = ImmediateAddressing(0x0F); cpu.regs.set_f(0b1111 << 4); cpu.regs.set_a(0x0F); add_8(&mut cpu, &mut bus, &inc); assert_eq!(cpu.regs.a(), 0x1E); assert_eq!(cpu.regs.f(), 0b0010 << 4); } #[test] fn add8_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let inc = ImmediateAddressing(0xFF); cpu.regs.set_f(0b1111 << 4); cpu.regs.set_a(0x01); add_8(&mut cpu, &mut bus, &inc); assert_eq!(cpu.regs.a(), 0); assert_eq!(cpu.regs.f(), 0b1011 << 4); } // ADD 16-bit tests #[test] fn add16_no_flags() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let dest = RegisterAddressing(Register::HL); let inc = ImmediateAddressing(0x01); cpu.regs.set_f(0b1111 << 4); cpu.regs.set_hl(0x11); add_16(&mut cpu, &mut bus, &dest, &inc); assert_eq!(cpu.regs.hl(), 0x12); assert_eq!(cpu.regs.f(), 0b1000 << 4); } #[test] fn add16_carry_flag() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let dest = RegisterAddressing(Register::HL); let inc = ImmediateAddressing(0xEEEE); cpu.regs.set_f(0b1111 << 4); cpu.regs.set_hl(0x2000); add_16(&mut cpu, &mut bus, &dest, &inc); assert_eq!(cpu.regs.hl(), 0x0EEE); assert_eq!(cpu.regs.f(), 0b1001 << 4); } #[test] fn add16_half_carry_flag() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let dest = RegisterAddressing(Register::HL); let inc = ImmediateAddressing(0xBBB); cpu.regs.set_f(0b1111 << 4); cpu.regs.set_hl(0xBBB); add_16(&mut cpu, &mut bus, &dest, &inc); assert_eq!(cpu.regs.hl(), 0x1776); assert_eq!(cpu.regs.f(), 0b1010 << 4); } // ADD SP tests #[test] fn add_sp_carry_flag() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let inc = ImmediateAddressing(0x10); cpu.regs.set_f(0b1111 << 4); cpu.regs.set_sp(0x00F0); add_sp(&mut cpu, &mut bus, &inc); assert_eq!(cpu.regs.sp(), 0x100); assert_eq!(cpu.regs.f(), 0b0001 << 4); } #[test] fn add_sp_half_carry_flag() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let inc = ImmediateAddressing(0xF); cpu.regs.set_f(0b1111 << 4); cpu.regs.set_sp(0xF01); add_sp(&mut cpu, &mut bus, &inc); assert_eq!(cpu.regs.sp(), 0xF10); assert_eq!(cpu.regs.f(), 0b010 << 4); } // ADC tests #[test] fn adc_no_carry_no_flags() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x12); cpu.regs.set_a(0x34); cpu.regs.set_f(0); adc(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0x46); assert_eq!(cpu.regs.f(), 0); } #[test] fn adc_no_carry_does_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0xFE); cpu.regs.set_a(0x10); cpu.regs.set_f(0); adc(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0x0E); assert_eq!(cpu.regs.f(), 0b0001 << 4); } #[test] fn adc_with_carry_does_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0xFE); cpu.regs.set_a(0x10); cpu.regs.set_f(0b0001 << 4); adc(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0x0F); assert_eq!(cpu.regs.f(), 0b0001 << 4); } #[test] fn adc_half_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x0F); cpu.regs.set_a(0x01); cpu.regs.set_f(0); adc(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0x10); assert_eq!(cpu.regs.f(), 0b0010 << 4); } #[test] fn adc_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0); cpu.regs.set_a(0xFF); cpu.regs.set_f(0b0001 << 4); adc(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0); assert_eq!(cpu.regs.f(), 0b1011 << 4); } // SUB tests #[test] fn sub_doesnt_borrow() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x05); cpu.regs.set_a(0xFF); cpu.regs.set_f(0b1111 << 4); sub(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0xFA); assert_eq!(cpu.regs.f(), 0b0100 << 4); } #[test] fn sub_does_borrow() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0xB0); cpu.regs.set_a(0xAA); cpu.regs.set_f(0b1111 << 4); sub(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0xFA); assert_eq!(cpu.regs.f(), 0b0101 << 4); } #[test] fn sub_half_borrow() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x0F); cpu.regs.set_a(0xAA); cpu.regs.set_f(0b1111 << 4); sub(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0x9B); assert_eq!(cpu.regs.f(), 0b0110 << 4); } // SBC tests #[test] fn sbc_no_carry_no_flags() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x12);<|fim▁hole|> sbc(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0x22); assert_eq!(cpu.regs.f(), 0b0100 << 4); } #[test] fn sbc_no_carry_does_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x20); cpu.regs.set_a(0x10); cpu.regs.set_f(0); sbc(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0xF0); assert_eq!(cpu.regs.f(), 0b0101 << 4); } #[test] fn sbc_with_carry_does_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x20); cpu.regs.set_a(0x10); cpu.regs.set_f(0b0001 << 4); sbc(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0xEF); assert_eq!(cpu.regs.f(), 0b0111 << 4); } #[test] fn sbc_half_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x03); cpu.regs.set_a(0x31); cpu.regs.set_f(0); sbc(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0x2E); assert_eq!(cpu.regs.f(), 0b0110 << 4); } #[test] fn sbc_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(1); cpu.regs.set_a(2); cpu.regs.set_f(0b0001 << 4); sbc(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0); assert_eq!(cpu.regs.f(), 0b1100 << 4); } // AND tests #[test] fn and_not_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0xBE); cpu.regs.set_a(0xEF); cpu.regs.set_f(0b1111 << 4); and(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0xAE); assert_eq!(cpu.regs.f(), 0b0010 << 4); } #[test] fn and_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0xF0); cpu.regs.set_a(0x0F); cpu.regs.set_f(0b1111 << 4); and(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0); assert_eq!(cpu.regs.f(), 0b1010 << 4); } // XOR tests #[test] fn xor_not_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0xBE); cpu.regs.set_a(0xEF); cpu.regs.set_f(0b1111 << 4); xor(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0x51); assert_eq!(cpu.regs.f(), 0); } #[test] fn xor_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x42); cpu.regs.set_a(0x42); cpu.regs.set_f(0b1111 << 4); xor(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0); assert_eq!(cpu.regs.f(), 0b1000 << 4); } // OR tests #[test] fn or_not_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x45); cpu.regs.set_a(0x10); cpu.regs.set_f(0b1111 << 4); or(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0x55); assert_eq!(cpu.regs.f(), 0); } #[test] fn or_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0); cpu.regs.set_a(0); cpu.regs.set_f(0b1111 << 4); or(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0); assert_eq!(cpu.regs.f(), 0b1000 << 4); } // CP tests #[test] fn cp_doesnt_borrow() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x05); cpu.regs.set_a(0xFF); cpu.regs.set_f(0b1111 << 4); cp(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0xFF); assert_eq!(cpu.regs.f(), 0b0100 << 4); } #[test] fn cp_does_borrow() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0xB0); cpu.regs.set_a(0xAA); cpu.regs.set_f(0b1111 << 4); cp(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0xAA); assert_eq!(cpu.regs.f(), 0b0101 << 4); } #[test] fn cp_half_borrow() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let n = ImmediateAddressing(0x0F); cpu.regs.set_a(0xAA); cpu.regs.set_f(0b1111 << 4); cp(&mut cpu, &mut bus, &n); assert_eq!(cpu.regs.a(), 0xAA); assert_eq!(cpu.regs.f(), 0b0110 << 4); } // INC 8-bit tests #[test] fn inc8_no_half_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let a = RegisterAddressing(Register::A); cpu.regs.set_a(0xDE); cpu.regs.set_f(0b1111 << 4); inc_8(&mut cpu, &mut bus, &a); assert_eq!(cpu.regs.a(), 0xDF); assert_eq!(cpu.regs.f(), 0b0001 << 4); } #[test] fn inc8_half_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let a = RegisterAddressing(Register::A); cpu.regs.set_a(0xDF); cpu.regs.set_f(0b1111 << 4); inc_8(&mut cpu, &mut bus, &a); assert_eq!(cpu.regs.a(), 0xE0); assert_eq!(cpu.regs.f(), 0b0011 << 4); } #[test] fn inc8_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let a = RegisterAddressing(Register::A); cpu.regs.set_a(0xFF); cpu.regs.set_f(0b1111 << 4); inc_8(&mut cpu, &mut bus, &a); assert_eq!(cpu.regs.a(), 0); assert_eq!(cpu.regs.f(), 0b1011 << 4); } // DEC 8-bit tests #[test] fn dec8_no_half_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let a = RegisterAddressing(Register::A); cpu.regs.set_a(0xDE); cpu.regs.set_f(0b1111 << 4); dec_8(&mut cpu, &mut bus, &a); assert_eq!(cpu.regs.a(), 0xDD); assert_eq!(cpu.regs.f(), 0b0101 << 4); } #[test] fn dec8_half_carry() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let a = RegisterAddressing(Register::A); cpu.regs.set_a(0xD0); cpu.regs.set_f(0b1111 << 4); dec_8(&mut cpu, &mut bus, &a); assert_eq!(cpu.regs.a(), 0xCF); assert_eq!(cpu.regs.f(), 0b0111 << 4); } #[test] fn dec8_zero() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let a = RegisterAddressing(Register::A); cpu.regs.set_a(0x01); cpu.regs.set_f(0b1111 << 4); dec_8(&mut cpu, &mut bus, &a); assert_eq!(cpu.regs.a(), 0); assert_eq!(cpu.regs.f(), 0b1101 << 4); } // INC 16-bit tests #[test] fn inc16() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let bc = RegisterAddressing(Register::BC); cpu.regs.set_bc(0xBEEF); cpu.regs.set_f(0b1111 << 4); inc_16(&mut cpu, &mut bus, &bc); assert_eq!(cpu.regs.bc(), 0xBEF0); assert_eq!(cpu.regs.f(), 0b1111 << 4); } // DEC 16-bit tests #[test] fn dec16() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let bc = RegisterAddressing(Register::BC); cpu.regs.set_bc(0xBEEF); cpu.regs.set_f(0b1111 << 4); dec_16(&mut cpu, &mut bus, &bc); assert_eq!(cpu.regs.bc(), 0xBEEE); assert_eq!(cpu.regs.f(), 0b1111 << 4); } // DAA tests #[test] fn daa() { let mut cpu = Cpu::new(); let mut cartridge = Cartridge::from_vec(vec![0; 65536]); let mut bus = Bus::new(&mut cartridge); let b = RegisterAddressing(Register::B); cpu.regs.set_a(0x49); cpu.regs.set_b(0x01); add_8(&mut cpu, &mut bus, &b); instr::daa(&mut cpu); assert_eq!(cpu.regs.a(), 0x50); cpu.regs.set_a(0x49); cpu.regs.set_b(0x11); sub(&mut cpu, &mut bus, &b); instr::daa(&mut cpu); assert_eq!(cpu.regs.a(), 0x38); } // SCF tests #[test] fn scf() { let mut cpu = Cpu::new(); cpu.regs.set_f(0b1111 << 4); instr::scf(&mut cpu); assert_eq!(cpu.regs.f(), 0b1001 << 4); } // CCF tests #[test] fn ccf_with_carry() { let mut cpu = Cpu::new(); cpu.regs.set_f(0b1111 << 4); ccf(&mut cpu); assert_eq!(cpu.regs.f(), 0b1000 << 4); } #[test] fn ccf_without_carry() { let mut cpu = Cpu::new(); cpu.regs.set_f(0b1110 << 4); ccf(&mut cpu); assert_eq!(cpu.regs.f(), 0b1001 << 4); } // CPL tests #[test] fn cpl() { let mut cpu = Cpu::new(); cpu.regs.set_a(0b10101010); instr::cpl(&mut cpu); assert_eq!(cpu.regs.a(), 0b01010101); }<|fim▁end|>
cpu.regs.set_a(0x34); cpu.regs.set_f(0);
<|file_name|>util.py<|end_file_name|><|fim▁begin|>from functools import reduce class ScopedString (object): def __init__ (self): self._stack = [] def push (self, frame): self._stack.append (frame) def pop (self): frame = self._stack.pop() return frame def __str__ (self): return '.'.join (self._stack) class ScopedList (object): def __init__ (self, stack=None): if stack: self._stack = stack else: self._stack = [] self.push() def push (self): self._stack.append ([]) def pop (self): if (len (self._stack) <= 1): raise IndexError ("Attempt to pop global scope") self._stack.pop() def append (self, val): self._stack[-1].append (val) def _normalize (self): return reduce (lambda x, y: x + y, self._stack, []) def __str__ (self): return str (self._normalize()) def __repr__ (self): return "ScopedDict(" + repr(self._stack) + ")" def __iter__ (self): return self._normalize().__iter__() class ScopedDict (object): def __init__ (self, stack=None): if stack: self._stack = stack else: self._stack = [] self.push () def push (self): self._stack.insert (0, {}) def pop (self): if (len (self._stack) <= 1): raise IndexError ("Attempt to pop global scope") temp = self._stack[0] del (self._stack[0]) return temp def _normalize (self): normal = {} for frame in self._stack: for key, value in frame.items(): if key not in normal: normal[key] = value return normal<|fim▁hole|> if key in frame: return frame[key] raise KeyError (key) def __setitem__ (self, key, value): self._stack[0][key] = value def __contains__ (self, key): for frame in self._stack: if key in frame: return True return False def __str__ (self): return str (self._normalize()) def __repr__ (self): return "ScopedDict(" + repr(self._stack) + ")" def __iter__ (self): return self._normalize().__iter__() def items (self): return self._normalize().items() def keys (self): return self._normalize().keys() def values (self): return self._normalize().values()<|fim▁end|>
def __getitem__ (self, key): for frame in self._stack:
<|file_name|>MissingPersonForm.py<|end_file_name|><|fim▁begin|>#------------------------------------------------------------------------------- # Name: MissingPersomForm.py # # Purpose: Create Missing Person Flyer from data stored in the Subject # Information data layer within MapSAR # # Author: Don Ferguson # # Created: 12/12/2011 # Copyright: (c) Don Ferguson 2011 # Licence: # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # The GNU General Public License can be found at # <http://www.gnu.org/licenses/>. #------------------------------------------------------------------------------- #!/usr/bin/env python import arcpy from datetime import datetime #workspc = arcpy.GetParameterAsText(0) output = arcpy.GetParameterAsText(0) #arcpy.env.workspace = workspc arcpy.env.overwriteOutput = "True" fc3="Incident_Information" fc2="Lead Agency" rows = arcpy.SearchCursor(fc3) row = rows.next() arcpy.AddMessage("Get Incident Info") while row: # you need to insert correct field names in your getvalue function LeadAgency = row.getValue("Lead_Agency") where2 = '"Lead_Agency" = ' + "'" + LeadAgency + "'" arcpy.AddMessage(where2) rows2 = arcpy.SearchCursor(fc2, where2) row2 = rows2.next() Phone = 'none' email = 'none' while row2: # you need to insert correct field names in your getvalue function Phone = row2.getValue("Lead_Phone") if Phone == 'none': Phone = " " arcpy.AddWarning("No Phone number provided for Lead Agency") email = row2.getValue("E_Mail") if email == 'none': email = " " arcpy.AddWarning("No e-mail address provided for Lead Agency") row2 = rows2.next() del rows2 del row2 row = rows.next() del rows del row Callback = "If you have information please call: " + str(LeadAgency) + " at phone: " + str(Phone) + " or e-mail:" + str(email) fc1="Subject_Information" rows = arcpy.SearchCursor(fc1) row = rows.next() while row: # you need to insert correct field names in your getvalue function try: Subject_Name = row.getValue("Name") if len(Subject_Name) == 0: arcpy.AddWarning('Need to provide a Subject Name') except: Subject_Name = " " arcpy.AddWarning('Need to provide a Subject Name') try: fDate = row.getValue("Date_Seen") Date_Seen = fDate.strftime("%m/%d/%Y") except: Date_Seen = " " try: fTime = row.getValue("Time_Seen") except: fTime = " " Where_Last = row.getValue("WhereLastSeen") Age = row.getValue("Age") Gender = row.getValue("Gender") Race = row.getValue("Race") try: Height1 = (row.getValue("Height"))/12.0 feet = int(Height1) inches = int((Height1 - feet)*12.0) fInches = "%1.0f" %inches Height = str(feet) + " ft " + fInches +" in" except: Height = "NA" Weight = row.getValue("Weight") Build = row.getValue("Build") Complex = row.getValue("Complexion") Hair = row.getValue("Hair") Eyes = row.getValue("Eyes") Other = row.getValue("Other") Shirt = row.getValue("Shirt") Pants = row.getValue("Pants") Jacket = row.getValue("Jacket") Hat = row.getValue("Hat") Footwear = row.getValue("Footwear") Info = row.getValue("Info") try: QRCode = row.getValue("QRCode") except: QRCode = " " filename = output + "/" + str(Subject_Name) + ".fdf" txt= open (filename, "w") txt.write("%FDF-1.2\n") txt.write("%????\n") txt.write("1 0 obj<</FDF<</F(MissingPersonForm.pdf)/Fields 2 0 R>>>>\n") txt.write("endobj\n") txt.write("2 0 obj[\n") txt.write ("\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_Name[0])/V(" + str(Subject_Name) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPFAge[0])/V(" + str(Age) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPFSex[0])/V(" + str(Gender) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_Location[0])/V(" + str(Where_Last) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_TimeMissing[0])/V(" + fTime + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_DateMissing[0])/V(" + str(Date_Seen) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_Race[0])/V(" + str(Race) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_Height[0])/V(" + Height + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_Weight[0])/V(" + str(Weight) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_Build[0])/V(" + str(Build) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_Complex[0])/V(" + str(Complex) + ")>>\n")<|fim▁hole|> #txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_OtherPhy[1])/V(" + str(Incident_Name) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_ShirtClothing[0])/V(" + str(Shirt) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_PantsClothing[0])/V(" + str(Pants) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_JacketClothing[0])/V(" + str(Jacket) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_HatClothing[0])/V(" + str(Hat) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_FootClothing[0])/V(" + str(Footwear) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_OtherInfo[0])/V(" + str(Info) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_CallNumber[0])/V(" + str(Callback) + ")>>\n") #txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].ImageField1[0])/V(" + str(Incident_Name) + ")>>\n") txt.write("]\n") txt.write("endobj\n") txt.write("trailer\n") txt.write("<</Root 1 0 R>>\n") txt.write("%%EO\n") txt.close () row = rows.next() del rows del row #arcpy.DeleteFeatures_management(fc3)<|fim▁end|>
txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_HairColor[0])/V(" + str(Hair) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_EyeColor[0])/V(" + str(Eyes) + ")>>\n") txt.write("<</T(topmostSubform[0].Page1[0].Layer[0].Layer[0].MPF_OtherPhy[0])/V(" + str(Other) + ")>>\n")
<|file_name|>base.service.ts<|end_file_name|><|fim▁begin|>import { Injectable } from '@angular/core'; import { Http, Headers, RequestOptions, Response } from '@angular/http'; import { Observable } from 'rxjs/Observable'; import * as _ from 'lodash'; import 'rxjs/add/operator/map'; import 'rxjs/add/operator/catch'; import 'rxjs/add/observable/throw'; import 'rxjs/add/observable/forkJoin'; import { URL } from '../enums/index'; import { Node, ServiceDocument, ServiceDocumentQueryResult } from '../interfaces/index'; import { ODataUtil, StringUtil } from '../utils/index'; import { NodeSelectorService } from './node-selector.service'; import { LogService } from '../../core/index'; @Injectable() export class BaseService { /** * The id of the node that hosts the current application. */ protected hostNodeId: string; /** * The id of the node whose information is being displayed in the views (not the node selector). */ protected selectedNodeId: string; protected selectedNodeGroupReference: string; constructor ( protected http: Http, protected nodeSelectorService: NodeSelectorService, protected logService: LogService) { this.nodeSelectorService.getSelectedNode().subscribe( (node: Node) => { this.selectedNodeId = node ? node.id : ''; this.selectedNodeGroupReference = node ? StringUtil.parseDocumentLink(node.groupReference).id : 'default'; }, (error) => { this.logService.error(`Failed to retrieve selected node: ${error}`); }); this.nodeSelectorService.getHostNode().subscribe( (node: Node) => { this.hostNodeId = node ? node.id : ''; }, (error) => { this.logService.error(`Failed to retrieve host node: ${error}`); }); } getDocumentLinks<T extends ServiceDocumentQueryResult>(targetLink: string, odataOption: string = '', autoForward: boolean = true): Observable<string[]> { var link: string = targetLink; if (autoForward && this.selectedNodeId !== this.hostNodeId) { link = this.getForwardingLink(targetLink, odataOption); } else if (odataOption) { link = `${link}${StringUtil.hasQueryParameter(link) ? '' : '?'}${odataOption}`; } return this.http.get(URL.API_PREFIX + link) .map((res: Response) => { return <string[]> (res.json() as T).documentLinks; }) .catch(this.onError); } getDocument<T extends ServiceDocument>(targetLink: string, odataOption: string = '', autoForward: boolean = true): Observable<T> { return this.getDocumentInternal<T>(targetLink, odataOption, autoForward); } getDocumentConfig<T extends ServiceDocument>(targetLink: string, autoForward: boolean = true): Observable<T> { return this.getDocumentInternal<T>(targetLink, '', autoForward, URL.CONFIG_SUFFIX); } getDocumentStats<T extends ServiceDocument>(targetLink: string, autoForward: boolean = true): Observable<T> { return this.getDocumentInternal<T>(targetLink, '', autoForward, URL.STATS_SUFFIX); } getDocuments<T extends ServiceDocument>(targetLinks: string[], odataOption: string = '', autoForward: boolean = true): Observable<T[]> { return Observable.forkJoin( _.map(targetLinks, (targetLink: string) => { var link: string = targetLink; if (autoForward && this.selectedNodeId !== this.hostNodeId) { link = this.getForwardingLink(targetLink, odataOption); } else if (odataOption) { link = `${link}${StringUtil.hasQueryParameter(link) ? '' : '?'}${odataOption}`; } return this.http.get(URL.API_PREFIX + link).map((res: Response) => { var response: T = res.json(); if (_.isUndefined(response.documentSelfLink)) { response.documentSelfLink = targetLink; } return response; }); }) ) .catch(this.onError); } post<T extends ServiceDocument>(targetLink: string, body: any, autoForward: boolean = true): Observable<T> { var headers = new Headers({ 'Content-Type': 'application/json' }); var options = new RequestOptions({ headers: headers }); var link: string = targetLink; if (autoForward && this.selectedNodeId !== this.hostNodeId) { link = this.getForwardingLink(targetLink); } return this.http.post( URL.API_PREFIX + link, _.isString(body) ? body : JSON.stringify(body), options) .map((res: Response) => { return <T> res.json(); }) .catch(this.onError); } patch<T extends ServiceDocument>(targetLink: string, body: any, autoForward: boolean = true): Observable<T> { var headers = new Headers({ 'Content-Type': 'application/json' }); var options = new RequestOptions({ headers: headers }); var link: string = targetLink; if (autoForward && this.selectedNodeId !== this.hostNodeId) { link = this.getForwardingLink(targetLink); } return this.http.patch( URL.API_PREFIX + link, _.isString(body) ? body : JSON.stringify(body), options) .map((res: Response) => { return <T> res.json(); }) .catch(this.onError); } <|fim▁hole|> put<T extends ServiceDocument>(targetLink: string, body: any, autoForward: boolean = true): Observable<T> { var headers = new Headers({ 'Content-Type': 'application/json' }); var options = new RequestOptions({ headers: headers }); var link: string = targetLink; if (autoForward && this.selectedNodeId !== this.hostNodeId) { link = this.getForwardingLink(targetLink); } return this.http.put( URL.API_PREFIX + link, _.isString(body) ? body : JSON.stringify(body), options) .map((res: Response) => { return <T> res.json(); }) .catch(this.onError); } delete<T extends ServiceDocument>(targetLink: string, autoForward: boolean = true): Observable<T> { var link: string = targetLink; if (autoForward && this.selectedNodeId !== this.hostNodeId) { link = this.getForwardingLink(targetLink); } return this.http.delete(URL.API_PREFIX + link) .map((res: Response) => { return <T> res.json(); }) .catch(this.onError); } getForwardingLink(targetLink: string, query: string = ''): string { var path: string = targetLink; var peer: string = this.selectedNodeId; // If there's a path in the targetLink, use it var pathInTargetLink: string = StringUtil.getQueryParametersByName(targetLink, 'path'); path = pathInTargetLink ? `/core/query-page/${pathInTargetLink}` : path; // If there's a peer in the targetLink, use it var peerInTargetLink: string = StringUtil.getQueryParametersByName(targetLink, 'peer'); peer = peerInTargetLink ? peerInTargetLink : peer; return `${URL.NODE_SELECTOR}/${this.selectedNodeGroupReference}/forwarding?peer=${peer}&path=${encodeURIComponent(path)}&query=${encodeURIComponent(query)}&target=PEER_ID`; } protected getDocumentInternal<T extends ServiceDocument>(targetLink: string, odataOption: string = '', autoForward: boolean = true, suffix: string = ''): Observable<T> { var link: string = targetLink + suffix; if (autoForward && this.selectedNodeId !== this.hostNodeId) { link = this.getForwardingLink(link, odataOption); } else if (odataOption) { link = `${link}${StringUtil.hasQueryParameter(link) ? '' : '?'}${odataOption}`; } return this.http.get(URL.API_PREFIX + link) .map((res: Response) => { return <T> res.json(); }) .catch(this.onError); } protected onError(error: Response) { return Observable.throw(error.json() || 'Server error'); } }<|fim▁end|>
<|file_name|>getdevices.rs<|end_file_name|><|fim▁begin|>extern crate pcap; fn main() { // list all of the devices pcap tells us are available for device in pcap::Device::list().unwrap() {<|fim▁hole|> // get a packet from this capture let packet = cap.next(); println!("got a packet! {:?}", packet); } }<|fim▁end|>
println!("Found device! {:?}", device); // now you can create a Capture with this Device if you want. let mut cap = device.open().unwrap();
<|file_name|>DeleteFolderRequestProtocolMarshaller.java<|end_file_name|><|fim▁begin|>/* * Copyright 2014-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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. */<|fim▁hole|> import com.amazonaws.SdkClientException; import com.amazonaws.Request; import com.amazonaws.http.HttpMethodName; import com.amazonaws.services.workdocs.model.*; import com.amazonaws.transform.Marshaller; import com.amazonaws.protocol.*; import com.amazonaws.protocol.Protocol; import com.amazonaws.annotation.SdkInternalApi; /** * DeleteFolderRequest Marshaller */ @Generated("com.amazonaws:aws-java-sdk-code-generator") @SdkInternalApi public class DeleteFolderRequestProtocolMarshaller implements Marshaller<Request<DeleteFolderRequest>, DeleteFolderRequest> { private static final OperationInfo SDK_OPERATION_BINDING = OperationInfo.builder().protocol(Protocol.REST_JSON).requestUri("/api/v1/folders/{FolderId}") .httpMethodName(HttpMethodName.DELETE).hasExplicitPayloadMember(false).hasPayloadMembers(false).serviceName("AmazonWorkDocs").build(); private final com.amazonaws.protocol.json.SdkJsonProtocolFactory protocolFactory; public DeleteFolderRequestProtocolMarshaller(com.amazonaws.protocol.json.SdkJsonProtocolFactory protocolFactory) { this.protocolFactory = protocolFactory; } public Request<DeleteFolderRequest> marshall(DeleteFolderRequest deleteFolderRequest) { if (deleteFolderRequest == null) { throw new SdkClientException("Invalid argument passed to marshall(...)"); } try { final ProtocolRequestMarshaller<DeleteFolderRequest> protocolMarshaller = protocolFactory.createProtocolMarshaller(SDK_OPERATION_BINDING, deleteFolderRequest); protocolMarshaller.startMarshalling(); DeleteFolderRequestMarshaller.getInstance().marshall(deleteFolderRequest, protocolMarshaller); return protocolMarshaller.finishMarshalling(); } catch (Exception e) { throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e); } } }<|fim▁end|>
package com.amazonaws.services.workdocs.model.transform; import javax.annotation.Generated;
<|file_name|>IDuck.hpp<|end_file_name|><|fim▁begin|>#ifndef IDUCK_HPP_124b1b04_74d3_41ae_b7ce_2a0bea79f1c7 #define IDUCK_HPP_124b1b04_74d3_41ae_b7ce_2a0bea79f1c7 #include "../strategy/IFly.hpp" /** \interface IDuck Interface for duck. It can fly, quack and rotate right. */ <|fim▁hole|>class IDuck { public: virtual Course getCourse() const = 0; virtual int getDistance(Course course) const = 0; virtual void fly() = 0; virtual void quack() = 0; virtual void right() = 0; virtual void left() = 0; virtual ~IDuck() { } }; #endif // IDUCK_HPP_124b1b04_74d3_41ae_b7ce_2a0bea79f1c7<|fim▁end|>
<|file_name|>test_InT01.py<|end_file_name|><|fim▁begin|>""" Integration test: permit call """ import os import sys myPath = os.path.dirname(os.path.abspath(__file__)) sys.path.insert(0, myPath + '/../../') import logging import nose from nose.tools import * import inte_testutils from telewall.core.model import TelephoneNumber from telewall.core.util import sleep_until logging.basicConfig(filename='/tmp/telewall-inte.log', level=logging.DEBUG) logging.getLogger('telewall').setLevel(logging.DEBUG) LOG = logging.getLogger(__name__) def test_Anruf_erlauben(): u = inte_testutils.TestUtil() u.unblock_callerid(TelephoneNumber('0790000001')) call = u.make_call_to_incoming(callerid='0790000001') LOG.info('call: %s', call) sleep_until(lambda: 'Ringing' in call.get_call_states() or 'Up' in call.get_call_states(), 5) call.hangup() states = call.get_call_states() LOG.info('states: %s', states) assert_true('Ringing' in states,<|fim▁hole|>if __name__ == '__main__': nose.runmodule()<|fim▁end|>
'Das analoge Telefon sollte angerufen worden sein, aber es gab keinen "Ringing" Status.') call.stop()
<|file_name|>macro-multiple-items.rs<|end_file_name|><|fim▁begin|>// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // option. This file may not be copied, modified, or distributed // except according to those terms. // ignore-pretty - token trees can't pretty print macro_rules! make_foo { () => ( struct Foo; impl Foo {<|fim▁hole|> fn bar(&self) {} } ) } make_foo!(); pub fn main() { Foo.bar() }<|fim▁end|>
<|file_name|>ssh.go<|end_file_name|><|fim▁begin|>package ssh_helper import ( "bytes" "os" "os/exec" "runtime" log "github.com/sirupsen/logrus"<|fim▁hole|> "golang.org/x/crypto/ssh" ) const ( readBufSz = 1024 * 512 ) // Util is a ssh utility to scp run and stream commands/files type Util interface { SetTimer(int) Scp(string, string) error Run(string) (string, string, error) Stream(string) (chan string, chan string, chan bool, error) ScpFromServer(string, string) error ScpFrom(string, string) error } type config struct { SSH easyssh.MakeConfig Sudo bool SudoPass string timer int timeout int retry bool verbose bool } // New returns new config with default values func New(ip, user, pass, port string) Util { cf := config{} cf.SSH.Server = ip cf.SSH.User = user cf.SSH.Password = pass cf.SSH.Port = port cf.timer = 30 cf.timeout = 30 cf.retry = true return &cf } // SetTimer sets a timeout for the next command execution func (s *config) SetTimer(timeout int) { s.timer = timeout } // SetTimeout sets a global timeout for command executions func (s *config) SetTimeout(timeout int) { s.timeout = timeout } // Scp a file, directly to a destination with a workaround copying to HOME `~` and running `mv` to the destination func (s *config) Scp(src string, dst string) error { fileName := help.FileName(src) err := s.SSH.Scp(src, help.AddPathSuffix(runtime.GOOS, dst, fileName)) if err == nil { return nil } log.Error(err) if err := s.SSH.Scp(src, fileName); err != nil { return err } // @todo run scp return nil } // Run command over ssh func (s *config) Run(command string) (string, string, error) { defer func() { s.timer = s.timeout }() out, eut, t, err := s.SSH.Run(command, s.timer) if t && s.retry { // retry } return out, eut, err } // Stream command func (s *config) Stream(command string) (chan string, chan string, chan bool, error) { defer func() { s.timer = s.timeout }() return s.SSH.Stream(command, s.timer) } // ScpFrom copies file from remote server using scp on both sides func (s *config) ScpFrom(src, dst string) error { clientConfig := &ssh.ClientConfig{ User: s.SSH.User, Auth: []ssh.AuthMethod{ ssh.Password(s.SSH.Password), }, HostKeyCallback: ssh.InsecureIgnoreHostKey(), } client, err := ssh.Dial("tcp", s.SSH.Server+":"+s.SSH.Port, clientConfig) if err != nil { return err } session, err := client.NewSession() if err != nil { return err } defer session.Close() cmd := exec.Command("scp", "-t", "-r", "-v", dst) outCmd, err := cmd.StdoutPipe() if err != nil { return err } outSess, err := session.StdoutPipe() if err != nil { return err } errOut := &bytes.Buffer{} cmd.Stderr = errOut session.Stderr = errOut cmd.Stdin = outSess session.Stdin = outCmd err = session.Start("scp -qrf " + src) if err != nil { if errOut.String() != "" { log.Error(errOut.String()) } return err } if err := cmd.Run(); err != nil { if errOut.String() != "" { log.Error(errOut.String()) } return err } return nil } // ScpFromServer copies a file from remote server using readBufSz buffer func (s *config) ScpFromServer(src, dst string) error { f, err := os.Create(dst) if err != nil { return err } clientConfig := &ssh.ClientConfig{ User: s.SSH.User, Auth: []ssh.AuthMethod{ ssh.Password(s.SSH.Password), }, HostKeyCallback: ssh.InsecureIgnoreHostKey(), } client, err := ssh.Dial("tcp", s.SSH.Server+":"+s.SSH.Port, clientConfig) if err != nil { return err } session, err := client.NewSession() if err != nil { return err } defer session.Close() outPipe, err := session.StdoutPipe() if err != nil { return err } // buffering sem := make(chan struct{}) go func() { buf := make([]byte, readBufSz) defer close(sem) for { n, err := outPipe.Read(buf) if err != nil || n == 0 { break } f.Write(buf[:n]) } }() if err := session.Run("cat " + src); err != nil { return err } <-sem return err }<|fim▁end|>
"github.com/hypersleep/easyssh" "github.com/xshellinc/tools/lib/help"
<|file_name|>setup.py<|end_file_name|><|fim▁begin|>from setuptools import setup def readme(): with open('README.rst.example') as f: return f.read()<|fim▁hole|>setup(name='manifold_gui', version='0.1', description='GUI for a manifold technique', long_description=readme(), classifiers=[ 'Development Status :: 1 - Alpha', 'Environment :: Console', 'Environment :: X11 Applications', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Programming Language :: Python :: 2.7 :: chimera', 'Intended Audience :: End Users/Desktop', ], keywords='manifold chimera', author='Hstau Y Liao', platform='linux chimera', author_email='[email protected]', packages=['gui'], include_package_data=True, zip_safe=False)<|fim▁end|>
<|file_name|>forum.py<|end_file_name|><|fim▁begin|># -*- coding: utf-8 -*- from datetime import datetime import uuid from werkzeug.exceptions import Forbidden import logging import openerp from openerp import api, tools from openerp import SUPERUSER_ID from openerp.addons.website.models.website import slug from openerp.exceptions import Warning from openerp.osv import osv, fields from openerp.tools import html2plaintext from openerp.tools.translate import _ _logger = logging.getLogger(__name__) class KarmaError(Forbidden): """ Karma-related error, used for forum and posts. """ pass class Forum(osv.Model): """TDE TODO: set karma values for actions dynamic for a given forum""" _name = 'forum.forum' _description = 'Forums' _inherit = ['mail.thread', 'website.seo.metadata'] def init(self, cr): """ Add forum uuid for user email validation. """ forum_uuids = self.pool['ir.config_parameter'].search(cr, SUPERUSER_ID, [('key', '=', 'website_forum.uuid')]) if not forum_uuids: self.pool['ir.config_parameter'].set_param(cr, SUPERUSER_ID, 'website_forum.uuid', str(uuid.uuid4()), ['base.group_system']) _columns = { 'name': fields.char('Name', required=True, translate=True), 'faq': fields.html('Guidelines'), 'description': fields.html('Description'), # karma generation 'karma_gen_question_new': fields.integer('Asking a question'), 'karma_gen_question_upvote': fields.integer('Question upvoted'), 'karma_gen_question_downvote': fields.integer('Question downvoted'), 'karma_gen_answer_upvote': fields.integer('Answer upvoted'), 'karma_gen_answer_downvote': fields.integer('Answer downvoted'), 'karma_gen_answer_accept': fields.integer('Accepting an answer'), 'karma_gen_answer_accepted': fields.integer('Answer accepted'), 'karma_gen_answer_flagged': fields.integer('Answer flagged'), # karma-based actions 'karma_ask': fields.integer('Ask a question'), 'karma_answer': fields.integer('Answer a question'), 'karma_edit_own': fields.integer('Edit its own posts'), 'karma_edit_all': fields.integer('Edit all posts'), 'karma_close_own': fields.integer('Close its own posts'), 'karma_close_all': fields.integer('Close all posts'), 'karma_unlink_own': fields.integer('Delete its own posts'), 'karma_unlink_all': fields.integer('Delete all posts'), 'karma_upvote': fields.integer('Upvote'), 'karma_downvote': fields.integer('Downvote'), 'karma_answer_accept_own': fields.integer('Accept an answer on its own questions'), 'karma_answer_accept_all': fields.integer('Accept an answer to all questions'), 'karma_editor_link_files': fields.integer('Linking files (Editor)'), 'karma_editor_clickable_link': fields.integer('Clickable links (Editor)'), 'karma_comment_own': fields.integer('Comment its own posts'), 'karma_comment_all': fields.integer('Comment all posts'), 'karma_comment_convert_own': fields.integer('Convert its own answers to comments and vice versa'), 'karma_comment_convert_all': fields.integer('Convert all answers to comments and vice versa'), 'karma_comment_unlink_own': fields.integer('Unlink its own comments'), 'karma_comment_unlink_all': fields.integer('Unlink all comments'), 'karma_retag': fields.integer('Change question tags'), 'karma_flag': fields.integer('Flag a post as offensive'), } def _get_default_faq(self, cr, uid, context=None): fname = openerp.modules.get_module_resource('website_forum', 'data', 'forum_default_faq.html') with open(fname, 'r') as f: return f.read() return False _defaults = { 'description': 'This community is for professionals and enthusiasts of our products and services.', 'faq': _get_default_faq, 'karma_gen_question_new': 0, # set to null for anti spam protection 'karma_gen_question_upvote': 5, 'karma_gen_question_downvote': -2, 'karma_gen_answer_upvote': 10, 'karma_gen_answer_downvote': -2, 'karma_gen_answer_accept': 2, 'karma_gen_answer_accepted': 15, 'karma_gen_answer_flagged': -100, 'karma_ask': 3, # set to not null for anti spam protection 'karma_answer': 3, # set to not null for anti spam protection 'karma_edit_own': 1, 'karma_edit_all': 300, 'karma_close_own': 100, 'karma_close_all': 500, 'karma_unlink_own': 500, 'karma_unlink_all': 1000, 'karma_upvote': 5, 'karma_downvote': 50, 'karma_answer_accept_own': 20, 'karma_answer_accept_all': 500, 'karma_editor_link_files': 20, 'karma_editor_clickable_link': 20, 'karma_comment_own': 3, 'karma_comment_all': 5, 'karma_comment_convert_own': 50, 'karma_comment_convert_all': 500, 'karma_comment_unlink_own': 50, 'karma_comment_unlink_all': 500, 'karma_retag': 75, 'karma_flag': 500, } def create(self, cr, uid, values, context=None): if context is None: context = {} create_context = dict(context, mail_create_nolog=True) return super(Forum, self).create(cr, uid, values, context=create_context) class Post(osv.Model): _name = 'forum.post' _description = 'Forum Post' _inherit = ['mail.thread', 'website.seo.metadata'] _order = "is_correct DESC, vote_count DESC, write_date DESC" def _get_user_vote(self, cr, uid, ids, field_name, arg, context): res = dict.fromkeys(ids, 0) vote_ids = self.pool['forum.post.vote'].search(cr, uid, [('post_id', 'in', ids), ('user_id', '=', uid)], context=context) for vote in self.pool['forum.post.vote'].browse(cr, uid, vote_ids, context=context): res[vote.post_id.id] = vote.vote return res def _get_vote_count(self, cr, uid, ids, field_name, arg, context): res = dict.fromkeys(ids, 0) for post in self.browse(cr, uid, ids, context=context): for vote in post.vote_ids: res[post.id] += int(vote.vote) return res def _get_post_from_vote(self, cr, uid, ids, context=None): result = {} for vote in self.pool['forum.post.vote'].browse(cr, uid, ids, context=context): result[vote.post_id.id] = True return result.keys() def _get_user_favourite(self, cr, uid, ids, field_name, arg, context): res = dict.fromkeys(ids, False) for post in self.browse(cr, uid, ids, context=context): if uid in [f.id for f in post.favourite_ids]: res[post.id] = True return res def _get_favorite_count(self, cr, uid, ids, field_name, arg, context): res = dict.fromkeys(ids, 0) for post in self.browse(cr, uid, ids, context=context): res[post.id] += len(post.favourite_ids) return res def _get_post_from_hierarchy(self, cr, uid, ids, context=None): post_ids = set(ids) for post in self.browse(cr, SUPERUSER_ID, ids, context=context): if post.parent_id: post_ids.add(post.parent_id.id) return list(post_ids) def _get_child_count(self, cr, uid, ids, field_name=False, arg={}, context=None): res = dict.fromkeys(ids, 0) for post in self.browse(cr, uid, ids, context=context): if post.parent_id: res[post.parent_id.id] = len(post.parent_id.child_ids) else: res[post.id] = len(post.child_ids) return res def _get_uid_answered(self, cr, uid, ids, field_name, arg, context=None): res = dict.fromkeys(ids, False) for post in self.browse(cr, uid, ids, context=context): res[post.id] = any(answer.create_uid.id == uid for answer in post.child_ids) return res def _get_has_validated_answer(self, cr, uid, ids, field_name, arg, context=None): res = dict.fromkeys(ids, False) ans_ids = self.search(cr, uid, [('parent_id', 'in', ids), ('is_correct', '=', True)], context=context) for answer in self.browse(cr, uid, ans_ids, context=context): res[answer.parent_id.id] = True return res def _is_self_reply(self, cr, uid, ids, field_name, arg, context=None): res = dict.fromkeys(ids, False) for post in self.browse(cr, uid, ids, context=context): res[post.id] = post.parent_id and post.parent_id.create_uid == post.create_uid or False return res def _get_post_karma_rights(self, cr, uid, ids, field_name, arg, context=None): user = self.pool['res.users'].browse(cr, uid, uid, context=context) res = dict.fromkeys(ids, False) for post in self.browse(cr, uid, ids, context=context): res[post.id] = { 'karma_ask': post.forum_id.karma_ask, 'karma_answer': post.forum_id.karma_answer, 'karma_accept': post.parent_id and post.parent_id.create_uid.id == uid and post.forum_id.karma_answer_accept_own or post.forum_id.karma_answer_accept_all, 'karma_edit': post.create_uid.id == uid and post.forum_id.karma_edit_own or post.forum_id.karma_edit_all, 'karma_close': post.create_uid.id == uid and post.forum_id.karma_close_own or post.forum_id.karma_close_all, 'karma_unlink': post.create_uid.id == uid and post.forum_id.karma_unlink_own or post.forum_id.karma_unlink_all, 'karma_upvote': post.forum_id.karma_upvote, 'karma_downvote': post.forum_id.karma_downvote, 'karma_comment': post.create_uid.id == uid and post.forum_id.karma_comment_own or post.forum_id.karma_comment_all, 'karma_comment_convert': post.create_uid.id == uid and post.forum_id.karma_comment_convert_own or post.forum_id.karma_comment_convert_all, } res[post.id].update({ 'can_ask': uid == SUPERUSER_ID or user.karma >= res[post.id]['karma_ask'], 'can_answer': uid == SUPERUSER_ID or user.karma >= res[post.id]['karma_answer'], 'can_accept': uid == SUPERUSER_ID or user.karma >= res[post.id]['karma_accept'], 'can_edit': uid == SUPERUSER_ID or user.karma >= res[post.id]['karma_edit'], 'can_close': uid == SUPERUSER_ID or user.karma >= res[post.id]['karma_close'], 'can_unlink': uid == SUPERUSER_ID or user.karma >= res[post.id]['karma_unlink'], 'can_upvote': uid == SUPERUSER_ID or user.karma >= res[post.id]['karma_upvote'], 'can_downvote': uid == SUPERUSER_ID or user.karma >= res[post.id]['karma_downvote'], 'can_comment': uid == SUPERUSER_ID or user.karma >= res[post.id]['karma_comment'], 'can_comment_convert': uid == SUPERUSER_ID or user.karma >= res[post.id]['karma_comment_convert'], }) return res _columns = { 'name': fields.char('Title'), 'forum_id': fields.many2one('forum.forum', 'Forum', required=True), 'content': fields.html('Content'), 'tag_ids': fields.many2many('forum.tag', 'forum_tag_rel', 'forum_id', 'forum_tag_id', 'Tags'), 'state': fields.selection([('active', 'Active'), ('close', 'Close'), ('offensive', 'Offensive')], 'Status'), 'views': fields.integer('Number of Views'), 'active': fields.boolean('Active'), 'is_correct': fields.boolean('Valid Answer', help='Correct Answer or Answer on this question accepted.'), 'website_message_ids': fields.one2many( 'mail.message', 'res_id', domain=lambda self: [ '&', ('model', '=', self._name), ('type', 'in', ['email', 'comment']) ], string='Post Messages', help="Comments on forum post", ), # history 'create_date': fields.datetime('Asked on', select=True, readonly=True), 'create_uid': fields.many2one('res.users', 'Created by', select=True, readonly=True), 'write_date': fields.datetime('Update on', select=True, readonly=True), 'write_uid': fields.many2one('res.users', 'Updated by', select=True, readonly=True), # vote fields 'vote_ids': fields.one2many('forum.post.vote', 'post_id', 'Votes'), 'user_vote': fields.function(_get_user_vote, string='My Vote', type='integer'), 'vote_count': fields.function( _get_vote_count, string="Votes", type='integer', store={ 'forum.post': (lambda self, cr, uid, ids, c={}: ids, ['vote_ids'], 10), 'forum.post.vote': (_get_post_from_vote, [], 10), }), # favorite fields 'favourite_ids': fields.many2many('res.users', string='Favourite'), 'user_favourite': fields.function(_get_user_favourite, string="My Favourite", type='boolean'), 'favourite_count': fields.function( _get_favorite_count, string='Favorite Count', type='integer', store={ 'forum.post': (lambda self, cr, uid, ids, c={}: ids, ['favourite_ids'], 10), }), # hierarchy 'parent_id': fields.many2one('forum.post', 'Question', ondelete='cascade'), 'self_reply': fields.function( _is_self_reply, 'Reply to own question', type='boolean', store={ 'forum.post': (lambda self, cr, uid, ids, c={}: ids, ['parent_id', 'create_uid'], 10), }), 'child_ids': fields.one2many('forum.post', 'parent_id', 'Answers'), 'child_count': fields.function( _get_child_count, string="Answers", type='integer', store={ 'forum.post': (_get_post_from_hierarchy, ['parent_id', 'child_ids'], 10), }), 'uid_has_answered': fields.function( _get_uid_answered, string='Has Answered', type='boolean', ), 'has_validated_answer': fields.function( _get_has_validated_answer, string='Has a Validated Answered', type='boolean', store={ 'forum.post': (_get_post_from_hierarchy, ['parent_id', 'child_ids', 'is_correct'], 10), } ), # closing 'closed_reason_id': fields.many2one('forum.post.reason', 'Reason'), 'closed_uid': fields.many2one('res.users', 'Closed by', select=1), 'closed_date': fields.datetime('Closed on', readonly=True), # karma 'karma_ask': fields.function(_get_post_karma_rights, string='Karma to ask', type='integer', multi='_get_post_karma_rights'), 'karma_answer': fields.function(_get_post_karma_rights, string='Karma to answer', type='integer', multi='_get_post_karma_rights'), 'karma_accept': fields.function(_get_post_karma_rights, string='Karma to accept this answer', type='integer', multi='_get_post_karma_rights'), 'karma_edit': fields.function(_get_post_karma_rights, string='Karma to edit', type='integer', multi='_get_post_karma_rights'), 'karma_close': fields.function(_get_post_karma_rights, string='Karma to close', type='integer', multi='_get_post_karma_rights'), 'karma_unlink': fields.function(_get_post_karma_rights, string='Karma to unlink', type='integer', multi='_get_post_karma_rights'), 'karma_upvote': fields.function(_get_post_karma_rights, string='Karma to upvote', type='integer', multi='_get_post_karma_rights'), 'karma_downvote': fields.function(_get_post_karma_rights, string='Karma to downvote', type='integer', multi='_get_post_karma_rights'), 'karma_comment': fields.function(_get_post_karma_rights, string='Karma to comment', type='integer', multi='_get_post_karma_rights'), 'karma_comment_convert': fields.function(_get_post_karma_rights, string='karma to convert as a comment', type='integer', multi='_get_post_karma_rights'), # access rights 'can_ask': fields.function(_get_post_karma_rights, string='Can Ask', type='boolean', multi='_get_post_karma_rights'), 'can_answer': fields.function(_get_post_karma_rights, string='Can Answer', type='boolean', multi='_get_post_karma_rights'), 'can_accept': fields.function(_get_post_karma_rights, string='Can Accept', type='boolean', multi='_get_post_karma_rights'), 'can_edit': fields.function(_get_post_karma_rights, string='Can Edit', type='boolean', multi='_get_post_karma_rights'), 'can_close': fields.function(_get_post_karma_rights, string='Can Close', type='boolean', multi='_get_post_karma_rights'), 'can_unlink': fields.function(_get_post_karma_rights, string='Can Unlink', type='boolean', multi='_get_post_karma_rights'), 'can_upvote': fields.function(_get_post_karma_rights, string='Can Upvote', type='boolean', multi='_get_post_karma_rights'), 'can_downvote': fields.function(_get_post_karma_rights, string='Can Downvote', type='boolean', multi='_get_post_karma_rights'), 'can_comment': fields.function(_get_post_karma_rights, string='Can Comment', type='boolean', multi='_get_post_karma_rights'), 'can_comment_convert': fields.function(_get_post_karma_rights, string='Can Convert to Comment', type='boolean', multi='_get_post_karma_rights'), } _defaults = { 'state': 'active', 'views': 0, 'active': True, 'vote_ids': list(), 'favourite_ids': list(), 'child_ids': list(), } def create(self, cr, uid, vals, context=None): if context is None: context = {} create_context = dict(context, mail_create_nolog=True) post_id = super(Post, self).create(cr, uid, vals, context=create_context) post = self.browse(cr, uid, post_id, context=context) # karma-based access if not post.parent_id and not post.can_ask: raise KarmaError('Not enough karma to create a new question') elif post.parent_id and not post.can_answer: raise KarmaError('Not enough karma to answer to a question') # messaging and chatter base_url = self.pool['ir.config_parameter'].get_param(cr, uid, 'web.base.url') if post.parent_id: body = _( '<p>A new answer for <i>%s</i> has been posted. <a href="%s/forum/%s/question/%s">Click here to access the post.</a></p>' % (post.parent_id.name, base_url, slug(post.parent_id.forum_id), slug(post.parent_id)) ) self.message_post(cr, uid, post.parent_id.id, subject=_('Re: %s') % post.parent_id.name, body=body, subtype='website_forum.mt_answer_new', context=context) else: body = _( '<p>A new question <i>%s</i> has been asked on %s. <a href="%s/forum/%s/question/%s">Click here to access the question.</a></p>' % (post.name, post.forum_id.name, base_url, slug(post.forum_id), slug(post)) ) self.message_post(cr, uid, post_id, subject=post.name, body=body, subtype='website_forum.mt_question_new', context=context) self.pool['res.users'].add_karma(cr, SUPERUSER_ID, [uid], post.forum_id.karma_gen_question_new, context=context) return post_id def write(self, cr, uid, ids, vals, context=None): posts = self.browse(cr, uid, ids, context=context) if 'state' in vals: if vals['state'] in ['active', 'close'] and any(not post.can_close for post in posts): raise KarmaError('Not enough karma to close or reopen a post.') if 'active' in vals: if any(not post.can_unlink for post in posts): raise KarmaError('Not enough karma to delete or reactivate a post') if 'is_correct' in vals: if any(not post.can_accept for post in posts): raise KarmaError('Not enough karma to accept or refuse an answer') # update karma except for self-acceptance mult = 1 if vals['is_correct'] else -1 for post in self.browse(cr, uid, ids, context=context): if vals['is_correct'] != post.is_correct and post.create_uid.id != uid: self.pool['res.users'].add_karma(cr, SUPERUSER_ID, [post.create_uid.id], post.forum_id.karma_gen_answer_accepted * mult, context=context) self.pool['res.users'].add_karma(cr, SUPERUSER_ID, [uid], post.forum_id.karma_gen_answer_accept * mult, context=context) if any(key not in ['state', 'active', 'is_correct', 'closed_uid', 'closed_date', 'closed_reason_id'] for key in vals.keys()) and any(not post.can_edit for post in posts): raise KarmaError('Not enough karma to edit a post.') res = super(Post, self).write(cr, uid, ids, vals, context=context) # if post content modify, notify followers if 'content' in vals or 'name' in vals: for post in posts: if post.parent_id: body, subtype = _('Answer Edited'), 'website_forum.mt_answer_edit' obj_id = post.parent_id.id else: body, subtype = _('Question Edited'), 'website_forum.mt_question_edit' obj_id = post.id self.message_post(cr, uid, obj_id, body=body, subtype=subtype, context=context) return res def reopen(self, cr, uid, ids, context=None): if any(post.parent_id or post.state != 'close' for post in self.browse(cr, uid, ids, context=context)): return False reason_offensive = self.pool['ir.model.data'].xmlid_to_res_id(cr, uid, 'website_forum.reason_7') reason_spam = self.pool['ir.model.data'].xmlid_to_res_id(cr, uid, 'website_forum.reason_8') for post in self.browse(cr, uid, ids, context=context): if post.closed_reason_id.id in (reason_offensive, reason_spam): _logger.info('Upvoting user <%s>, reopening spam/offensive question', post.create_uid) # TODO: in master, consider making this a tunable karma parameter self.pool['res.users'].add_karma(cr, SUPERUSER_ID, [post.create_uid.id], post.forum_id.karma_gen_question_downvote * -5, context=context) self.pool['forum.post'].write(cr, SUPERUSER_ID, ids, {'state': 'active'}, context=context) def close(self, cr, uid, ids, reason_id, context=None): if any(post.parent_id for post in self.browse(cr, uid, ids, context=context)): return False reason_offensive = self.pool['ir.model.data'].xmlid_to_res_id(cr, uid, 'website_forum.reason_7') reason_spam = self.pool['ir.model.data'].xmlid_to_res_id(cr, uid, 'website_forum.reason_8') if reason_id in (reason_offensive, reason_spam): for post in self.browse(cr, uid, ids, context=context): _logger.info('Downvoting user <%s> for posting spam/offensive contents', post.create_uid) # TODO: in master, consider making this a tunable karma parameter self.pool['res.users'].add_karma(cr, SUPERUSER_ID, [post.create_uid.id], post.forum_id.karma_gen_question_downvote * 5, context=context) self.pool['forum.post'].write(cr, uid, ids, { 'state': 'close', 'closed_uid': uid, 'closed_date': datetime.today().strftime(tools.DEFAULT_SERVER_DATETIME_FORMAT), 'closed_reason_id': reason_id, }, context=context) def unlink(self, cr, uid, ids, context=None): posts = self.browse(cr, uid, ids, context=context) if any(not post.can_unlink for post in posts): raise KarmaError('Not enough karma to unlink a post') # if unlinking an answer with accepted answer: remove provided karma for post in posts: if post.is_correct: self.pool['res.users'].add_karma(cr, SUPERUSER_ID, [post.create_uid.id], post.forum_id.karma_gen_answer_accepted * -1, context=context) self.pool['res.users'].add_karma(cr, SUPERUSER_ID, [uid], post.forum_id.karma_gen_answer_accept * -1, context=context) return super(Post, self).unlink(cr, uid, ids, context=context) def vote(self, cr, uid, ids, upvote=True, context=None): Vote = self.pool['forum.post.vote'] vote_ids = Vote.search(cr, uid, [('post_id', 'in', ids), ('user_id', '=', uid)], context=context) new_vote = '1' if upvote else '-1' voted_forum_ids = set() if vote_ids: for vote in Vote.browse(cr, uid, vote_ids, context=context): if upvote: new_vote = '0' if vote.vote == '-1' else '1' else: new_vote = '0' if vote.vote == '1' else '-1' Vote.write(cr, uid, vote_ids, {'vote': new_vote}, context=context) voted_forum_ids.add(vote.post_id.id) for post_id in set(ids) - voted_forum_ids: for post_id in ids: Vote.create(cr, uid, {'post_id': post_id, 'vote': new_vote}, context=context) return {'vote_count': self._get_vote_count(cr, uid, ids, None, None, context=context)[ids[0]], 'user_vote': new_vote} def convert_answer_to_comment(self, cr, uid, id, context=None): """ Tools to convert an answer (forum.post) to a comment (mail.message). The original post is unlinked and a new comment is posted on the question using the post create_uid as the comment's author. """ post = self.browse(cr, SUPERUSER_ID, id, context=context) if not post.parent_id: return False # karma-based action check: use the post field that computed own/all value if not post.can_comment_convert: raise KarmaError('Not enough karma to convert an answer to a comment') # post the message question = post.parent_id values = { 'author_id': post.create_uid.partner_id.id, 'body': html2plaintext(post.content), 'type': 'comment', 'subtype': 'mail.mt_comment', 'date': post.create_date, } message_id = self.pool['forum.post'].message_post( cr, uid, question.id, context=dict(context, mail_create_nosubcribe=True), **values) # unlink the original answer, using SUPERUSER_ID to avoid karma issues self.pool['forum.post'].unlink(cr, SUPERUSER_ID, [post.id], context=context) return message_id def convert_comment_to_answer(self, cr, uid, message_id, default=None, context=None): """ Tool to convert a comment (mail.message) into an answer (forum.post). The original comment is unlinked and a new answer from the comment's author is created. Nothing is done if the comment's author already answered the question. """ comment = self.pool['mail.message'].browse(cr, SUPERUSER_ID, message_id, context=context) post = self.pool['forum.post'].browse(cr, uid, comment.res_id, context=context) user = self.pool['res.users'].browse(cr, uid, uid, context=context) if not comment.author_id or not comment.author_id.user_ids: # only comment posted by users can be converted return False # karma-based action check: must check the message's author to know if own / all karma_convert = comment.author_id.id == user.partner_id.id and post.forum_id.karma_comment_convert_own or post.forum_id.karma_comment_convert_all can_convert = uid == SUPERUSER_ID or user.karma >= karma_convert if not can_convert: raise KarmaError('Not enough karma to convert a comment to an answer') # check the message's author has not already an answer question = post.parent_id if post.parent_id else post post_create_uid = comment.author_id.user_ids[0] if any(answer.create_uid.id == post_create_uid.id for answer in question.child_ids): return False # create the new post post_values = { 'forum_id': question.forum_id.id, 'content': comment.body, 'parent_id': question.id, } # done with the author user to have create_uid correctly set new_post_id = self.pool['forum.post'].create(cr, post_create_uid.id, post_values, context=context) # delete comment self.pool['mail.message'].unlink(cr, SUPERUSER_ID, [comment.id], context=context) return new_post_id def unlink_comment(self, cr, uid, id, message_id, context=None): comment = self.pool['mail.message'].browse(cr, SUPERUSER_ID, message_id, context=context) post = self.pool['forum.post'].browse(cr, uid, id, context=context) user = self.pool['res.users'].browse(cr, SUPERUSER_ID, uid, context=context) if not comment.model == 'forum.post' or not comment.res_id == id: return False # karma-based action check: must check the message's author to know if own or all karma_unlink = comment.author_id.id == user.partner_id.id and post.forum_id.karma_comment_unlink_own or post.forum_id.karma_comment_unlink_all can_unlink = uid == SUPERUSER_ID or user.karma >= karma_unlink if not can_unlink: raise KarmaError('Not enough karma to unlink a comment') return self.pool['mail.message'].unlink(cr, SUPERUSER_ID, [message_id], context=context) def set_viewed(self, cr, uid, ids, context=None): cr.execute("""UPDATE forum_post SET views = views+1 WHERE id IN %s""", (tuple(ids),)) return True def _get_access_link(self, cr, uid, mail, partner, context=None): post = self.pool['forum.post'].browse(cr, uid, mail.res_id, context=context) res_id = post.parent_id and "%s#answer-%s" % (post.parent_id.id, post.id) or post.id return "/forum/%s/question/%s" % (post.forum_id.id, res_id) @api.cr_uid_ids_context def message_post(self, cr, uid, thread_id, type='notification', subtype=None, context=None, **kwargs): if thread_id and type == 'comment': # user comments have a restriction on karma if isinstance(thread_id, (list, tuple)): post_id = thread_id[0] else: post_id = thread_id post = self.browse(cr, uid, post_id, context=context) if not post.can_comment: raise KarmaError('Not enough karma to comment') return super(Post, self).message_post(cr, uid, thread_id, type=type, subtype=subtype, context=context, **kwargs)<|fim▁hole|> class PostReason(osv.Model): _name = "forum.post.reason" _description = "Post Closing Reason" _order = 'name' _columns = { 'name': fields.char('Post Reason', required=True, translate=True), } class Vote(osv.Model): _name = 'forum.post.vote' _description = 'Vote' _columns = { 'post_id': fields.many2one('forum.post', 'Post', ondelete='cascade', required=True), 'user_id': fields.many2one('res.users', 'User', required=True), 'vote': fields.selection([('1', '1'), ('-1', '-1'), ('0', '0')], 'Vote', required=True), 'create_date': fields.datetime('Create Date', select=True, readonly=True), # TODO master: store these two 'forum_id': fields.related('post_id', 'forum_id', type='many2one', relation='forum.forum', string='Forum'), 'recipient_id': fields.related('post_id', 'create_uid', type='many2one', relation='res.users', string='To', help="The user receiving the vote"), } _defaults = { 'user_id': lambda self, cr, uid, ctx: uid, 'vote': lambda *args: '1', } def _get_karma_value(self, old_vote, new_vote, up_karma, down_karma): _karma_upd = { '-1': {'-1': 0, '0': -1 * down_karma, '1': -1 * down_karma + up_karma}, '0': {'-1': 1 * down_karma, '0': 0, '1': up_karma}, '1': {'-1': -1 * up_karma + down_karma, '0': -1 * up_karma, '1': 0} } return _karma_upd[old_vote][new_vote] def create(self, cr, uid, vals, context=None): vote_id = super(Vote, self).create(cr, uid, vals, context=context) vote = self.browse(cr, uid, vote_id, context=context) # own post check if vote.user_id.id == vote.post_id.create_uid.id: raise Warning('Not allowed to vote for its own post') # karma check if vote.vote == '1' and not vote.post_id.can_upvote: raise KarmaError('Not enough karma to upvote.') elif vote.vote == '-1' and not vote.post_id.can_downvote: raise KarmaError('Not enough karma to downvote.') # karma update if vote.post_id.parent_id: karma_value = self._get_karma_value('0', vote.vote, vote.forum_id.karma_gen_answer_upvote, vote.forum_id.karma_gen_answer_downvote) else: karma_value = self._get_karma_value('0', vote.vote, vote.forum_id.karma_gen_question_upvote, vote.forum_id.karma_gen_question_downvote) self.pool['res.users'].add_karma(cr, SUPERUSER_ID, [vote.recipient_id.id], karma_value, context=context) return vote_id def write(self, cr, uid, ids, values, context=None): if 'vote' in values: for vote in self.browse(cr, uid, ids, context=context): # own post check if vote.user_id.id == vote.post_id.create_uid.id: raise Warning('Not allowed to vote for its own post') # karma check if (values['vote'] == '1' or vote.vote == '-1' and values['vote'] == '0') and not vote.post_id.can_upvote: raise KarmaError('Not enough karma to upvote.') elif (values['vote'] == '-1' or vote.vote == '1' and values['vote'] == '0') and not vote.post_id.can_downvote: raise KarmaError('Not enough karma to downvote.') # karma update if vote.post_id.parent_id: karma_value = self._get_karma_value(vote.vote, values['vote'], vote.forum_id.karma_gen_answer_upvote, vote.forum_id.karma_gen_answer_downvote) else: karma_value = self._get_karma_value(vote.vote, values['vote'], vote.forum_id.karma_gen_question_upvote, vote.forum_id.karma_gen_question_downvote) self.pool['res.users'].add_karma(cr, SUPERUSER_ID, [vote.recipient_id.id], karma_value, context=context) res = super(Vote, self).write(cr, uid, ids, values, context=context) return res class Tags(osv.Model): _name = "forum.tag" _description = "Tag" _inherit = ['website.seo.metadata'] def _get_posts_count(self, cr, uid, ids, field_name, arg, context=None): return dict((tag_id, self.pool['forum.post'].search_count(cr, uid, [('tag_ids', 'in', tag_id)], context=context)) for tag_id in ids) def _get_tag_from_post(self, cr, uid, ids, context=None): return list(set( [tag.id for post in self.pool['forum.post'].browse(cr, SUPERUSER_ID, ids, context=context) for tag in post.tag_ids] )) _columns = { 'name': fields.char('Name', required=True), 'forum_id': fields.many2one('forum.forum', 'Forum', required=True), 'post_ids': fields.many2many('forum.post', 'forum_tag_rel', 'tag_id', 'post_id', 'Posts'), 'posts_count': fields.function( _get_posts_count, type='integer', string="Number of Posts", store={ 'forum.post': (_get_tag_from_post, ['tag_ids'], 10), } ), 'create_uid': fields.many2one('res.users', 'Created by', readonly=True), }<|fim▁end|>
<|file_name|>ProfileActivity.java<|end_file_name|><|fim▁begin|>package com.hackatoncivico.rankingpolitico; import android.content.SharedPreferences; import android.os.AsyncTask; import android.os.Bundle; import android.preference.PreferenceManager; import android.support.v4.util.LogWriter; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.ImageView; import android.widget.TextView; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.hackatoncivico.rankingpolitico.models.Candidato; import com.hackatoncivico.rankingpolitico.models.Criterio; import com.hackatoncivico.rankingpolitico.models.CriterioCandidato; import com.hackatoncivico.rankingpolitico.models.RegistroCandidato; import com.hackatoncivico.rankingpolitico.models.RegistroCandidatos; import com.hackatoncivico.rankingpolitico.utils.ApiAccess; import com.hackatoncivico.rankingpolitico.utils.Utils; import com.squareup.picasso.Picasso; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.StatusLine; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.DefaultHttpClient; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; /** * Created by franz on 7/11/2015. */ public class ProfileActivity extends AppCompatActivity {<|fim▁hole|> public static final String ID_CANDIDATO = "ID_CANDIDATO"; private String idCandidato; private Candidato candidato; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_profile); // Add Toolbar Toolbar toolbar = (Toolbar) findViewById(R.id.main_toolbar); toolbar.setTitle(getString(R.string.title_profile_activity)); setSupportActionBar(toolbar); getSupportActionBar().setDisplayHomeAsUpEnabled(true); getSupportActionBar().setDisplayShowHomeEnabled(true); SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(this); idCandidato = sharedPref.getString(Utils.SELECTED_CANDIDATE, ""); GetCandidato data = new GetCandidato(); data.execute(); } @Override public void onResume() { super.onResume(); if (candidato != null) { handleCandidato(candidato); } } private void handleCandidato(final Candidato candidato){ this.candidato = candidato; Button btn_logros = (Button) findViewById(R.id.btn_logros); btn_logros.setOnClickListener(Utils.setNextScreenListener(this, LogrosActivity.class, LogrosActivity.ID_CANDIDATO, String.valueOf(candidato.id))); Button btn_criterios = (Button) findViewById(R.id.btn_criterios); btn_criterios.setOnClickListener(Utils.setNextScreenListener(this, CriteriosActivity.class, CriteriosActivity.ID_CANDIDATO, String.valueOf(candidato.id))); runOnUiThread(new Runnable() { @Override public void run() { //progressBar.setVisibility(View.GONE); ImageView avatar = (ImageView) findViewById(R.id.profile_avatar); Picasso.with(getBaseContext()) .load(ApiAccess.DOMINIO_URL + candidato.foto) .placeholder(R.drawable.avatar) .into(avatar); TextView full_name = (TextView) findViewById(R.id.profile_full_name); full_name.setText(candidato.nombres + " " + candidato.apellidos); TextView logros = (TextView) findViewById(R.id.profile_logros_count); logros.setText(String.valueOf(candidato.logros.size())); int criterios_count = 0; for (int i = 0; i < candidato.criterios.size(); i++) { CriterioCandidato criterioCandidato = candidato.criterios.get(i); Criterio criterio = criterioCandidato.criterio; try{ criterios_count = criterios_count + Integer.parseInt(criterio.puntuacion); } catch (NumberFormatException nfe){ nfe.printStackTrace(); } } TextView criterios = (TextView) findViewById(R.id.profile_criterios_count); criterios.setText(String.valueOf(criterios_count)); } }); } private class GetCandidato extends AsyncTask<String, Void, Void> { @Override protected Void doInBackground(String... params) { try { //Create an HTTP client HttpClient client = new DefaultHttpClient(); HttpGet get = new HttpGet(ApiAccess.CANDIDATOS_URL + '/' + idCandidato); //Perform the request and check the status code HttpResponse response = client.execute(get); StatusLine statusLine = response.getStatusLine(); if(statusLine.getStatusCode() == 200) { HttpEntity entity = response.getEntity(); InputStream content = entity.getContent(); try { //Read the server response and attempt to parse it as JSON Reader reader = new InputStreamReader(content); GsonBuilder gsonBuilder = new GsonBuilder(); //gsonBuilder.setDateFormat("M/d/yy hh:mm a"); Gson gson = gsonBuilder.create(); //List<Candidato> posts = new ArrayList<Candidato>(); //posts = Arrays.asList(gson.fromJson(reader, Candidato[].class)); RegistroCandidato registroCandidato = gson.fromJson(reader, RegistroCandidato.class); content.close(); handleCandidato(registroCandidato.registros); } catch (Exception ex) { Log.e(TAG, "Failed to parse JSON due to: " + ex); //failedLoadingPosts(); } } else { Log.e(TAG, "Server responded with status code: " + statusLine.getStatusCode()); //failedLoadingPosts(); } } catch(Exception ex) { Log.e(TAG, "Failed to send HTTP POST request due to: " + ex); //failedLoadingPosts(); } return null; } } }<|fim▁end|>
private static final String TAG = "ProfileActivity";
<|file_name|>test_stats.py<|end_file_name|><|fim▁begin|># This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, you can obtain one at http://mozilla.org/MPL/2.0/. from atmo.stats.models import Metric def test_metrics_record(now, one_hour_ago): Metric.record("metric-key-1") Metric.record("metric-key-2", 500) Metric.record("metric-key-3", data={"other-value": "test"}) Metric.record("metric-key-4", created_at=one_hour_ago, data={"other-value-2": 100}) m = Metric.objects.get(key="metric-key-1") assert m.value == 1 assert m.created_at.replace(microsecond=0) == now assert m.data is None m = Metric.objects.get(key="metric-key-2") assert m.value == 500 assert m.created_at.replace(microsecond=0) == now assert m.data is None m = Metric.objects.get(key="metric-key-3") assert m.value == 1 assert m.created_at.replace(microsecond=0) == now<|fim▁hole|> m = Metric.objects.get(key="metric-key-4") assert m.value == 1 assert m.created_at.replace(microsecond=0) == one_hour_ago assert m.data == {"other-value-2": 100}<|fim▁end|>
assert m.data == {"other-value": "test"}
<|file_name|>router.js<|end_file_name|><|fim▁begin|>/* Client-side router settings */ Router.configure({ layoutTemplate:"layout", notFoundTemplate:"page_not_found", loadingTemplate:"loading" }); <|fim▁hole|>Router.route("/", { name:"home", template:"home" }); Router.route("/profile", { name:"profile", template:"profile" }); Router.route("/admin", { name:"admin", template:"admin" }); Router.route("/user/:_id", { name:"user", template:"user", data: function(){ return Meteor.users.findOne({_id: this.params._id}); } });<|fim▁end|>
<|file_name|>mnist.py<|end_file_name|><|fim▁begin|># Copyright 2015 The TensorFlow Authors. All Rights Reserved. # # Licensed 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. # ============================================================================== """MNIST handwritten digits dataset. """ from __future__ import absolute_import from __future__ import division from __future__ import print_function import numpy as np from tensorflow.python.keras.utils.data_utils import get_file from tensorflow.python.util.tf_export import keras_export @keras_export('keras.datasets.mnist.load_data') def load_data(path='mnist.npz'): """Loads the MNIST dataset. Arguments: path: path where to cache the dataset locally (relative to ~/.keras/datasets). Returns: Tuple of Numpy arrays: `(x_train, y_train), (x_test, y_test)`. License: Yann LeCun and Corinna Cortes hold the copyright of MNIST dataset,<|fim▁hole|> which is a derivative work from original NIST datasets. MNIST dataset is made available under the terms of the [Creative Commons Attribution-Share Alike 3.0 license.]( https://creativecommons.org/licenses/by-sa/3.0/) """ origin_folder = 'https://storage.googleapis.com/tensorflow/tf-keras-datasets/' path = get_file( path, origin=origin_folder + 'mnist.npz', file_hash='8a61469f7ea1b51cbae51d4f78837e45') with np.load(path) as f: x_train, y_train = f['x_train'], f['y_train'] x_test, y_test = f['x_test'], f['y_test'] return (x_train, y_train), (x_test, y_test)<|fim▁end|>
<|file_name|>Sessions.js<|end_file_name|><|fim▁begin|>/* * This file is part of ARSnova Mobile. * Copyright (C) 2011-2012 Christian Thomas Weber * Copyright (C) 2012-2017 The ARSnova Team * * ARSnova Mobile is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * ARSnova Mobile is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with ARSnova Mobile. If not, see <http://www.gnu.org/licenses/>. */ Ext.define("ARSnova.controller.Sessions", { extend: 'Ext.app.Controller', requires: [ 'ARSnova.model.Session', 'ARSnova.view.speaker.TabPanel', 'ARSnova.view.feedback.TabPanel', 'ARSnova.view.feedbackQuestions.TabPanel', 'ARSnova.view.user.TabPanel', 'ARSnova.view.user.QuestionPanel' ], launch: function () { /* (Re)join session on Socket.IO connect event */ ARSnova.app.socket.addListener("arsnova/socket/connect", function () { var keyword = sessionStorage.getItem('keyword'); if (keyword) { ARSnova.app.socket.setSession(keyword); ARSnova.app.getController('Feature').lastUpdate = Date.now(); } }); }, login: function (options) { console.debug("Controller: Sessions.login", options); if (options.keyword.length !== 8) { Ext.Msg.alert(Messages.NOTIFICATION, Messages.SESSION_ID_INVALID_LENGTH); sessionStorage.clear(); return; } if (options.keyword.match(/[^0-9]/)) { Ext.Msg.alert(Messages.NOTIFICATION, Messages.SESSION_ID_INVALID); sessionStorage.clear(); return; } /* do login stuff */ var hideLoadMask = ARSnova.app.showLoadIndicator(Messages.LOAD_MASK_LOGIN); var res = ARSnova.app.sessionModel.checkSessionLogin(options.keyword, { success: function (obj) { // check if user is creator of this session if (ARSnova.app.userRole === ARSnova.app.USER_ROLE_SPEAKER) { ARSnova.app.isSessionOwner = true; } else { // check if session is open if (!obj.active) { Ext.Msg.alert(Messages.NOTIFICATION, Messages.SESSION_IS_CLOSED.replace(/###/, obj.name)); sessionStorage.clear(); return; } ARSnova.app.userRole = ARSnova.app.USER_ROLE_STUDENT; ARSnova.app.isSessionOwner = false; } // set local variables localStorage.setItem('sessionId', obj._id); localStorage.setItem('name', obj.name); localStorage.setItem('shortName', obj.shortName); localStorage.setItem('courseId', obj.courseId || ""); localStorage.setItem('courseType', obj.courseType || ""); localStorage.setItem('active', obj.active ? 1 : 0); localStorage.setItem('creationTime', obj.creationTime); sessionStorage.setItem('keyword', obj.keyword); sessionStorage.setItem('features', Ext.encode(obj.features)); ARSnova.app.feedbackModel.lock = obj.feedbackLock; // initialize MathJax ARSnova.app.getController('MathJaxMarkdown').initializeMathJax(); // deactivate several about tabs ARSnova.app.mainTabPanel.tabPanel.deactivateAboutTabs(); ARSnova.app.socket.setSession(obj.keyword); ARSnova.app.getController('Feature').lastUpdate = Date.now(); // start task to update the feedback tab in tabBar ARSnova.app.feedbackModel.on("arsnova/session/feedback/count", ARSnova.app.mainTabPanel.tabPanel.updateFeedbackBadge, ARSnova.app.mainTabPanel.tabPanel); ARSnova.app.feedbackModel.on("arsnova/session/feedback/average", ARSnova.app.mainTabPanel.tabPanel.updateFeedbackIcon, ARSnova.app.mainTabPanel.tabPanel); ARSnova.app.taskManager.start(ARSnova.app.mainTabPanel.tabPanel.config.updateHomeTask); ARSnova.app.mainTabPanel.tabPanel.updateHomeBadge(); ARSnova.app.getController('Sessions').reloadData(false, hideLoadMask); }, notFound: function () { Ext.Msg.alert(Messages.NOTIFICATION, Messages.SESSION_NOT_FOUND); sessionStorage.clear(); hideLoadMask(); }, forbidden: function () { Ext.Msg.alert(Messages.NOTIFICATION, Messages.SESSION_LOCKED); sessionStorage.clear(); hideLoadMask(); }, failure: function () { Ext.Msg.alert(Messages.NOTIFICATION, Messages.CONNECTION_PROBLEM); sessionStorage.clear(); hideLoadMask(); } }); }, logout: function (prevFeatures) { ARSnova.app.socket.setSession(null); ARSnova.app.sessionModel.fireEvent(ARSnova.app.sessionModel.events.sessionLeave); ARSnova.app.loggedInModel.resetActiveUserCount(); // stop task to update the feedback tab in tabBar ARSnova.app.feedbackModel.un("arsnova/session/feedback/count", ARSnova.app.mainTabPanel.tabPanel.updateFeedbackBadge); ARSnova.app.feedbackModel.un("arsnova/session/feedback/average", ARSnova.app.mainTabPanel.tabPanel.updateFeedbackIcon); // online counter badge ARSnova.app.taskManager.stop(ARSnova.app.mainTabPanel.tabPanel.config.updateHomeTask); sessionStorage.removeItem("keyword"); sessionStorage.removeItem("features"); sessionStorage.removeItem("answeredCanceledPiQuestions"); localStorage.removeItem("sessionId"); localStorage.removeItem("name"); localStorage.removeItem("shortName"); localStorage.removeItem("active"); localStorage.removeItem("session"); localStorage.removeItem("courseId"); localStorage.removeItem("courseType"); localStorage.removeItem("creationTime"); ARSnova.app.isSessionOwner = false; /* show about tab panels */ ARSnova.app.mainTabPanel.tabPanel.activateAboutTabs(); ARSnova.app.sessionModel.isLearningProgessOptionsInitialized = false; var tabPanel = ARSnova.app.mainTabPanel.tabPanel; /* show home Panel */ tabPanel.animateActiveItem(tabPanel.homeTabPanel, { type: 'slide', direction: 'right', duration: 700 }); if (ARSnova.app.userRole === ARSnova.app.USER_ROLE_SPEAKER) { /* hide speaker tab panel and destroy listeners */ tabPanel.speakerTabPanel.tab.hide(); tabPanel.speakerTabPanel.inClassPanel.destroyListeners(); /* hide feedback questions panel */ tabPanel.feedbackQuestionsPanel.tab.hide(); } else { /* hide user tab panel and destroy listeners */ if (tabPanel.userTabPanel) { tabPanel.userTabPanel.tab.hide(); tabPanel.userTabPanel.inClassPanel.destroyListeners(); } if (tabPanel.userQuestionsPanel) { tabPanel.userQuestionsPanel.tab.hide(); } if (localStorage.getItem('lastVisitedRole') === ARSnova.app.USER_ROLE_SPEAKER) { localStorage.setItem('role', ARSnova.app.USER_ROLE_SPEAKER); ARSnova.app.userRole = ARSnova.app.USER_ROLE_SPEAKER; localStorage.removeItem('lastVisitedRole'); } } /* hide feedback statistic panel */ tabPanel.feedbackTabPanel.tab.hide(); }, liveClickerSessionReload: function (prevFeatures) { var keyword = sessionStorage.getItem("keyword"); Ext.toast('Session wird neu geladen...', 3000); ARSnova.app.getController('Sessions').logout(prevFeatures); ARSnova.app.getController('Sessions').login({keyword: keyword}); }, reloadData: function (animation, hideLoadMask) { var features = ARSnova.app.getController('Feature').getActiveFeatures(); hideLoadMask = hideLoadMask || Ext.emptyFn; animation = animation || { type: 'slide', duration: 700 }; if (features.liveClicker && ARSnova.app.userRole !== ARSnova.app.USER_ROLE_SPEAKER && localStorage.getItem('lastVisitedRole') !== ARSnova.app.USER_ROLE_SPEAKER) { this.loadClickerSession(animation, hideLoadMask); } else { this.loadDefaultSession(animation, hideLoadMask); } }, loadClickerSession: function (animation, hideLoadMask) { var tabPanel = ARSnova.app.mainTabPanel.tabPanel; /* add feedback statistic panel*/ if (!tabPanel.feedbackTabPanel) { tabPanel.feedbackTabPanel = Ext.create('ARSnova.view.feedback.TabPanel'); tabPanel.insert(3, tabPanel.feedbackTabPanel); } else { tabPanel.feedbackTabPanel.tab.show(); tabPanel.feedbackTabPanel.renew(); } if (tabPanel.userTabPanel) { tabPanel.userTabPanel.tab.hide(); } if (tabPanel.userQuestionsPanel) { tabPanel.userQuestionsPanel.tab.hide(); } if (ARSnova.app.feedbackModel.lock) { tabPanel.feedbackTabPanel.setActiveItem(tabPanel.feedbackTabPanel.statisticPanel); } else { tabPanel.feedbackTabPanel.setActiveItem(tabPanel.feedbackTabPanel.votePanel); } tabPanel.animateActiveItem(tabPanel.feedbackTabPanel, animation); ARSnova.app.getController('Feature').applyFeatures(); ARSnova.app.sessionModel.sessionIsActive = true; hideLoadMask(); }, loadDefaultSession: function (animation, hideLoadMask) { var tabPanel = ARSnova.app.mainTabPanel.tabPanel; var features = ARSnova.app.getController('Feature').getActiveFeatures(); var target; if (ARSnova.app.isSessionOwner && ARSnova.app.userRole === ARSnova.app.USER_ROLE_SPEAKER) { ARSnova.app.sessionModel.fireEvent(ARSnova.app.sessionModel.events.sessionJoinAsSpeaker); /* add speaker in class panel */ if (!tabPanel.speakerTabPanel) { tabPanel.speakerTabPanel = Ext.create('ARSnova.view.speaker.TabPanel'); tabPanel.insert(1, tabPanel.speakerTabPanel); } else { tabPanel.speakerTabPanel.tab.show(); tabPanel.speakerTabPanel.renew(); } /* add feedback statistic panel*/ if (!tabPanel.feedbackTabPanel) { tabPanel.feedbackTabPanel = Ext.create('ARSnova.view.feedback.TabPanel'); tabPanel.insert(3, tabPanel.feedbackTabPanel); } else { tabPanel.feedbackTabPanel.tab.show(); tabPanel.feedbackTabPanel.renew(); } target = features.liveClicker ? tabPanel.feedbackTabPanel : tabPanel.speakerTabPanel; tabPanel.animateActiveItem(target, animation); tabPanel.speakerTabPanel.inClassPanel.registerListeners(); } else { ARSnova.app.sessionModel.fireEvent(ARSnova.app.sessionModel.events.sessionJoinAsStudent); /* add user in class panel */ if (!tabPanel.userTabPanel) { tabPanel.userTabPanel = Ext.create('ARSnova.view.user.TabPanel'); tabPanel.insert(0, tabPanel.userTabPanel); } else { tabPanel.userTabPanel.tab.show(); tabPanel.userTabPanel.renew(); } tabPanel.userTabPanel.inClassPanel.registerListeners(); /* add skill questions panel*/ if (!tabPanel.userQuestionsPanel) { tabPanel.userQuestionsPanel = Ext.create('ARSnova.view.user.QuestionPanel'); tabPanel.insert(1, tabPanel.userQuestionsPanel); } else { tabPanel.userQuestionsPanel.tab.show(); } /* add feedback statistic panel*/ if (!tabPanel.feedbackTabPanel) { tabPanel.feedbackTabPanel = Ext.create('ARSnova.view.feedback.TabPanel'); tabPanel.insert(2, tabPanel.feedbackTabPanel); } else {<|fim▁hole|> target = features.liveClicker ? tabPanel.feedbackTabPanel : tabPanel.userTabPanel; tabPanel.animateActiveItem(target, animation); } /* add feedback questions panel*/ if (!tabPanel.feedbackQuestionsPanel) { tabPanel.feedbackQuestionsPanel = Ext.create('ARSnova.view.feedbackQuestions.TabPanel'); if (ARSnova.app.userRole === ARSnova.app.USER_ROLE_SPEAKER) { tabPanel.insert(2, tabPanel.feedbackQuestionsPanel); } else { tabPanel.insert(4, tabPanel.feedbackQuestionsPanel); } } if (ARSnova.app.userRole === ARSnova.app.USER_ROLE_SPEAKER) { tabPanel.feedbackQuestionsPanel.tab.show(); } else { tabPanel.feedbackQuestionsPanel.tab.hide(); } ARSnova.app.getController('Feature').applyFeatures(); ARSnova.app.sessionModel.sessionIsActive = true; tabPanel.feedbackQuestionsPanel.questionsPanel.prepareQuestionList(); hideLoadMask(); }, update: function (sessionInfo) { var session = ARSnova.app.sessionModel; session.setData(sessionInfo); session.validate(); session.update({ success: function (response) { var fullSession = Ext.decode(response.responseText); localStorage.setItem('sessionId', fullSession._id); localStorage.setItem('name', fullSession.name); localStorage.setItem('shortName', fullSession.shortName); localStorage.setItem('active', fullSession.active ? 1 : 0); localStorage.setItem('courseId', fullSession.courseId || ""); localStorage.setItem('courseType', fullSession.courseType || ""); localStorage.setItem('creationTime', fullSession.creationTime); localStorage.setItem('keyword', fullSession.keyword); ARSnova.app.isSessionOwner = true; }, failure: function (response) { Ext.Msg.alert("Hinweis!", "Die Verbindung zum Server konnte nicht hergestellt werden"); } }); }, loadFeatureOptions: function (options, sessionCreation) { var activePanel = ARSnova.app.mainTabPanel.tabPanel.getActiveItem(); var useCasePanel = Ext.create('ARSnova.view.diagnosis.UseCasePanel', { options: options, sessionCreationMode: sessionCreation, inClassSessionEntry: !sessionCreation }); activePanel.animateActiveItem(useCasePanel, 'slide'); }, validateSessionOptions: function (options) { var session = ARSnova.app.sessionModel; session.setData({ type: 'session', name: options.name.trim(), shortName: options.shortName.trim(), creator: localStorage.getItem('login'), courseId: options.courseId, courseType: options.courseType, creationTime: Date.now(), ppAuthorName: options.ppAuthorName, ppAuthorMail: options.ppAuthorMail, ppUniversity: options.ppUniversity, ppLogo: options.ppLogo, ppSubject: options.ppSubject, ppLicense: options.ppLicense, ppDescription: options.ppDescription, ppFaculty: options.ppFaculty, ppLevel: options.ppLevel, sessionType: options.sessionType }); session.set('_id', undefined); var validation = session.validate(); if (!validation.isValid()) { Ext.Msg.alert('Hinweis', 'Bitte alle markierten Felder ausfüllen.'); var panel = ARSnova.app.mainTabPanel.tabPanel.homeTabPanel.newSessionPanel; panel.down('fieldset').items.items.forEach(function (el) { if (el.xtype === 'textfield') { el.removeCls("required"); } }); validation.items.forEach(function (el) { panel.down('textfield[name=' + el.getField() + ']').addCls("required"); }); /* activate inputElements in newSessionPanel */ if (options.lastPanel && typeof options.lastPanel.enableInputElements() === 'function') { options.lastPanel.enableInputElements(); } return false; } return session; }, create: function (options) { var session = this.validateSessionOptions(options); var hideLoadMask = ARSnova.app.showLoadIndicator(Messages.LOAD_MASK_SAVE, 10000); if (!session) { return; } session.create({ success: function (response) { var fullSession = Ext.decode(response.responseText); var loginName = ""; var loginMode = localStorage.getItem("loginMode"); sessionStorage.setItem('keyword', fullSession.keyword); localStorage.setItem('sessionId', fullSession._id); ARSnova.app.getController('Auth').services.then(function (services) { services.forEach(function (service) { if (loginMode === service.id) { loginName = "guest" === service.id ? Messages.GUEST : service.name; } }); var messageBox = Ext.create('Ext.MessageBox', { title: Messages.SESSION + ' ID: ' + fullSession.keyword, message: Messages.ON_SESSION_CREATION_1.replace(/###/, fullSession.keyword), cls: 'newSessionMessageBox', listeners: { show: hideLoadMask, hide: function () { ARSnova.app.getController('Sessions').login({keyword: fullSession.keyword}); var panel = ARSnova.app.mainTabPanel.tabPanel.homeTabPanel; panel.setActiveItem(panel.mySessionsPanel); /* activate inputElements in newSessionPanel */ if (options.lastPanel && typeof options.lastPanel.enableInputElements() === 'function') { options.lastPanel.enableInputElements(); } this.destroy(); } } }); messageBox.setButtons([{ text: Messages.CONTINUE, itemId: 'continue', ui: 'action', handler: function () { if (!this.readyToClose) { messageBox.setMessage(''); messageBox.setTitle(Messages.SESSION + ' ID: ' + fullSession.keyword); messageBox.setHtml("<div class='x-msgbox-text x-layout-box-item' +" + " style='margin-top: -10px;'>" + Messages.ON_SESSION_CREATION_2.replace(/###/, loginName + "-Login " + "<div style='display: inline-block;'" + "class='text-icons login-icon-" + loginMode + "'></div> " + (loginMode === "guest" ? Messages.ON_THIS_DEVICE : "")) + ".</div>"); this.readyToClose = true; } else { messageBox.hide(); if (messageBox.showFeatureError) { Ext.Msg.alert("", Messages.FEATURE_SETTINGS_COULD_NOT_BE_SAVED); } } } }]); if (options.features) { ARSnova.app.sessionModel.changeFeatures(sessionStorage.getItem("keyword"), options.features, { success: function () { messageBox.show(); }, failure: function () { messageBox.showFeatureError = true; messageBox.show(); } }); } else { messageBox.show(); } }); }, failure: function (records, operation) { Ext.Msg.alert("Hinweis!", "Die Verbindung zum Server konnte nicht hergestellt werden"); if (options.lastPanel && typeof options.lastPanel.enableInputElements() === 'function') { options.lastPanel.enableInputElements(); } } }); }, changeRole: function () { var tabPanel = ARSnova.app.mainTabPanel.tabPanel; var hideLoadMask = ARSnova.app.showLoadIndicator(Messages.CHANGE_ROLE + '...', 2000); var reloadSession = function (animationDirection, onAnimationEnd) { tabPanel.updateHomeBadge(); ARSnova.app.socket.setSession(null); ARSnova.app.socket.setSession(sessionStorage.getItem('keyword')); ARSnova.app.getController('Feature').lastUpdate = Date.now(); onAnimationEnd = (typeof onAnimationEnd === 'function') ? onAnimationEnd : hideLoadMask; tabPanel.feedbackQuestionsPanel.initializeQuestionsPanel(); ARSnova.app.getController('Sessions').reloadData({ listeners: {animationend: onAnimationEnd}, direction: animationDirection, type: 'flip' }); }; if (ARSnova.app.userRole === ARSnova.app.USER_ROLE_SPEAKER) { localStorage.setItem('lastVisitedRole', ARSnova.app.USER_ROLE_SPEAKER); localStorage.setItem('role', ARSnova.app.USER_ROLE_STUDENT); ARSnova.app.userRole = ARSnova.app.USER_ROLE_STUDENT; /* hide speaker tab panel and destroy listeners */ tabPanel.speakerTabPanel.tab.hide(); tabPanel.speakerTabPanel.inClassPanel.destroyListeners(); reloadSession('right'); } else { if (localStorage.getItem('lastVisitedRole') === ARSnova.app.USER_ROLE_SPEAKER) { localStorage.setItem('role', ARSnova.app.USER_ROLE_SPEAKER); ARSnova.app.userRole = ARSnova.app.USER_ROLE_SPEAKER; localStorage.removeItem('lastVisitedRole'); /* hide user tab panels and destroy listeners */ tabPanel.userTabPanel.tab.hide(); tabPanel.userQuestionsPanel.tab.hide(); tabPanel.userTabPanel.inClassPanel.destroyListeners(); reloadSession('left', function () { /* remove user tab panel and user questions panel*/ tabPanel.remove(tabPanel.userQuestionsPanel); tabPanel.remove(tabPanel.userTabPanel); delete tabPanel.userQuestionsPanel; delete tabPanel.userTabPanel; hideLoadMask(); }); } } }, checkExistingSessionLogin: function () { if (localStorage.getItem('lastVisitedRole') === ARSnova.app.USER_ROLE_SPEAKER) { localStorage.setItem('role', ARSnova.app.USER_ROLE_SPEAKER); ARSnova.app.userRole = ARSnova.app.USER_ROLE_SPEAKER; localStorage.removeItem('lastVisitedRole'); } if (sessionStorage.getItem("keyword")) { return true; } return false; }, setActive: function (options) { ARSnova.app.sessionModel.lock(sessionStorage.getItem("keyword"), options.active, { success: function () { var sessionStatus = ARSnova.app.mainTabPanel.tabPanel.speakerTabPanel.inClassPanel.inClassActions.sessionStatusButton; if (options.active) { sessionStatus.sessionOpenedSuccessfully(); } else { sessionStatus.sessionClosedSuccessfully(); } }, failure: function (records, operation) { Ext.Msg.alert("Hinweis!", "Session speichern war nicht erfolgreich"); } }); }, setLearningProgressOptions: function (options) { ARSnova.app.sessionModel.setLearningProgressOptions(options); }, getLearningProgressOptions: function () { return ARSnova.app.sessionModel.getLearningProgress(); }, getCourseLearningProgress: function (options) { ARSnova.app.sessionModel.getCourseLearningProgressWithOptions( sessionStorage.getItem("keyword"), options.progress, options.callbacks ); }, getMyLearningProgress: function (options) { ARSnova.app.sessionModel.getMyLearningProgressWithOptions( sessionStorage.getItem("keyword"), options.progress, options.callbacks ); } });<|fim▁end|>
tabPanel.feedbackTabPanel.tab.show(); tabPanel.feedbackTabPanel.renew(); }
<|file_name|>AlwaysBeCasting.tsx<|end_file_name|><|fim▁begin|>import React from 'react'; import { t } from '@lingui/macro'; import SPELLS from 'common/SPELLS'; import { formatPercentage } from 'common/format'; import { SpellLink } from 'interface'; <|fim▁hole|>class AlwaysBeCasting extends CoreAlwaysBeCasting { get downtimeSuggestionThresholds() { return { actual: this.downtimePercentage, isGreaterThan: { minor: 0.10, average: 0.15, major: .20, }, style: ThresholdStyle.PERCENTAGE, }; } suggestions(when: When) { when(this.downtimeSuggestionThresholds) .addSuggestion((suggest, actual, recommended) => suggest(<span>Your downtime can be improved. Try to Always Be Casting (ABC), reducing time away from the boss unless due to mechanics. If you do have to move, try casting filler spells, such as <SpellLink id={SPELLS.DEATH_COIL.id} /> or <SpellLink id={SPELLS.OUTBREAK.id} />.</span>) .icon('spell_mage_altertime') .actual(t({ id: "deathknight.unholy.suggestions.alwaysBeCasting", message: `${formatPercentage(actual)}% downtime` })) .recommended(`<${formatPercentage(recommended)}% is recommended`)); } } export default AlwaysBeCasting;<|fim▁end|>
import CoreAlwaysBeCasting from 'parser/shared/modules/AlwaysBeCasting'; import { When, ThresholdStyle } from 'parser/core/ParseResults';
<|file_name|>hist_2d.py<|end_file_name|><|fim▁begin|># -*- coding: utf-8 -*- ## @package color_histogram.core.hist_2d # # Implementation of 2D color histograms.<|fim▁hole|> from color_histogram.core.color_pixels import ColorPixels from color_histogram.core.hist_common import colorCoordinates, colorDensities, rgbColors, clipLowDensity, range2ticks,\ densitySizes, range2lims ## Implementation of 2D color histograms. class Hist2D: ## Constructor # @param image input image. # @param num_bins target number of histogram bins. # @param alpha low density clip. # @param color_space target color space. 'rgb' or 'Lab' or 'hsv'. # @param channels target color channels. [0, 1] with 'hsv' means (h, s) channels. def __init__(self, image, num_bins=16, alpha=0.1, color_space='hsv', channels=[0, 1]): self._computeTargetPixels(image, color_space, channels) self._num_bins = num_bins self._alpha = alpha self._color_space = color_space self._channels = channels self._computeColorRange() self._computeHistogram() self._plotter = Hist2DPlot(self) ## Plot histogram with the given density size range. def plot(self, ax, density_size_range=[10, 100]): self._plotter.plot(ax, density_size_range) def colorSpace(self): return self._color_space def channels(self): return self._channels def colorIDs(self): color_ids = np.where(self._histPositive()) return color_ids def colorCoordinates(self): color_ids = self.colorIDs() num_bins = self._num_bins color_range = self._color_range return colorCoordinates(color_ids, num_bins, color_range) def colorDensities(self): return colorDensities(self._hist_bins) def rgbColors(self): return rgbColors(self._hist_bins, self._color_bins) def colorRange(self): return self._color_range def _computeTargetPixels(self, image, color_space, channels): color_pixels = ColorPixels(image) self._pixels = color_pixels.pixels(color_space)[:, channels] self._rgb_pixels = color_pixels.rgb() def _computeColorRange(self): pixels = self._pixels cs = pixels.shape[1] c_min = np.zeros(cs) c_max = np.zeros(cs) for ci in xrange(cs): c_min[ci] = np.min(pixels[:, ci]) c_max[ci] = np.max(pixels[:, ci]) self._color_range = [c_min, c_max] def _computeHistogram(self): pixels = self._pixels num_bins = self._num_bins c_min, c_max = self._color_range hist_bins = np.zeros((num_bins, num_bins), dtype=np.float32) color_bins = np.zeros((num_bins, num_bins, 3), dtype=np.float32) color_ids = (num_bins - 1) * (pixels - c_min) / (c_max - c_min) color_ids = np.int32(color_ids) for pi, color_id in enumerate(color_ids): hist_bins[color_id[0], color_id[1]] += 1 color_bins[color_id[0], color_id[1]] += self._rgb_pixels[pi] self._hist_bins = hist_bins hist_positive = self._hist_bins > 0.0 for ci in xrange(3): color_bins[hist_positive, ci] /= self._hist_bins[hist_positive] self._color_bins = color_bins self._clipLowDensity() def _clipLowDensity(self): clipLowDensity(self._hist_bins, self._color_bins, self._alpha) def _histPositive(self): return self._hist_bins > 0.0 ## 2D color histogram plotter. class Hist2DPlot: ## Constructor. # @param hist2D histogram for plotting. def __init__(self, hist2D): self._hist2D = hist2D ## Plot histogram with the given density size range. def plot(self, ax, density_size_range=[10, 100]): color_samples = self._hist2D.colorCoordinates() density_sizes = self._densitySizes(density_size_range) colors = self._hist2D.rgbColors() ax.scatter(color_samples[:, 0], color_samples[:, 1], color=colors, s=density_sizes) self._axisSetting(ax) def _densitySizes(self, density_size_range): color_densities = self._hist2D.colorDensities() return densitySizes(color_densities, density_size_range) def _axisSetting(self, ax): color_space = self._hist2D.colorSpace() channels = self._hist2D.channels() ax.set_xlabel(color_space[channels[0]]) ax.set_ylabel(color_space[channels[1]], rotation='horizontal') color_range = self._hist2D.colorRange() tick_range = np.array(color_range).T xticks, yticks = range2ticks(tick_range) ax.set_xticks(xticks) ax.set_yticks(yticks) xlim, ylim = range2lims(tick_range) ax.set_xlim(xlim) ax.set_ylim(ylim)<|fim▁end|>
# @author tody # @date 2015/08/28 import numpy as np
<|file_name|>user.js<|end_file_name|><|fim▁begin|>/* eslint-disable no-underscore-dangle */ export default function ({ client, filterQuery, mustContain, busy, encodeQueryAsString, }) { return { listUsers(query) { const params = filterQuery( query, 'text', 'limit', 'offset', 'sort', 'sortdir' ); return busy( client._.get('/user', { params, }) ); }, createUser(user) { const expected = [ 'login', 'email', 'firstName', 'lastName', 'password', 'admin', ]; const params = filterQuery(user, ...expected); const { missingKeys, promise } = mustContain(user, ...expected); return missingKeys ? promise : busy(client._.post(`/user${encodeQueryAsString(params)}`)); }, changePassword(old, newPassword) {<|fim▁hole|> new: newPassword, }; return busy(client._.put(`/user/password${encodeQueryAsString(params)}`)); }, resetPassword(email) { const params = { email, }; return busy( client._.delete('/user/password', { params, }) ); }, deleteUser(id) { return busy(client._.delete(`/user/${id}`)); }, getUser(id) { return busy(client._.get(`/user/${id}`)); }, updateUser(user) { const expected = ['email', 'firstName', 'lastName', '_id']; const params = filterQuery(user, ...expected.slice(0, 3)); // Remove '_id' const { missingKeys, promise } = mustContain(user, ...expected); return missingKeys ? promise : busy(client._.put(`/user/${user._id}${encodeQueryAsString(params)}`)); }, }; }<|fim▁end|>
const params = { old,
<|file_name|>test_experiment_pages.py<|end_file_name|><|fim▁begin|>from ab_tool.tests.common import (SessionTestCase, TEST_COURSE_ID, TEST_OTHER_COURSE_ID, NONEXISTENT_TRACK_ID, NONEXISTENT_EXPERIMENT_ID, APIReturn, LIST_MODULES) from django.core.urlresolvers import reverse from ab_tool.models import (Experiment, InterventionPointUrl) from ab_tool.exceptions import (EXPERIMENT_TRACKS_ALREADY_FINALIZED, NO_TRACKS_FOR_EXPERIMENT, UNAUTHORIZED_ACCESS, INTERVENTION_POINTS_ARE_INSTALLED) import json from mock import patch class TestExperimentPages(SessionTestCase): """ Tests related to Experiment and Experiment pages and methods """ def test_create_experiment_view(self): """ Tests edit_experiment template renders for url 'create_experiment' """ response = self.client.get(reverse("ab_testing_tool_create_experiment")) self.assertOkay(response) self.assertTemplateUsed(response, "ab_tool/edit_experiment.html") def test_create_experiment_view_unauthorized(self): """ Tests edit_experiment template does not render for url 'create_experiment' when unauthorized """ self.set_roles([]) response = self.client.get(reverse("ab_testing_tool_create_experiment"), follow=True) self.assertTemplateNotUsed(response, "ab_tool/create_experiment.html") self.assertTemplateUsed(response, "ab_tool/not_authorized.html") def test_edit_experiment_view(self): """ Tests edit_experiment template renders when authenticated """ experiment = self.create_test_experiment() response = self.client.get(reverse("ab_testing_tool_edit_experiment", args=(experiment.id,))) self.assertTemplateUsed(response, "ab_tool/edit_experiment.html") def test_edit_experiment_view_started_experiment(self): """ Tests edit_experiment template renders when experiment has started """ experiment = self.create_test_experiment() experiment.tracks_finalized = True experiment.save() response = self.client.get(reverse("ab_testing_tool_edit_experiment", args=(experiment.id,))) self.assertTemplateUsed(response, "ab_tool/edit_experiment.html") def test_edit_experiment_view_with_tracks_weights(self): """ Tests edit_experiment template renders properly with track weights """ experiment = self.create_test_experiment() experiment.assignment_method = Experiment.WEIGHTED_PROBABILITY_RANDOM track1 = self.create_test_track(name="track1", experiment=experiment) track2 = self.create_test_track(name="track2", experiment=experiment) self.create_test_track_weight(experiment=experiment, track=track1) self.create_test_track_weight(experiment=experiment, track=track2) response = self.client.get(reverse("ab_testing_tool_edit_experiment", args=(experiment.id,))) self.assertTemplateUsed(response, "ab_tool/edit_experiment.html") def test_edit_experiment_view_unauthorized(self): """ Tests edit_experiment template doesn't render when unauthorized """ self.set_roles([]) experiment = self.create_test_experiment(course_id=TEST_OTHER_COURSE_ID) response = self.client.get(reverse("ab_testing_tool_edit_experiment", args=(experiment.id,)), follow=True) self.assertTemplateNotUsed(response, "ab_tool/edit_experiment.html") self.assertTemplateUsed(response, "ab_tool/not_authorized.html") def test_edit_experiment_view_nonexistent(self): """Tests edit_experiment when experiment does not exist""" e_id = NONEXISTENT_EXPERIMENT_ID response = self.client.get(reverse("ab_testing_tool_edit_experiment", args=(e_id,))) self.assertTemplateNotUsed(response, "ab_tool/edit_experiment.html") self.assertEquals(response.status_code, 404) def test_edit_experiment_view_wrong_course(self): """ Tests edit_experiment when attempting to access a experiment from a different course """ experiment = self.create_test_experiment(course_id=TEST_OTHER_COURSE_ID) response = self.client.get(reverse("ab_testing_tool_edit_experiment", args=(experiment.id,))) self.assertError(response, UNAUTHORIZED_ACCESS) def test_edit_experiment_view_last_modified_updated(self): """ Tests edit_experiment to confirm that the last updated timestamp changes """ experiment = self.create_test_experiment() experiment.name += " (updated)" response = self.client.post(reverse("ab_testing_tool_submit_edit_experiment", args=(experiment.id,)), content_type="application/json", data=experiment.to_json()) self.assertEquals(response.content, "success") updated_experiment = Experiment.objects.get(id=experiment.id) self.assertLess(experiment.updated_on, updated_experiment.updated_on, response) def test_submit_create_experiment(self): """ Tests that create_experiment creates a Experiment object verified by DB count when uniformRandom is true""" Experiment.get_placeholder_course_experiment(TEST_COURSE_ID) num_experiments = Experiment.objects.count() experiment = { "name": "experiment", "notes": "hi", "uniformRandom": True, "csvUpload": False, "tracks": [{"id": None, "weighting": None, "name": "A"}] } response = self.client.post( reverse("ab_testing_tool_submit_create_experiment"), follow=True, content_type="application/json", data=json.dumps(experiment) ) self.assertEquals(num_experiments + 1, Experiment.objects.count(), response) def test_submit_create_experiment_csv_upload(self): """ Tests that create_experiment creates a Experiment object verified by DB count when csvUpload is True and no track weights are specified""" Experiment.get_placeholder_course_experiment(TEST_COURSE_ID) num_experiments = Experiment.objects.count() experiment = { "name": "experiment", "notes": "hi", "uniformRandom": False, "csvUpload": True, "tracks": [{"id": None, "name": "A"}] } response = self.client.post( reverse("ab_testing_tool_submit_create_experiment"), follow=True, content_type="application/json", data=json.dumps(experiment) ) self.assertEquals(num_experiments + 1, Experiment.objects.count(), response) def test_submit_create_experiment_with_weights_as_assignment_method(self): """ Tests that create_experiment creates a Experiment object verified by DB count when uniformRandom is false and the tracks have weightings """ Experiment.get_placeholder_course_experiment(TEST_COURSE_ID) num_experiments = Experiment.objects.count() experiment = { "name": "experiment", "notes": "hi", "uniformRandom": False, "csvUpload": False, "tracks": [{"id": None, "weighting": 100, "name": "A"}] } response = self.client.post( reverse("ab_testing_tool_submit_create_experiment"), follow=True, content_type="application/json", data=json.dumps(experiment) ) self.assertEquals(num_experiments + 1, Experiment.objects.count(), response) def test_submit_create_experiment_unauthorized(self): """Tests that create_experiment creates a Experiment object verified by DB count""" self.set_roles([]) Experiment.get_placeholder_course_experiment(TEST_COURSE_ID) num_experiments = Experiment.objects.count() experiment = {"name": "experiment", "notes": "hi"} response = self.client.post( reverse("ab_testing_tool_submit_create_experiment"), follow=True, content_type="application/json", data=json.dumps(experiment) ) self.assertEquals(num_experiments, Experiment.objects.count()) self.assertTemplateUsed(response, "ab_tool/not_authorized.html") def test_submit_edit_experiment(self):<|fim▁hole|> num_experiments = Experiment.objects.count() experiment = { "name": "new_name", "notes": "hi", "uniformRandom": True, "csvUpload": False, "tracks": [{"id": None, "weighting": None, "name": "A"}] } response = self.client.post( reverse("ab_testing_tool_submit_edit_experiment", args=(experiment_id,)), follow=True, content_type="application/json", data=json.dumps(experiment) ) self.assertOkay(response) self.assertEquals(num_experiments, Experiment.objects.count()) experiment = Experiment.objects.get(id=experiment_id) self.assertEquals(experiment.name, "new_name") def test_submit_edit_experiment_changes_assignment_method_to_weighted(self): """ Tests that submit_edit_experiment changes an Experiment's assignment method from uniform (default) to weighted""" experiment = self.create_test_experiment(name="old_name") experiment_id = experiment.id num_experiments = Experiment.objects.count() no_track_weights = experiment.track_probabilites.count() experiment = { "name": "new_name", "notes": "hi", "uniformRandom": False, "csvUpload": False, "tracks": [{"id": None, "weighting": 20, "name": "A"}, {"id": None, "weighting": 80, "name": "B"}] } response = self.client.post( reverse("ab_testing_tool_submit_edit_experiment", args=(experiment_id,)), follow=True, content_type="application/json", data=json.dumps(experiment) ) self.assertOkay(response) self.assertEquals(num_experiments, Experiment.objects.count()) experiment = Experiment.objects.get(id=experiment_id) self.assertEquals(experiment.assignment_method, Experiment.WEIGHTED_PROBABILITY_RANDOM) self.assertEquals(experiment.track_probabilites.count(), no_track_weights + 2) def test_submit_edit_experiment_changes_assignment_method_to_uniform(self): """ Tests that submit_edit_experiment changes an Experiment's assignment method from weighted uniform """ experiment = self.create_test_experiment( name="old_name", assignment_method=Experiment.WEIGHTED_PROBABILITY_RANDOM) experiment_id = experiment.id num_experiments = Experiment.objects.count() no_tracks = experiment.tracks.count() experiment = { "name": "new_name", "notes": "hi", "uniformRandom": True, "csvUpload": False, "tracks": [{"id": None, "weighting": None, "name": "A"}, {"id": None, "weighting": None, "name": "B"}, {"id": None, "weighting": None, "name": "C"}] } response = self.client.post( reverse("ab_testing_tool_submit_edit_experiment", args=(experiment_id,)), follow=True, content_type="application/json", data=json.dumps(experiment) ) self.assertOkay(response) self.assertEquals(num_experiments, Experiment.objects.count()) experiment = Experiment.objects.get(id=experiment_id) self.assertEquals(experiment.assignment_method, Experiment.UNIFORM_RANDOM) self.assertEquals(experiment.tracks.count(), no_tracks + 3) def test_submit_edit_experiment_unauthorized(self): """ Tests submit_edit_experiment when unauthorized""" self.set_roles([]) experiment = self.create_test_experiment(name="old_name") experiment_id = experiment.id experiment = {"name": "new_name", "notes": ""} response = self.client.post( reverse("ab_testing_tool_submit_edit_experiment", args=(experiment_id,)), content_type="application/json", data=json.dumps(experiment), follow=True ) self.assertTemplateUsed(response, "ab_tool/not_authorized.html") def test_submit_edit_experiment_nonexistent(self): """ Tests that submit_edit_experiment method raises error for non-existent Experiment """ experiment_id = NONEXISTENT_EXPERIMENT_ID experiment = {"name": "new_name", "notes": ""} response = self.client.post( reverse("ab_testing_tool_submit_edit_experiment", args=(experiment_id,)), content_type="application/json", data=json.dumps(experiment) ) self.assertEquals(response.status_code, 404) def test_submit_edit_experiment_wrong_course(self): """ Tests that submit_edit_experiment method raises error for existent Experiment but for wrong course""" experiment = self.create_test_experiment(name="old_name", course_id=TEST_OTHER_COURSE_ID) data = {"name": "new_name", "notes": ""} response = self.client.post( reverse("ab_testing_tool_submit_edit_experiment", args=(experiment.id,)), content_type="application/json", data=json.dumps(data) ) self.assertError(response, UNAUTHORIZED_ACCESS) def test_submit_edit_started_experiment_changes_name_and_notes(self): """ Tests that submit_edit_experiment changes an Experiment's name and notes and track names only if the experiment has already been started """ experiment = self.create_test_experiment(name="old_name", notes="old_notes", tracks_finalized=True) experiment_id = experiment.id num_experiments = Experiment.objects.count() old_track = self.create_test_track(experiment=experiment, name="old_name_track") experiment_json = { "name": "new_name", "notes": "new_notes", "tracks": [{"id": old_track.id, "name": "new_track_name"}], } response = self.client.post( reverse("ab_testing_tool_submit_edit_experiment", args=(experiment_id,)), follow=True, content_type="application/json", data=json.dumps(experiment_json) ) self.assertOkay(response) self.assertEquals(num_experiments, Experiment.objects.count()) experiment = Experiment.objects.get(id=experiment_id) self.assertEquals(experiment.name, "new_name") self.assertEquals(experiment.notes, "new_notes") self.assertEquals(experiment.tracks.all()[0].name, "new_track_name") def test_submit_edit_started_experiment_does_not_change_tracks(self): """ Tests that submit_edit_experiment doesn't change tracks for an experiment that has already been started """ experiment = self.create_test_experiment(name="old_name", tracks_finalized=True, assignment_method=Experiment.WEIGHTED_PROBABILITY_RANDOM) experiment_id = experiment.id num_experiments = Experiment.objects.count() no_tracks = experiment.tracks.count() experiment = { "name": "new_name", "notes": "hi", "uniformRandom": True, "csvUpload": False, "tracks": [{"id": None, "weighting": None, "name": "A"}, {"id": None, "weighting": None, "name": "B"}, {"id": None, "weighting": None, "name": "C"}] } response = self.client.post( reverse("ab_testing_tool_submit_edit_experiment", args=(experiment_id,)), follow=True, content_type="application/json", data=json.dumps(experiment) ) self.assertOkay(response) self.assertEquals(num_experiments, Experiment.objects.count()) experiment = Experiment.objects.get(id=experiment_id) self.assertEquals(experiment.assignment_method, Experiment.WEIGHTED_PROBABILITY_RANDOM) self.assertEquals(experiment.tracks.count(), no_tracks) def test_submit_edit_started_experiment_changes_existing_tracks(self): """ Tests that submit_edit_experiment does change track objects for an experiment that has not yet been started """ experiment = self.create_test_experiment(name="old_name", tracks_finalized=False, assignment_method=Experiment.WEIGHTED_PROBABILITY_RANDOM) track1 = self.create_test_track(experiment=experiment, name="A") track2 = self.create_test_track(experiment=experiment, name="B") self.create_test_track_weight(experiment=experiment, track=track1) self.create_test_track_weight(experiment=experiment, track=track2) track_count = experiment.tracks.count() experiment_json = { "name": "new_name", "notes": "hi", "uniformRandom": False, "csvUpload": False, "tracks": [{"id": track1.id, "weighting": 30, "name": "C"}, {"id": track2.id, "weighting": 70, "name": "D"}] } response = self.client.post( reverse("ab_testing_tool_submit_edit_experiment", args=(experiment.id,)), follow=True, content_type="application/json", data=json.dumps(experiment_json) ) self.assertOkay(response) experiment = Experiment.objects.get(id=experiment.id) self.assertEquals(experiment.assignment_method, Experiment.WEIGHTED_PROBABILITY_RANDOM) self.assertEquals(experiment.tracks.count(), track_count) track1 = experiment.tracks.get(id=track1.id) track2 = experiment.tracks.get(id=track2.id) self.assertEquals(track1.name, "C") #Checks name has changed self.assertEquals(track2.name, "D") self.assertEquals(track1.weight.weighting, 30) #Checks weighting has changed self.assertEquals(track2.weight.weighting, 70) def test_delete_experiment(self): """ Tests that delete_experiment method properly deletes a experiment when authorized""" first_num_experiments = Experiment.objects.count() experiment = self.create_test_experiment() self.assertEqual(first_num_experiments + 1, Experiment.objects.count()) response = self.client.post(reverse("ab_testing_tool_delete_experiment", args=(experiment.id,)), follow=True) second_num_experiments = Experiment.objects.count() self.assertOkay(response) self.assertEqual(first_num_experiments, second_num_experiments) def test_delete_experiment_already_finalized(self): """ Tests that delete experiment doesn't work when experiments are finalized """ experiment = self.create_test_experiment() experiment.update(tracks_finalized=True) first_num_experiments = Experiment.objects.count() response = self.client.post(reverse("ab_testing_tool_delete_experiment", args=(experiment.id,)), follow=True) second_num_experiments = Experiment.objects.count() self.assertError(response, EXPERIMENT_TRACKS_ALREADY_FINALIZED) self.assertEqual(first_num_experiments, second_num_experiments) @patch(LIST_MODULES, return_value=APIReturn([{"id": 0}])) def test_delete_experiment_has_installed_intervention_point(self, _mock1): """ Tests that delete experiment doesn't work when there is an associated intervention point is installed """ experiment = self.create_test_experiment() first_num_experiments = Experiment.objects.count() ret_val = [True] with patch("ab_tool.canvas.CanvasModules.experiment_has_installed_intervention", return_value=ret_val): response = self.client.post(reverse("ab_testing_tool_delete_experiment", args=(experiment.id,)), follow=True) second_num_experiments = Experiment.objects.count() self.assertError(response, INTERVENTION_POINTS_ARE_INSTALLED) self.assertEqual(first_num_experiments, second_num_experiments) def test_delete_experiment_unauthorized(self): """ Tests that delete_experiment method raises error when unauthorized """ self.set_roles([]) experiment = self.create_test_experiment() first_num_experiments = Experiment.objects.count() response = self.client.post(reverse("ab_testing_tool_delete_experiment", args=(experiment.id,)), follow=True) second_num_experiments = Experiment.objects.count() self.assertTemplateUsed(response, "ab_tool/not_authorized.html") self.assertEqual(first_num_experiments, second_num_experiments) def test_delete_experiment_nonexistent(self): """ Tests that delete_experiment method raises successfully redirects despite non-existent Experiment. This is by design, as the Http404 is caught since multiple users may be editing the A/B dashboard on in the same course """ self.create_test_experiment() t_id = NONEXISTENT_EXPERIMENT_ID first_num_experiments = Experiment.objects.count() response = self.client.post(reverse("ab_testing_tool_delete_experiment", args=(t_id,)), follow=True) second_num_experiments = Experiment.objects.count() self.assertEqual(first_num_experiments, second_num_experiments) self.assertOkay(response) def test_delete_experiment_wrong_course(self): """ Tests that delete_experiment method raises error for existent Experiment but for wrong course """ experiment = self.create_test_experiment(course_id=TEST_OTHER_COURSE_ID) first_num_experiments = Experiment.objects.count() response = self.client.post(reverse("ab_testing_tool_delete_experiment", args=(experiment.id,)), follow=True) second_num_experiments = Experiment.objects.count() self.assertEqual(first_num_experiments, second_num_experiments) self.assertError(response, UNAUTHORIZED_ACCESS) def test_delete_experiment_deletes_intervention_point_urls(self): """ Tests that intervention_point_urls of a experiment are deleted when the experiment is """ experiment = self.create_test_experiment() track1 = self.create_test_track(name="track1", experiment=experiment) track2 = self.create_test_track(name="track2", experiment=experiment) intervention_point = self.create_test_intervention_point() InterventionPointUrl.objects.create(intervention_point=intervention_point, track=track1, url="example.com") InterventionPointUrl.objects.create(intervention_point=intervention_point, track=track2, url="example.com") first_num_intervention_point_urls = InterventionPointUrl.objects.count() response = self.client.post(reverse("ab_testing_tool_delete_experiment", args=(experiment.id,)), follow=True) second_num_intervention_point_urls = InterventionPointUrl.objects.count() self.assertOkay(response) self.assertEqual(first_num_intervention_point_urls - 2, second_num_intervention_point_urls) def test_finalize_tracks(self): """ Tests that the finalize tracks page sets the appropriate course """ experiment = Experiment.get_placeholder_course_experiment(TEST_COURSE_ID) self.assertFalse(experiment.tracks_finalized) self.create_test_track() response = self.client.post(reverse("ab_testing_tool_finalize_tracks", args=(experiment.id,)), follow=True) self.assertOkay(response) experiment = Experiment.get_placeholder_course_experiment(TEST_COURSE_ID) self.assertTrue(experiment.tracks_finalized) def test_finalize_tracks_missing_urls(self): """ Tests that finalize fails if there are missing urls """ experiment = Experiment.get_placeholder_course_experiment(TEST_COURSE_ID) self.assertFalse(experiment.tracks_finalized) track1 = self.create_test_track(name="track1", experiment=experiment) self.create_test_track(name="track2", experiment=experiment) intervention_point = self.create_test_intervention_point() InterventionPointUrl.objects.create(intervention_point=intervention_point, track=track1, url="example.com") response = self.client.post(reverse("ab_testing_tool_finalize_tracks", args=(experiment.id,)), follow=True) self.assertOkay(response) experiment = Experiment.get_placeholder_course_experiment(TEST_COURSE_ID) self.assertFalse(experiment.tracks_finalized) def test_finalize_tracks_no_tracks(self): """ Tests that finalize fails if there are no tracks for an experiment """ experiment = Experiment.get_placeholder_course_experiment(TEST_COURSE_ID) response = self.client.post(reverse("ab_testing_tool_finalize_tracks", args=(experiment.id,)), follow=True) self.assertError(response, NO_TRACKS_FOR_EXPERIMENT) def test_finalize_tracks_missing_track_weights(self): """ Tests that finalize fails if there are no track weights for an weighted probability experiment """ experiment = self.create_test_experiment(assignment_method=Experiment.WEIGHTED_PROBABILITY_RANDOM) self.create_test_track(name="track1", experiment=experiment) response = self.client.post(reverse("ab_testing_tool_finalize_tracks", args=(experiment.id,)), follow=True) self.assertOkay(response) self.assertFalse(experiment.tracks_finalized) def test_copy_experiment(self): """ Tests that copy_experiment creates a new experiment """ experiment = self.create_test_experiment() num_experiments = Experiment.objects.count() url = reverse("ab_testing_tool_copy_experiment", args=(experiment.id,)) response = self.client.post(url, follow=True) self.assertOkay(response) self.assertEqual(Experiment.objects.count(), num_experiments + 1) def test_copy_experiment_unauthorized(self): """ Tests that copy_experiment fails when unauthorized """ self.set_roles([]) experiment = self.create_test_experiment() url = reverse("ab_testing_tool_copy_experiment", args=(experiment.id,)) response = self.client.post(url, follow=True) self.assertTemplateUsed(response, "ab_tool/not_authorized.html") def test_copy_experiment_inavlid_id(self): """ Tests that copy_experiment fails with bad experiment_id """ url = reverse("ab_testing_tool_copy_experiment", args=(12345,)) response = self.client.post(url, follow=True) self.assertEquals(response.status_code, 404) def test_copy_experiment_wrong_course(self): """ Tests that copy_experiment fails if experiment is different coruse """ experiment = self.create_test_experiment(course_id=TEST_OTHER_COURSE_ID) url = reverse("ab_testing_tool_copy_experiment", args=(experiment.id,)) response = self.client.post(url, follow=True) self.assertError(response, UNAUTHORIZED_ACCESS) def test_delete_track(self): """ Tests that delete_track method properly deletes a track of an experiment when authorized""" experiment = self.create_test_experiment() track = self.create_test_track(experiment=experiment) self.assertEqual(experiment.tracks.count(), 1) response = self.client.post(reverse("ab_testing_tool_delete_track", args=(track.id,)), follow=True) self.assertEqual(experiment.tracks.count(), 0) self.assertOkay(response) def test_delete_nonexistent_track(self): """ Tests that delete_track method succeeds, by design, when deleting a nonexistent track""" experiment = self.create_test_experiment() self.assertEqual(experiment.tracks.count(), 0) response = self.client.post(reverse("ab_testing_tool_delete_track", args=(NONEXISTENT_TRACK_ID,)), follow=True) self.assertEqual(experiment.tracks.count(), 0) self.assertOkay(response)<|fim▁end|>
""" Tests that submit_edit_experiment does not change DB count but does change Experiment attribute""" experiment = self.create_test_experiment(name="old_name") experiment_id = experiment.id
<|file_name|>lib.rs<|end_file_name|><|fim▁begin|>#[macro_use] extern crate log; extern crate ilc_base; extern crate chrono; use std::io::{BufRead, Write}; use std::borrow::{Cow, ToOwned}; use std::iter::Iterator; use ilc_base::event::{Event, Time, Type}; use ilc_base::format::{rejoin, strip_one}; use ilc_base::{Context, Decode, Encode}; use log::LogLevel::Info; use chrono::*; #[derive(Copy, Clone)] pub struct Energymech; static TIME_FORMAT: &'static str = "%H:%M:%S"; pub struct Iter<'a> { context: &'a Context, input: &'a mut BufRead, buffer: Vec<u8>, } impl<'a> Iterator for Iter<'a> { type Item = ilc_base::Result<Event<'a>>; fn next(&mut self) -> Option<ilc_base::Result<Event<'a>>> { fn parse_time(context: &Context, time: &str) -> Time { let h = time[1..3].parse::<u32>().unwrap(); let m = time[4..6].parse::<u32>().unwrap(); let s = time[7..9].parse::<u32>().unwrap(); if let Some(date) = context.override_date { Time::Timestamp(context.timezone_in .from_local_date(&date) .and_time(NaiveTime::from_hms(h, m, s)) .single() .expect("Transformed log times can't be represented, due \ to timezone transitions") .timestamp()) } else { Time::Hms(h as u8, m as u8, s as u8) } } loop { self.buffer.clear(); match self.input.read_until(b'\n', &mut self.buffer) { Ok(0) | Err(_) => return None, Ok(_) => (), } let buffer = String::from_utf8_lossy(&self.buffer); let mut split_tokens: Vec<char> = Vec::new(); let tokens = buffer.split(|c: char| { if c.is_whitespace() { split_tokens.push(c); true } else { false } }) .collect::<Vec<_>>(); if log_enabled!(Info) { info!("Original: `{}`", buffer); info!("Parsing: {:?}", tokens); } // slice pattern matching is not stable as of Feb. 2016 and was replaced with // nested if-else chains in this module. let len = tokens.len(); // [21:53:49] * Foo emotes if len >= 4 && tokens[1] == "*" { return Some(Ok(Event { ty: Type::Action { from: tokens[2].to_owned().into(), content: rejoin(&tokens[3..], &split_tokens[3..]), }, time: parse_time(&self.context, tokens[0]), channel: self.context.channel.clone().map(Into::into), })); } if len >= 2 && tokens[1] == "***" { // [21:24:57] *** Foo is now known as Bar if len >= 8 && tokens[3] == "is" && tokens[4] == "now" && tokens[5] == "known" && tokens[6] == "as" { return Some(Ok(Event { ty: Type::Nick { old_nick: tokens[2].to_owned().into(), new_nick: tokens[7].to_owned().into(), }, time: parse_time(&self.context, tokens[0]), channel: self.context.channel.clone().map(Into::into), })); } // [23:21:17] *** Paster was kicked by fripp.mozilla.org (Channel flood triggered (limit is 5 lines in 3 secs)) if len >= 8 && tokens[3] == "was" && tokens[4] == "kicked" && tokens[5] == "by" { return Some(Ok(Event { ty: Type::Kick { kicked_nick: tokens[2].to_owned().into(), kicking_nick: Some(tokens[6].to_owned().into()), kick_message: Some(strip_one(&rejoin(&tokens[7..], &split_tokens[7..])) .into()), }, time: parse_time(&self.context, tokens[0]), channel: self.context.channel.clone().map(Into::into), })); } // [21:49:59] *** ChanServ sets mode: +v Foo if len >= 7 && tokens[3] == "sets" && tokens[4] == "mode:" { return Some(Ok(Event { ty: Type::Mode { nick: Some(tokens[2].to_owned().into()), mode: tokens[5].to_owned().into(), masks: rejoin(&tokens[6..], &split_tokens[6..]).to_owned().into(), }, time: parse_time(&self.context, tokens[0]), channel: self.context.channel.clone().map(Into::into), })); } // [21:49:59] *** Joins: Foo ([email protected]) if len >= 5 && tokens[2] == "Joins:" { return Some(Ok(Event { ty: Type::Join { nick: tokens[3].to_owned().into(), mask: Some(strip_one(tokens[4]).into()), }, time: parse_time(&self.context, tokens[0]), channel: self.context.channel.clone().map(Into::into), })); } // [03:52:11] *** Parts: Foo ([email protected]) (A reason? Nah...) if len >= 6 && tokens[2] == "Parts:" { return Some(Ok(Event { ty: Type::Part { nick: tokens[3].to_owned().into(), mask: Some(strip_one(tokens[4]).into()), reason: Some(strip_one(&rejoin(&tokens[5..], &split_tokens[5..])) .into()), }, time: parse_time(&self.context, tokens[0]), channel: self.context.channel.clone().map(Into::into), })); } // [03:48:33] *** Quits: Foo ([email protected]) (Ping timeout: 42 seconds) if len >= 6 && tokens[2] == "Quits:" { return Some(Ok(Event { ty: Type::Quit { nick: tokens[3].to_owned().into(), mask: Some(strip_one(tokens[4]).into()), reason: Some(strip_one(&rejoin(&tokens[5..], &split_tokens[5..])) .into()), }, time: parse_time(&self.context, tokens[0]), channel: self.context.channel.clone().map(Into::into), })); } // [09:44:56] *** Foo changes topic to 'Hi there, why are you reading this comment?' if len >= 7 && tokens[3] == "changes" && tokens[4] == "topic" && tokens[5] == "to" { return Some(Ok(Event { ty: Type::TopicChange { nick: Some(tokens[2].to_owned().into()), new_topic: strip_one(&rejoin(&tokens[6..], &split_tokens[6..])).into(), }, time: parse_time(&self.context, tokens[0]), channel: self.context.channel.clone().map(Into::into), })); } } // [03:36:01] <Foo> Just some moderately ugly code, nothing special to be found here. if len >= 3 && tokens[1].starts_with('<') && tokens[1].ends_with('>') { return Some(Ok(Event { ty: Type::Msg { from: strip_one(tokens[1]).into(), content: rejoin(&tokens[2..], &split_tokens[2..]),<|fim▁hole|> time: parse_time(&self.context, tokens[0]), channel: self.context.channel.clone().map(Into::into), })); } // [10:25:22] -playbot- true if len >= 3 && tokens[1].starts_with('-') && tokens[1].ends_with('-') { return Some(Ok(Event { ty: Type::Notice { from: strip_one(tokens[1]).into(), content: rejoin(&tokens[2..], &split_tokens[2..]), }, time: parse_time(&self.context, tokens[0]), channel: self.context.channel.clone().map(Into::into), })); } if option_env!("FUSE").is_some() { panic!("Shouldn't reach here, this is a bug!") } } } } impl Decode for Energymech { fn decode<'a>(&'a self, context: &'a Context, input: &'a mut BufRead) -> Box<Iterator<Item = ilc_base::Result<Event<'a>>> + 'a> { Box::new(Iter { context: context, input: input, buffer: Vec::new(), }) } } impl Encode for Energymech { fn encode<'a>(&'a self, context: &'a Context, mut output: &'a mut Write, event: &'a Event) -> ilc_base::Result<()> { match event { &Event { ty: Type::Msg { ref from, ref content }, ref time, .. } => { try!(writeln!(&mut output, "[{}] <{}> {}", time.with_format(&context.timezone_out, TIME_FORMAT), from, content)) } &Event { ty: Type::Notice { ref from, ref content }, ref time, .. } => { try!(writeln!(&mut output, "[{}] -{}- {}", time.with_format(&context.timezone_out, TIME_FORMAT), from, content)) } &Event { ty: Type::Action { ref from, ref content }, ref time, .. } => { try!(writeln!(&mut output, "[{}] * {} {}", time.with_format(&context.timezone_out, TIME_FORMAT), from, content)) } &Event { ty: Type::Nick { ref old_nick, ref new_nick }, ref time, .. } => { try!(writeln!(&mut output, "[{}] *** {} is now known as {}", time.with_format(&context.timezone_out, TIME_FORMAT), old_nick, new_nick)) } &Event { ty: Type::Mode { ref nick, ref mode, ref masks }, ref time, .. } => { try!(writeln!(&mut output, "[{}] *** {} sets mode: {} {}", time.with_format(&context.timezone_out, TIME_FORMAT), nick.as_ref().expect("Nickname not present, but required."), mode, masks)) } &Event { ty: Type::Join { ref nick, ref mask }, ref time, .. } => { try!(writeln!(&mut output, "[{}] *** Joins: {} ({})", time.with_format(&context.timezone_out, TIME_FORMAT), nick, mask.as_ref().expect("Mask not present, but required."))) } &Event { ty: Type::Part { ref nick, ref mask, ref reason }, ref time, .. } => { try!(writeln!(&mut output, "[{}] *** Parts: {} ({}) ({})", time.with_format(&context.timezone_out, TIME_FORMAT), nick, mask.as_ref().expect("Mask not present, but required."), reason.as_ref().unwrap_or(&Cow::Borrowed("")))) } &Event { ty: Type::Quit { ref nick, ref mask, ref reason }, ref time, .. } => { try!(writeln!(&mut output, "[{}] *** Quits: {} ({}) ({})", time.with_format(&context.timezone_out, TIME_FORMAT), nick, mask.as_ref().expect("Mask not present, but required."), reason.as_ref().expect("Reason not present, but required."))) } &Event { ty: Type::TopicChange { ref nick, ref new_topic }, ref time, .. } => { try!(writeln!(&mut output, "[{}] *** {} changes topic to '{}'", time.with_format(&context.timezone_out, TIME_FORMAT), nick.as_ref().expect("Nick not present, but required."), new_topic)) } _ => { if option_env!("FUSE").is_some() { panic!("Shouldn't reach here, this is a bug!") } () } } Ok(()) } }<|fim▁end|>
},
<|file_name|>test_FieldCollation.py<|end_file_name|><|fim▁begin|># (C) British Crown Copyright 2014 - 2017, Met Office # # This file is part of Iris. # # Iris is free software: you can redistribute it and/or modify it under # the terms of the GNU Lesser General Public License as published by the # Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Iris is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with Iris. If not, see <http://www.gnu.org/licenses/>. """ Unit tests for the class :class:`iris.fileformats.um._fast_load_structured_fields.FieldCollation`. """ from __future__ import (absolute_import, division, print_function) from six.moves import (filter, input, map, range, zip) # noqa # import iris tests first so that some things can be initialised # before importing anything else. import iris.tests as tests from iris._lazy_data import as_lazy_data from netcdftime import datetime import numpy as np from iris.fileformats.um._fast_load_structured_fields import FieldCollation import iris.fileformats.pp class Test___init__(tests.IrisTest): def test_no_fields(self): with self.assertRaises(AssertionError): FieldCollation([]) class Test_fields(tests.IrisTest): def test_preserve_members(self): fields = ('foo', 'bar', 'wibble') collation = FieldCollation(fields) self.assertEqual(collation.fields, fields) def _make_field(lbyr=None, lbyrd=None, lbft=None, blev=None, bhlev=None, data=None): header = [0] * 64 if lbyr is not None: header[0] = lbyr header[1] = 1 header[2] = 1 if lbyrd is not None: header[6] = lbyrd header[7] = 1 header[8] = 1 if lbft is not None: header[13] = lbft if blev is not None: header[51] = blev if bhlev is not None: header[53] = bhlev field = iris.fileformats.pp.PPField3(header) if data is not None: _data = _make_data(data) field.data = _data return field def _make_data(fill_value): shape = (10, 10) return as_lazy_data(np.ones(shape)*fill_value) class Test_data(tests.IrisTest): # Test order of the data attribute when fastest-varying element is changed. def test_t1_varies_faster(self): collation = FieldCollation( [_make_field(lbyr=2013, lbyrd=2000, data=0), _make_field(lbyr=2014, lbyrd=2000, data=1), _make_field(lbyr=2015, lbyrd=2000, data=2), _make_field(lbyr=2013, lbyrd=2001, data=3), _make_field(lbyr=2014, lbyrd=2001, data=4), _make_field(lbyr=2015, lbyrd=2001, data=5)]) result = collation.data[:, :, 0, 0] expected = [[0, 1, 2], [3, 4, 5]] self.assertArrayEqual(result, expected) def test_t2_varies_faster(self): collation = FieldCollation( [_make_field(lbyr=2013, lbyrd=2000, data=0), _make_field(lbyr=2013, lbyrd=2001, data=1), _make_field(lbyr=2013, lbyrd=2002, data=2), _make_field(lbyr=2014, lbyrd=2000, data=3), _make_field(lbyr=2014, lbyrd=2001, data=4), _make_field(lbyr=2014, lbyrd=2002, data=5)]) result = collation.data[:, :, 0, 0] expected = [[0, 1, 2], [3, 4, 5]] self.assertArrayEqual(result, expected) class Test_element_arrays_and_dims(tests.IrisTest): def test_single_field(self): field = _make_field(2013) collation = FieldCollation([field]) self.assertEqual(collation.element_arrays_and_dims, {}) def test_t1(self): collation = FieldCollation([_make_field(lbyr=2013), _make_field(lbyr=2014)]) result = collation.element_arrays_and_dims self.assertEqual(list(result.keys()), ['t1']) values, dims = result['t1'] self.assertArrayEqual(values, [datetime(2013, 1, 1), datetime(2014, 1, 1)]) self.assertEqual(dims, (0,)) def test_t1_and_t2(self): collation = FieldCollation([_make_field(lbyr=2013, lbyrd=2000), _make_field(lbyr=2014, lbyrd=2001), _make_field(lbyr=2015, lbyrd=2002)]) result = collation.element_arrays_and_dims self.assertEqual(set(result.keys()), set(['t1', 't2'])) values, dims = result['t1'] self.assertArrayEqual(values, [datetime(2013, 1, 1), datetime(2014, 1, 1), datetime(2015, 1, 1)]) self.assertEqual(dims, (0,)) values, dims = result['t2'] self.assertArrayEqual(values, [datetime(2000, 1, 1), datetime(2001, 1, 1), datetime(2002, 1, 1)]) self.assertEqual(dims, (0,)) def test_t1_and_t2_and_lbft(self): collation = FieldCollation([_make_field(lbyr=1, lbyrd=15, lbft=6), _make_field(lbyr=1, lbyrd=16, lbft=9), _make_field(lbyr=11, lbyrd=25, lbft=6), _make_field(lbyr=11, lbyrd=26, lbft=9)]) result = collation.element_arrays_and_dims self.assertEqual(set(result.keys()), set(['t1', 't2', 'lbft'])) values, dims = result['t1'] self.assertArrayEqual(values, [datetime(1, 1, 1), datetime(11, 1, 1)]) self.assertEqual(dims, (0,)) values, dims = result['t2'] self.assertArrayEqual(values, [[datetime(15, 1, 1), datetime(16, 1, 1)], [datetime(25, 1, 1), datetime(26, 1, 1)]]) self.assertEqual(dims, (0, 1)) values, dims = result['lbft'] self.assertArrayEqual(values, [6, 9]) self.assertEqual(dims, (1,)) def test_blev(self): collation = FieldCollation([_make_field(blev=1), _make_field(blev=2)]) result = collation.element_arrays_and_dims keys = set(['blev', 'brsvd1', 'brsvd2', 'brlev', 'bhrlev', 'lblev', 'bhlev']) self.assertEqual(set(result.keys()), keys) values, dims = result['blev'] self.assertArrayEqual(values, [1, 2]) self.assertEqual(dims, (0,)) def test_bhlev(self): collation = FieldCollation([_make_field(blev=0, bhlev=1), _make_field(blev=1, bhlev=2)]) result = collation.element_arrays_and_dims keys = set(['blev', 'brsvd1', 'brsvd2', 'brlev', 'bhrlev', 'lblev', 'bhlev']) self.assertEqual(set(result.keys()), keys) values, dims = result['bhlev'] self.assertArrayEqual(values, [1, 2]) self.assertEqual(dims, (0,)) class Test__time_comparable_int(tests.IrisTest): def test(self):<|fim▁hole|> test_date_tuples = [ # Increment each component in turn to check that all are handled. (2004, 1, 1, 0, 0, 0), (2004, 1, 1, 0, 0, 1), (2004, 1, 1, 0, 1, 0), (2004, 1, 1, 1, 0, 0), (2004, 1, 2, 0, 0, 0), (2004, 2, 1, 0, 0, 0), # Go across 2004-02-29 leap-day, and on to "Feb 31 .. Mar 1". (2004, 2, 27, 0, 0, 0), (2004, 2, 28, 0, 0, 0), (2004, 2, 29, 0, 0, 0), (2004, 2, 30, 0, 0, 0), (2004, 2, 31, 0, 0, 0), (2004, 3, 1, 0, 0, 0), (2005, 1, 1, 0, 0, 0)] collation = FieldCollation(['foo', 'bar']) test_date_ints = [collation._time_comparable_int(*test_tuple) for test_tuple in test_date_tuples] # Check all values are distinct. self.assertEqual(len(test_date_ints), len(set(test_date_ints), )) # Check all values are in order. self.assertEqual(test_date_ints, sorted(test_date_ints)) if __name__ == "__main__": tests.main()<|fim▁end|>
# Define a list of date-time tuples, which should remain both all # distinct and in ascending order when converted...
<|file_name|>buck_project.py<|end_file_name|><|fim▁begin|># Copyright 2018-present Facebook, Inc. # # Licensed 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. from __future__ import print_function import errno import hashlib import os import shutil import sys import tempfile import textwrap import file_locks from tracing import Tracing def get_file_contents_if_exists(path, default=None): with Tracing("BuckProject.get_file_contents_if_it_exists", args={"path": path}): if not os.path.exists(path): return default with open(path) as f: contents = f.read().strip() return default if not contents else contents def write_contents_to_file(path, contents): with Tracing("BuckProject.write_contents_to_file", args={"path": path}): with open(path, "w") as output_file: output_file.write(str(contents)) def makedirs(path): try: os.makedirs(path) except OSError as e: # Potentially the case that multiple processes are running in parallel # (e.g. a series of linters running buck query without buckd), so we # should just swallow the error. # This is mostly equivalent to os.makedirs(path, exist_ok=True) in # Python 3. if e.errno != errno.EEXIST and os.path.isdir(path): raise class BuckProject: def __init__(self, root): self.root = root self._buck_out = os.path.join(root, "buck-out") buck_out_tmp = os.path.join(self._buck_out, "tmp") makedirs(buck_out_tmp) self._buck_out_log = os.path.join(self._buck_out, "log") makedirs(self._buck_out_log) self.tmp_dir = tempfile.mkdtemp(prefix="buck_run.", dir=buck_out_tmp) # Only created if buckd is used. self.buckd_tmp_dir = None self.buckd_dir = os.path.join(root, ".buckd") self.buckd_version_file = os.path.join(self.buckd_dir, "buckd.version") self.buckd_pid_file = os.path.join(self.buckd_dir, "pid") self.buckd_stdout = os.path.join(self.buckd_dir, "stdout") self.buckd_stderr = os.path.join(self.buckd_dir, "stderr") buck_javaargs_path = os.path.join(self.root, ".buckjavaargs") self.buck_javaargs = get_file_contents_if_exists(buck_javaargs_path) buck_javaargs_path_local = os.path.join(self.root, ".buckjavaargs.local") self.buck_javaargs_local = get_file_contents_if_exists(buck_javaargs_path_local) def get_root_hash(self): return hashlib.sha256(self.root.encode("utf-8")).hexdigest() def get_buckd_transport_file_path(self): if os.name == "nt": return u"\\\\.\\pipe\\buckd_{0}".format(self.get_root_hash()) else: return os.path.join(self.buckd_dir, "sock") def get_buckd_transport_address(self): if os.name == "nt": return "local:buckd_{0}".format(self.get_root_hash()) else: return "local:.buckd/sock" def get_running_buckd_version(self): return get_file_contents_if_exists(self.buckd_version_file) def get_running_buckd_pid(self): try: return int(get_file_contents_if_exists(self.buckd_pid_file)) except ValueError: return None except TypeError: return None def get_buckd_stdout(self): return self.buckd_stdout def get_buckd_stderr(self): return self.buckd_stderr def get_buck_out_log_dir(self): return self._buck_out_log def clean_up_buckd(self): with Tracing("BuckProject.clean_up_buckd"): if os.path.exists(self.buckd_dir): file_locks.rmtree_if_can_lock(self.buckd_dir) def create_buckd_tmp_dir(self): if self.buckd_tmp_dir is not None: return self.buckd_tmp_dir tmp_dir_parent = os.path.join(self.buckd_dir, "tmp") makedirs(tmp_dir_parent) self.buckd_tmp_dir = tempfile.mkdtemp(prefix="buck_run.", dir=tmp_dir_parent) return self.buckd_tmp_dir <|fim▁hole|> write_contents_to_file(self.buckd_pid_file, str(pid)) @staticmethod def from_current_dir(): with Tracing("BuckProject.from_current_dir"): current_dir = os.getcwd() if "--version" in sys.argv or "-V" in sys.argv: return BuckProject(current_dir) at_root_dir = False while not at_root_dir: if os.path.exists(os.path.join(current_dir, ".buckconfig")): return BuckProject(current_dir) parent_dir = os.path.dirname(current_dir) at_root_dir = current_dir == parent_dir current_dir = parent_dir raise NoBuckConfigFoundException() def __enter__(self): return self def __exit__(self, exc_type, exc_val, exc_tb): with Tracing("BuckProject.__exit__"): if os.path.exists(self.tmp_dir): try: shutil.rmtree(self.tmp_dir) except OSError as e: if e.errno != errno.ENOENT: raise class NoBuckConfigFoundException(Exception): def __init__(self): no_buckconfig_message_path = ".no_buckconfig_message" default_message = textwrap.dedent( """\ This does not appear to be the root of a Buck project. Please 'cd' to the root of your project before running buck. If this really is the root of your project, run 'touch .buckconfig' and then re-run your buck command.""" ) message = get_file_contents_if_exists( no_buckconfig_message_path, default_message ) Exception.__init__(self, message)<|fim▁end|>
def save_buckd_version(self, version): write_contents_to_file(self.buckd_version_file, version) def save_buckd_pid(self, pid):
<|file_name|>Killable.js<|end_file_name|><|fim▁begin|>'use strict'; var Killable = artifacts.require('../contracts/lifecycle/Killable.sol'); require('./helpers/transactionMined.js');<|fim▁hole|> contract('Killable', function(accounts) { it('should send balance to owner after death', async function() { let killable = await Killable.new({from: accounts[0], value: web3.toWei('10','ether')}); let owner = await killable.owner(); let initBalance = web3.eth.getBalance(owner); await killable.kill({from: owner}); let newBalance = web3.eth.getBalance(owner); assert.isTrue(newBalance > initBalance); }); });<|fim▁end|>
<|file_name|>addr.rs<|end_file_name|><|fim▁begin|>// Copyright 2015 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // option. This file may not be copied, modified, or distributed // except according to those terms. use prelude::v1::*; use fmt; use hash; use io; use net::{lookup_host, ntoh, hton, IpAddr, Ipv4Addr, Ipv6Addr}; use option; use sys_common::{FromInner, AsInner/*, IntoInner*/}; use vec; use iter; use slice; /// Representation of a socket address for networking applications. /// /// A socket address can either represent the IPv4 or IPv6 protocol and is /// paired with at least a port number as well. Each protocol may have more /// specific information about the address available to it as well. #[derive(Copy, Clone, PartialEq, Eq, Hash, Debug)] pub enum SocketAddr { /// An IPv4 socket address which is a (ip, port) combination. V4(SocketAddrV4), /// An IPv6 socket address V6(SocketAddrV6), } /// An IPv4 socket address which is a (ip, port) combination. #[derive(Copy)] pub struct SocketAddrV4 { inner: (u32, u16) } /// An IPv6 socket address. #[derive(Copy)] pub struct SocketAddrV6 { inner: ([u8; 16], u16, u32, u32) } impl SocketAddr { /// Creates a new socket address from the (ip, port) pair. pub fn new(ip: IpAddr, port: u16) -> SocketAddr { match ip { IpAddr::V4(a) => SocketAddr::V4(SocketAddrV4::new(a, port)), IpAddr::V6(a) => SocketAddr::V6(SocketAddrV6::new(a, port, 0, 0)), } } /// Returns the IP address associated with this socket address. pub fn ip(&self) -> IpAddr { match *self { SocketAddr::V4(ref a) => IpAddr::V4(*a.ip()), SocketAddr::V6(ref a) => IpAddr::V6(*a.ip()), } } /// Change the IP address associated with this socket address. pub fn set_ip(&mut self, new_ip: IpAddr) { // `match (*self, new_ip)` would have us mutate a copy of self only to throw it away. match (self, new_ip) { (&mut SocketAddr::V4(ref mut a), IpAddr::V4(new_ip)) => a.set_ip(new_ip), (&mut SocketAddr::V6(ref mut a), IpAddr::V6(new_ip)) => a.set_ip(new_ip), (self_, new_ip) => *self_ = Self::new(new_ip, self_.port()), } } /// Returns the port number associated with this socket address. pub fn port(&self) -> u16 { match *self { SocketAddr::V4(ref a) => a.port(), SocketAddr::V6(ref a) => a.port(), } } /// Change the port number associated with this socket address. pub fn set_port(&mut self, new_port: u16) { match *self { SocketAddr::V4(ref mut a) => a.set_port(new_port), SocketAddr::V6(ref mut a) => a.set_port(new_port), } } } impl SocketAddrV4 { /// Creates a new socket address from the (ip, port) pair. pub fn new(ip: Ipv4Addr, port: u16) -> SocketAddrV4 { SocketAddrV4 { inner: (*ip.as_inner(), hton(port)), } } /// Returns the IP address associated with this socket address. pub fn ip(&self) -> &Ipv4Addr { unsafe { &*(&self.inner.0 as *const u32 as *const Ipv4Addr) } } /// Change the IP address associated with this socket address. pub fn set_ip(&mut self, new_ip: Ipv4Addr) { self.inner.0 = *new_ip.as_inner() } /// Returns the port number associated with this socket address. pub fn port(&self) -> u16 { ntoh(self.inner.1) } /// Change the port number associated with this socket address. pub fn set_port(&mut self, new_port: u16) { self.inner.1 = hton(new_port) } } impl SocketAddrV6 { /// Creates a new socket address from the ip/port/flowinfo/scope_id /// components. pub fn new(ip: Ipv6Addr, port: u16, flowinfo: u32, scope_id: u32) -> SocketAddrV6 { SocketAddrV6 { inner: (*ip.as_inner(), hton(port), flowinfo, scope_id), } } /// Returns the IP address associated with this socket address. pub fn ip(&self) -> &Ipv6Addr { unsafe { &*(&self.inner.0 as *const [u8; 16] as *const Ipv6Addr) } } /// Change the IP address associated with this socket address. pub fn set_ip(&mut self, new_ip: Ipv6Addr) { self.inner.0 = *new_ip.as_inner() } /// Returns the port number associated with this socket address. pub fn port(&self) -> u16 { ntoh(self.inner.1) } /// Change the port number associated with this socket address. pub fn set_port(&mut self, new_port: u16) { self.inner.1 = hton(new_port) } /// Returns the flow information associated with this address, /// corresponding to the `sin6_flowinfo` field in C. pub fn flowinfo(&self) -> u32 { self.inner.2 } /// Change the flow information associated with this socket address. pub fn set_flowinfo(&mut self, new_flowinfo: u32) { self.inner.2 = new_flowinfo; } /// Returns the scope ID associated with this address, /// corresponding to the `sin6_scope_id` field in C. pub fn scope_id(&self) -> u32 { self.inner.3 } /// Change the scope ID associated with this socket address. pub fn set_scope_id(&mut self, new_scope_id: u32) { self.inner.3 = new_scope_id; } } impl FromInner<(u32, u16)> for SocketAddrV4 { fn from_inner(addr: (u32, u16)) -> SocketAddrV4 { SocketAddrV4 { inner: addr } } } impl FromInner<([u8; 16], u16, u32, u32)> for SocketAddrV6 { fn from_inner(addr: ([u8; 16], u16, u32, u32)) -> SocketAddrV6 { SocketAddrV6 { inner: addr } } } /* impl<'a> IntoInner<(*const c::sockaddr, c::socklen_t)> for &'a SocketAddr { fn into_inner(self) -> (*const c::sockaddr, c::socklen_t) { match *self { SocketAddr::V4(ref a) => { (a as *const _ as *const _, mem::size_of_val(a) as c::socklen_t) } SocketAddr::V6(ref a) => { (a as *const _ as *const _, mem::size_of_val(a) as c::socklen_t) } } } } */ impl fmt::Display for SocketAddr { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { match *self { SocketAddr::V4(ref a) => a.fmt(f), SocketAddr::V6(ref a) => a.fmt(f), } } } impl fmt::Display for SocketAddrV4 { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}:{}", self.ip(), self.port()) } } impl fmt::Debug for SocketAddrV4 { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { fmt::Display::fmt(self, fmt) } } impl fmt::Display for SocketAddrV6 { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "[{}]:{}", self.ip(), self.port()) } } impl fmt::Debug for SocketAddrV6 { fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result { fmt::Display::fmt(self, fmt) } } impl Clone for SocketAddrV4 { fn clone(&self) -> SocketAddrV4 { *self } } impl Clone for SocketAddrV6 { fn clone(&self) -> SocketAddrV6 { *self } } impl PartialEq for SocketAddrV4 { fn eq(&self, other: &SocketAddrV4) -> bool { self.inner.1 == other.inner.1 && self.inner.0 == other.inner.0 }<|fim▁hole|> self.inner.1 == other.inner.1 && self.inner.0 == other.inner.0 && self.inner.2 == other.inner.2 && self.inner.3 == other.inner.3 } } impl Eq for SocketAddrV4 {} impl Eq for SocketAddrV6 {} impl hash::Hash for SocketAddrV4 { fn hash<H: hash::Hasher>(&self, s: &mut H) { (self.inner.1, self.inner.0).hash(s) } } impl hash::Hash for SocketAddrV6 { fn hash<H: hash::Hasher>(&self, s: &mut H) { (self.inner.1, &self.inner.0, self.inner.2, self.inner.3).hash(s) } } /// A trait for objects which can be converted or resolved to one or more /// `SocketAddr` values. /// /// This trait is used for generic address resolution when constructing network /// objects. By default it is implemented for the following types: /// /// * `SocketAddr`, `SocketAddrV4`, `SocketAddrV6` - `to_socket_addrs` is /// identity function. /// /// * `(IpvNAddr, u16)` - `to_socket_addrs` constructs `SocketAddr` trivially. /// /// * `(&str, u16)` - the string should be either a string representation of an /// IP address expected by `FromStr` implementation for `IpvNAddr` or a host /// name. /// /// * `&str` - the string should be either a string representation of a /// `SocketAddr` as expected by its `FromStr` implementation or a string like /// `<host_name>:<port>` pair where `<port>` is a `u16` value. /// /// This trait allows constructing network objects like `TcpStream` or /// `UdpSocket` easily with values of various types for the bind/connection /// address. It is needed because sometimes one type is more appropriate than /// the other: for simple uses a string like `"localhost:12345"` is much nicer /// than manual construction of the corresponding `SocketAddr`, but sometimes /// `SocketAddr` value is *the* main source of the address, and converting it to /// some other type (e.g. a string) just for it to be converted back to /// `SocketAddr` in constructor methods is pointless. /// /// Some examples: /// /// ```no_run /// use std::net::{SocketAddrV4, TcpStream, UdpSocket, TcpListener, Ipv4Addr}; /// /// fn main() { /// let ip = Ipv4Addr::new(127, 0, 0, 1); /// let port = 12345; /// /// // The following lines are equivalent modulo possible "localhost" name /// // resolution differences /// let tcp_s = TcpStream::connect(SocketAddrV4::new(ip, port)); /// let tcp_s = TcpStream::connect((ip, port)); /// let tcp_s = TcpStream::connect(("127.0.0.1", port)); /// let tcp_s = TcpStream::connect(("localhost", port)); /// let tcp_s = TcpStream::connect("127.0.0.1:12345"); /// let tcp_s = TcpStream::connect("localhost:12345"); /// /// // TcpListener::bind(), UdpSocket::bind() and UdpSocket::send_to() /// // behave similarly /// let tcp_l = TcpListener::bind("localhost:12345"); /// /// let mut udp_s = UdpSocket::bind(("127.0.0.1", port)).unwrap(); /// udp_s.send_to(&[7], (ip, 23451)).unwrap(); /// } /// ``` pub trait ToSocketAddrs { /// Returned iterator over socket addresses which this type may correspond /// to. type Iter: Iterator<Item=SocketAddr>; /// Converts this object to an iterator of resolved `SocketAddr`s. /// /// The returned iterator may not actually yield any values depending on the /// outcome of any resolution performed. /// /// Note that this function may block the current thread while resolution is /// performed. /// /// # Errors /// /// Any errors encountered during resolution will be returned as an `Err`. fn to_socket_addrs(&self) -> io::Result<Self::Iter>; } impl ToSocketAddrs for SocketAddr { type Iter = option::IntoIter<SocketAddr>; fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> { Ok(Some(*self).into_iter()) } } impl ToSocketAddrs for SocketAddrV4 { type Iter = option::IntoIter<SocketAddr>; fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> { SocketAddr::V4(*self).to_socket_addrs() } } impl ToSocketAddrs for SocketAddrV6 { type Iter = option::IntoIter<SocketAddr>; fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> { SocketAddr::V6(*self).to_socket_addrs() } } impl ToSocketAddrs for (IpAddr, u16) { type Iter = option::IntoIter<SocketAddr>; fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> { let (ip, port) = *self; match ip { IpAddr::V4(ref a) => (*a, port).to_socket_addrs(), IpAddr::V6(ref a) => (*a, port).to_socket_addrs(), } } } impl ToSocketAddrs for (Ipv4Addr, u16) { type Iter = option::IntoIter<SocketAddr>; fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> { let (ip, port) = *self; SocketAddrV4::new(ip, port).to_socket_addrs() } } impl ToSocketAddrs for (Ipv6Addr, u16) { type Iter = option::IntoIter<SocketAddr>; fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> { let (ip, port) = *self; SocketAddrV6::new(ip, port, 0, 0).to_socket_addrs() } } fn resolve_socket_addr(s: &str, p: u16) -> io::Result<vec::IntoIter<SocketAddr>> { let ips = lookup_host(s)?; let v: Vec<_> = ips.map(|a| { a.map(|mut a| { a.set_port(p); a }) }).collect()?; Ok(v.into_iter()) } impl<'a> ToSocketAddrs for (&'a str, u16) { type Iter = vec::IntoIter<SocketAddr>; fn to_socket_addrs(&self) -> io::Result<vec::IntoIter<SocketAddr>> { let (host, port) = *self; // try to parse the host as a regular IP address first if let Ok(addr) = host.parse::<Ipv4Addr>() { let addr = SocketAddrV4::new(addr, port); return Ok(vec![SocketAddr::V4(addr)].into_iter()) } if let Ok(addr) = host.parse::<Ipv6Addr>() { let addr = SocketAddrV6::new(addr, port, 0, 0); return Ok(vec![SocketAddr::V6(addr)].into_iter()) } resolve_socket_addr(host, port) } } // accepts strings like 'localhost:12345' impl ToSocketAddrs for str { type Iter = vec::IntoIter<SocketAddr>; fn to_socket_addrs(&self) -> io::Result<vec::IntoIter<SocketAddr>> { // try to parse as a regular SocketAddr first if let Some(addr) = self.parse().ok() { return Ok(vec![addr].into_iter()); } macro_rules! try_opt { ($e:expr, $msg:expr) => ( match $e { Some(r) => r, None => return Err(io::Error::new(io::ErrorKind::InvalidInput, $msg)), } ) } // split the string by ':' and convert the second part to u16 let mut parts_iter = self.rsplitn(2, ':'); let port_str = try_opt!(parts_iter.next(), "invalid socket address"); let host = try_opt!(parts_iter.next(), "invalid socket address"); let port: u16 = try_opt!(port_str.parse().ok(), "invalid port value"); resolve_socket_addr(host, port) } } impl<'a> ToSocketAddrs for &'a [SocketAddr] { type Iter = iter::Cloned<slice::Iter<'a, SocketAddr>>; fn to_socket_addrs(&self) -> io::Result<Self::Iter> { Ok(self.iter().cloned()) } } impl<'a, T: ToSocketAddrs + ?Sized> ToSocketAddrs for &'a T { type Iter = T::Iter; fn to_socket_addrs(&self) -> io::Result<T::Iter> { (**self).to_socket_addrs() } } #[cfg(test)] mod tests { use prelude::v1::*; use net::*; use net::test::{tsa, sa6, sa4}; #[test] fn to_socket_addr_ipaddr_u16() { let a = Ipv4Addr::new(77, 88, 21, 11); let p = 12345; let e = SocketAddr::V4(SocketAddrV4::new(a, p)); assert_eq!(Ok(vec![e]), tsa((a, p))); } #[test] fn to_socket_addr_str_u16() { let a = sa4(Ipv4Addr::new(77, 88, 21, 11), 24352); assert_eq!(Ok(vec![a]), tsa(("77.88.21.11", 24352))); let a = sa6(Ipv6Addr::new(0x2a02, 0x6b8, 0, 1, 0, 0, 0, 1), 53); assert_eq!(Ok(vec![a]), tsa(("2a02:6b8:0:1::1", 53))); let a = sa4(Ipv4Addr::new(127, 0, 0, 1), 23924); assert!(tsa(("localhost", 23924)).unwrap().contains(&a)); } #[test] fn to_socket_addr_str() { let a = sa4(Ipv4Addr::new(77, 88, 21, 11), 24352); assert_eq!(Ok(vec![a]), tsa("77.88.21.11:24352")); let a = sa6(Ipv6Addr::new(0x2a02, 0x6b8, 0, 1, 0, 0, 0, 1), 53); assert_eq!(Ok(vec![a]), tsa("[2a02:6b8:0:1::1]:53")); let a = sa4(Ipv4Addr::new(127, 0, 0, 1), 23924); assert!(tsa("localhost:23924").unwrap().contains(&a)); } // FIXME: figure out why this fails on openbsd and bitrig and fix it #[test] #[cfg(not(any(windows, target_os = "openbsd", target_os = "bitrig")))] fn to_socket_addr_str_bad() { assert!(tsa("1200::AB00:1234::2552:7777:1313:34300").is_err()); } #[test] fn set_ip() { fn ip4(low: u8) -> Ipv4Addr { Ipv4Addr::new(77, 88, 21, low) } fn ip6(low: u16) -> Ipv6Addr { Ipv6Addr::new(0x2a02, 0x6b8, 0, 1, 0, 0, 0, low) } let mut v4 = SocketAddrV4::new(ip4(11), 80); assert_eq!(v4.ip(), &ip4(11)); v4.set_ip(ip4(12)); assert_eq!(v4.ip(), &ip4(12)); let mut addr = SocketAddr::V4(v4); assert_eq!(addr.ip(), IpAddr::V4(ip4(12))); addr.set_ip(IpAddr::V4(ip4(13))); assert_eq!(addr.ip(), IpAddr::V4(ip4(13))); addr.set_ip(IpAddr::V6(ip6(14))); assert_eq!(addr.ip(), IpAddr::V6(ip6(14))); let mut v6 = SocketAddrV6::new(ip6(1), 80, 0, 0); assert_eq!(v6.ip(), &ip6(1)); v6.set_ip(ip6(2)); assert_eq!(v6.ip(), &ip6(2)); let mut addr = SocketAddr::V6(v6); assert_eq!(addr.ip(), IpAddr::V6(ip6(2))); addr.set_ip(IpAddr::V6(ip6(3))); assert_eq!(addr.ip(), IpAddr::V6(ip6(3))); addr.set_ip(IpAddr::V4(ip4(4))); assert_eq!(addr.ip(), IpAddr::V4(ip4(4))); } #[test] fn set_port() { let mut v4 = SocketAddrV4::new(Ipv4Addr::new(77, 88, 21, 11), 80); assert_eq!(v4.port(), 80); v4.set_port(443); assert_eq!(v4.port(), 443); let mut addr = SocketAddr::V4(v4); assert_eq!(addr.port(), 443); addr.set_port(8080); assert_eq!(addr.port(), 8080); let mut v6 = SocketAddrV6::new(Ipv6Addr::new(0x2a02, 0x6b8, 0, 1, 0, 0, 0, 1), 80, 0, 0); assert_eq!(v6.port(), 80); v6.set_port(443); assert_eq!(v6.port(), 443); let mut addr = SocketAddr::V6(v6); assert_eq!(addr.port(), 443); addr.set_port(8080); assert_eq!(addr.port(), 8080); } #[test] fn set_flowinfo() { let mut v6 = SocketAddrV6::new(Ipv6Addr::new(0x2a02, 0x6b8, 0, 1, 0, 0, 0, 1), 80, 10, 0); assert_eq!(v6.flowinfo(), 10); v6.set_flowinfo(20); assert_eq!(v6.flowinfo(), 20); } #[test] fn set_scope_id() { let mut v6 = SocketAddrV6::new(Ipv6Addr::new(0x2a02, 0x6b8, 0, 1, 0, 0, 0, 1), 80, 0, 10); assert_eq!(v6.scope_id(), 10); v6.set_scope_id(20); assert_eq!(v6.scope_id(), 20); } }<|fim▁end|>
} impl PartialEq for SocketAddrV6 { fn eq(&self, other: &SocketAddrV6) -> bool {
<|file_name|>detail.controller.js<|end_file_name|><|fim▁begin|>(function() { angular.module('starter.controllers').controller('DetailController', DetailController); DetailController.$inject = ['CarService', '$stateParams']; function DetailController (CarService, $stateParams) { var vm = this; CarService.getCar($stateParams.id).$promise.then(function(data) { vm.car = data; CarService.setCurrentCar(data); }<|fim▁hole|><|fim▁end|>
); } })();
<|file_name|>hops.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python # # Wrapper script for Java Conda packages that ensures that the java runtime # is invoked with the right options. Adapted from the bash script (http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-stored-in/246128#246128). # # # Program Parameters # import os import sys import subprocess from os import access, getenv, X_OK jar_file = 'hops0.31.jar' default_jvm_mem_opts = ['-Xms1g', '-Xmx2g'] # !!! End of parameter section. No user-serviceable code below this line !!! def real_dirname(path): """Return the symlink-resolved, canonicalized directory-portion of path.""" return os.path.dirname(os.path.realpath(path)) def java_executable(): """Return the executable name of the Java interpreter.""" java_home = getenv('JAVA_HOME') java_bin = os.path.join('bin', 'java') if java_home and access(os.path.join(java_home, java_bin), X_OK): return os.path.join(java_home, java_bin) else: return 'java' def jvm_opts(argv): """Construct list of Java arguments based on our argument list. The argument list passed in argv must not include the script name. The return value is a 3-tuple lists of strings of the form: (memory_options, prop_options, passthrough_options) """ mem_opts = [] prop_opts = [] pass_args = [] for arg in argv: if arg.startswith('-D'): prop_opts.append(arg) elif arg.startswith('-XX'): prop_opts.append(arg) elif arg.startswith('-Xm'): mem_opts.append(arg) else: pass_args.append(arg) # In the original shell script the test coded below read: # if [ "$jvm_mem_opts" == "" ] && [ -z ${_JAVA_OPTIONS+x} ] # To reproduce the behaviour of the above shell code fragment # it is important to explictly check for equality with None # in the second condition, so a null envar value counts as True! if mem_opts == [] and getenv('_JAVA_OPTIONS') == None: mem_opts = default_jvm_mem_opts return (mem_opts, prop_opts, pass_args) def main(): java = java_executable() jar_dir = real_dirname(sys.argv[0]) (mem_opts, prop_opts, pass_args) = jvm_opts(sys.argv[1:]) if pass_args != [] and pass_args[0].startswith('eu'): jar_arg = '-cp' else:<|fim▁hole|> jar_arg = '-jar' jar_path = os.path.join(jar_dir, jar_file) java_args = [java]+ mem_opts + prop_opts + [jar_arg] + [jar_path] + pass_args if '--jar_dir' in sys.argv[1:]: print(jar_path) else: sys.exit(subprocess.call(java_args)) if __name__ == '__main__': main()<|fim▁end|>
<|file_name|>processes.py<|end_file_name|><|fim▁begin|>"""This module holds the ``Process``es for NER.""" from copy import deepcopy from dataclasses import dataclass from typing import Any, List from boltons.cacheutils import cachedproperty from cltk.core.data_types import Doc, Process from cltk.ner.ner import tag_ner @dataclass class NERProcess(Process): """To be inherited for each language's NER declarations. >>> from cltk.core.data_types import Doc >>> from cltk.ner.processes import NERProcess >>> from cltk.core.data_types import Process >>> issubclass(NERProcess, Process) True >>> emb_proc = NERProcess() """ language: str = None @cachedproperty def algorithm(self): return tag_ner def run(self, input_doc: Doc) -> Doc: output_doc = deepcopy(input_doc) ner_obj = self.algorithm entity_values = ner_obj( iso_code=self.language, input_tokens=input_doc.tokens ) # type: List[Any] for index, word_obj in enumerate(output_doc.words): word_obj.named_entity = entity_values[index] output_doc.words[index] = word_obj return output_doc @dataclass class GreekNERProcess(NERProcess): """The default Greek NER algorithm. .. todo:: Update doctest w/ production model >>> from cltk.core.data_types import Doc, Word >>> from cltk.languages.example_texts import get_example_text >>> from boltons.strutils import split_punct_ws >>> text = "ἐπὶ δ᾽ οὖν τοῖς πρώτοις τοῖσδε Περικλῆς ὁ Ξανθίππου ᾑρέθη λέγειν. καὶ ἐπειδὴ καιρὸς ἐλάμβανε, προελθὼν ἀπὸ τοῦ σήματος ἐπὶ βῆμα ὑψηλὸν πεποιημένον, ὅπως ἀκούοιτο ὡς ἐπὶ πλεῖστον τοῦ ὁμίλου, ἔλεγε τοιάδε." >>> tokens = [Word(string=token) for token in split_punct_ws(text)] >>> a_process = GreekNERProcess()<|fim▁hole|> 'ὁ' >>> output_doc.words[7].named_entity False >>> output_doc.words[8].string 'Ξανθίππου' >>> output_doc.words[8].named_entity False """ language: str = "grc" description: str = "Default NER for Greek." @dataclass class OldEnglishNERProcess(NERProcess): """The default OE NER algorithm. .. todo:: Update doctest w/ production model >>> from cltk.core.data_types import Doc, Word >>> from cltk.languages.example_texts import get_example_text >>> from boltons.strutils import split_punct_ws >>> text = get_example_text(iso_code="ang") >>> tokens = [Word(string=token) for token in split_punct_ws(text)] >>> a_process = OldEnglishNERProcess() >>> output_doc = a_process.run(Doc(raw=text, words=tokens)) >>> output_doc.words[2].string, output_doc.words[2].named_entity ('Gardena', 'LOCATION') """ language: str = "ang" description: str = "Default NER for Old English." @dataclass class LatinNERProcess(NERProcess): """The default Latin NER algorithm. >>> from cltk.core.data_types import Doc, Word >>> from cltk.languages.example_texts import get_example_text >>> from boltons.strutils import split_punct_ws >>> tokens = [Word(string=token) for token in split_punct_ws(get_example_text("lat"))] >>> a_process = LatinNERProcess() >>> output_doc = a_process.run(Doc(raw=get_example_text("lat"), words=tokens)) >>> [word.named_entity for word in output_doc.words][:20] ['LOCATION', False, False, False, False, False, False, False, False, False, 'LOCATION', False, 'LOCATION', False, False, False, False, 'LOCATION', False, 'LOCATION'] """ language: str = "lat" description: str = "Default NER for Latin." @dataclass class OldFrenchNERProcess(NERProcess): """The default Old French NER algorithm. >>> from cltk.core.data_types import Doc, Word >>> from cltk.languages.example_texts import get_example_text >>> from boltons.strutils import split_punct_ws >>> tokens = [Word(string=token) for token in split_punct_ws(get_example_text("fro"))] >>> a_process = OldFrenchNERProcess() >>> output_doc = a_process.run(Doc(raw=get_example_text("fro"), words=tokens)) >>> output_doc.words[30].string 'Bretaigne' >>> output_doc.words[30].named_entity 'LOC' >>> output_doc.words[31].named_entity False """ language: str = "fro" description: str = "Default NER for Old French."<|fim▁end|>
>>> output_doc = a_process.run(Doc(raw=text, words=tokens)) >>> output_doc.words[7].string
<|file_name|>index.js<|end_file_name|><|fim▁begin|>import { all } from 'redux-saga/effects'; import WatchUsers from 'sagas/users'; export default function *WatchSagas() { yield all([ WatchUsers()<|fim▁hole|><|fim▁end|>
]); }
<|file_name|>ProjectViewDialog.tsx<|end_file_name|><|fim▁begin|>/* MIT License Copyright (c) 2021 Looker Data Sciences, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import type { FC } from 'react' import React from 'react' import { Dialog, DialogHeader, DialogContent } from '@looker/components' import type { IProjectProps } from '../../models' import { ProjectView } from '../../scenes' interface ProjectViewDialogProps { /** if assigned, dialog appears. If undefined, dialog is hidden */ project?: IProjectProps /** Dialog closing event handler */ onClose: () => void } export const ProjectViewDialog: FC<ProjectViewDialogProps> = ({<|fim▁hole|>}) => { const closeDialog = () => { onClose() } return ( <Dialog isOpen={!!project} onClose={closeDialog}> <DialogHeader>{project?.title}</DialogHeader> <DialogContent> {!!project && <ProjectView project={project} />} </DialogContent> </Dialog> ) }<|fim▁end|>
project, onClose,
<|file_name|>problem.py<|end_file_name|><|fim▁begin|>from math import sqrt from collections import defaultdict, Counter from fractions import Fraction def reverse_erathos(n): d = defaultdict(set) for i in range(2, n + 1): if i not in d: j = 2 * i while j <= n: d[j].add(i) j += i return d def totient(n, prime_decs): if n not in prime_decs: return n - 1 res = n for prime in prime_decs[n]: res *= 1 - Fraction(1, prime) return int(res) def compute_solution(n): c = 1 prime_decs = reverse_erathos(n) res = [] for i in range(2, n + 1): if c % 50000 == 0: print(c) tot = totient(i, prime_decs)<|fim▁hole|> res.append((i, tot, Fraction(i, tot))) c += 1 return min(res, key = lambda x: x[2]) print(compute_solution(10000000), sep='\n')<|fim▁end|>
if Counter(str(i)) == Counter(str(tot)):
<|file_name|>app.py<|end_file_name|><|fim▁begin|>from flask import Flask, request import sendgrid import json import requests import os app = Flask(__name__) SENDGRID_USER = os.getenv('SENDGRID_USER') SENDGRID_PASS = os.getenv('SENDGRID_PASS') ONENOTE_TOKEN = os.getenv('ONENOTE_TOKEN')<|fim▁hole|># Make the WSGI interface available at the top level so wfastcgi can get it. wsgi_app = app.wsgi_app sg = sendgrid.SendGridClient(SENDGRID_USER, SENDGRID_PASS) # Receive a POST from the SendGrid Event Webhook @app.route('/event', methods = ['POST']) def event(): message = sendgrid.Mail() message.add_to('Elmer Thomas <[email protected]>') message.set_subject('Bounce Alert') data = request.stream.read().decode("utf-8") data = json.loads(data) for i in range(len(data)): # For a list of all event types see: https://sendgrid.com/docs/API_Reference/Webhooks/event.html event = data[i]['event'] if event == "bounce": # Create and post the OneNote message url = "https://www.onenote.com/api/v1.0/pages" auth = 'Bearer ' + ONENOTE_TOKEN body = "An email from " + data[i]['email'] + " bounced. You might want to do something about that :)" payload = "<!DOCTYPE HTML><html><head><title>Bounced Email Alert</title></head>" payload += "<body>" + body + "</body></html>" headers = {'Authorization':auth,'Content-type':'text/html'} res = requests.post(url, headers=headers, data=payload) # Send an email alert mail = "An email sent to " + data[i]['email'] + " bounced. Return value from OneNote is: " + res.text message.set_html(mail) message.set_text(mail) message.set_from('Elmer Thomas <[email protected]>') status, msg = sg.send(message) return "HTTP/1.1 200 OK" @app.route('/', methods = ['GET']) def hello(): """Renders a sample page.""" return "Hello Universe!" @app.route('/tos', methods = ['GET']) def tos(): return "Terms of Service Placeholder." @app.route('/privacy', methods = ['GET']) def privacy(): return "Privacy Policy Placeholder." if __name__ == '__main__': import os HOST = os.environ.get('SERVER_HOST', 'localhost') try: PORT = int(os.environ.get('SERVER_PORT', '5555')) except ValueError: PORT = 5555 app.run(HOST, PORT)<|fim▁end|>
<|file_name|>create_db_home_request_response.go<|end_file_name|><|fim▁begin|>// Copyright (c) 2016, 2018, 2021, Oracle and/or its affiliates. All rights reserved. // This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. // Code generated. DO NOT EDIT. package database import ( "github.com/oracle/oci-go-sdk/v46/common" "net/http" ) // CreateDbHomeRequest wrapper for the CreateDbHome operation // // See also // // Click https://docs.cloud.oracle.com/en-us/iaas/tools/go-sdk-examples/latest/database/CreateDbHome.go.html to see an example of how to use CreateDbHomeRequest. type CreateDbHomeRequest struct { // Request to create a new Database Home. CreateDbHomeWithDbSystemIdDetails CreateDbHomeBase `contributesTo:"body"` // A token that uniquely identifies a request so it can be retried in case of a timeout or // server error without risk of executing that same action again. Retry tokens expire after 24 // hours, but can be invalidated before then due to conflicting operations (for example, if a resource // has been deleted and purged from the system, then a retry of the original creation request // may be rejected). OpcRetryToken *string `mandatory:"false" contributesTo:"header" name:"opc-retry-token"` // Unique Oracle-assigned identifier for the request. // If you need to contact Oracle about a particular request, please provide the request ID. OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata } func (request CreateDbHomeRequest) String() string { return common.PointerString(request) } // HTTPRequest implements the OCIRequest interface func (request CreateDbHomeRequest) HTTPRequest(method, path string, binaryRequestBody *common.OCIReadSeekCloser, extraHeaders map[string]string) (http.Request, error) { return common.MakeDefaultHTTPRequestWithTaggedStructAndExtraHeaders(method, path, request, extraHeaders) } // BinaryRequestBody implements the OCIRequest interface func (request CreateDbHomeRequest) BinaryRequestBody() (*common.OCIReadSeekCloser, bool) { return nil, false } // RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy. func (request CreateDbHomeRequest) RetryPolicy() *common.RetryPolicy { return request.RequestMetadata.RetryPolicy } // CreateDbHomeResponse wrapper for the CreateDbHome operation type CreateDbHomeResponse struct { // The underlying http response RawResponse *http.Response // The DbHome instance<|fim▁hole|> DbHome `presentIn:"body"` // The OCID (https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the work request. Multiple OCID values are returned in a comma-separated list. Use GetWorkRequest with a work request OCID to track the status of the request. OpcWorkRequestId *string `presentIn:"header" name:"opc-work-request-id"` // For optimistic concurrency control. See `if-match`. Etag *string `presentIn:"header" name:"etag"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about // a particular request, please provide the request ID. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` } func (response CreateDbHomeResponse) String() string { return common.PointerString(response) } // HTTPResponse implements the OCIResponse interface func (response CreateDbHomeResponse) HTTPResponse() *http.Response { return response.RawResponse }<|fim▁end|>
<|file_name|>mod_power_of_2_add.rs<|end_file_name|><|fim▁begin|>use malachite_base::num::basic::unsigneds::PrimitiveUnsigned; use malachite_base_test_util::bench::bucketers::triple_3_bucketer; use malachite_base_test_util::bench::{run_benchmark, BenchmarkType}; use malachite_base_test_util::generators::common::{GenConfig, GenMode}; use malachite_base_test_util::generators::unsigned_triple_gen_var_11; use malachite_base_test_util::runner::Runner; pub(crate) fn register(runner: &mut Runner) { register_unsigned_demos!(runner, demo_mod_power_of_2_add); register_unsigned_demos!(runner, demo_mod_power_of_2_add_assign); register_unsigned_benches!(runner, benchmark_mod_power_of_2_add); register_unsigned_benches!(runner, benchmark_mod_power_of_2_add_assign); } fn demo_mod_power_of_2_add<T: PrimitiveUnsigned>(gm: GenMode, config: GenConfig, limit: usize) { for (x, y, pow) in unsigned_triple_gen_var_11::<T>()<|fim▁hole|> .get(gm, &config) .take(limit) { println!( "{} + {} === {} mod 2^{}", x, y, x.mod_power_of_2_add(y, pow), pow ); } } fn demo_mod_power_of_2_add_assign<T: PrimitiveUnsigned>( gm: GenMode, config: GenConfig, limit: usize, ) { for (mut x, y, pow) in unsigned_triple_gen_var_11::<T>() .get(gm, &config) .take(limit) { let old_x = x; x.mod_power_of_2_add_assign(y, pow); println!( "x := {}; x.mod_power_of_2_add_assign({}, {}); x = {}", old_x, y, pow, x ); } } fn benchmark_mod_power_of_2_add<T: PrimitiveUnsigned>( gm: GenMode, config: GenConfig, limit: usize, file_name: &str, ) { run_benchmark( &format!("{}.mod_power_of_2_add({}, u64)", T::NAME, T::NAME), BenchmarkType::Single, unsigned_triple_gen_var_11::<T>().get(gm, &config), gm.name(), limit, file_name, &triple_3_bucketer("pow"), &mut [("Malachite", &mut |(x, y, pow)| { no_out!(x.mod_power_of_2_add(y, pow)) })], ); } fn benchmark_mod_power_of_2_add_assign<T: PrimitiveUnsigned>( gm: GenMode, config: GenConfig, limit: usize, file_name: &str, ) { run_benchmark( &format!("{}.mod_power_of_2_add_assign({}, u64)", T::NAME, T::NAME), BenchmarkType::Single, unsigned_triple_gen_var_11::<T>().get(gm, &config), gm.name(), limit, file_name, &triple_3_bucketer("pow"), &mut [("Malachite", &mut |(mut x, y, pow)| { x.mod_power_of_2_add_assign(y, pow) })], ); }<|fim▁end|>
<|file_name|>conftest.py<|end_file_name|><|fim▁begin|>import pytest import subprocess import tempfile import shutil import os import config import time import pymongo <|fim▁hole|>def mongod(request): subprocess.call(['pkill', '-f', 'mongod*tmp']) server = MongoServer() server.start() def stop(): server.stop() server.clean() request.addfinalizer(stop) from tests.base_test_case import BaseTestCase BaseTestCase.mongod = server return server @pytest.fixture(scope='session') def exclusive_tests(request): subprocess.call(['pkill', '-f', 'code/server/app.py']) class MongoServer(object): def __init__(self): self.tmp_path = tempfile.mkdtemp() self.db_path = os.path.join(self.tmp_path, 'db') os.mkdir(self.db_path) def start(self): self.server = subprocess.Popen( ['mongod', '--dbpath', self.db_path, '--port', str(config.MONGO_PORT), '--smallfiles'] ) self.wait_alive() def stop(self): self.server.terminate() self.server.wait() def clean(self): shutil.rmtree(self.tmp_path) def drop_db(self): client = pymongo.MongoClient(config.MONGO_URL()) client.drop_database(config.MONGO_DB_NAME) def wait_alive(self): while True: try: client = pymongo.MongoClient(config.MONGO_URL()) result = client.admin.command('ping') if result['ok']: break except: pass time.sleep(0.1)<|fim▁end|>
@pytest.fixture(scope='session')
<|file_name|>test_util.py<|end_file_name|><|fim▁begin|># # Licensed 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. """Unit tests for the utility functions used by the placement API.""" import fixtures from oslo_middleware import request_id import webob from nova.api.openstack.placement import microversion from nova.api.openstack.placement import util from nova import objects from nova import test from nova.tests import uuidsentinel class TestCheckAccept(test.NoDBTestCase): """Confirm behavior of util.check_accept.""" @staticmethod @util.check_accept('application/json', 'application/vnd.openstack') def handler(req): """Fake handler to test decorator.""" return True def test_fail_no_match(self): req = webob.Request.blank('/') req.accept = 'text/plain' error = self.assertRaises(webob.exc.HTTPNotAcceptable, self.handler, req) self.assertEqual( 'Only application/json, application/vnd.openstack is provided', str(error)) def test_fail_complex_no_match(self): req = webob.Request.blank('/') req.accept = 'text/html;q=0.9,text/plain,application/vnd.aws;q=0.8' error = self.assertRaises(webob.exc.HTTPNotAcceptable, self.handler, req) self.assertEqual( 'Only application/json, application/vnd.openstack is provided', str(error)) def test_success_no_accept(self): req = webob.Request.blank('/') self.assertTrue(self.handler(req)) def test_success_simple_match(self): req = webob.Request.blank('/') req.accept = 'application/json' self.assertTrue(self.handler(req)) def test_success_complex_any_match(self): req = webob.Request.blank('/') req.accept = 'application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8' self.assertTrue(self.handler(req)) def test_success_complex_lower_quality_match(self): req = webob.Request.blank('/') req.accept = 'application/xml;q=0.9,application/vnd.openstack;q=0.8' self.assertTrue(self.handler(req)) class TestExtractJSON(test.NoDBTestCase): # Although the intent of this test class is not to test that # schemas work, we may as well use a real one to ensure that # behaviors are what we expect. schema = { "type": "object", "properties": { "name": {"type": "string"}, "uuid": {"type": "string", "format": "uuid"} }, "required": ["name"], "additionalProperties": False } def test_not_json(self): error = self.assertRaises(webob.exc.HTTPBadRequest, util.extract_json, 'I am a string', self.schema) self.assertIn('Malformed JSON', str(error)) def test_malformed_json(self): error = self.assertRaises(webob.exc.HTTPBadRequest, util.extract_json, '{"my bytes got left behind":}', self.schema) self.assertIn('Malformed JSON', str(error)) def test_schema_mismatch(self): error = self.assertRaises(webob.exc.HTTPBadRequest, util.extract_json, '{"a": "b"}', self.schema) self.assertIn('JSON does not validate', str(error)) def test_type_invalid(self):<|fim▁hole|> self.schema) self.assertIn('JSON does not validate', str(error)) def test_format_checker(self): error = self.assertRaises(webob.exc.HTTPBadRequest, util.extract_json, '{"name": "hello", "uuid": "not a uuid"}', self.schema) self.assertIn('JSON does not validate', str(error)) def test_no_addtional_properties(self): error = self.assertRaises(webob.exc.HTTPBadRequest, util.extract_json, '{"name": "hello", "cow": "moo"}', self.schema) self.assertIn('JSON does not validate', str(error)) def test_valid(self): data = util.extract_json( '{"name": "cow", ' '"uuid": "%s"}' % uuidsentinel.rp_uuid, self.schema) self.assertEqual('cow', data['name']) self.assertEqual(uuidsentinel.rp_uuid, data['uuid']) class TestJSONErrorFormatter(test.NoDBTestCase): def setUp(self): super(TestJSONErrorFormatter, self).setUp() self.environ = {} # TODO(jaypipes): Remove this when we get more than a single version # in the placement API. The fact that we only had a single version was # masking a bug in the utils code. _versions = [ '1.0', '1.1', ] mod_str = 'nova.api.openstack.placement.microversion.VERSIONS' self.useFixture(fixtures.MonkeyPatch(mod_str, _versions)) def test_status_to_int_code(self): body = '' status = '404 Not Found' title = '' result = util.json_error_formatter( body, status, title, self.environ) self.assertEqual(404, result['errors'][0]['status']) def test_strip_body_tags(self): body = '<h1>Big Error!</h1>' status = '400 Bad Request' title = '' result = util.json_error_formatter( body, status, title, self.environ) self.assertEqual('Big Error!', result['errors'][0]['detail']) def test_request_id_presence(self): body = '' status = '400 Bad Request' title = '' # no request id in environ, none in error result = util.json_error_formatter( body, status, title, self.environ) self.assertNotIn('request_id', result['errors'][0]) # request id in environ, request id in error self.environ[request_id.ENV_REQUEST_ID] = 'stub-id' result = util.json_error_formatter( body, status, title, self.environ) self.assertEqual('stub-id', result['errors'][0]['request_id']) def test_microversion_406_handling(self): body = '' status = '400 Bad Request' title = '' # Not a 406, no version info required. result = util.json_error_formatter( body, status, title, self.environ) self.assertNotIn('max_version', result['errors'][0]) self.assertNotIn('min_version', result['errors'][0]) # A 406 but not because of microversions (microversion # parsing was successful), no version info # required. status = '406 Not Acceptable' version_obj = microversion.parse_version_string('2.3') self.environ[microversion.MICROVERSION_ENVIRON] = version_obj result = util.json_error_formatter( body, status, title, self.environ) self.assertNotIn('max_version', result['errors'][0]) self.assertNotIn('min_version', result['errors'][0]) # Microversion parsing failed, status is 406, send version info. del self.environ[microversion.MICROVERSION_ENVIRON] result = util.json_error_formatter( body, status, title, self.environ) self.assertEqual(microversion.max_version_string(), result['errors'][0]['max_version']) self.assertEqual(microversion.min_version_string(), result['errors'][0]['min_version']) class TestRequireContent(test.NoDBTestCase): """Confirm behavior of util.require_accept.""" @staticmethod @util.require_content('application/json') def handler(req): """Fake handler to test decorator.""" return True def test_fail_no_content_type(self): req = webob.Request.blank('/') error = self.assertRaises(webob.exc.HTTPUnsupportedMediaType, self.handler, req) self.assertEqual( 'The media type None is not supported, use application/json', str(error)) def test_fail_wrong_content_type(self): req = webob.Request.blank('/') req.content_type = 'text/plain' error = self.assertRaises(webob.exc.HTTPUnsupportedMediaType, self.handler, req) self.assertEqual( 'The media type text/plain is not supported, use application/json', str(error)) def test_success_content_type(self): req = webob.Request.blank('/') req.content_type = 'application/json' self.assertTrue(self.handler(req)) class TestPlacementURLs(test.NoDBTestCase): def setUp(self): super(TestPlacementURLs, self).setUp() self.resource_provider = objects.ResourceProvider( name=uuidsentinel.rp_name, uuid=uuidsentinel.rp_uuid) def test_resource_provider_url(self): environ = {} expected_url = '/resource_providers/%s' % uuidsentinel.rp_uuid self.assertEqual(expected_url, util.resource_provider_url( environ, self.resource_provider)) def test_resource_provider_url_prefix(self): # SCRIPT_NAME represents the mount point of a WSGI # application when it is hosted at a path/prefix. environ = {'SCRIPT_NAME': '/placement'} expected_url = ('/placement/resource_providers/%s' % uuidsentinel.rp_uuid) self.assertEqual(expected_url, util.resource_provider_url( environ, self.resource_provider)) def test_inventories_url(self): environ = {} expected_url = ('/resource_providers/%s/inventories' % uuidsentinel.rp_uuid) self.assertEqual(expected_url, util.inventory_url( environ, self.resource_provider)) def test_inventory_url(self): resource_class = 'DISK_GB' environ = {} expected_url = ('/resource_providers/%s/inventories/%s' % (uuidsentinel.rp_uuid, resource_class)) self.assertEqual(expected_url, util.inventory_url( environ, self.resource_provider, resource_class))<|fim▁end|>
error = self.assertRaises(webob.exc.HTTPBadRequest, util.extract_json, '{"name": 1}',
<|file_name|>runner.rs<|end_file_name|><|fim▁begin|>use regex::Regex; use state::Cucumber; use event::request::{InvokeArgument, Request}; use event::response::{InvokeResponse, Response, StepMatchesResponse}; use definitions::registration::{CucumberRegistrar, SimpleStep}; use std::panic::{self, AssertUnwindSafe}; use std::str::FromStr; /// The step runner for [Cucumber state](../state/struct.Cucumber.html) /// /// The runner stands in for the Cucumber instance and provides an interface for /// [Request](../event/request/enum.Request.html) events to be translated into /// state changes and /// step invocations, along with a /// [Response](../event/response/enum.Response.html). These are typically /// supplied by a running /// [Server](../server/struct.Server.html), but may be supplied by a native /// Gherkin implementation /// later. /// /// Typically this struct will only be instantiated by the user, and then /// passed to a Server to /// maintain. /// #[allow(dead_code)] pub struct WorldRunner<World> { cuke: Cucumber<World>, world: World, } impl<World> WorldRunner<World> { #[allow(dead_code)] pub fn new(world: World) -> WorldRunner<World> { WorldRunner { cuke: Cucumber::new(), world: world, } } } /// An interface for implementers that can consume a /// [Request](../event/request/enum.Request.html) and yield a /// [Response](../event/response/enum.Response.html) /// /// This generally refers to [WorldRunner](./struct.WorldRunner.html) pub trait CommandRunner { fn execute_cmd(&mut self, req: Request) -> Response; } impl<T: Fn(Request) -> Response> CommandRunner for T { fn execute_cmd(&mut self, req: Request) -> Response { self(req) } } impl<World> CommandRunner for WorldRunner<World> { fn execute_cmd(&mut self, req: Request) -> Response { match req {<|fim▁hole|> }, Request::Invoke(params) => { let step = self.cuke .step(u32::from_str(&params.id).unwrap()) .unwrap(); Response::Invoke(invoke_to_response(step, &self.cuke, &mut self.world, params.args)) }, Request::StepMatches(params) => { let matches = self.cuke.find_match(&params.name_to_match); if matches.len() == 0 { Response::StepMatches(StepMatchesResponse::NoMatch) } else { Response::StepMatches(StepMatchesResponse::Match(matches)) } }, Request::EndScenario(_) => { self.cuke.tags = Vec::new(); Response::EndScenario }, // TODO: For some reason, cucumber prints the ruby snippet too. Fix that Request::SnippetText(params) => { let text = format!(" // In a step registration block where cuke: &mut \ CucumberRegistrar<YourWorld>\n use cucumber::InvokeResponse;\n use \ cucumber::helpers::r;\n {}!(cuke, r(\"^{}$\"), Box::new(move |c, _, \ _| {{\n c.pending(\"TODO\")\n }}));", params.step_keyword, params.step_name); Response::SnippetText(text) }, } } } impl<World> CucumberRegistrar<World> for WorldRunner<World> { fn given(&mut self, file: &str, line: u32, regex: Regex, step: SimpleStep<World>) { self.cuke.given(file, line, regex, step) } fn when(&mut self, file: &str, line: u32, regex: Regex, step: SimpleStep<World>) { self.cuke.when(file, line, regex, step) } fn then(&mut self, file: &str, line: u32, regex: Regex, step: SimpleStep<World>) { self.cuke.then(file, line, regex, step) } } pub fn invoke_to_response<World>(test_body: &SimpleStep<World>, cuke: &Cucumber<World>, world: &mut World, args: Vec<InvokeArgument>) -> InvokeResponse { let result = panic::catch_unwind(AssertUnwindSafe(|| test_body(cuke, world, args))); match result { Ok(()) => InvokeResponse::Success, Err(err) => { // Yoinked from rustc libstd, with InvokeResponse added as a possible cast let msg = match err.downcast_ref::<&'static str>() { Some(s) => *s, None => { match err.downcast_ref::<String>() { Some(s) => &s[..], None => { match err.downcast_ref::<InvokeResponse>() { Some(s) => return s.clone(), None => "Box<Any>", } }, } }, }; InvokeResponse::fail_from_str(msg) }, } }<|fim▁end|>
Request::BeginScenario(params) => { self.cuke.tags = params.tags; Response::BeginScenario
<|file_name|>pscrap.py<|end_file_name|><|fim▁begin|>from nct.utils.alch import Session, LSession from nct.domain.instrument import Instrument import random import functools import time from nct.deploy.deploy import Deployer import cProfile INSTRUMENTS = ['GOOGL.O', 'TWTR.N', 'GS.N', 'BAC.N', 'IBM.N'] def profile_method(file_name = None): def gen_wrapper(func): @functools.wraps(func) def wrapper(*args, **kwargs): f = func cProfile.runctx('f(*args,**kwargs)', globals(), locals(), file_name) print("Done writing") return wrapper return gen_wrapper def time_it(func): @functools.wraps(func) def wrapper(*args, **kwargs): start = time.time() func(*args,**kwargs) print("It took {}".format(time.time() - start)) return wrapper HASH_CACHE = {} @profile_method(r"c:\temp\instrument_123.out") def do_a_bunch(): s = LSession() name = INSTRUMENTS[int(random.random()*100)%len(INSTRUMENTS)]<|fim▁hole|> s.close() import sys print (sys.version) Deployer(LSession).deploy() print ("Deployed") for _ in range(1): do_a_bunch()<|fim▁end|>
instr_id = s.query(Instrument).filter_by(name=name).one().id for _ in range(10000): s.query(Instrument).get(instr_id)
<|file_name|>seralizr.d.ts<|end_file_name|><|fim▁begin|>// TODO: put this in the source files, and extract it, to preserve comments export interface Context { json: any; target: any; parentContext: Context; args: any; } export type Factory<T> = (context: Context) => T export interface PropSchema { serializer(sourcePropertyValue: any): any; deserializer(jsonValue: any, callback: (err: any, targetPropertyValue: any) => void, context: Context, currentPropertyValue: any): void; } export type Props = { [propName:string]: boolean | PropSchema } export interface ModelSchema<T> { factory: Factory<T>, props: Props } export type Clazz<T> = new() => T; export type ClazzOrModelSchema<T> = ModelSchema<T> | Clazz<T>; export function createSimpleSchema<T extends Object>(props: Props): ModelSchema<T>; export function createModelSchema<T extends Object>(clazz: Clazz<T>, props: Props, factory?: Factory<T>): ModelSchema<T>; export function serializable(propSchema: PropSchema | boolean): (target: Object, key: string, baseDescriptor?: PropertyDescriptor) => void; export function serializable(target: Object, key: string, baseDescriptor?: PropertyDescriptor): void; export function getDefaultModelSchema<T>(clazz: Clazz<T>): ModelSchema<T>; export function setDefaultModelSchema<T>(clazz: Clazz<T>, modelschema: ModelSchema<T>): void; export function serialize<T>(modelschema: ClazzOrModelSchema<T>, instance: T): any; export function serialize<T>(instance: T): any; export function deserialize<T>(modelschema: ClazzOrModelSchema<T>, json: any, callback?: (err: any, result: T) => void, customArgs?: any): T; export function update<T>(modelschema: ClazzOrModelSchema<T>, instance:T, json: any, callback?: (err: any, result: T) => void, customArgs?: any): void; export function update<T>(instance:T, json: any, callback?: (err: any, result: T) => void, customArgs?: any): void; export function primitive(): PropSchema; export function identifier(registerFn?: (id: any, value: any, context: Context) => void): PropSchema; export function date(): PropSchema; export function alias(jsonName: string, propSchema: PropSchema): PropSchema; export function child(modelschema: ClazzOrModelSchema<any>): PropSchema; export function object(modelschema: ClazzOrModelSchema<any>): PropSchema; export type RefLookupFunction = (id: string, callback: (err: any, result: any) => void) => void; export function ref(modelschema: ClazzOrModelSchema<any>, lookupFn?: RefLookupFunction): PropSchema; export function ref(identifierAttr: string, lookupFn: RefLookupFunction): PropSchema; export function reference(modelschema: ClazzOrModelSchema<any>, lookupFn?: RefLookupFunction): PropSchema; export function reference(identifierAttr: string, lookupFn: RefLookupFunction): PropSchema; export function list(propSchema: PropSchema): PropSchema; export function map(propSchema: PropSchema): PropSchema; <|fim▁hole|><|fim▁end|>
export function custom(serializer: (value: any) => any, deserializer: (jsonValue: any) => any): PropSchema;
<|file_name|>minidump_generator.cc<|end_file_name|><|fim▁begin|>// Copyright (c) 2008, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <base.h> #include "client/windows/crash_generation/minidump_generator.h" #include <cassert> #include "client/windows/common/auto_critical_section.h" #include "common/windows/guid_string.h" using std::wstring; namespace google_breakpad { MinidumpGenerator::MinidumpGenerator(const wstring& dump_path) : dbghelp_module_(NULL), rpcrt4_module_(NULL), dump_path_(dump_path), write_dump_(NULL), create_uuid_(NULL) { InitializeCriticalSection(&module_load_sync_); InitializeCriticalSection(&get_proc_address_sync_); } MinidumpGenerator::~MinidumpGenerator() { if (dbghelp_module_) { FreeLibrary(dbghelp_module_); } if (rpcrt4_module_) { FreeLibrary(rpcrt4_module_); } DeleteCriticalSection(&get_proc_address_sync_); DeleteCriticalSection(&module_load_sync_); } bool MinidumpGenerator::WriteMinidump(HANDLE process_handle, DWORD process_id, DWORD thread_id, DWORD requesting_thread_id, EXCEPTION_POINTERS* exception_pointers, MDRawAssertionInfo* assert_info, MINIDUMP_TYPE dump_type, bool is_client_pointers, wstring* dump_path) { MiniDumpWriteDumpType write_dump = GetWriteDump(); if (!write_dump) { return false; } wstring dump_file_path; if (!GenerateDumpFilePath(&dump_file_path)) { return false; } // If the client requests a full memory dump, we will write a normal mini // dump and a full memory dump. Both dump files use the same uuid as file // name prefix. bool full_memory_dump = (dump_type & MiniDumpWithFullMemory) != 0; wstring full_dump_file_path; if (full_memory_dump) { full_dump_file_path.assign(dump_file_path); full_dump_file_path.resize(full_dump_file_path.size() - 4); // strip .dmp full_dump_file_path.append(TEXT("-full.dmp")); } HANDLE dump_file = CreateFile(dump_file_path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL); if (dump_file == INVALID_HANDLE_VALUE) { return false; } HANDLE full_dump_file = INVALID_HANDLE_VALUE; if (full_memory_dump) { full_dump_file = CreateFile(full_dump_file_path.c_str(), GENERIC_WRITE, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL); if (full_dump_file == INVALID_HANDLE_VALUE) { CloseHandle(dump_file); return false; } } MINIDUMP_EXCEPTION_INFORMATION* dump_exception_pointers = NULL; MINIDUMP_EXCEPTION_INFORMATION dump_exception_info; // Setup the exception information object only if it's a dump // due to an exception. if (exception_pointers) { dump_exception_pointers = &dump_exception_info; dump_exception_info.ThreadId = thread_id; dump_exception_info.ExceptionPointers = exception_pointers; dump_exception_info.ClientPointers = is_client_pointers; } // Add an MDRawBreakpadInfo stream to the minidump, to provide additional // information about the exception handler to the Breakpad processor. // The information will help the processor determine which threads are // relevant. The Breakpad processor does not require this information but // can function better with Breakpad-generated dumps when it is present. // The native debugger is not harmed by the presence of this information. MDRawBreakpadInfo breakpad_info = {0}; if (!is_client_pointers) { // Set the dump thread id and requesting thread id only in case of // in-process dump generation. breakpad_info.validity = MD_BREAKPAD_INFO_VALID_DUMP_THREAD_ID | MD_BREAKPAD_INFO_VALID_REQUESTING_THREAD_ID; breakpad_info.dump_thread_id = thread_id; breakpad_info.requesting_thread_id = requesting_thread_id; } // Leave room in user_stream_array for a possible assertion info stream. MINIDUMP_USER_STREAM user_stream_array[2]; user_stream_array[0].Type = MD_BREAKPAD_INFO_STREAM; user_stream_array[0].BufferSize = sizeof(breakpad_info); user_stream_array[0].Buffer = &breakpad_info; MINIDUMP_USER_STREAM_INFORMATION user_streams; user_streams.UserStreamCount = 1; user_streams.UserStreamArray = user_stream_array; MDRawAssertionInfo* actual_assert_info = assert_info; MDRawAssertionInfo client_assert_info = {0}; if (assert_info) { // If the assertion info object lives in the client process, // read the memory of the client process. if (is_client_pointers) { SIZE_T bytes_read = 0; if (!ReadProcessMemory(process_handle, assert_info, &client_assert_info, sizeof(client_assert_info), &bytes_read)) { CloseHandle(dump_file); if (full_dump_file != INVALID_HANDLE_VALUE) CloseHandle(full_dump_file); return false; } if (bytes_read != sizeof(client_assert_info)) { CloseHandle(dump_file); if (full_dump_file != INVALID_HANDLE_VALUE) CloseHandle(full_dump_file); return false; } <|fim▁hole|> } user_stream_array[1].Type = MD_ASSERTION_INFO_STREAM; user_stream_array[1].BufferSize = sizeof(MDRawAssertionInfo); user_stream_array[1].Buffer = actual_assert_info; ++user_streams.UserStreamCount; } bool result_minidump = write_dump( process_handle, process_id, dump_file, static_cast<MINIDUMP_TYPE>((dump_type & (~MiniDumpWithFullMemory)) | MiniDumpNormal), exception_pointers ? &dump_exception_info : NULL, &user_streams, NULL) != FALSE; bool result_full_memory = true; if (full_memory_dump) { result_full_memory = write_dump( process_handle, process_id, full_dump_file, static_cast<MINIDUMP_TYPE>(dump_type & (~MiniDumpNormal)), exception_pointers ? &dump_exception_info : NULL, &user_streams, NULL) != FALSE; } bool result = result_minidump && result_full_memory; CloseHandle(dump_file); if (full_dump_file != INVALID_HANDLE_VALUE) CloseHandle(full_dump_file); // Store the path of the dump file in the out parameter if dump generation // succeeded. if (result && dump_path) { *dump_path = dump_file_path; } return result; } HMODULE MinidumpGenerator::GetDbghelpModule() { AutoCriticalSection lock(&module_load_sync_); if (!dbghelp_module_) { dbghelp_module_ = LoadLibrary(TEXT("dbghelp.dll")); } return dbghelp_module_; } MinidumpGenerator::MiniDumpWriteDumpType MinidumpGenerator::GetWriteDump() { AutoCriticalSection lock(&get_proc_address_sync_); if (!write_dump_) { HMODULE module = GetDbghelpModule(); if (module) { FARPROC proc = GetProcAddress(module, "MiniDumpWriteDump"); write_dump_ = reinterpret_cast<MiniDumpWriteDumpType>(proc); } } return write_dump_; } HMODULE MinidumpGenerator::GetRpcrt4Module() { AutoCriticalSection lock(&module_load_sync_); if (!rpcrt4_module_) { rpcrt4_module_ = LoadLibrary(TEXT("rpcrt4.dll")); } return rpcrt4_module_; } MinidumpGenerator::UuidCreateType MinidumpGenerator::GetCreateUuid() { AutoCriticalSection lock(&module_load_sync_); if (!create_uuid_) { HMODULE module = GetRpcrt4Module(); if (module) { FARPROC proc = GetProcAddress(module, "UuidCreate"); create_uuid_ = reinterpret_cast<UuidCreateType>(proc); } } return create_uuid_; } bool MinidumpGenerator::GenerateDumpFilePath(wstring* file_path) { UUID id = {0}; UuidCreateType create_uuid = GetCreateUuid(); if(!create_uuid) { return false; } create_uuid(&id); wstring id_str = GUIDString::GUIDToWString(&id); *file_path = dump_path_ + TEXT("\\") + id_str + TEXT(".dmp"); return true; } } // namespace google_breakpad<|fim▁end|>
actual_assert_info = &client_assert_info;
<|file_name|>benchmark.py<|end_file_name|><|fim▁begin|>import sys import numpy as np from scipy import stats import subprocess as sp<|fim▁hole|>import datetime import socket import os exec_name = sys.argv[1] max_t = int(sys.argv[2]) ntries = 5 tot_timings = [] for t_idx in range(1,max_t + 1): cur_timings = [] for _ in range(ntries): # Run the process. p = sp.Popen([exec_name,str(t_idx)],stdout=sp.PIPE,stderr=sp.STDOUT) # Wait for it to finish and get stdout. out = p.communicate()[0] # Parse the stderr in order to find the time. out = out.split(bytes('\n','ascii'))[1].split()[0][0:-1] cur_timings.append(float(out)) tot_timings.append(cur_timings) tot_timings = np.array(tot_timings) retval = np.array([np.mean(tot_timings,axis=1),stats.sem(tot_timings,axis=1)]) fmt='{fname}_%Y%m%d%H%M%S' filename = datetime.datetime.now().strftime(fmt).format(fname=socket.gethostname() + '_' + os.path.basename(exec_name)) + '.txt' np.savetxt(filename,retval)<|fim▁end|>
<|file_name|>ExampleUnitTest.java<|end_file_name|><|fim▁begin|>package edu.pacificu.cs493f15_1.paperorplasticapp; import org.junit.Test; import static org.junit.Assert.*; /** * To work on unit tests, switch the Test Artifact in the Build Variants view. */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); }<|fim▁hole|><|fim▁end|>
}
<|file_name|>download_corpora.py<|end_file_name|><|fim▁begin|>#!/usr/bin/env python # -*- coding: utf-8 -*- """Downloads the necessary NLTK corpora for TextBlob. Usage: :: $ python -m textblob.download_corpora If you only intend to use TextBlob's default models, you can use the "lite" option: :: $ python -m textblob.download_corpora lite <|fim▁hole|>import nltk MIN_CORPORA = [ 'brown', # Required for FastNPExtractor 'punkt', # Required for WordTokenizer 'wordnet' # Required for lemmatization ] ADDITIONAL_CORPORA = [ 'conll2000', # Required for ConllExtractor 'maxent_treebank_pos_tagger', # Required for NLTKTagger 'movie_reviews', # Required for NaiveBayesAnalyzer ] ALL_CORPORA = MIN_CORPORA + ADDITIONAL_CORPORA def download_lite(): for each in MIN_CORPORA: nltk.download(each) def download_all(): for each in ALL_CORPORA: nltk.download(each) def main(): if 'lite' in sys.argv: download_lite() else: download_all() print("Finished.") if __name__ == '__main__': main()<|fim▁end|>
""" import sys
<|file_name|>Favorites.react.js<|end_file_name|><|fim▁begin|>/* * Favorites * Favorites landing page */ import React, { Component } from 'react' import NavBar from '../NavBar.react' export default class Favorites extends Component { render() { return ( <div> <div className="p2 overflow-scroll mt4 mb4"> <div className="center mb3"> <button className="btn bg-purple-3 white regular py1 px3">Import from Spotify</button> </div> <div className="h6 caps white">Your favorites</div> <div className="border-bottom border-muted py2 mrn2 relative"> <div className="white h4 mb1">Let's Dance</div> <div className="white muted h6 semibold">David Bowie</div> <span className="white absolute right-0 h2 mr3" style={{top: '23px'}}> <span className="inline-block h6 bg-teal rounded mr2 relative" style={{padding: '3px 12px', top: '-3px'}}>5 events</span> › </span> <|fim▁hole|> <div className="border-bottom border-muted py2 mrn2 relative"> <div className="white h4 mb1">Lazarus</div> <div className="white muted h6 semibold">David Bowie</div> <span className="white absolute right-0 h2 mr3" style={{top: '23px'}}> <span className="inline-block h6 bg-teal rounded mr2 relative" style={{padding: '3px 12px', top: '-3px'}}>5 events</span> › </span> </div> <div className="border-bottom border-muted py2 mrn2 relative"> <div className="white h4 mb1">Let's Dance</div> <div className="white muted h6 semibold">David Bowie</div> <span className="white absolute right-0 h2 mr3" style={{top: '23px'}}> <span className="inline-block h6 bg-teal rounded mr2 relative" style={{padding: '3px 12px', top: '-3px'}}>5 events</span> › </span> </div> <div className="border-bottom border-muted py2 mrn2 relative"> <div className="white h4 mb1">Lazarus</div> <div className="white muted h6 semibold">David Bowie</div> <span className="white absolute right-0 h2 mr3" style={{top: '23px'}}> <span className="inline-block h6 bg-teal rounded mr2 relative" style={{padding: '3px 12px', top: '-3px'}}>5 events</span> › </span> </div> <div className="border-bottom border-muted py2 mrn2 relative"> <div className="white h4 mb1">Let's Dance</div> <div className="white muted h6 semibold">David Bowie</div> <span className="white absolute right-0 h2 mr3" style={{top: '23px'}}> <span className="inline-block h6 bg-teal rounded mr2 relative" style={{padding: '3px 12px', top: '-3px'}}>5 events</span> › </span> </div> <div className="border-bottom border-muted py2 mrn2 relative"> <div className="white h4 mb1">Lazarus</div> <div className="white muted h6 semibold">David Bowie</div> <span className="white absolute right-0 h2 mr3" style={{top: '23px'}}> <span className="inline-block h6 bg-teal rounded mr2 relative" style={{padding: '3px 12px', top: '-3px'}}>5 events</span> › </span> </div> <div className="border-bottom border-muted py2 mrn2 relative"> <div className="white h4 mb1">Let's Dance</div> <div className="white muted h6 semibold">David Bowie</div> <span className="white absolute right-0 h2 mr3" style={{top: '23px'}}> <span className="inline-block h6 bg-teal rounded mr2 relative" style={{padding: '3px 12px', top: '-3px'}}>5 events</span> › </span> </div> <div className="border-bottom border-muted py2 mrn2 relative"> <div className="white h4 mb1">Lazarus</div> <div className="white muted h6 semibold">David Bowie</div> <span className="white absolute right-0 h2 mr3" style={{top: '23px'}}> <span className="inline-block h6 bg-teal rounded mr2 relative" style={{padding: '3px 12px', top: '-3px'}}>5 events</span> › </span> </div> </div> <NavBar activeTab="favorites"/> </div> ) } }<|fim▁end|>
</div>
<|file_name|>StrengthTrait.java<|end_file_name|><|fim▁begin|>package playertraits.traits; import net.minecraft.entity.player.EntityPlayerMP; import net.minecraft.potion.Potion; import net.minecraft.potion.PotionEffect; public class StrengthTrait extends Trait { public StrengthTrait() {<|fim▁hole|> super("Strength"); } @Override public void tick(EntityPlayerMP player) { player.addPotionEffect(new PotionEffect(Potion.damageBoost.id, 200, 1)); } @Override public void init() { } }<|fim▁end|>
<|file_name|>_ParagraphPropertiesComplex.java<|end_file_name|><|fim▁begin|>/* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 . */ package ifc.style; import lib.MultiPropertyTest; /** * Testing <code>com.sun.star.style.ParagraphPropertiesComplex</code> * * Properties testing is automated by <code>lib.MultiPropertyTest</code>. * @see com.sun.star.style.ParagraphPropertiesComplex */ public class _ParagraphPropertiesComplex extends MultiPropertyTest { protected PropertyTester WritingModeTester = new PropertyTester() { protected Object getNewValue(String propName, Object oldValue) { if ((oldValue != null) && (oldValue.equals(new Short(com.sun.star.text.WritingMode2.LR_TB)))) return new Short(com.sun.star.text.WritingMode2.PAGE); else<|fim▁hole|> return new Short(com.sun.star.text.WritingMode2.LR_TB); } } ; public void _WritingMode() { log.println("Testing with custom Property tester") ; testProperty("WritingMode", WritingModeTester) ; } } // finish class _ParagraphPropertiesComplex<|fim▁end|>
<|file_name|>appengine_v1_generated_instances_delete_instance_sync.py<|end_file_name|><|fim▁begin|># -*- coding: utf-8 -*- # Copyright 2022 Google LLC # # Licensed 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. # # Generated code. DO NOT EDIT! # # Snippet for DeleteInstance # NOTE: This snippet has been automatically generated for illustrative purposes only. # It may require modifications to work in your environment. # To install the latest published package dependency, execute the following: # python3 -m pip install google-cloud-appengine-admin<|fim▁hole|> def sample_delete_instance(): # Create a client client = appengine_admin_v1.InstancesClient() # Initialize request argument(s) request = appengine_admin_v1.DeleteInstanceRequest( ) # Make the request operation = client.delete_instance(request=request) print("Waiting for operation to complete...") response = operation.result() # Handle the response print(response) # [END appengine_v1_generated_Instances_DeleteInstance_sync]<|fim▁end|>
# [START appengine_v1_generated_Instances_DeleteInstance_sync] from google.cloud import appengine_admin_v1
<|file_name|>ember.js<|end_file_name|><|fim▁begin|>(function() { var define, requireModule; (function() { var registry = {}, seen = {}; define = function(name, deps, callback) { registry[name] = { deps: deps, callback: callback }; }; requireModule = function(name) { if (seen[name]) { return seen[name]; } seen[name] = {}; var mod = registry[name], deps = mod.deps, callback = mod.callback, reified = [], exports; for (var i=0, l=deps.length; i<l; i++) { if (deps[i] === 'exports') { reified.push(exports = {}); } else { reified.push(requireModule(deps[i])); } } var value = callback.apply(this, reified); return seen[name] = exports || value; }; })(); (function() { /*globals Em:true ENV */ /** @module ember @submodule ember-metal */ /** All Ember methods and functions are defined inside of this namespace. You generally should not add new properties to this namespace as it may be overwritten by future versions of Ember. You can also use the shorthand `Em` instead of `Ember`. Ember-Runtime is a framework that provides core functions for Ember including cross-platform functions, support for property observing and objects. Its focus is on small size and performance. You can use this in place of or along-side other cross-platform libraries such as jQuery. The core Runtime framework is based on the jQuery API with a number of performance optimizations. @class Ember @static @version 1.0.0-pre.4 */ if ('undefined' === typeof Ember) { // Create core object. Make it act like an instance of Ember.Namespace so that // objects assigned to it are given a sane string representation. Ember = {}; } // Default imports, exports and lookup to the global object; var imports = Ember.imports = Ember.imports || this; var exports = Ember.exports = Ember.exports || this; var lookup = Ember.lookup = Ember.lookup || this; // aliases needed to keep minifiers from removing the global context exports.Em = exports.Ember = Em = Ember; // Make sure these are set whether Ember was already defined or not Ember.isNamespace = true; Ember.toString = function() { return "Ember"; }; /** @property VERSION @type String @default '1.0.0-pre.4' @final */ Ember.VERSION = '1.0.0-pre.4'; /** Standard environmental variables. You can define these in a global `ENV` variable before loading Ember to control various configuration settings. @property ENV @type Hash */ Ember.ENV = Ember.ENV || ('undefined' === typeof ENV ? {} : ENV); Ember.config = Ember.config || {}; // .......................................................... // BOOTSTRAP // /** Determines whether Ember should enhances some built-in object prototypes to provide a more friendly API. If enabled, a few methods will be added to `Function`, `String`, and `Array`. `Object.prototype` will not be enhanced, which is the one that causes most trouble for people. In general we recommend leaving this option set to true since it rarely conflicts with other code. If you need to turn it off however, you can define an `ENV.EXTEND_PROTOTYPES` config to disable it. @property EXTEND_PROTOTYPES @type Boolean @default true */ Ember.EXTEND_PROTOTYPES = Ember.ENV.EXTEND_PROTOTYPES; if (typeof Ember.EXTEND_PROTOTYPES === 'undefined') { Ember.EXTEND_PROTOTYPES = true; } /** Determines whether Ember logs a full stack trace during deprecation warnings @property LOG_STACKTRACE_ON_DEPRECATION @type Boolean @default true */ Ember.LOG_STACKTRACE_ON_DEPRECATION = (Ember.ENV.LOG_STACKTRACE_ON_DEPRECATION !== false); /** Determines whether Ember should add ECMAScript 5 shims to older browsers. @property SHIM_ES5 @type Boolean @default Ember.EXTEND_PROTOTYPES */ Ember.SHIM_ES5 = (Ember.ENV.SHIM_ES5 === false) ? false : Ember.EXTEND_PROTOTYPES; /** Empty function. Useful for some operations. @method K @private @return {Object} */ Ember.K = function() { return this; }; // Stub out the methods defined by the ember-debug package in case it's not loaded if ('undefined' === typeof Ember.assert) { Ember.assert = Ember.K; } if ('undefined' === typeof Ember.warn) { Ember.warn = Ember.K; } if ('undefined' === typeof Ember.debug) { Ember.debug = Ember.K; } if ('undefined' === typeof Ember.deprecate) { Ember.deprecate = Ember.K; } if ('undefined' === typeof Ember.deprecateFunc) { Ember.deprecateFunc = function(_, func) { return func; }; } /** Previously we used `Ember.$.uuid`, however `$.uuid` has been removed from jQuery master. We'll just bootstrap our own uuid now. @property uuid @type Number @private */ Ember.uuid = 0; // .......................................................... // LOGGER // function consoleMethod(name) { if (imports.console && imports.console[name]) { // Older IE doesn't support apply, but Chrome needs it if (imports.console[name].apply) { return function() { imports.console[name].apply(imports.console, arguments); }; } else { return function() { var message = Array.prototype.join.call(arguments, ', '); imports.console[name](message); }; } } } /** Inside Ember-Metal, simply uses the methods from `imports.console`. Override this to provide more robust logging functionality. @class Logger @namespace Ember */ Ember.Logger = { log: consoleMethod('log') || Ember.K, warn: consoleMethod('warn') || Ember.K, error: consoleMethod('error') || Ember.K, info: consoleMethod('info') || Ember.K, debug: consoleMethod('debug') || consoleMethod('info') || Ember.K }; // .......................................................... // ERROR HANDLING // /** A function may be assigned to `Ember.onerror` to be called when Ember internals encounter an error. This is useful for specialized error handling and reporting code. @event onerror @for Ember @param {Exception} error the error object */ Ember.onerror = null; /** @private Wrap code block in a try/catch if {{#crossLink "Ember/onerror"}}{{/crossLink}} is set. @method handleErrors @for Ember @param {Function} func @param [context] */ Ember.handleErrors = function(func, context) { // Unfortunately in some browsers we lose the backtrace if we rethrow the existing error, // so in the event that we don't have an `onerror` handler we don't wrap in a try/catch if ('function' === typeof Ember.onerror) { try { return func.apply(context || this); } catch (error) { Ember.onerror(error); } } else { return func.apply(context || this); } }; Ember.merge = function(original, updates) { for (var prop in updates) { if (!updates.hasOwnProperty(prop)) { continue; } original[prop] = updates[prop]; } }; })(); (function() { /*globals Node */ /** @module ember-metal */ /** Platform specific methods and feature detectors needed by the framework. @class platform @namespace Ember @static */ var platform = Ember.platform = {}; /** Identical to `Object.create()`. Implements if not available natively. @method create @for Ember */ Ember.create = Object.create; // STUB_OBJECT_CREATE allows us to override other libraries that stub // Object.create different than we would prefer if (!Ember.create || Ember.ENV.STUB_OBJECT_CREATE) { var K = function() {}; Ember.create = function(obj, props) { K.prototype = obj; obj = new K(); if (props) { K.prototype = obj; for (var prop in props) { K.prototype[prop] = props[prop].value; } obj = new K(); } K.prototype = null; return obj; }; Ember.create.isSimulated = true; } var defineProperty = Object.defineProperty; var canRedefineProperties, canDefinePropertyOnDOM; // Catch IE8 where Object.defineProperty exists but only works on DOM elements if (defineProperty) { try { defineProperty({}, 'a',{get:function(){}}); } catch (e) { defineProperty = null; } } if (defineProperty) { // Detects a bug in Android <3.2 where you cannot redefine a property using // Object.defineProperty once accessors have already been set. canRedefineProperties = (function() { var obj = {}; defineProperty(obj, 'a', { configurable: true, enumerable: true, get: function() { }, set: function() { } }); defineProperty(obj, 'a', { configurable: true, enumerable: true, writable: true, value: true }); return obj.a === true; })(); // This is for Safari 5.0, which supports Object.defineProperty, but not // on DOM nodes. canDefinePropertyOnDOM = (function(){ try { defineProperty(document.createElement('div'), 'definePropertyOnDOM', {}); return true; } catch(e) { } return false; })(); if (!canRedefineProperties) { defineProperty = null; } else if (!canDefinePropertyOnDOM) { defineProperty = function(obj, keyName, desc){ var isNode; if (typeof Node === "object") { isNode = obj instanceof Node; } else { isNode = typeof obj === "object" && typeof obj.nodeType === "number" && typeof obj.nodeName === "string"; } if (isNode) { // TODO: Should we have a warning here? return (obj[keyName] = desc.value); } else { return Object.defineProperty(obj, keyName, desc); } }; } } /** @class platform @namespace Ember */ /** Identical to `Object.defineProperty()`. Implements as much functionality as possible if not available natively. @method defineProperty @param {Object} obj The object to modify @param {String} keyName property name to modify @param {Object} desc descriptor hash @return {void} */ platform.defineProperty = defineProperty; /** Set to true if the platform supports native getters and setters. @property hasPropertyAccessors @final */ platform.hasPropertyAccessors = true; if (!platform.defineProperty) { platform.hasPropertyAccessors = false; platform.defineProperty = function(obj, keyName, desc) { if (!desc.get) { obj[keyName] = desc.value; } }; platform.defineProperty.isSimulated = true; } if (Ember.ENV.MANDATORY_SETTER && !platform.hasPropertyAccessors) { Ember.ENV.MANDATORY_SETTER = false; } })(); (function() { /** @module ember-metal */ var o_defineProperty = Ember.platform.defineProperty, o_create = Ember.create, // Used for guid generation... GUID_KEY = '__ember'+ (+ new Date()), uuid = 0, numberCache = [], stringCache = {}; var MANDATORY_SETTER = Ember.ENV.MANDATORY_SETTER; /** @private A unique key used to assign guids and other private metadata to objects. If you inspect an object in your browser debugger you will often see these. They can be safely ignored. On browsers that support it, these properties are added with enumeration disabled so they won't show up when you iterate over your properties. @property GUID_KEY @for Ember @type String @final */ Ember.GUID_KEY = GUID_KEY; var GUID_DESC = { writable: false, configurable: false, enumerable: false, value: null }; /** @private Generates a new guid, optionally saving the guid to the object that you pass in. You will rarely need to use this method. Instead you should call `Ember.guidFor(obj)`, which return an existing guid if available. @method generateGuid @for Ember @param {Object} [obj] Object the guid will be used for. If passed in, the guid will be saved on the object and reused whenever you pass the same object again. If no object is passed, just generate a new guid. @param {String} [prefix] Prefix to place in front of the guid. Useful when you want to separate the guid into separate namespaces. @return {String} the guid */ Ember.generateGuid = function generateGuid(obj, prefix) { if (!prefix) prefix = 'ember'; var ret = (prefix + (uuid++)); if (obj) { GUID_DESC.value = ret; o_defineProperty(obj, GUID_KEY, GUID_DESC); } return ret ; }; /** @private Returns a unique id for the object. If the object does not yet have a guid, one will be assigned to it. You can call this on any object, `Ember.Object`-based or not, but be aware that it will add a `_guid` property. You can also use this method on DOM Element objects. @method guidFor @for Ember @param obj {Object} any object, string, number, Element, or primitive @return {String} the unique guid for this instance. */ Ember.guidFor = function guidFor(obj) { // special cases where we don't want to add a key to object if (obj === undefined) return "(undefined)"; if (obj === null) return "(null)"; var cache, ret; var type = typeof obj; // Don't allow prototype changes to String etc. to change the guidFor switch(type) { case 'number': ret = numberCache[obj]; if (!ret) ret = numberCache[obj] = 'nu'+obj; return ret; case 'string': ret = stringCache[obj]; if (!ret) ret = stringCache[obj] = 'st'+(uuid++); return ret; case 'boolean': return obj ? '(true)' : '(false)'; default: if (obj[GUID_KEY]) return obj[GUID_KEY]; if (obj === Object) return '(Object)'; if (obj === Array) return '(Array)'; ret = 'ember'+(uuid++); GUID_DESC.value = ret; o_defineProperty(obj, GUID_KEY, GUID_DESC); return ret; } }; // .......................................................... // META // var META_DESC = { writable: true, configurable: false, enumerable: false, value: null }; var META_KEY = Ember.GUID_KEY+'_meta'; /** The key used to store meta information on object for property observing. @property META_KEY @for Ember @private @final @type String */ Ember.META_KEY = META_KEY; // Placeholder for non-writable metas. var EMPTY_META = { descs: {}, watching: {} }; if (MANDATORY_SETTER) { EMPTY_META.values = {}; } Ember.EMPTY_META = EMPTY_META; if (Object.freeze) Object.freeze(EMPTY_META); var isDefinePropertySimulated = Ember.platform.defineProperty.isSimulated; function Meta(obj) { this.descs = {}; this.watching = {}; this.cache = {}; this.source = obj; } if (isDefinePropertySimulated) { // on platforms that don't support enumerable false // make meta fail jQuery.isPlainObject() to hide from // jQuery.extend() by having a property that fails // hasOwnProperty check. Meta.prototype.__preventPlainObject__ = true; // Without non-enumerable properties, meta objects will be output in JSON // unless explicitly suppressed Meta.prototype.toJSON = function () { }; } /** Retrieves the meta hash for an object. If `writable` is true ensures the hash is writable for this object as well. The meta object contains information about computed property descriptors as well as any watched properties and other information. You generally will not access this information directly but instead work with higher level methods that manipulate this hash indirectly. @method meta @for Ember @private @param {Object} obj The object to retrieve meta for @param {Boolean} [writable=true] Pass `false` if you do not intend to modify the meta hash, allowing the method to avoid making an unnecessary copy. @return {Hash} */ Ember.meta = function meta(obj, writable) { var ret = obj[META_KEY]; if (writable===false) return ret || EMPTY_META; if (!ret) { if (!isDefinePropertySimulated) o_defineProperty(obj, META_KEY, META_DESC); ret = new Meta(obj); if (MANDATORY_SETTER) { ret.values = {}; } obj[META_KEY] = ret; // make sure we don't accidentally try to create constructor like desc ret.descs.constructor = null; } else if (ret.source !== obj) { if (!isDefinePropertySimulated) o_defineProperty(obj, META_KEY, META_DESC); ret = o_create(ret); ret.descs = o_create(ret.descs); ret.watching = o_create(ret.watching); ret.cache = {}; ret.source = obj; if (MANDATORY_SETTER) { ret.values = o_create(ret.values); } obj[META_KEY] = ret; } return ret; }; Ember.getMeta = function getMeta(obj, property) { var meta = Ember.meta(obj, false); return meta[property]; }; Ember.setMeta = function setMeta(obj, property, value) { var meta = Ember.meta(obj, true); meta[property] = value; return value; }; /** @private In order to store defaults for a class, a prototype may need to create a default meta object, which will be inherited by any objects instantiated from the class's constructor. However, the properties of that meta object are only shallow-cloned, so if a property is a hash (like the event system's `listeners` hash), it will by default be shared across all instances of that class. This method allows extensions to deeply clone a series of nested hashes or other complex objects. For instance, the event system might pass `['listeners', 'foo:change', 'ember157']` to `prepareMetaPath`, which will walk down the keys provided. For each key, if the key does not exist, it is created. If it already exists and it was inherited from its constructor, the constructor's key is cloned. You can also pass false for `writable`, which will simply return undefined if `prepareMetaPath` discovers any part of the path that shared or undefined. @method metaPath @for Ember @param {Object} obj The object whose meta we are examining @param {Array} path An array of keys to walk down @param {Boolean} writable whether or not to create a new meta (or meta property) if one does not already exist or if it's shared with its constructor */ Ember.metaPath = function metaPath(obj, path, writable) { var meta = Ember.meta(obj, writable), keyName, value; for (var i=0, l=path.length; i<l; i++) { keyName = path[i]; value = meta[keyName]; if (!value) { if (!writable) { return undefined; } value = meta[keyName] = { __ember_source__: obj }; } else if (value.__ember_source__ !== obj) { if (!writable) { return undefined; } value = meta[keyName] = o_create(value); value.__ember_source__ = obj; } meta = value; } return value; }; /** @private Wraps the passed function so that `this._super` will point to the superFunc when the function is invoked. This is the primitive we use to implement calls to super. @method wrap @for Ember @param {Function} func The function to call @param {Function} superFunc The super function. @return {Function} wrapped function. */ Ember.wrap = function(func, superFunc) { function K() {} function superWrapper() { var ret, sup = this._super; this._super = superFunc || K; ret = func.apply(this, arguments); this._super = sup; return ret; } superWrapper.wrappedFunction = func; superWrapper.__ember_observes__ = func.__ember_observes__; superWrapper.__ember_observesBefore__ = func.__ember_observesBefore__; return superWrapper; }; /** Returns true if the passed object is an array or Array-like. Ember Array Protocol: - the object has an objectAt property - the object is a native Array - the object is an Object, and has a length property Unlike `Ember.typeOf` this method returns true even if the passed object is not formally array but appears to be array-like (i.e. implements `Ember.Array`) ```javascript Ember.isArray(); // false Ember.isArray([]); // true Ember.isArray( Ember.ArrayProxy.create({ content: [] }) ); // true ``` @method isArray @for Ember @param {Object} obj The object to test @return {Boolean} */ Ember.isArray = function(obj) { if (!obj || obj.setInterval) { return false; } if (Array.isArray && Array.isArray(obj)) { return true; } if (Ember.Array && Ember.Array.detect(obj)) { return true; } if ((obj.length !== undefined) && 'object'===typeof obj) { return true; } return false; }; /** Forces the passed object to be part of an array. If the object is already an array or array-like, returns the object. Otherwise adds the object to an array. If obj is `null` or `undefined`, returns an empty array. ```javascript Ember.makeArray(); // [] Ember.makeArray(null); // [] Ember.makeArray(undefined); // [] Ember.makeArray('lindsay'); // ['lindsay'] Ember.makeArray([1,2,42]); // [1,2,42] var controller = Ember.ArrayProxy.create({ content: [] }); Ember.makeArray(controller) === controller; // true ``` @method makeArray @for Ember @param {Object} obj the object @return {Array} */ Ember.makeArray = function(obj) { if (obj === null || obj === undefined) { return []; } return Ember.isArray(obj) ? obj : [obj]; }; function canInvoke(obj, methodName) { return !!(obj && typeof obj[methodName] === 'function'); } /** Checks to see if the `methodName` exists on the `obj`. @method canInvoke @for Ember @param {Object} obj The object to check for the method @param {String} methodName The method name to check for */ Ember.canInvoke = canInvoke; /** Checks to see if the `methodName` exists on the `obj`, and if it does, invokes it with the arguments passed. @method tryInvoke @for Ember @param {Object} obj The object to check for the method @param {String} methodName The method name to check for @param {Array} [args] The arguments to pass to the method @return {anything} the return value of the invoked method or undefined if it cannot be invoked */ Ember.tryInvoke = function(obj, methodName, args) { if (canInvoke(obj, methodName)) { return obj[methodName].apply(obj, args || []); } }; // https://github.com/emberjs/ember.js/pull/1617 var needsFinallyFix = (function() { var count = 0; try{ try { } finally { count++; throw new Error('needsFinallyFixTest'); } } catch (e) {} return count !== 1; })(); /** Provides try { } finally { } functionality, while working around Safari's double finally bug. @method tryFinally @for Ember @param {Function} function The function to run the try callback @param {Function} function The function to run the finally callback @param [binding] @return {anything} The return value is the that of the finalizer, unless that valueis undefined, in which case it is the return value of the tryable */ if (needsFinallyFix) { Ember.tryFinally = function(tryable, finalizer, binding) { var result, finalResult, finalError; binding = binding || this; try { result = tryable.call(binding); } finally { try { finalResult = finalizer.call(binding); } catch (e){ finalError = e; } } if (finalError) { throw finalError; } return (finalResult === undefined) ? result : finalResult; }; } else { Ember.tryFinally = function(tryable, finalizer, binding) { var result, finalResult; binding = binding || this; try { result = tryable.call(binding); } finally { finalResult = finalizer.call(binding); } return (finalResult === undefined) ? result : finalResult; }; } /** Provides try { } catch finally { } functionality, while working around Safari's double finally bug. @method tryCatchFinally @for Ember @param {Function} function The function to run the try callback @param {Function} function The function to run the catchable callback @param {Function} function The function to run the finally callback @param [binding] @return {anything} The return value is the that of the finalizer, unless that value is undefined, in which case it is the return value of the tryable. */ if (needsFinallyFix) { Ember.tryCatchFinally = function(tryable, catchable, finalizer, binding) { var result, finalResult, finalError, finalReturn; binding = binding || this; try { result = tryable.call(binding); } catch(error) { result = catchable.call(binding, error); } finally { try { finalResult = finalizer.call(binding); } catch (e){ finalError = e; } } if (finalError) { throw finalError; } return (finalResult === undefined) ? result : finalResult; }; } else { Ember.tryCatchFinally = function(tryable, catchable, finalizer, binding) { var result, finalResult; binding = binding || this; try { result = tryable.call(binding); } catch(error) { result = catchable.call(binding, error); } finally { finalResult = finalizer.call(binding); } return (finalResult === undefined) ? result : finalResult; }; } })(); (function() { // Ember.tryCatchFinally /** The purpose of the Ember Instrumentation module is to provide efficient, general-purpose instrumentation for Ember. Subscribe to a listener by using `Ember.subscribe`: ```javascript Ember.subscribe("render", { before: function(name, timestamp, payload) { }, after: function(name, timestamp, payload) { } }); ``` If you return a value from the `before` callback, that same value will be passed as a fourth parameter to the `after` callback. Instrument a block of code by using `Ember.instrument`: ```javascript Ember.instrument("render.handlebars", payload, function() { // rendering logic }, binding); ``` Event names passed to `Ember.instrument` are namespaced by periods, from more general to more specific. Subscribers can listen for events by whatever level of granularity they are interested in. In the above example, the event is `render.handlebars`, and the subscriber listened for all events beginning with `render`. It would receive callbacks for events named `render`, `render.handlebars`, `render.container`, or even `render.handlebars.layout`. @class Instrumentation @namespace Ember @static */ Ember.Instrumentation = {}; var subscribers = [], cache = {}; var populateListeners = function(name) { var listeners = [], subscriber; for (var i=0, l=subscribers.length; i<l; i++) { subscriber = subscribers[i]; if (subscriber.regex.test(name)) { listeners.push(subscriber.object); } } cache[name] = listeners; return listeners; }; var time = (function() { var perf = 'undefined' !== typeof window ? window.performance || {} : {}; var fn = perf.now || perf.mozNow || perf.webkitNow || perf.msNow || perf.oNow; // fn.bind will be available in all the browsers that support the advanced window.performance... ;-) return fn ? fn.bind(perf) : function() { return +new Date(); }; })(); Ember.Instrumentation.instrument = function(name, payload, callback, binding) { var listeners = cache[name], timeName, ret; if (Ember.STRUCTURED_PROFILE) { timeName = name + ": " + payload.object; console.time(timeName); } if (!listeners) { listeners = populateListeners(name); } if (listeners.length === 0) { ret = callback.call(binding); if (Ember.STRUCTURED_PROFILE) { console.timeEnd(timeName); } return ret; } var beforeValues = [], listener, i, l; function tryable(){ for (i=0, l=listeners.length; i<l; i++) { listener = listeners[i]; beforeValues[i] = listener.before(name, time(), payload); } return callback.call(binding); } function catchable(e){ payload = payload || {}; payload.exception = e; } function finalizer() { for (i=0, l=listeners.length; i<l; i++) { listener = listeners[i]; listener.after(name, time(), payload, beforeValues[i]); } if (Ember.STRUCTURED_PROFILE) { console.timeEnd(timeName); } } return Ember.tryCatchFinally(tryable, catchable, finalizer); }; Ember.Instrumentation.subscribe = function(pattern, object) { var paths = pattern.split("."), path, regex = []; for (var i=0, l=paths.length; i<l; i++) { path = paths[i]; if (path === "*") { regex.push("[^\\.]*"); } else { regex.push(path); } } regex = regex.join("\\."); regex = regex + "(\\..*)?"; var subscriber = { pattern: pattern, regex: new RegExp("^" + regex + "$"), object: object }; subscribers.push(subscriber); cache = {}; return subscriber; }; Ember.Instrumentation.unsubscribe = function(subscriber) { var index; for (var i=0, l=subscribers.length; i<l; i++) { if (subscribers[i] === subscriber) { index = i; } } subscribers.splice(index, 1); cache = {}; }; Ember.Instrumentation.reset = function() { subscribers = []; cache = {}; }; Ember.instrument = Ember.Instrumentation.instrument; Ember.subscribe = Ember.Instrumentation.subscribe; })(); (function() { var utils = Ember.EnumerableUtils = { map: function(obj, callback, thisArg) { return obj.map ? obj.map.call(obj, callback, thisArg) : Array.prototype.map.call(obj, callback, thisArg); }, forEach: function(obj, callback, thisArg) { return obj.forEach ? obj.forEach.call(obj, callback, thisArg) : Array.prototype.forEach.call(obj, callback, thisArg); }, indexOf: function(obj, element, index) { return obj.indexOf ? obj.indexOf.call(obj, element, index) : Array.prototype.indexOf.call(obj, element, index); }, indexesOf: function(obj, elements) { return elements === undefined ? [] : utils.map(elements, function(item) { return utils.indexOf(obj, item); }); }, addObject: function(array, item) { var index = utils.indexOf(array, item); if (index === -1) { array.push(item); } }, removeObject: function(array, item) { var index = utils.indexOf(array, item); if (index !== -1) { array.splice(index, 1); } }, replace: function(array, idx, amt, objects) { if (array.replace) { return array.replace(idx, amt, objects); } else { var args = Array.prototype.concat.apply([idx, amt], objects); return array.splice.apply(array, args); } }, intersection: function(array1, array2) { var intersection = []; array1.forEach(function(element) { if (array2.indexOf(element) >= 0) { intersection.push(element); } }); return intersection; } }; })(); (function() { /*jshint newcap:false*/ /** @module ember-metal */ // NOTE: There is a bug in jshint that doesn't recognize `Object()` without `new` // as being ok unless both `newcap:false` and not `use strict`. // https://github.com/jshint/jshint/issues/392 // Testing this is not ideal, but we want to use native functions // if available, but not to use versions created by libraries like Prototype var isNativeFunc = function(func) { // This should probably work in all browsers likely to have ES5 array methods return func && Function.prototype.toString.call(func).indexOf('[native code]') > -1; }; // From: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/array/map var arrayMap = isNativeFunc(Array.prototype.map) ? Array.prototype.map : function(fun /*, thisp */) { //"use strict"; if (this === void 0 || this === null) { throw new TypeError(); } var t = Object(this); var len = t.length >>> 0; if (typeof fun !== "function") { throw new TypeError(); } var res = new Array(len); var thisp = arguments[1]; for (var i = 0; i < len; i++) { if (i in t) { res[i] = fun.call(thisp, t[i], i, t); } } return res; }; // From: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/array/foreach var arrayForEach = isNativeFunc(Array.prototype.forEach) ? Array.prototype.forEach : function(fun /*, thisp */) { //"use strict"; if (this === void 0 || this === null) { throw new TypeError(); } var t = Object(this); var len = t.length >>> 0; if (typeof fun !== "function") { throw new TypeError(); } var thisp = arguments[1]; for (var i = 0; i < len; i++) { if (i in t) { fun.call(thisp, t[i], i, t); } } }; var arrayIndexOf = isNativeFunc(Array.prototype.indexOf) ? Array.prototype.indexOf : function (obj, fromIndex) { if (fromIndex === null || fromIndex === undefined) { fromIndex = 0; } else if (fromIndex < 0) { fromIndex = Math.max(0, this.length + fromIndex); } for (var i = fromIndex, j = this.length; i < j; i++) { if (this[i] === obj) { return i; } } return -1; }; Ember.ArrayPolyfills = { map: arrayMap, forEach: arrayForEach, indexOf: arrayIndexOf }; if (Ember.SHIM_ES5) { if (!Array.prototype.map) { Array.prototype.map = arrayMap; } if (!Array.prototype.forEach) { Array.prototype.forEach = arrayForEach; } if (!Array.prototype.indexOf) { Array.prototype.indexOf = arrayIndexOf; } } })(); (function() { /** @module ember-metal */ /* JavaScript (before ES6) does not have a Map implementation. Objects, which are often used as dictionaries, may only have Strings as keys. Because Ember has a way to get a unique identifier for every object via `Ember.guidFor`, we can implement a performant Map with arbitrary keys. Because it is commonly used in low-level bookkeeping, Map is implemented as a pure JavaScript object for performance. This implementation follows the current iteration of the ES6 proposal for maps (http://wiki.ecmascript.org/doku.php?id=harmony:simple_maps_and_sets), with two exceptions. First, because we need our implementation to be pleasant on older browsers, we do not use the `delete` name (using `remove` instead). Second, as we do not have the luxury of in-VM iteration, we implement a forEach method for iteration. Map is mocked out to look like an Ember object, so you can do `Ember.Map.create()` for symmetry with other Ember classes. */ var guidFor = Ember.guidFor, indexOf = Ember.ArrayPolyfills.indexOf; var copy = function(obj) { var output = {}; for (var prop in obj) { if (obj.hasOwnProperty(prop)) { output[prop] = obj[prop]; } } return output; }; var copyMap = function(original, newObject) { var keys = original.keys.copy(), values = copy(original.values); newObject.keys = keys; newObject.values = values; return newObject; }; /** This class is used internally by Ember and Ember Data. Please do not use it at this time. We plan to clean it up and add many tests soon. @class OrderedSet @namespace Ember @constructor @private */ var OrderedSet = Ember.OrderedSet = function() { this.clear(); }; /** @method create @static @return {Ember.OrderedSet} */ OrderedSet.create = function() { return new OrderedSet(); }; OrderedSet.prototype = { /** @method clear */ clear: function() { this.presenceSet = {}; this.list = []; }, /** @method add @param obj */ add: function(obj) { var guid = guidFor(obj), presenceSet = this.presenceSet, list = this.list; if (guid in presenceSet) { return; } presenceSet[guid] = true; list.push(obj); }, /** @method remove @param obj */ remove: function(obj) { var guid = guidFor(obj), presenceSet = this.presenceSet, list = this.list; delete presenceSet[guid]; var index = indexOf.call(list, obj); if (index > -1) { list.splice(index, 1); } }, /** @method isEmpty @return {Boolean} */ isEmpty: function() { return this.list.length === 0; }, /** @method has @param obj @return {Boolean} */ has: function(obj) { var guid = guidFor(obj), presenceSet = this.presenceSet; return guid in presenceSet; }, /** @method forEach @param {Function} function @param target */ forEach: function(fn, self) { // allow mutation during iteration var list = this.list.slice(); for (var i = 0, j = list.length; i < j; i++) { fn.call(self, list[i]); } }, /** @method toArray @return {Array} */ toArray: function() { return this.list.slice(); }, /** @method copy @return {Ember.OrderedSet} */ copy: function() { var set = new OrderedSet(); set.presenceSet = copy(this.presenceSet); set.list = this.list.slice(); return set; } }; /** A Map stores values indexed by keys. Unlike JavaScript's default Objects, the keys of a Map can be any JavaScript object. Internally, a Map has two data structures: 1. `keys`: an OrderedSet of all of the existing keys 2. `values`: a JavaScript Object indexed by the `Ember.guidFor(key)` When a key/value pair is added for the first time, we add the key to the `keys` OrderedSet, and create or replace an entry in `values`. When an entry is deleted, we delete its entry in `keys` and `values`. @class Map @namespace Ember @private @constructor */ var Map = Ember.Map = function() { this.keys = Ember.OrderedSet.create(); this.values = {}; }; /** @method create @static */ Map.create = function() { return new Map(); }; Map.prototype = { /** Retrieve the value associated with a given key. @method get @param {anything} key @return {anything} the value associated with the key, or `undefined` */ get: function(key) { var values = this.values, guid = guidFor(key); return values[guid]; }, /** Adds a value to the map. If a value for the given key has already been provided, the new value will replace the old value. @method set @param {anything} key @param {anything} value */ set: function(key, value) { var keys = this.keys, values = this.values, guid = guidFor(key); keys.add(key); values[guid] = value; }, /** Removes a value from the map for an associated key. @method remove @param {anything} key @return {Boolean} true if an item was removed, false otherwise */ remove: function(key) { // don't use ES6 "delete" because it will be annoying // to use in browsers that are not ES6 friendly; var keys = this.keys, values = this.values, guid = guidFor(key), value; if (values.hasOwnProperty(guid)) { keys.remove(key); value = values[guid]; delete values[guid]; return true; } else { return false; } }, /** Check whether a key is present. @method has @param {anything} key @return {Boolean} true if the item was present, false otherwise */ has: function(key) { var values = this.values, guid = guidFor(key); return values.hasOwnProperty(guid); }, /** Iterate over all the keys and values. Calls the function once for each key, passing in the key and value, in that order. The keys are guaranteed to be iterated over in insertion order. @method forEach @param {Function} callback @param {anything} self if passed, the `this` value inside the callback. By default, `this` is the map. */ forEach: function(callback, self) { var keys = this.keys, values = this.values; keys.forEach(function(key) { var guid = guidFor(key); callback.call(self, key, values[guid]); }); }, /** @method copy @return {Ember.Map} */ copy: function() { return copyMap(this, new Map()); } }; /** @class MapWithDefault @namespace Ember @extends Ember.Map @private @constructor @param [options] @param {anything} [options.defaultValue] */ var MapWithDefault = Ember.MapWithDefault = function(options) { Map.call(this); this.defaultValue = options.defaultValue; }; /** @method create @static @param [options] @param {anything} [options.defaultValue] @return {Ember.MapWithDefault|Ember.Map} If options are passed, returns `Ember.MapWithDefault` otherwise returns `Ember.Map` */ MapWithDefault.create = function(options) { if (options) { return new MapWithDefault(options); } else { return new Map(); } }; MapWithDefault.prototype = Ember.create(Map.prototype); /** Retrieve the value associated with a given key. @method get @param {anything} key @return {anything} the value associated with the key, or the default value */ MapWithDefault.prototype.get = function(key) { var hasValue = this.has(key); if (hasValue) { return Map.prototype.get.call(this, key); } else { var defaultValue = this.defaultValue(key); this.set(key, defaultValue); return defaultValue; } }; /** @method copy @return {Ember.MapWithDefault} */ MapWithDefault.prototype.copy = function() { return copyMap(this, new MapWithDefault({ defaultValue: this.defaultValue })); }; })(); (function() { /** @module ember-metal */ var META_KEY = Ember.META_KEY, get, set; var MANDATORY_SETTER = Ember.ENV.MANDATORY_SETTER; var IS_GLOBAL = /^([A-Z$]|([0-9][A-Z$]))/; var IS_GLOBAL_PATH = /^([A-Z$]|([0-9][A-Z$])).*[\.\*]/; var HAS_THIS = /^this[\.\*]/; var FIRST_KEY = /^([^\.\*]+)/; // .......................................................... // GET AND SET // // If we are on a platform that supports accessors we can get use those. // Otherwise simulate accessors by looking up the property directly on the // object. /** Gets the value of a property on an object. If the property is computed, the function will be invoked. If the property is not defined but the object implements the `unknownProperty` method then that will be invoked. If you plan to run on IE8 and older browsers then you should use this method anytime you want to retrieve a property on an object that you don't know for sure is private. (Properties beginning with an underscore '_' are considered private.) On all newer browsers, you only need to use this method to retrieve properties if the property might not be defined on the object and you want to respect the `unknownProperty` handler. Otherwise you can ignore this method. Note that if the object itself is `undefined`, this method will throw an error. @method get @for Ember @param {Object} obj The object to retrieve from. @param {String} keyName The property key to retrieve @return {Object} the property value or `null`. */ get = function get(obj, keyName) { // Helpers that operate with 'this' within an #each if (keyName === '') { return obj; } if (!keyName && 'string'===typeof obj) { keyName = obj; obj = null; } if (!obj || keyName.indexOf('.') !== -1) { return getPath(obj, keyName); } var meta = obj[META_KEY], desc = meta && meta.descs[keyName], ret; if (desc) { return desc.get(obj, keyName); } else { if (MANDATORY_SETTER && meta && meta.watching[keyName] > 0) { ret = meta.values[keyName]; } else { ret = obj[keyName]; } if (ret === undefined && 'object' === typeof obj && !(keyName in obj) && 'function' === typeof obj.unknownProperty) { return obj.unknownProperty(keyName); } return ret; } }; /** Sets the value of a property on an object, respecting computed properties and notifying observers and other listeners of the change. If the property is not defined but the object implements the `unknownProperty` method then that will be invoked as well. If you plan to run on IE8 and older browsers then you should use this method anytime you want to set a property on an object that you don't know for sure is private. (Properties beginning with an underscore '_' are considered private.) On all newer browsers, you only need to use this method to set properties if the property might not be defined on the object and you want to respect the `unknownProperty` handler. Otherwise you can ignore this method. @method set @for Ember @param {Object} obj The object to modify. @param {String} keyName The property key to set @param {Object} value The value to set @return {Object} the passed value. */ set = function set(obj, keyName, value, tolerant) { if (typeof obj === 'string') { value = keyName; keyName = obj; obj = null; } if (!obj || keyName.indexOf('.') !== -1) { return setPath(obj, keyName, value, tolerant); } var meta = obj[META_KEY], desc = meta && meta.descs[keyName], isUnknown, currentValue; if (desc) { desc.set(obj, keyName, value); } else { isUnknown = 'object' === typeof obj && !(keyName in obj); // setUnknownProperty is called if `obj` is an object, // the property does not already exist, and the // `setUnknownProperty` method exists on the object if (isUnknown && 'function' === typeof obj.setUnknownProperty) { obj.setUnknownProperty(keyName, value); } else if (meta && meta.watching[keyName] > 0) { if (MANDATORY_SETTER) { currentValue = meta.values[keyName]; } else { currentValue = obj[keyName]; } // only trigger a change if the value has changed if (value !== currentValue) { Ember.propertyWillChange(obj, keyName); if (MANDATORY_SETTER) { if (currentValue === undefined && !(keyName in obj)) { Ember.defineProperty(obj, keyName, null, value); // setup mandatory setter } else { meta.values[keyName] = value; } } else { obj[keyName] = value; } Ember.propertyDidChange(obj, keyName); } } else { obj[keyName] = value; } } return value; }; // Currently used only by Ember Data tests if (Ember.config.overrideAccessors) { Ember.get = get; Ember.set = set; Ember.config.overrideAccessors(); get = Ember.get; set = Ember.set; } function firstKey(path) { return path.match(FIRST_KEY)[0]; } // assumes path is already normalized function normalizeTuple(target, path) { var hasThis = HAS_THIS.test(path), isGlobal = !hasThis && IS_GLOBAL_PATH.test(path), key; if (!target || isGlobal) target = Ember.lookup; if (hasThis) path = path.slice(5); if (target === Ember.lookup) { key = firstKey(path); target = get(target, key); path = path.slice(key.length+1); } // must return some kind of path to be valid else other things will break. if (!path || path.length===0) throw new Error('Invalid Path'); return [ target, path ]; } function getPath(root, path) { var hasThis, parts, tuple, idx, len; // If there is no root and path is a key name, return that // property from the global object. // E.g. get('Ember') -> Ember if (root === null && path.indexOf('.') === -1) { return get(Ember.lookup, path); } // detect complicated paths and normalize them hasThis = HAS_THIS.test(path); if (!root || hasThis) { tuple = normalizeTuple(root, path); root = tuple[0]; path = tuple[1]; tuple.length = 0; } parts = path.split("."); len = parts.length; for (idx=0; root && idx<len; idx++) { root = get(root, parts[idx], true); if (root && root.isDestroyed) { return undefined; } } return root; } function setPath(root, path, value, tolerant) { var keyName; // get the last part of the path keyName = path.slice(path.lastIndexOf('.') + 1); // get the first part of the part path = path.slice(0, path.length-(keyName.length+1)); // unless the path is this, look up the first part to // get the root if (path !== 'this') { root = getPath(root, path); } if (!keyName || keyName.length === 0) { throw new Error('You passed an empty path'); } if (!root) { if (tolerant) { return; } else { throw new Error('Object in path '+path+' could not be found or was destroyed.'); } } return set(root, keyName, value); } /** @private Normalizes a target/path pair to reflect that actual target/path that should be observed, etc. This takes into account passing in global property paths (i.e. a path beginning with a captial letter not defined on the target) and * separators. @method normalizeTuple @for Ember @param {Object} target The current target. May be `null`. @param {String} path A path on the target or a global property path. @return {Array} a temporary array with the normalized target/path pair. */ Ember.normalizeTuple = function(target, path) { return normalizeTuple(target, path); }; Ember.getWithDefault = function(root, key, defaultValue) { var value = get(root, key); if (value === undefined) { return defaultValue; } return value; }; Ember.get = get; Ember.getPath = Ember.deprecateFunc('getPath is deprecated since get now supports paths', Ember.get); Ember.set = set; Ember.setPath = Ember.deprecateFunc('setPath is deprecated since set now supports paths', Ember.set); /** Error-tolerant form of `Ember.set`. Will not blow up if any part of the chain is `undefined`, `null`, or destroyed. This is primarily used when syncing bindings, which may try to update after an object has been destroyed. @method trySet @for Ember @param {Object} obj The object to modify. @param {String} keyName The property key to set @param {Object} value The value to set */ Ember.trySet = function(root, path, value) { return set(root, path, value, true); }; Ember.trySetPath = Ember.deprecateFunc('trySetPath has been renamed to trySet', Ember.trySet); /** Returns true if the provided path is global (e.g., `MyApp.fooController.bar`) instead of local (`foo.bar.baz`). @method isGlobalPath @for Ember @private @param {String} path @return Boolean */ Ember.isGlobalPath = function(path) { return IS_GLOBAL.test(path); }; })(); (function() { /** @module ember-metal */ var GUID_KEY = Ember.GUID_KEY, META_KEY = Ember.META_KEY, EMPTY_META = Ember.EMPTY_META, metaFor = Ember.meta, o_create = Ember.create, objectDefineProperty = Ember.platform.defineProperty; var MANDATORY_SETTER = Ember.ENV.MANDATORY_SETTER; // .......................................................... // DESCRIPTOR // /** Objects of this type can implement an interface to responds requests to get and set. The default implementation handles simple properties. You generally won't need to create or subclass this directly. @class Descriptor @namespace Ember @private @constructor */ var Descriptor = Ember.Descriptor = function() {}; // .......................................................... // DEFINING PROPERTIES API // var MANDATORY_SETTER_FUNCTION = Ember.MANDATORY_SETTER_FUNCTION = function(value) { }; var DEFAULT_GETTER_FUNCTION = Ember.DEFAULT_GETTER_FUNCTION = function(name) { return function() { var meta = this[META_KEY]; return meta && meta.values[name]; }; }; /** @private NOTE: This is a low-level method used by other parts of the API. You almost never want to call this method directly. Instead you should use `Ember.mixin()` to define new properties. Defines a property on an object. This method works much like the ES5 `Object.defineProperty()` method except that it can also accept computed properties and other special descriptors. Normally this method takes only three parameters. However if you pass an instance of `Ember.Descriptor` as the third param then you can pass an optional value as the fourth parameter. This is often more efficient than creating new descriptor hashes for each property. ## Examples ```javascript // ES5 compatible mode Ember.defineProperty(contact, 'firstName', { writable: true, configurable: false, enumerable: true, value: 'Charles' }); // define a simple property Ember.defineProperty(contact, 'lastName', undefined, 'Jolley'); // define a computed property Ember.defineProperty(contact, 'fullName', Ember.computed(function() { return this.firstName+' '+this.lastName; }).property('firstName', 'lastName')); ``` @method defineProperty @for Ember @param {Object} obj the object to define this property on. This may be a prototype. @param {String} keyName the name of the property @param {Ember.Descriptor} [desc] an instance of `Ember.Descriptor` (typically a computed property) or an ES5 descriptor. You must provide this or `data` but not both. @param {anything} [data] something other than a descriptor, that will become the explicit value of this property. */ Ember.defineProperty = function(obj, keyName, desc, data, meta) { var descs, existingDesc, watching, value; if (!meta) meta = metaFor(obj); descs = meta.descs; existingDesc = meta.descs[keyName]; watching = meta.watching[keyName] > 0; if (existingDesc instanceof Ember.Descriptor) { existingDesc.teardown(obj, keyName); } if (desc instanceof Ember.Descriptor) { value = desc; descs[keyName] = desc; if (MANDATORY_SETTER && watching) { objectDefineProperty(obj, keyName, { configurable: true, enumerable: true, writable: true, value: undefined // make enumerable }); } else { obj[keyName] = undefined; // make enumerable } desc.setup(obj, keyName); } else { descs[keyName] = undefined; // shadow descriptor in proto if (desc == null) { value = data; if (MANDATORY_SETTER && watching) { meta.values[keyName] = data; objectDefineProperty(obj, keyName, { configurable: true, enumerable: true, set: MANDATORY_SETTER_FUNCTION, get: DEFAULT_GETTER_FUNCTION(keyName) }); } else { obj[keyName] = data; } } else { value = desc; // compatibility with ES5 objectDefineProperty(obj, keyName, desc); } } // if key is being watched, override chains that // were initialized with the prototype if (watching) { Ember.overrideChains(obj, keyName, meta); } // The `value` passed to the `didDefineProperty` hook is // either the descriptor or data, whichever was passed. if (obj.didDefineProperty) { obj.didDefineProperty(obj, keyName, value); } return this; }; <|fim▁hole|>})(); (function() { // Ember.tryFinally /** @module ember-metal */ var AFTER_OBSERVERS = ':change'; var BEFORE_OBSERVERS = ':before'; var guidFor = Ember.guidFor; var deferred = 0; /* this.observerSet = { [senderGuid]: { // variable name: `keySet` [keyName]: listIndex } }, this.observers = [ { sender: obj, keyName: keyName, eventName: eventName, listeners: [ [target, method, onceFlag, suspendedFlag] ] }, ... ] */ function ObserverSet() { this.clear(); } ObserverSet.prototype.add = function(sender, keyName, eventName) { var observerSet = this.observerSet, observers = this.observers, senderGuid = Ember.guidFor(sender), keySet = observerSet[senderGuid], index; if (!keySet) { observerSet[senderGuid] = keySet = {}; } index = keySet[keyName]; if (index === undefined) { index = observers.push({ sender: sender, keyName: keyName, eventName: eventName, listeners: [] }) - 1; keySet[keyName] = index; } return observers[index].listeners; }; ObserverSet.prototype.flush = function() { var observers = this.observers, i, len, observer, sender; this.clear(); for (i=0, len=observers.length; i < len; ++i) { observer = observers[i]; sender = observer.sender; if (sender.isDestroying || sender.isDestroyed) { continue; } Ember.sendEvent(sender, observer.eventName, [sender, observer.keyName], observer.listeners); } }; ObserverSet.prototype.clear = function() { this.observerSet = {}; this.observers = []; }; var beforeObserverSet = new ObserverSet(), observerSet = new ObserverSet(); /** @method beginPropertyChanges @chainable */ Ember.beginPropertyChanges = function() { deferred++; }; /** @method endPropertyChanges */ Ember.endPropertyChanges = function() { deferred--; if (deferred<=0) { beforeObserverSet.clear(); observerSet.flush(); } }; /** Make a series of property changes together in an exception-safe way. ```javascript Ember.changeProperties(function() { obj1.set('foo', mayBlowUpWhenSet); obj2.set('bar', baz); }); ``` @method changeProperties @param {Function} callback @param [binding] */ Ember.changeProperties = function(cb, binding){ Ember.beginPropertyChanges(); Ember.tryFinally(cb, Ember.endPropertyChanges, binding); }; /** Set a list of properties on an object. These properties are set inside a single `beginPropertyChanges` and `endPropertyChanges` batch, so observers will be buffered. @method setProperties @param target @param {Hash} properties @return target */ Ember.setProperties = function(self, hash) { Ember.changeProperties(function(){ for(var prop in hash) { if (hash.hasOwnProperty(prop)) Ember.set(self, prop, hash[prop]); } }); return self; }; function changeEvent(keyName) { return keyName+AFTER_OBSERVERS; } function beforeEvent(keyName) { return keyName+BEFORE_OBSERVERS; } /** @method addObserver @param obj @param {String} path @param {Object|Function} targetOrMethod @param {Function|String} [method] */ Ember.addObserver = function(obj, path, target, method) { Ember.addListener(obj, changeEvent(path), target, method); Ember.watch(obj, path); return this; }; Ember.observersFor = function(obj, path) { return Ember.listenersFor(obj, changeEvent(path)); }; /** @method removeObserver @param obj @param {String} path @param {Object|Function} targetOrMethod @param {Function|String} [method] */ Ember.removeObserver = function(obj, path, target, method) { Ember.unwatch(obj, path); Ember.removeListener(obj, changeEvent(path), target, method); return this; }; /** @method addBeforeObserver @param obj @param {String} path @param {Object|Function} targetOrMethod @param {Function|String} [method] */ Ember.addBeforeObserver = function(obj, path, target, method) { Ember.addListener(obj, beforeEvent(path), target, method); Ember.watch(obj, path); return this; }; // Suspend observer during callback. // // This should only be used by the target of the observer // while it is setting the observed path. Ember._suspendBeforeObserver = function(obj, path, target, method, callback) { return Ember._suspendListener(obj, beforeEvent(path), target, method, callback); }; Ember._suspendObserver = function(obj, path, target, method, callback) { return Ember._suspendListener(obj, changeEvent(path), target, method, callback); }; var map = Ember.ArrayPolyfills.map; Ember._suspendBeforeObservers = function(obj, paths, target, method, callback) { var events = map.call(paths, beforeEvent); return Ember._suspendListeners(obj, events, target, method, callback); }; Ember._suspendObservers = function(obj, paths, target, method, callback) { var events = map.call(paths, changeEvent); return Ember._suspendListeners(obj, events, target, method, callback); }; Ember.beforeObserversFor = function(obj, path) { return Ember.listenersFor(obj, beforeEvent(path)); }; /** @method removeBeforeObserver @param obj @param {String} path @param {Object|Function} targetOrMethod @param {Function|String} [method] */ Ember.removeBeforeObserver = function(obj, path, target, method) { Ember.unwatch(obj, path); Ember.removeListener(obj, beforeEvent(path), target, method); return this; }; Ember.notifyBeforeObservers = function(obj, keyName) { if (obj.isDestroying) { return; } var eventName = beforeEvent(keyName), listeners, listenersDiff; if (deferred) { listeners = beforeObserverSet.add(obj, keyName, eventName); listenersDiff = Ember.listenersDiff(obj, eventName, listeners); Ember.sendEvent(obj, eventName, [obj, keyName], listenersDiff); } else { Ember.sendEvent(obj, eventName, [obj, keyName]); } }; Ember.notifyObservers = function(obj, keyName) { if (obj.isDestroying) { return; } var eventName = changeEvent(keyName), listeners; if (deferred) { listeners = observerSet.add(obj, keyName, eventName); Ember.listenersUnion(obj, eventName, listeners); } else { Ember.sendEvent(obj, eventName, [obj, keyName]); } }; })(); (function() { /** @module ember-metal */ var guidFor = Ember.guidFor, // utils.js metaFor = Ember.meta, // utils.js get = Ember.get, // accessors.js set = Ember.set, // accessors.js normalizeTuple = Ember.normalizeTuple, // accessors.js GUID_KEY = Ember.GUID_KEY, // utils.js META_KEY = Ember.META_KEY, // utils.js // circular reference observer depends on Ember.watch // we should move change events to this file or its own property_events.js notifyObservers = Ember.notifyObservers, // observer.js forEach = Ember.ArrayPolyfills.forEach, // array.js FIRST_KEY = /^([^\.\*]+)/, IS_PATH = /[\.\*]/; var MANDATORY_SETTER = Ember.ENV.MANDATORY_SETTER, o_defineProperty = Ember.platform.defineProperty; function firstKey(path) { return path.match(FIRST_KEY)[0]; } // returns true if the passed path is just a keyName function isKeyName(path) { return path==='*' || !IS_PATH.test(path); } // .......................................................... // DEPENDENT KEYS // function iterDeps(method, obj, depKey, seen, meta) { var guid = guidFor(obj); if (!seen[guid]) seen[guid] = {}; if (seen[guid][depKey]) return; seen[guid][depKey] = true; var deps = meta.deps; deps = deps && deps[depKey]; if (deps) { for(var key in deps) { var desc = meta.descs[key]; if (desc && desc._suspended === obj) continue; method(obj, key); } } } var WILL_SEEN, DID_SEEN; // called whenever a property is about to change to clear the cache of any dependent keys (and notify those properties of changes, etc...) function dependentKeysWillChange(obj, depKey, meta) { if (obj.isDestroying) { return; } var seen = WILL_SEEN, top = !seen; if (top) { seen = WILL_SEEN = {}; } iterDeps(propertyWillChange, obj, depKey, seen, meta); if (top) { WILL_SEEN = null; } } // called whenever a property has just changed to update dependent keys function dependentKeysDidChange(obj, depKey, meta) { if (obj.isDestroying) { return; } var seen = DID_SEEN, top = !seen; if (top) { seen = DID_SEEN = {}; } iterDeps(propertyDidChange, obj, depKey, seen, meta); if (top) { DID_SEEN = null; } } // .......................................................... // CHAIN // function addChainWatcher(obj, keyName, node) { if (!obj || ('object' !== typeof obj)) { return; } // nothing to do var m = metaFor(obj), nodes = m.chainWatchers; if (!m.hasOwnProperty('chainWatchers')) { nodes = m.chainWatchers = {}; } if (!nodes[keyName]) { nodes[keyName] = []; } nodes[keyName].push(node); Ember.watch(obj, keyName); } function removeChainWatcher(obj, keyName, node) { if (!obj || 'object' !== typeof obj) { return; } // nothing to do var m = metaFor(obj, false); if (!m.hasOwnProperty('chainWatchers')) { return; } // nothing to do var nodes = m.chainWatchers; if (nodes[keyName]) { nodes = nodes[keyName]; for (var i = 0, l = nodes.length; i < l; i++) { if (nodes[i] === node) { nodes.splice(i, 1); } } } Ember.unwatch(obj, keyName); } var pendingQueue = []; // attempts to add the pendingQueue chains again. If some of them end up // back in the queue and reschedule is true, schedules a timeout to try // again. function flushPendingChains() { if (pendingQueue.length === 0) { return; } // nothing to do var queue = pendingQueue; pendingQueue = []; forEach.call(queue, function(q) { q[0].add(q[1]); }); } function isProto(pvalue) { return metaFor(pvalue, false).proto === pvalue; } // A ChainNode watches a single key on an object. If you provide a starting // value for the key then the node won't actually watch it. For a root node // pass null for parent and key and object for value. var ChainNode = function(parent, key, value) { var obj; this._parent = parent; this._key = key; // _watching is true when calling get(this._parent, this._key) will // return the value of this node. // // It is false for the root of a chain (because we have no parent) // and for global paths (because the parent node is the object with // the observer on it) this._watching = value===undefined; this._value = value; this._paths = {}; if (this._watching) { this._object = parent.value(); if (this._object) { addChainWatcher(this._object, this._key, this); } } // Special-case: the EachProxy relies on immediate evaluation to // establish its observers. // // TODO: Replace this with an efficient callback that the EachProxy // can implement. if (this._parent && this._parent._key === '@each') { this.value(); } }; var ChainNodePrototype = ChainNode.prototype; ChainNodePrototype.value = function() { if (this._value === undefined && this._watching) { var obj = this._parent.value(); this._value = (obj && !isProto(obj)) ? get(obj, this._key) : undefined; } return this._value; }; ChainNodePrototype.destroy = function() { if (this._watching) { var obj = this._object; if (obj) { removeChainWatcher(obj, this._key, this); } this._watching = false; // so future calls do nothing } }; // copies a top level object only ChainNodePrototype.copy = function(obj) { var ret = new ChainNode(null, null, obj), paths = this._paths, path; for (path in paths) { if (paths[path] <= 0) { continue; } // this check will also catch non-number vals. ret.add(path); } return ret; }; // called on the root node of a chain to setup watchers on the specified // path. ChainNodePrototype.add = function(path) { var obj, tuple, key, src, paths; paths = this._paths; paths[path] = (paths[path] || 0) + 1; obj = this.value(); tuple = normalizeTuple(obj, path); // the path was a local path if (tuple[0] && tuple[0] === obj) { path = tuple[1]; key = firstKey(path); path = path.slice(key.length+1); // global path, but object does not exist yet. // put into a queue and try to connect later. } else if (!tuple[0]) { pendingQueue.push([this, path]); tuple.length = 0; return; // global path, and object already exists } else { src = tuple[0]; key = path.slice(0, 0-(tuple[1].length+1)); path = tuple[1]; } tuple.length = 0; this.chain(key, path, src); }; // called on the root node of a chain to teardown watcher on the specified // path ChainNodePrototype.remove = function(path) { var obj, tuple, key, src, paths; paths = this._paths; if (paths[path] > 0) { paths[path]--; } obj = this.value(); tuple = normalizeTuple(obj, path); if (tuple[0] === obj) { path = tuple[1]; key = firstKey(path); path = path.slice(key.length+1); } else { src = tuple[0]; key = path.slice(0, 0-(tuple[1].length+1)); path = tuple[1]; } tuple.length = 0; this.unchain(key, path); }; ChainNodePrototype.count = 0; ChainNodePrototype.chain = function(key, path, src) { var chains = this._chains, node; if (!chains) { chains = this._chains = {}; } node = chains[key]; if (!node) { node = chains[key] = new ChainNode(this, key, src); } node.count++; // count chains... // chain rest of path if there is one if (path && path.length>0) { key = firstKey(path); path = path.slice(key.length+1); node.chain(key, path); // NOTE: no src means it will observe changes... } }; ChainNodePrototype.unchain = function(key, path) { var chains = this._chains, node = chains[key]; // unchain rest of path first... if (path && path.length>1) { key = firstKey(path); path = path.slice(key.length+1); node.unchain(key, path); } // delete node if needed. node.count--; if (node.count<=0) { delete chains[node._key]; node.destroy(); } }; ChainNodePrototype.willChange = function() { var chains = this._chains; if (chains) { for(var key in chains) { if (!chains.hasOwnProperty(key)) { continue; } chains[key].willChange(); } } if (this._parent) { this._parent.chainWillChange(this, this._key, 1); } }; ChainNodePrototype.chainWillChange = function(chain, path, depth) { if (this._key) { path = this._key + '.' + path; } if (this._parent) { this._parent.chainWillChange(this, path, depth+1); } else { if (depth > 1) { Ember.propertyWillChange(this.value(), path); } path = 'this.' + path; if (this._paths[path] > 0) { Ember.propertyWillChange(this.value(), path); } } }; ChainNodePrototype.chainDidChange = function(chain, path, depth) { if (this._key) { path = this._key + '.' + path; } if (this._parent) { this._parent.chainDidChange(this, path, depth+1); } else { if (depth > 1) { Ember.propertyDidChange(this.value(), path); } path = 'this.' + path; if (this._paths[path] > 0) { Ember.propertyDidChange(this.value(), path); } } }; ChainNodePrototype.didChange = function(suppressEvent) { // invalidate my own value first. if (this._watching) { var obj = this._parent.value(); if (obj !== this._object) { removeChainWatcher(this._object, this._key, this); this._object = obj; addChainWatcher(obj, this._key, this); } this._value = undefined; // Special-case: the EachProxy relies on immediate evaluation to // establish its observers. if (this._parent && this._parent._key === '@each') this.value(); } // then notify chains... var chains = this._chains; if (chains) { for(var key in chains) { if (!chains.hasOwnProperty(key)) { continue; } chains[key].didChange(suppressEvent); } } if (suppressEvent) { return; } // and finally tell parent about my path changing... if (this._parent) { this._parent.chainDidChange(this, this._key, 1); } }; // get the chains for the current object. If the current object has // chains inherited from the proto they will be cloned and reconfigured for // the current object. function chainsFor(obj) { var m = metaFor(obj), ret = m.chains; if (!ret) { ret = m.chains = new ChainNode(null, null, obj); } else if (ret.value() !== obj) { ret = m.chains = ret.copy(obj); } return ret; } Ember.overrideChains = function(obj, keyName, m) { chainsDidChange(obj, keyName, m, true); }; function chainsWillChange(obj, keyName, m, arg) { if (!m.hasOwnProperty('chainWatchers')) { return; } // nothing to do var nodes = m.chainWatchers; nodes = nodes[keyName]; if (!nodes) { return; } for(var i = 0, l = nodes.length; i < l; i++) { nodes[i].willChange(arg); } } function chainsDidChange(obj, keyName, m, arg) { if (!m.hasOwnProperty('chainWatchers')) { return; } // nothing to do var nodes = m.chainWatchers; nodes = nodes[keyName]; if (!nodes) { return; } // looping in reverse because the chainWatchers array can be modified inside didChange for (var i = nodes.length - 1; i >= 0; i--) { nodes[i].didChange(arg); } } // .......................................................... // WATCH // /** @private Starts watching a property on an object. Whenever the property changes, invokes `Ember.propertyWillChange` and `Ember.propertyDidChange`. This is the primitive used by observers and dependent keys; usually you will never call this method directly but instead use higher level methods like `Ember.addObserver()` @method watch @for Ember @param obj @param {String} keyName */ Ember.watch = function(obj, keyName) { // can't watch length on Array - it is special... if (keyName === 'length' && Ember.typeOf(obj) === 'array') { return this; } var m = metaFor(obj), watching = m.watching, desc; // activate watching first time if (!watching[keyName]) { watching[keyName] = 1; if (isKeyName(keyName)) { desc = m.descs[keyName]; if (desc && desc.willWatch) { desc.willWatch(obj, keyName); } if ('function' === typeof obj.willWatchProperty) { obj.willWatchProperty(keyName); } if (MANDATORY_SETTER && keyName in obj) { m.values[keyName] = obj[keyName]; o_defineProperty(obj, keyName, { configurable: true, enumerable: true, set: Ember.MANDATORY_SETTER_FUNCTION, get: Ember.DEFAULT_GETTER_FUNCTION(keyName) }); } } else { chainsFor(obj).add(keyName); } } else { watching[keyName] = (watching[keyName] || 0) + 1; } return this; }; Ember.isWatching = function isWatching(obj, key) { var meta = obj[META_KEY]; return (meta && meta.watching[key]) > 0; }; Ember.watch.flushPending = flushPendingChains; Ember.unwatch = function(obj, keyName) { // can't watch length on Array - it is special... if (keyName === 'length' && Ember.typeOf(obj) === 'array') { return this; } var m = metaFor(obj), watching = m.watching, desc; if (watching[keyName] === 1) { watching[keyName] = 0; if (isKeyName(keyName)) { desc = m.descs[keyName]; if (desc && desc.didUnwatch) { desc.didUnwatch(obj, keyName); } if ('function' === typeof obj.didUnwatchProperty) { obj.didUnwatchProperty(keyName); } if (MANDATORY_SETTER && keyName in obj) { o_defineProperty(obj, keyName, { configurable: true, enumerable: true, writable: true, value: m.values[keyName] }); delete m.values[keyName]; } } else { chainsFor(obj).remove(keyName); } } else if (watching[keyName]>1) { watching[keyName]--; } return this; }; /** @private Call on an object when you first beget it from another object. This will setup any chained watchers on the object instance as needed. This method is safe to call multiple times. @method rewatch @for Ember @param obj */ Ember.rewatch = function(obj) { var m = metaFor(obj, false), chains = m.chains; // make sure the object has its own guid. if (GUID_KEY in obj && !obj.hasOwnProperty(GUID_KEY)) { Ember.generateGuid(obj, 'ember'); } // make sure any chained watchers update. if (chains && chains.value() !== obj) { m.chains = chains.copy(obj); } return this; }; Ember.finishChains = function(obj) { var m = metaFor(obj, false), chains = m.chains; if (chains) { if (chains.value() !== obj) { m.chains = chains = chains.copy(obj); } chains.didChange(true); } }; // .......................................................... // PROPERTY CHANGES // /** This function is called just before an object property is about to change. It will notify any before observers and prepare caches among other things. Normally you will not need to call this method directly but if for some reason you can't directly watch a property you can invoke this method manually along with `Ember.propertyDidChange()` which you should call just after the property value changes. @method propertyWillChange @for Ember @param {Object} obj The object with the property that will change @param {String} keyName The property key (or path) that will change. @return {void} */ function propertyWillChange(obj, keyName, value) { var m = metaFor(obj, false), watching = m.watching[keyName] > 0 || keyName === 'length', proto = m.proto, desc = m.descs[keyName]; if (!watching) { return; } if (proto === obj) { return; } if (desc && desc.willChange) { desc.willChange(obj, keyName); } dependentKeysWillChange(obj, keyName, m); chainsWillChange(obj, keyName, m); Ember.notifyBeforeObservers(obj, keyName); } Ember.propertyWillChange = propertyWillChange; /** This function is called just after an object property has changed. It will notify any observers and clear caches among other things. Normally you will not need to call this method directly but if for some reason you can't directly watch a property you can invoke this method manually along with `Ember.propertyWilLChange()` which you should call just before the property value changes. @method propertyDidChange @for Ember @param {Object} obj The object with the property that will change @param {String} keyName The property key (or path) that will change. @return {void} */ function propertyDidChange(obj, keyName) { var m = metaFor(obj, false), watching = m.watching[keyName] > 0 || keyName === 'length', proto = m.proto, desc = m.descs[keyName]; if (proto === obj) { return; } // shouldn't this mean that we're watching this key? if (desc && desc.didChange) { desc.didChange(obj, keyName); } if (!watching && keyName !== 'length') { return; } dependentKeysDidChange(obj, keyName, m); chainsDidChange(obj, keyName, m); Ember.notifyObservers(obj, keyName); } Ember.propertyDidChange = propertyDidChange; var NODE_STACK = []; /** Tears down the meta on an object so that it can be garbage collected. Multiple calls will have no effect. @method destroy @for Ember @param {Object} obj the object to destroy @return {void} */ Ember.destroy = function (obj) { var meta = obj[META_KEY], node, nodes, key, nodeObject; if (meta) { obj[META_KEY] = null; // remove chainWatchers to remove circular references that would prevent GC node = meta.chains; if (node) { NODE_STACK.push(node); // process tree while (NODE_STACK.length > 0) { node = NODE_STACK.pop(); // push children nodes = node._chains; if (nodes) { for (key in nodes) { if (nodes.hasOwnProperty(key)) { NODE_STACK.push(nodes[key]); } } } // remove chainWatcher in node object if (node._watching) { nodeObject = node._object; if (nodeObject) { removeChainWatcher(nodeObject, node._key, node); } } } } } }; })(); (function() { /** @module ember-metal */ var get = Ember.get, set = Ember.set, metaFor = Ember.meta, guidFor = Ember.guidFor, a_slice = [].slice, o_create = Ember.create, META_KEY = Ember.META_KEY, watch = Ember.watch, unwatch = Ember.unwatch; // .......................................................... // DEPENDENT KEYS // // data structure: // meta.deps = { // 'depKey': { // 'keyName': count, // } // } /* This function returns a map of unique dependencies for a given object and key. */ function keysForDep(obj, depsMeta, depKey) { var keys = depsMeta[depKey]; if (!keys) { // if there are no dependencies yet for a the given key // create a new empty list of dependencies for the key keys = depsMeta[depKey] = {}; } else if (!depsMeta.hasOwnProperty(depKey)) { // otherwise if the dependency list is inherited from // a superclass, clone the hash keys = depsMeta[depKey] = o_create(keys); } return keys; } /* return obj[META_KEY].deps */ function metaForDeps(obj, meta) { var deps = meta.deps; // If the current object has no dependencies... if (!deps) { // initialize the dependencies with a pointer back to // the current object deps = meta.deps = {}; } else if (!meta.hasOwnProperty('deps')) { // otherwise if the dependencies are inherited from the // object's superclass, clone the deps deps = meta.deps = o_create(deps); } return deps; } function addDependentKeys(desc, obj, keyName, meta) { // the descriptor has a list of dependent keys, so // add all of its dependent keys. var depKeys = desc._dependentKeys, depsMeta, idx, len, depKey, keys; if (!depKeys) return; depsMeta = metaForDeps(obj, meta); for(idx = 0, len = depKeys.length; idx < len; idx++) { depKey = depKeys[idx]; // Lookup keys meta for depKey keys = keysForDep(obj, depsMeta, depKey); // Increment the number of times depKey depends on keyName. keys[keyName] = (keys[keyName] || 0) + 1; // Watch the depKey watch(obj, depKey); } } function removeDependentKeys(desc, obj, keyName, meta) { // the descriptor has a list of dependent keys, so // add all of its dependent keys. var depKeys = desc._dependentKeys, depsMeta, idx, len, depKey, keys; if (!depKeys) return; depsMeta = metaForDeps(obj, meta); for(idx = 0, len = depKeys.length; idx < len; idx++) { depKey = depKeys[idx]; // Lookup keys meta for depKey keys = keysForDep(obj, depsMeta, depKey); // Increment the number of times depKey depends on keyName. keys[keyName] = (keys[keyName] || 0) - 1; // Watch the depKey unwatch(obj, depKey); } } // .......................................................... // COMPUTED PROPERTY // /** @class ComputedProperty @namespace Ember @extends Ember.Descriptor @constructor */ function ComputedProperty(func, opts) { this.func = func; this._cacheable = (opts && opts.cacheable !== undefined) ? opts.cacheable : true; this._dependentKeys = opts && opts.dependentKeys; } Ember.ComputedProperty = ComputedProperty; ComputedProperty.prototype = new Ember.Descriptor(); var ComputedPropertyPrototype = ComputedProperty.prototype; /** Call on a computed property to set it into cacheable mode. When in this mode the computed property will automatically cache the return value of your function until one of the dependent keys changes. ```javascript MyApp.president = Ember.Object.create({ fullName: function() { return this.get('firstName') + ' ' + this.get('lastName'); // After calculating the value of this function, Ember will // return that value without re-executing this function until // one of the dependent properties change. }.property('firstName', 'lastName') }); ``` Properties are cacheable by default. @method cacheable @param {Boolean} aFlag optional set to `false` to disable caching @chainable */ ComputedPropertyPrototype.cacheable = function(aFlag) { this._cacheable = aFlag !== false; return this; }; /** Call on a computed property to set it into non-cached mode. When in this mode the computed property will not automatically cache the return value. ```javascript MyApp.outsideService = Ember.Object.create({ value: function() { return OutsideService.getValue(); }.property().volatile() }); ``` @method volatile @chainable */ ComputedPropertyPrototype.volatile = function() { return this.cacheable(false); }; /** Sets the dependent keys on this computed property. Pass any number of arguments containing key paths that this computed property depends on. ```javascript MyApp.president = Ember.Object.create({ fullName: Ember.computed(function() { return this.get('firstName') + ' ' + this.get('lastName'); // Tell Ember that this computed property depends on firstName // and lastName }).property('firstName', 'lastName') }); ``` @method property @param {String} path* zero or more property paths @chainable */ ComputedPropertyPrototype.property = function() { var args = []; for (var i = 0, l = arguments.length; i < l; i++) { args.push(arguments[i]); } this._dependentKeys = args; return this; }; /** In some cases, you may want to annotate computed properties with additional metadata about how they function or what values they operate on. For example, computed property functions may close over variables that are then no longer available for introspection. You can pass a hash of these values to a computed property like this: ``` person: function() { var personId = this.get('personId'); return App.Person.create({ id: personId }); }.property().meta({ type: App.Person }) ``` The hash that you pass to the `meta()` function will be saved on the computed property descriptor under the `_meta` key. Ember runtime exposes a public API for retrieving these values from classes, via the `metaForProperty()` function. @method meta @param {Hash} meta @chainable */ ComputedPropertyPrototype.meta = function(meta) { if (arguments.length === 0) { return this._meta || {}; } else { this._meta = meta; return this; } }; /* impl descriptor API */ ComputedPropertyPrototype.willWatch = function(obj, keyName) { // watch already creates meta for this instance var meta = obj[META_KEY]; if (!(keyName in meta.cache)) { addDependentKeys(this, obj, keyName, meta); } }; ComputedPropertyPrototype.didUnwatch = function(obj, keyName) { var meta = obj[META_KEY]; if (!(keyName in meta.cache)) { // unwatch already creates meta for this instance removeDependentKeys(this, obj, keyName, meta); } }; /* impl descriptor API */ ComputedPropertyPrototype.didChange = function(obj, keyName) { // _suspended is set via a CP.set to ensure we don't clear // the cached value set by the setter if (this._cacheable && this._suspended !== obj) { var meta = metaFor(obj); if (keyName in meta.cache) { delete meta.cache[keyName]; if (!meta.watching[keyName]) { removeDependentKeys(this, obj, keyName, meta); } } } }; /* impl descriptor API */ ComputedPropertyPrototype.get = function(obj, keyName) { var ret, cache, meta; if (this._cacheable) { meta = metaFor(obj); cache = meta.cache; if (keyName in cache) { return cache[keyName]; } ret = cache[keyName] = this.func.call(obj, keyName); if (!meta.watching[keyName]) { addDependentKeys(this, obj, keyName, meta); } } else { ret = this.func.call(obj, keyName); } return ret; }; /* impl descriptor API */ ComputedPropertyPrototype.set = function(obj, keyName, value) { var cacheable = this._cacheable, func = this.func, meta = metaFor(obj, cacheable), watched = meta.watching[keyName], oldSuspended = this._suspended, hadCachedValue = false, cache = meta.cache, cachedValue, ret; this._suspended = obj; try { if (cacheable && cache.hasOwnProperty(keyName)) { cachedValue = cache[keyName]; hadCachedValue = true; } // Check if the CP has been wrapped if (func.wrappedFunction) { func = func.wrappedFunction; } // For backwards-compatibility with computed properties // that check for arguments.length === 2 to determine if // they are being get or set, only pass the old cached // value if the computed property opts into a third // argument. if (func.length === 3) { ret = func.call(obj, keyName, value, cachedValue); } else if (func.length === 2) { ret = func.call(obj, keyName, value); } else { Ember.defineProperty(obj, keyName, null, cachedValue); Ember.set(obj, keyName, value); return; } if (hadCachedValue && cachedValue === ret) { return; } if (watched) { Ember.propertyWillChange(obj, keyName); } if (hadCachedValue) { delete cache[keyName]; } if (cacheable) { if (!watched && !hadCachedValue) { addDependentKeys(this, obj, keyName, meta); } cache[keyName] = ret; } if (watched) { Ember.propertyDidChange(obj, keyName); } } finally { this._suspended = oldSuspended; } return ret; }; /* called when property is defined */ ComputedPropertyPrototype.setup = function(obj, keyName) { var meta = obj[META_KEY]; if (meta && meta.watching[keyName]) { addDependentKeys(this, obj, keyName, metaFor(obj)); } }; /* called before property is overridden */ ComputedPropertyPrototype.teardown = function(obj, keyName) { var meta = metaFor(obj); if (meta.watching[keyName] || keyName in meta.cache) { removeDependentKeys(this, obj, keyName, meta); } if (this._cacheable) { delete meta.cache[keyName]; } return null; // no value to restore }; /** This helper returns a new property descriptor that wraps the passed computed property function. You can use this helper to define properties with mixins or via `Ember.defineProperty()`. The function you pass will be used to both get and set property values. The function should accept two parameters, key and value. If value is not undefined you should set the value first. In either case return the current value of the property. @method computed @for Ember @param {Function} func The computed property function. @return {Ember.ComputedProperty} property descriptor instance */ Ember.computed = function(func) { var args; if (arguments.length > 1) { args = a_slice.call(arguments, 0, -1); func = a_slice.call(arguments, -1)[0]; } var cp = new ComputedProperty(func); if (args) { cp.property.apply(cp, args); } return cp; }; /** Returns the cached value for a property, if one exists. This can be useful for peeking at the value of a computed property that is generated lazily, without accidentally causing it to be created. @method cacheFor @for Ember @param {Object} obj the object whose property you want to check @param {String} key the name of the property whose cached value you want to return */ Ember.cacheFor = function cacheFor(obj, key) { var cache = metaFor(obj, false).cache; if (cache && key in cache) { return cache[key]; } }; /** @method computed.not @for Ember @param {String} dependentKey */ Ember.computed.not = function(dependentKey) { return Ember.computed(dependentKey, function(key) { return !get(this, dependentKey); }); }; /** @method computed.empty @for Ember @param {String} dependentKey */ Ember.computed.empty = function(dependentKey) { return Ember.computed(dependentKey, function(key) { var val = get(this, dependentKey); return val === undefined || val === null || val === '' || (Ember.isArray(val) && get(val, 'length') === 0); }); }; /** @method computed.bool @for Ember @param {String} dependentKey */ Ember.computed.bool = function(dependentKey) { return Ember.computed(dependentKey, function(key) { return !!get(this, dependentKey); }); }; /** @method computed.alias @for Ember @param {String} dependentKey */ Ember.computed.alias = function(dependentKey) { return Ember.computed(dependentKey, function(key, value){ if (arguments.length === 1) { return get(this, dependentKey); } else { set(this, dependentKey, value); return value; } }); }; })(); (function() { /** @module ember-metal */ var o_create = Ember.create, metaFor = Ember.meta, metaPath = Ember.metaPath, META_KEY = Ember.META_KEY; /* The event system uses a series of nested hashes to store listeners on an object. When a listener is registered, or when an event arrives, these hashes are consulted to determine which target and action pair to invoke. The hashes are stored in the object's meta hash, and look like this: // Object's meta hash { listeners: { // variable name: `listenerSet` "foo:changed": [ // variable name: `actions` [target, method, onceFlag, suspendedFlag] ] } } */ function indexOf(array, target, method) { var index = -1; for (var i = 0, l = array.length; i < l; i++) { if (target === array[i][0] && method === array[i][1]) { index = i; break; } } return index; } function actionsFor(obj, eventName) { var meta = metaFor(obj, true), actions; if (!meta.listeners) { meta.listeners = {}; } if (!meta.hasOwnProperty('listeners')) { // setup inherited copy of the listeners object meta.listeners = o_create(meta.listeners); } actions = meta.listeners[eventName]; // if there are actions, but the eventName doesn't exist in our listeners, then copy them from the prototype if (actions && !meta.listeners.hasOwnProperty(eventName)) { actions = meta.listeners[eventName] = meta.listeners[eventName].slice(); } else if (!actions) { actions = meta.listeners[eventName] = []; } return actions; } function actionsUnion(obj, eventName, otherActions) { var meta = obj[META_KEY], actions = meta && meta.listeners && meta.listeners[eventName]; if (!actions) { return; } for (var i = actions.length - 1; i >= 0; i--) { var target = actions[i][0], method = actions[i][1], once = actions[i][2], suspended = actions[i][3], actionIndex = indexOf(otherActions, target, method); if (actionIndex === -1) { otherActions.push([target, method, once, suspended]); } } } function actionsDiff(obj, eventName, otherActions) { var meta = obj[META_KEY], actions = meta && meta.listeners && meta.listeners[eventName], diffActions = []; if (!actions) { return; } for (var i = actions.length - 1; i >= 0; i--) { var target = actions[i][0], method = actions[i][1], once = actions[i][2], suspended = actions[i][3], actionIndex = indexOf(otherActions, target, method); if (actionIndex !== -1) { continue; } otherActions.push([target, method, once, suspended]); diffActions.push([target, method, once, suspended]); } return diffActions; } /** Add an event listener @method addListener @for Ember @param obj @param {String} eventName @param {Object|Function} targetOrMethod A target object or a function @param {Function|String} method A function or the name of a function to be called on `target` */ function addListener(obj, eventName, target, method, once) { if (!method && 'function' === typeof target) { method = target; target = null; } var actions = actionsFor(obj, eventName), actionIndex = indexOf(actions, target, method); if (actionIndex !== -1) { return; } actions.push([target, method, once, undefined]); if ('function' === typeof obj.didAddListener) { obj.didAddListener(eventName, target, method); } } /** Remove an event listener Arguments should match those passed to {{#crossLink "Ember/addListener"}}{{/crossLink}} @method removeListener @for Ember @param obj @param {String} eventName @param {Object|Function} targetOrMethod A target object or a function @param {Function|String} method A function or the name of a function to be called on `target` */ function removeListener(obj, eventName, target, method) { if (!method && 'function' === typeof target) { method = target; target = null; } function _removeListener(target, method, once) { var actions = actionsFor(obj, eventName), actionIndex = indexOf(actions, target, method); // action doesn't exist, give up silently if (actionIndex === -1) { return; } actions.splice(actionIndex, 1); if ('function' === typeof obj.didRemoveListener) { obj.didRemoveListener(eventName, target, method); } } if (method) { _removeListener(target, method); } else { var meta = obj[META_KEY], actions = meta && meta.listeners && meta.listeners[eventName]; if (!actions) { return; } for (var i = actions.length - 1; i >= 0; i--) { _removeListener(actions[i][0], actions[i][1]); } } } /** @private Suspend listener during callback. This should only be used by the target of the event listener when it is taking an action that would cause the event, e.g. an object might suspend its property change listener while it is setting that property. @method suspendListener @for Ember @param obj @param {String} eventName @param {Object|Function} targetOrMethod A target object or a function @param {Function|String} method A function or the name of a function to be called on `target` @param {Function} callback */ function suspendListener(obj, eventName, target, method, callback) { if (!method && 'function' === typeof target) { method = target; target = null; } var actions = actionsFor(obj, eventName), actionIndex = indexOf(actions, target, method), action; if (actionIndex !== -1) { action = actions[actionIndex].slice(); // copy it, otherwise we're modifying a shared object action[3] = true; // mark the action as suspended actions[actionIndex] = action; // replace the shared object with our copy } function tryable() { return callback.call(target); } function finalizer() { if (action) { action[3] = undefined; } } return Ember.tryFinally(tryable, finalizer); } /** @private Suspend listener during callback. This should only be used by the target of the event listener when it is taking an action that would cause the event, e.g. an object might suspend its property change listener while it is setting that property. @method suspendListener @for Ember @param obj @param {Array} eventName Array of event names @param {Object|Function} targetOrMethod A target object or a function @param {Function|String} method A function or the name of a function to be called on `target` @param {Function} callback */ function suspendListeners(obj, eventNames, target, method, callback) { if (!method && 'function' === typeof target) { method = target; target = null; } var suspendedActions = [], eventName, actions, action, i, l; for (i=0, l=eventNames.length; i<l; i++) { eventName = eventNames[i]; actions = actionsFor(obj, eventName); var actionIndex = indexOf(actions, target, method); if (actionIndex !== -1) { action = actions[actionIndex].slice(); action[3] = true; actions[actionIndex] = action; suspendedActions.push(action); } } function tryable() { return callback.call(target); } function finalizer() { for (i = 0, l = suspendedActions.length; i < l; i++) { suspendedActions[i][3] = undefined; } } return Ember.tryFinally(tryable, finalizer); } /** @private Return a list of currently watched events @method watchedEvents @for Ember @param obj */ function watchedEvents(obj) { var listeners = obj[META_KEY].listeners, ret = []; if (listeners) { for(var eventName in listeners) { if (listeners[eventName]) { ret.push(eventName); } } } return ret; } /** @method sendEvent @for Ember @param obj @param {String} eventName @param {Array} params @return true */ function sendEvent(obj, eventName, params, actions) { // first give object a chance to handle it if (obj !== Ember && 'function' === typeof obj.sendEvent) { obj.sendEvent(eventName, params); } if (!actions) { var meta = obj[META_KEY]; actions = meta && meta.listeners && meta.listeners[eventName]; } if (!actions) { return; } for (var i = actions.length - 1; i >= 0; i--) { // looping in reverse for once listeners if (!actions[i] || actions[i][3] === true) { continue; } var target = actions[i][0], method = actions[i][1], once = actions[i][2]; if (once) { removeListener(obj, eventName, target, method); } if (!target) { target = obj; } if ('string' === typeof method) { method = target[method]; } if (params) { method.apply(target, params); } else { method.apply(target); } } return true; } /** @private @method hasListeners @for Ember @param obj @param {String} eventName */ function hasListeners(obj, eventName) { var meta = obj[META_KEY], actions = meta && meta.listeners && meta.listeners[eventName]; return !!(actions && actions.length); } /** @private @method listenersFor @for Ember @param obj @param {String} eventName */ function listenersFor(obj, eventName) { var ret = []; var meta = obj[META_KEY], actions = meta && meta.listeners && meta.listeners[eventName]; if (!actions) { return ret; } for (var i = 0, l = actions.length; i < l; i++) { var target = actions[i][0], method = actions[i][1]; ret.push([target, method]); } return ret; } Ember.addListener = addListener; Ember.removeListener = removeListener; Ember._suspendListener = suspendListener; Ember._suspendListeners = suspendListeners; Ember.sendEvent = sendEvent; Ember.hasListeners = hasListeners; Ember.watchedEvents = watchedEvents; Ember.listenersFor = listenersFor; Ember.listenersDiff = actionsDiff; Ember.listenersUnion = actionsUnion; })(); (function() { // Ember.Logger // Ember.watch.flushPending // Ember.beginPropertyChanges, Ember.endPropertyChanges // Ember.guidFor, Ember.tryFinally /** @module ember-metal */ // .......................................................... // HELPERS // var slice = [].slice, forEach = Ember.ArrayPolyfills.forEach; // invokes passed params - normalizing so you can pass target/func, // target/string or just func function invoke(target, method, args, ignore) { if (method === undefined) { method = target; target = undefined; } if ('string' === typeof method) { method = target[method]; } if (args && ignore > 0) { args = args.length > ignore ? slice.call(args, ignore) : null; } return Ember.handleErrors(function() { // IE8's Function.prototype.apply doesn't accept undefined/null arguments. return method.apply(target || this, args || []); }, this); } // .......................................................... // RUNLOOP // var timerMark; // used by timers... /** Ember RunLoop (Private) @class RunLoop @namespace Ember @private @constructor */ var RunLoop = function(prev) { this._prev = prev || null; this.onceTimers = {}; }; RunLoop.prototype = { /** @method end */ end: function() { this.flush(); }, /** @method prev */ prev: function() { return this._prev; }, // .......................................................... // Delayed Actions // /** @method schedule @param {String} queueName @param target @param method */ schedule: function(queueName, target, method) { var queues = this._queues, queue; if (!queues) { queues = this._queues = {}; } queue = queues[queueName]; if (!queue) { queue = queues[queueName] = []; } var args = arguments.length > 3 ? slice.call(arguments, 3) : null; queue.push({ target: target, method: method, args: args }); return this; }, /** @method flush @param {String} queueName */ flush: function(queueName) { var queueNames, idx, len, queue, log; if (!this._queues) { return this; } // nothing to do function iter(item) { invoke(item.target, item.method, item.args); } function tryable() { forEach.call(queue, iter); } Ember.watch.flushPending(); // make sure all chained watchers are setup if (queueName) { while (this._queues && (queue = this._queues[queueName])) { this._queues[queueName] = null; // the sync phase is to allow property changes to propagate. don't // invoke observers until that is finished. if (queueName === 'sync') { log = Ember.LOG_BINDINGS; if (log) { Ember.Logger.log('Begin: Flush Sync Queue'); } Ember.beginPropertyChanges(); Ember.tryFinally(tryable, Ember.endPropertyChanges); if (log) { Ember.Logger.log('End: Flush Sync Queue'); } } else { forEach.call(queue, iter); } } } else { queueNames = Ember.run.queues; len = queueNames.length; idx = 0; outerloop: while (idx < len) { queueName = queueNames[idx]; queue = this._queues && this._queues[queueName]; delete this._queues[queueName]; if (queue) { // the sync phase is to allow property changes to propagate. don't // invoke observers until that is finished. if (queueName === 'sync') { log = Ember.LOG_BINDINGS; if (log) { Ember.Logger.log('Begin: Flush Sync Queue'); } Ember.beginPropertyChanges(); Ember.tryFinally(tryable, Ember.endPropertyChanges); if (log) { Ember.Logger.log('End: Flush Sync Queue'); } } else { forEach.call(queue, iter); } } // Loop through prior queues for (var i = 0; i <= idx; i++) { if (this._queues && this._queues[queueNames[i]]) { // Start over at the first queue with contents idx = i; continue outerloop; } } idx++; } } timerMark = null; return this; } }; Ember.RunLoop = RunLoop; // .......................................................... // Ember.run - this is ideally the only public API the dev sees // /** Runs the passed target and method inside of a RunLoop, ensuring any deferred actions including bindings and views updates are flushed at the end. Normally you should not need to invoke this method yourself. However if you are implementing raw event handlers when interfacing with other libraries or plugins, you should probably wrap all of your code inside this call. ```javascript Ember.run(function(){ // code to be execute within a RunLoop }); ``` @class run @namespace Ember @static @constructor @param {Object} [target] target of method to call @param {Function|String} method Method to invoke. May be a function or a string. If you pass a string then it will be looked up on the passed target. @param {Object} [args*] Any additional arguments you wish to pass to the method. @return {Object} return value from invoking the passed function. */ Ember.run = function(target, method) { var loop, args = arguments; run.begin(); function tryable() { if (target || method) { return invoke(target, method, args, 2); } } return Ember.tryFinally(tryable, run.end); }; var run = Ember.run; /** Begins a new RunLoop. Any deferred actions invoked after the begin will be buffered until you invoke a matching call to `Ember.run.end()`. This is an lower-level way to use a RunLoop instead of using `Ember.run()`. ```javascript Ember.run.begin(); // code to be execute within a RunLoop Ember.run.end(); ``` @method begin @return {void} */ Ember.run.begin = function() { run.currentRunLoop = new RunLoop(run.currentRunLoop); }; /** Ends a RunLoop. This must be called sometime after you call `Ember.run.begin()` to flush any deferred actions. This is a lower-level way to use a RunLoop instead of using `Ember.run()`. ```javascript Ember.run.begin(); // code to be execute within a RunLoop Ember.run.end(); ``` @method end @return {void} */ Ember.run.end = function() { function tryable() { run.currentRunLoop.end(); } function finalizer() { run.currentRunLoop = run.currentRunLoop.prev(); } Ember.tryFinally(tryable, finalizer); }; /** Array of named queues. This array determines the order in which queues are flushed at the end of the RunLoop. You can define your own queues by simply adding the queue name to this array. Normally you should not need to inspect or modify this property. @property queues @type Array @default ['sync', 'actions', 'destroy', 'timers'] */ Ember.run.queues = ['sync', 'actions', 'destroy', 'timers']; /** Adds the passed target/method and any optional arguments to the named queue to be executed at the end of the RunLoop. If you have not already started a RunLoop when calling this method one will be started for you automatically. At the end of a RunLoop, any methods scheduled in this way will be invoked. Methods will be invoked in an order matching the named queues defined in the `run.queues` property. ```javascript Ember.run.schedule('timers', this, function(){ // this will be executed at the end of the RunLoop, when timers are run console.log("scheduled on timers queue"); }); Ember.run.schedule('sync', this, function(){ // this will be executed at the end of the RunLoop, when bindings are synced console.log("scheduled on sync queue"); }); // Note the functions will be run in order based on the run queues order. Output would be: // scheduled on sync queue // scheduled on timers queue ``` @method schedule @param {String} queue The name of the queue to schedule against. Default queues are 'sync' and 'actions' @param {Object} [target] target object to use as the context when invoking a method. @param {String|Function} method The method to invoke. If you pass a string it will be resolved on the target object at the time the scheduled item is invoked allowing you to change the target function. @param {Object} [arguments*] Optional arguments to be passed to the queued method. @return {void} */ Ember.run.schedule = function(queue, target, method) { var loop = run.autorun(); loop.schedule.apply(loop, arguments); }; var scheduledAutorun; function autorun() { scheduledAutorun = null; if (run.currentRunLoop) { run.end(); } } // Used by global test teardown Ember.run.hasScheduledTimers = function() { return !!(scheduledAutorun || scheduledLater || scheduledNext); }; // Used by global test teardown Ember.run.cancelTimers = function () { if (scheduledAutorun) { clearTimeout(scheduledAutorun); scheduledAutorun = null; } if (scheduledLater) { clearTimeout(scheduledLater); scheduledLater = null; } if (scheduledNext) { clearTimeout(scheduledNext); scheduledNext = null; } timers = {}; }; /** Begins a new RunLoop if necessary and schedules a timer to flush the RunLoop at a later time. This method is used by parts of Ember to ensure the RunLoop always finishes. You normally do not need to call this method directly. Instead use `Ember.run()` @method autorun @example Ember.run.autorun(); @return {Ember.RunLoop} the new current RunLoop */ Ember.run.autorun = function() { if (!run.currentRunLoop) { run.begin(); if (!scheduledAutorun) { scheduledAutorun = setTimeout(autorun, 1); } } return run.currentRunLoop; }; /** Immediately flushes any events scheduled in the 'sync' queue. Bindings use this queue so this method is a useful way to immediately force all bindings in the application to sync. You should call this method anytime you need any changed state to propagate throughout the app immediately without repainting the UI. ```javascript Ember.run.sync(); ``` @method sync @return {void} */ Ember.run.sync = function() { run.autorun(); run.currentRunLoop.flush('sync'); }; // .......................................................... // TIMERS // var timers = {}; // active timers... var scheduledLater; function invokeLaterTimers() { scheduledLater = null; var now = (+ new Date()), earliest = -1; for (var key in timers) { if (!timers.hasOwnProperty(key)) { continue; } var timer = timers[key]; if (timer && timer.expires) { if (now >= timer.expires) { delete timers[key]; invoke(timer.target, timer.method, timer.args, 2); } else { if (earliest<0 || (timer.expires < earliest)) earliest=timer.expires; } } } // schedule next timeout to fire... if (earliest > 0) { scheduledLater = setTimeout(invokeLaterTimers, earliest-(+ new Date())); } } /** Invokes the passed target/method and optional arguments after a specified period if time. The last parameter of this method must always be a number of milliseconds. You should use this method whenever you need to run some action after a period of time instead of using `setTimeout()`. This method will ensure that items that expire during the same script execution cycle all execute together, which is often more efficient than using a real setTimeout. ```javascript Ember.run.later(myContext, function(){ // code here will execute within a RunLoop in about 500ms with this == myContext }, 500); ``` @method later @param {Object} [target] target of method to invoke @param {Function|String} method The method to invoke. If you pass a string it will be resolved on the target at the time the method is invoked. @param {Object} [args*] Optional arguments to pass to the timeout. @param {Number} wait Number of milliseconds to wait. @return {String} a string you can use to cancel the timer in {{#crossLink "Ember/run.cancel"}}{{/crossLink}} later. */ Ember.run.later = function(target, method) { var args, expires, timer, guid, wait; // setTimeout compatibility... if (arguments.length===2 && 'function' === typeof target) { wait = method; method = target; target = undefined; args = [target, method]; } else { args = slice.call(arguments); wait = args.pop(); } expires = (+ new Date()) + wait; timer = { target: target, method: method, expires: expires, args: args }; guid = Ember.guidFor(timer); timers[guid] = timer; run.once(timers, invokeLaterTimers); return guid; }; function invokeOnceTimer(guid, onceTimers) { if (onceTimers[this.tguid]) { delete onceTimers[this.tguid][this.mguid]; } if (timers[guid]) { invoke(this.target, this.method, this.args); } delete timers[guid]; } function scheduleOnce(queue, target, method, args) { var tguid = Ember.guidFor(target), mguid = Ember.guidFor(method), onceTimers = run.autorun().onceTimers, guid = onceTimers[tguid] && onceTimers[tguid][mguid], timer; if (guid && timers[guid]) { timers[guid].args = args; // replace args } else { timer = { target: target, method: method, args: args, tguid: tguid, mguid: mguid }; guid = Ember.guidFor(timer); timers[guid] = timer; if (!onceTimers[tguid]) { onceTimers[tguid] = {}; } onceTimers[tguid][mguid] = guid; // so it isn't scheduled more than once run.schedule(queue, timer, invokeOnceTimer, guid, onceTimers); } return guid; } /** Schedules an item to run one time during the current RunLoop. Calling this method with the same target/method combination will have no effect. Note that although you can pass optional arguments these will not be considered when looking for duplicates. New arguments will replace previous calls. ```javascript Ember.run(function(){ var doFoo = function() { foo(); } Ember.run.once(myContext, doFoo); Ember.run.once(myContext, doFoo); // doFoo will only be executed once at the end of the RunLoop }); ``` @method once @param {Object} [target] target of method to invoke @param {Function|String} method The method to invoke. If you pass a string it will be resolved on the target at the time the method is invoked. @param {Object} [args*] Optional arguments to pass to the timeout. @return {Object} timer */ Ember.run.once = function(target, method) { return scheduleOnce('actions', target, method, slice.call(arguments, 2)); }; Ember.run.scheduleOnce = function(queue, target, method, args) { return scheduleOnce(queue, target, method, slice.call(arguments, 3)); }; var scheduledNext; function invokeNextTimers() { scheduledNext = null; for(var key in timers) { if (!timers.hasOwnProperty(key)) { continue; } var timer = timers[key]; if (timer.next) { delete timers[key]; invoke(timer.target, timer.method, timer.args, 2); } } } /** Schedules an item to run after control has been returned to the system. This is often equivalent to calling `setTimeout(function() {}, 1)`. ```javascript Ember.run.next(myContext, function(){ // code to be executed in the next RunLoop, which will be scheduled after the current one }); ``` @method next @param {Object} [target] target of method to invoke @param {Function|String} method The method to invoke. If you pass a string it will be resolved on the target at the time the method is invoked. @param {Object} [args*] Optional arguments to pass to the timeout. @return {Object} timer */ Ember.run.next = function(target, method) { var guid, timer = { target: target, method: method, args: slice.call(arguments), next: true }; guid = Ember.guidFor(timer); timers[guid] = timer; if (!scheduledNext) { scheduledNext = setTimeout(invokeNextTimers, 1); } return guid; }; /** Cancels a scheduled item. Must be a value returned by `Ember.run.later()`, `Ember.run.once()`, or `Ember.run.next()`. ```javascript var runNext = Ember.run.next(myContext, function(){ // will not be executed }); Ember.run.cancel(runNext); var runLater = Ember.run.later(myContext, function(){ // will not be executed }, 500); Ember.run.cancel(runLater); var runOnce = Ember.run.once(myContext, function(){ // will not be executed }); Ember.run.cancel(runOnce); ``` @method cancel @param {Object} timer Timer object to cancel @return {void} */ Ember.run.cancel = function(timer) { delete timers[timer]; }; })(); (function() { // Ember.Logger // get, set, trySet // guidFor, isArray, meta // addObserver, removeObserver // Ember.run.schedule /** @module ember-metal */ // .......................................................... // CONSTANTS // /** Debug parameter you can turn on. This will log all bindings that fire to the console. This should be disabled in production code. Note that you can also enable this from the console or temporarily. @property LOG_BINDINGS @for Ember @type Boolean @default false */ Ember.LOG_BINDINGS = false || !!Ember.ENV.LOG_BINDINGS; var get = Ember.get, set = Ember.set, guidFor = Ember.guidFor, isGlobalPath = Ember.isGlobalPath; function getWithGlobals(obj, path) { return get(isGlobalPath(path) ? Ember.lookup : obj, path); } // .......................................................... // BINDING // var Binding = function(toPath, fromPath) { this._direction = 'fwd'; this._from = fromPath; this._to = toPath; this._directionMap = Ember.Map.create(); }; /** @class Binding @namespace Ember */ Binding.prototype = { /** This copies the Binding so it can be connected to another object. @method copy @return {Ember.Binding} */ copy: function () { var copy = new Binding(this._to, this._from); if (this._oneWay) { copy._oneWay = true; } return copy; }, // .......................................................... // CONFIG // /** This will set `from` property path to the specified value. It will not attempt to resolve this property path to an actual object until you connect the binding. The binding will search for the property path starting at the root object you pass when you `connect()` the binding. It follows the same rules as `get()` - see that method for more information. @method from @param {String} propertyPath the property path to connect to @return {Ember.Binding} `this` */ from: function(path) { this._from = path; return this; }, /** This will set the `to` property path to the specified value. It will not attempt to resolve this property path to an actual object until you connect the binding. The binding will search for the property path starting at the root object you pass when you `connect()` the binding. It follows the same rules as `get()` - see that method for more information. @method to @param {String|Tuple} propertyPath A property path or tuple @return {Ember.Binding} `this` */ to: function(path) { this._to = path; return this; }, /** Configures the binding as one way. A one-way binding will relay changes on the `from` side to the `to` side, but not the other way around. This means that if you change the `to` side directly, the `from` side may have a different value. @method oneWay @return {Ember.Binding} `this` */ oneWay: function() { this._oneWay = true; return this; }, toString: function() { var oneWay = this._oneWay ? '[oneWay]' : ''; return "Ember.Binding<" + guidFor(this) + ">(" + this._from + " -> " + this._to + ")" + oneWay; }, // .......................................................... // CONNECT AND SYNC // /** Attempts to connect this binding instance so that it can receive and relay changes. This method will raise an exception if you have not set the from/to properties yet. @method connect @param {Object} obj The root object for this binding. @return {Ember.Binding} `this` */ connect: function(obj) { var fromPath = this._from, toPath = this._to; Ember.trySet(obj, toPath, getWithGlobals(obj, fromPath)); // add an observer on the object to be notified when the binding should be updated Ember.addObserver(obj, fromPath, this, this.fromDidChange); // if the binding is a two-way binding, also set up an observer on the target if (!this._oneWay) { Ember.addObserver(obj, toPath, this, this.toDidChange); } this._readyToSync = true; return this; }, /** Disconnects the binding instance. Changes will no longer be relayed. You will not usually need to call this method. @method disconnect @param {Object} obj The root object you passed when connecting the binding. @return {Ember.Binding} `this` */ disconnect: function(obj) { var twoWay = !this._oneWay; // remove an observer on the object so we're no longer notified of // changes that should update bindings. Ember.removeObserver(obj, this._from, this, this.fromDidChange); // if the binding is two-way, remove the observer from the target as well if (twoWay) { Ember.removeObserver(obj, this._to, this, this.toDidChange); } this._readyToSync = false; // disable scheduled syncs... return this; }, // .......................................................... // PRIVATE // /* called when the from side changes */ fromDidChange: function(target) { this._scheduleSync(target, 'fwd'); }, /* called when the to side changes */ toDidChange: function(target) { this._scheduleSync(target, 'back'); }, _scheduleSync: function(obj, dir) { var directionMap = this._directionMap; var existingDir = directionMap.get(obj); // if we haven't scheduled the binding yet, schedule it if (!existingDir) { Ember.run.schedule('sync', this, this._sync, obj); directionMap.set(obj, dir); } // If both a 'back' and 'fwd' sync have been scheduled on the same object, // default to a 'fwd' sync so that it remains deterministic. if (existingDir === 'back' && dir === 'fwd') { directionMap.set(obj, 'fwd'); } }, _sync: function(obj) { var log = Ember.LOG_BINDINGS; // don't synchronize destroyed objects or disconnected bindings if (obj.isDestroyed || !this._readyToSync) { return; } // get the direction of the binding for the object we are // synchronizing from var directionMap = this._directionMap; var direction = directionMap.get(obj); var fromPath = this._from, toPath = this._to; directionMap.remove(obj); // if we're synchronizing from the remote object... if (direction === 'fwd') { var fromValue = getWithGlobals(obj, this._from); if (log) { Ember.Logger.log(' ', this.toString(), '->', fromValue, obj); } if (this._oneWay) { Ember.trySet(obj, toPath, fromValue); } else { Ember._suspendObserver(obj, toPath, this, this.toDidChange, function () { Ember.trySet(obj, toPath, fromValue); }); } // if we're synchronizing *to* the remote object } else if (direction === 'back') { var toValue = get(obj, this._to); if (log) { Ember.Logger.log(' ', this.toString(), '<-', toValue, obj); } Ember._suspendObserver(obj, fromPath, this, this.fromDidChange, function () { Ember.trySet(Ember.isGlobalPath(fromPath) ? Ember.lookup : obj, fromPath, toValue); }); } } }; function mixinProperties(to, from) { for (var key in from) { if (from.hasOwnProperty(key)) { to[key] = from[key]; } } } mixinProperties(Binding, { /** See {{#crossLink "Ember.Binding/from"}}{{/crossLink}} @method from @static */ from: function() { var C = this, binding = new C(); return binding.from.apply(binding, arguments); }, /** See {{#crossLink "Ember.Binding/to"}}{{/crossLink}} @method to @static */ to: function() { var C = this, binding = new C(); return binding.to.apply(binding, arguments); }, /** Creates a new Binding instance and makes it apply in a single direction. A one-way binding will relay changes on the `from` side object (supplied as the `from` argument) the `to` side, but not the other way around. This means that if you change the "to" side directly, the "from" side may have a different value. See {{#crossLink "Binding/oneWay"}}{{/crossLink}} @method oneWay @param {String} from from path. @param {Boolean} [flag] (Optional) passing nothing here will make the binding `oneWay`. You can instead pass `false` to disable `oneWay`, making the binding two way again. */ oneWay: function(from, flag) { var C = this, binding = new C(null, from); return binding.oneWay(flag); } }); /** An `Ember.Binding` connects the properties of two objects so that whenever the value of one property changes, the other property will be changed also. ## Automatic Creation of Bindings with `/^*Binding/`-named Properties You do not usually create Binding objects directly but instead describe bindings in your class or object definition using automatic binding detection. Properties ending in a `Binding` suffix will be converted to `Ember.Binding` instances. The value of this property should be a string representing a path to another object or a custom binding instanced created using Binding helpers (see "Customizing Your Bindings"): ``` valueBinding: "MyApp.someController.title" ``` This will create a binding from `MyApp.someController.title` to the `value` property of your object instance automatically. Now the two values will be kept in sync. ## One Way Bindings One especially useful binding customization you can use is the `oneWay()` helper. This helper tells Ember that you are only interested in receiving changes on the object you are binding from. For example, if you are binding to a preference and you want to be notified if the preference has changed, but your object will not be changing the preference itself, you could do: ``` bigTitlesBinding: Ember.Binding.oneWay("MyApp.preferencesController.bigTitles") ``` This way if the value of `MyApp.preferencesController.bigTitles` changes the `bigTitles` property of your object will change also. However, if you change the value of your `bigTitles` property, it will not update the `preferencesController`. One way bindings are almost twice as fast to setup and twice as fast to execute because the binding only has to worry about changes to one side. You should consider using one way bindings anytime you have an object that may be created frequently and you do not intend to change a property; only to monitor it for changes. (such as in the example above). ## Adding Bindings Manually All of the examples above show you how to configure a custom binding, but the result of these customizations will be a binding template, not a fully active Binding instance. The binding will actually become active only when you instantiate the object the binding belongs to. It is useful however, to understand what actually happens when the binding is activated. For a binding to function it must have at least a `from` property and a `to` property. The `from` property path points to the object/key that you want to bind from while the `to` path points to the object/key you want to bind to. When you define a custom binding, you are usually describing the property you want to bind from (such as `MyApp.someController.value` in the examples above). When your object is created, it will automatically assign the value you want to bind `to` based on the name of your binding key. In the examples above, during init, Ember objects will effectively call something like this on your binding: ```javascript binding = Ember.Binding.from(this.valueBinding).to("value"); ``` This creates a new binding instance based on the template you provide, and sets the to path to the `value` property of the new object. Now that the binding is fully configured with a `from` and a `to`, it simply needs to be connected to become active. This is done through the `connect()` method: ```javascript binding.connect(this); ``` Note that when you connect a binding you pass the object you want it to be connected to. This object will be used as the root for both the from and to side of the binding when inspecting relative paths. This allows the binding to be automatically inherited by subclassed objects as well. Now that the binding is connected, it will observe both the from and to side and relay changes. If you ever needed to do so (you almost never will, but it is useful to understand this anyway), you could manually create an active binding by using the `Ember.bind()` helper method. (This is the same method used by to setup your bindings on objects): ```javascript Ember.bind(MyApp.anotherObject, "value", "MyApp.someController.value"); ``` Both of these code fragments have the same effect as doing the most friendly form of binding creation like so: ```javascript MyApp.anotherObject = Ember.Object.create({ valueBinding: "MyApp.someController.value", // OTHER CODE FOR THIS OBJECT... }); ``` Ember's built in binding creation method makes it easy to automatically create bindings for you. You should always use the highest-level APIs available, even if you understand how it works underneath. @class Binding @namespace Ember @since Ember 0.9 */ Ember.Binding = Binding; /** Global helper method to create a new binding. Just pass the root object along with a `to` and `from` path to create and connect the binding. @method bind @for Ember @param {Object} obj The root object of the transform. @param {String} to The path to the 'to' side of the binding. Must be relative to obj. @param {String} from The path to the 'from' side of the binding. Must be relative to obj or a global path. @return {Ember.Binding} binding instance */ Ember.bind = function(obj, to, from) { return new Ember.Binding(to, from).connect(obj); }; /** @method oneWay @for Ember @param {Object} obj The root object of the transform. @param {String} to The path to the 'to' side of the binding. Must be relative to obj. @param {String} from The path to the 'from' side of the binding. Must be relative to obj or a global path. @return {Ember.Binding} binding instance */ Ember.oneWay = function(obj, to, from) { return new Ember.Binding(to, from).oneWay().connect(obj); }; })(); (function() { /** @module ember-metal */ var Mixin, REQUIRED, Alias, a_map = Ember.ArrayPolyfills.map, a_indexOf = Ember.ArrayPolyfills.indexOf, a_forEach = Ember.ArrayPolyfills.forEach, a_slice = [].slice, EMPTY_META = {}, // dummy for non-writable meta o_create = Ember.create, defineProperty = Ember.defineProperty, guidFor = Ember.guidFor; function mixinsMeta(obj) { var m = Ember.meta(obj, true), ret = m.mixins; if (!ret) { ret = m.mixins = {}; } else if (!m.hasOwnProperty('mixins')) { ret = m.mixins = o_create(ret); } return ret; } function initMixin(mixin, args) { if (args && args.length > 0) { mixin.mixins = a_map.call(args, function(x) { if (x instanceof Mixin) { return x; } // Note: Manually setup a primitive mixin here. This is the only // way to actually get a primitive mixin. This way normal creation // of mixins will give you combined mixins... var mixin = new Mixin(); mixin.properties = x; return mixin; }); } return mixin; } function isMethod(obj) { return 'function' === typeof obj && obj.isMethod !== false && obj !== Boolean && obj !== Object && obj !== Number && obj !== Array && obj !== Date && obj !== String; } var CONTINUE = {}; function mixinProperties(mixinsMeta, mixin) { var guid; if (mixin instanceof Mixin) { guid = guidFor(mixin); if (mixinsMeta[guid]) { return CONTINUE; } mixinsMeta[guid] = mixin; return mixin.properties; } else { return mixin; // apply anonymous mixin properties } } function concatenatedProperties(props, values, base) { var concats; // reset before adding each new mixin to pickup concats from previous concats = values.concatenatedProperties || base.concatenatedProperties; if (props.concatenatedProperties) { concats = concats ? concats.concat(props.concatenatedProperties) : props.concatenatedProperties; } return concats; } function giveDescriptorSuper(meta, key, property, values, descs) { var superProperty; // Computed properties override methods, and do not call super to them if (values[key] === undefined) { // Find the original descriptor in a parent mixin superProperty = descs[key]; } // If we didn't find the original descriptor in a parent mixin, find // it on the original object. superProperty = superProperty || meta.descs[key]; if (!superProperty || !(superProperty instanceof Ember.ComputedProperty)) { return property; } // Since multiple mixins may inherit from the same parent, we need // to clone the computed property so that other mixins do not receive // the wrapped version. property = o_create(property); property.func = Ember.wrap(property.func, superProperty.func); return property; } function giveMethodSuper(obj, key, method, values, descs) { var superMethod; // Methods overwrite computed properties, and do not call super to them. if (descs[key] === undefined) { // Find the original method in a parent mixin superMethod = values[key]; } // If we didn't find the original value in a parent mixin, find it in // the original object superMethod = superMethod || obj[key]; // Only wrap the new method if the original method was a function if ('function' !== typeof superMethod) { return method; } return Ember.wrap(method, superMethod); } function applyConcatenatedProperties(obj, key, value, values) { var baseValue = values[key] || obj[key]; if (baseValue) { if ('function' === typeof baseValue.concat) { return baseValue.concat(value); } else { return Ember.makeArray(baseValue).concat(value); } } else { return Ember.makeArray(value); } } function addNormalizedProperty(base, key, value, meta, descs, values, concats) { if (value instanceof Ember.Descriptor) { if (value === REQUIRED && descs[key]) { return CONTINUE; } // Wrap descriptor function to implement // _super() if needed if (value.func) { value = giveDescriptorSuper(meta, key, value, values, descs); } descs[key] = value; values[key] = undefined; } else { // impl super if needed... if (isMethod(value)) { value = giveMethodSuper(base, key, value, values, descs); } else if ((concats && a_indexOf.call(concats, key) >= 0) || key === 'concatenatedProperties') { value = applyConcatenatedProperties(base, key, value, values); } descs[key] = undefined; values[key] = value; } } function mergeMixins(mixins, m, descs, values, base) { var mixin, props, key, concats, meta; function removeKeys(keyName) { delete descs[keyName]; delete values[keyName]; } for(var i=0, l=mixins.length; i<l; i++) { mixin = mixins[i]; props = mixinProperties(m, mixin); if (props === CONTINUE) { continue; } if (props) { meta = Ember.meta(base); concats = concatenatedProperties(props, values, base); for (key in props) { if (!props.hasOwnProperty(key)) { continue; } addNormalizedProperty(base, key, props[key], meta, descs, values, concats); } // manually copy toString() because some JS engines do not enumerate it if (props.hasOwnProperty('toString')) { base.toString = props.toString; } } else if (mixin.mixins) { mergeMixins(mixin.mixins, m, descs, values, base); if (mixin._without) { a_forEach.call(mixin._without, removeKeys); } } } } function writableReq(obj) { var m = Ember.meta(obj), req = m.required; if (!req || !m.hasOwnProperty('required')) { req = m.required = req ? o_create(req) : {}; } return req; } var IS_BINDING = Ember.IS_BINDING = /^.+Binding$/; function detectBinding(obj, key, value, m) { if (IS_BINDING.test(key)) { var bindings = m.bindings; if (!bindings) { bindings = m.bindings = {}; } else if (!m.hasOwnProperty('bindings')) { bindings = m.bindings = o_create(m.bindings); } bindings[key] = value; } } function connectBindings(obj, m) { // TODO Mixin.apply(instance) should disconnect binding if exists var bindings = m.bindings, key, binding, to; if (bindings) { for (key in bindings) { binding = bindings[key]; if (binding) { to = key.slice(0, -7); // strip Binding off end if (binding instanceof Ember.Binding) { binding = binding.copy(); // copy prototypes' instance binding.to(to); } else { // binding is string path binding = new Ember.Binding(to, binding); } binding.connect(obj); obj[key] = binding; } } // mark as applied m.bindings = {}; } } function finishPartial(obj, m) { connectBindings(obj, m || Ember.meta(obj)); return obj; } function followAlias(obj, desc, m, descs, values) { var altKey = desc.methodName, value; if (descs[altKey] || values[altKey]) { value = values[altKey]; desc = descs[altKey]; } else if (m.descs[altKey]) { desc = m.descs[altKey]; value = undefined; } else { desc = undefined; value = obj[altKey]; } return { desc: desc, value: value }; } function updateObservers(obj, key, observer, observerKey, method) { if ('function' !== typeof observer) { return; } var paths = observer[observerKey]; if (paths) { for (var i=0, l=paths.length; i<l; i++) { Ember[method](obj, paths[i], null, key); } } } function replaceObservers(obj, key, observer) { var prevObserver = obj[key]; updateObservers(obj, key, prevObserver, '__ember_observesBefore__', 'removeBeforeObserver'); updateObservers(obj, key, prevObserver, '__ember_observes__', 'removeObserver'); updateObservers(obj, key, observer, '__ember_observesBefore__', 'addBeforeObserver'); updateObservers(obj, key, observer, '__ember_observes__', 'addObserver'); } function applyMixin(obj, mixins, partial) { var descs = {}, values = {}, m = Ember.meta(obj), key, value, desc; // Go through all mixins and hashes passed in, and: // // * Handle concatenated properties // * Set up _super wrapping if necessary // * Set up computed property descriptors // * Copying `toString` in broken browsers mergeMixins(mixins, mixinsMeta(obj), descs, values, obj); for(key in values) { if (key === 'contructor' || !values.hasOwnProperty(key)) { continue; } desc = descs[key]; value = values[key]; if (desc === REQUIRED) { continue; } while (desc && desc instanceof Alias) { var followed = followAlias(obj, desc, m, descs, values); desc = followed.desc; value = followed.value; } if (desc === undefined && value === undefined) { continue; } replaceObservers(obj, key, value); detectBinding(obj, key, value, m); defineProperty(obj, key, desc, value, m); } if (!partial) { // don't apply to prototype finishPartial(obj, m); } return obj; } /** @method mixin @for Ember @param obj @param mixins* @return obj */ Ember.mixin = function(obj) { var args = a_slice.call(arguments, 1); applyMixin(obj, args, false); return obj; }; /** The `Ember.Mixin` class allows you to create mixins, whose properties can be added to other classes. For instance, ```javascript App.Editable = Ember.Mixin.create({ edit: function() { console.log('starting to edit'); this.set('isEditing', true); }, isEditing: false }); // Mix mixins into classes by passing them as the first arguments to // .extend or .create. App.CommentView = Ember.View.extend(App.Editable, { template: Ember.Handlebars.compile('{{#if isEditing}}...{{else}}...{{/if}}') }); commentView = App.CommentView.create(); commentView.edit(); // outputs 'starting to edit' ``` Note that Mixins are created with `Ember.Mixin.create`, not `Ember.Mixin.extend`. @class Mixin @namespace Ember */ Ember.Mixin = function() { return initMixin(this, arguments); }; Mixin = Ember.Mixin; Mixin._apply = applyMixin; Mixin.applyPartial = function(obj) { var args = a_slice.call(arguments, 1); return applyMixin(obj, args, true); }; Mixin.finishPartial = finishPartial; Ember.anyUnprocessedMixins = false; /** @method create @static @param arguments* */ Mixin.create = function() { Ember.anyUnprocessedMixins = true; var M = this; return initMixin(new M(), arguments); }; var MixinPrototype = Mixin.prototype; /** @method reopen @param arguments* */ MixinPrototype.reopen = function() { var mixin, tmp; if (this.properties) { mixin = Mixin.create(); mixin.properties = this.properties; delete this.properties; this.mixins = [mixin]; } else if (!this.mixins) { this.mixins = []; } var len = arguments.length, mixins = this.mixins, idx; for(idx=0; idx < len; idx++) { mixin = arguments[idx]; if (mixin instanceof Mixin) { mixins.push(mixin); } else { tmp = Mixin.create(); tmp.properties = mixin; mixins.push(tmp); } } return this; }; /** @method apply @param obj @return applied object */ MixinPrototype.apply = function(obj) { return applyMixin(obj, [this], false); }; MixinPrototype.applyPartial = function(obj) { return applyMixin(obj, [this], true); }; function _detect(curMixin, targetMixin, seen) { var guid = guidFor(curMixin); if (seen[guid]) { return false; } seen[guid] = true; if (curMixin === targetMixin) { return true; } var mixins = curMixin.mixins, loc = mixins ? mixins.length : 0; while (--loc >= 0) { if (_detect(mixins[loc], targetMixin, seen)) { return true; } } return false; } /** @method detect @param obj @return {Boolean} */ MixinPrototype.detect = function(obj) { if (!obj) { return false; } if (obj instanceof Mixin) { return _detect(obj, this, {}); } var mixins = Ember.meta(obj, false).mixins; if (mixins) { return !!mixins[guidFor(this)]; } return false; }; MixinPrototype.without = function() { var ret = new Mixin(this); ret._without = a_slice.call(arguments); return ret; }; function _keys(ret, mixin, seen) { if (seen[guidFor(mixin)]) { return; } seen[guidFor(mixin)] = true; if (mixin.properties) { var props = mixin.properties; for (var key in props) { if (props.hasOwnProperty(key)) { ret[key] = true; } } } else if (mixin.mixins) { a_forEach.call(mixin.mixins, function(x) { _keys(ret, x, seen); }); } } MixinPrototype.keys = function() { var keys = {}, seen = {}, ret = []; _keys(keys, this, seen); for(var key in keys) { if (keys.hasOwnProperty(key)) { ret.push(key); } } return ret; }; // returns the mixins currently applied to the specified object // TODO: Make Ember.mixin Mixin.mixins = function(obj) { var mixins = Ember.meta(obj, false).mixins, ret = []; if (!mixins) { return ret; } for (var key in mixins) { var mixin = mixins[key]; // skip primitive mixins since these are always anonymous if (!mixin.properties) { ret.push(mixin); } } return ret; }; REQUIRED = new Ember.Descriptor(); REQUIRED.toString = function() { return '(Required Property)'; }; /** Denotes a required property for a mixin @method required @for Ember */ Ember.required = function() { return REQUIRED; }; Alias = function(methodName) { this.methodName = methodName; }; Alias.prototype = new Ember.Descriptor(); /** Makes a property or method available via an additional name. ```javascript App.PaintSample = Ember.Object.extend({ color: 'red', colour: Ember.alias('color'), name: function(){ return "Zed"; }, moniker: Ember.alias("name") }); var paintSample = App.PaintSample.create() paintSample.get('colour'); // 'red' paintSample.moniker(); // 'Zed' ``` @method alias @for Ember @param {String} methodName name of the method or property to alias @return {Ember.Descriptor} @deprecated Use `Ember.aliasMethod` or `Ember.computed.alias` instead */ Ember.alias = function(methodName) { return new Alias(methodName); }; Ember.deprecateFunc("Ember.alias is deprecated. Please use Ember.aliasMethod or Ember.computed.alias instead.", Ember.alias); /** Makes a method available via an additional name. ```javascript App.Person = Ember.Object.extend({ name: function(){ return 'Tomhuda Katzdale'; }, moniker: Ember.aliasMethod('name') }); var goodGuy = App.Person.create() ``` @method aliasMethod @for Ember @param {String} methodName name of the method to alias @return {Ember.Descriptor} */ Ember.aliasMethod = function(methodName) { return new Alias(methodName); }; // .......................................................... // OBSERVER HELPER // /** @method observer @for Ember @param {Function} func @param {String} propertyNames* @return func */ Ember.observer = function(func) { var paths = a_slice.call(arguments, 1); func.__ember_observes__ = paths; return func; }; // If observers ever become asynchronous, Ember.immediateObserver // must remain synchronous. /** @method immediateObserver @for Ember @param {Function} func @param {String} propertyNames* @return func */ Ember.immediateObserver = function() { for (var i=0, l=arguments.length; i<l; i++) { var arg = arguments[i]; } return Ember.observer.apply(this, arguments); }; /** @method beforeObserver @for Ember @param {Function} func @param {String} propertyNames* @return func */ Ember.beforeObserver = function(func) { var paths = a_slice.call(arguments, 1); func.__ember_observesBefore__ = paths; return func; }; })(); (function() { /** Ember Metal @module ember @submodule ember-metal */ })(); (function() { define("rsvp", [], function() { "use strict"; var browserGlobal = (typeof window !== 'undefined') ? window : {}; var MutationObserver = browserGlobal.MutationObserver || browserGlobal.WebKitMutationObserver; var RSVP, async; if (typeof process !== 'undefined' && {}.toString.call(process) === '[object process]') { async = function(callback, binding) { process.nextTick(function() { callback.call(binding); }); }; } else if (MutationObserver) { var queue = []; var observer = new MutationObserver(function() { var toProcess = queue.slice(); queue = []; toProcess.forEach(function(tuple) { var callback = tuple[0], binding = tuple[1]; callback.call(binding); }); }); var element = document.createElement('div'); observer.observe(element, { attributes: true }); // Chrome Memory Leak: https://bugs.webkit.org/show_bug.cgi?id=93661 window.addEventListener('unload', function(){ observer.disconnect(); observer = null; }); async = function(callback, binding) { queue.push([callback, binding]); element.setAttribute('drainQueue', 'drainQueue'); }; } else { async = function(callback, binding) { setTimeout(function() { callback.call(binding); }, 1); }; } var Event = function(type, options) { this.type = type; for (var option in options) { if (!options.hasOwnProperty(option)) { continue; } this[option] = options[option]; } }; var indexOf = function(callbacks, callback) { for (var i=0, l=callbacks.length; i<l; i++) { if (callbacks[i][0] === callback) { return i; } } return -1; }; var callbacksFor = function(object) { var callbacks = object._promiseCallbacks; if (!callbacks) { callbacks = object._promiseCallbacks = {}; } return callbacks; }; var EventTarget = { mixin: function(object) { object.on = this.on; object.off = this.off; object.trigger = this.trigger; return object; }, on: function(eventNames, callback, binding) { var allCallbacks = callbacksFor(this), callbacks, eventName; eventNames = eventNames.split(/\s+/); binding = binding || this; while (eventName = eventNames.shift()) { callbacks = allCallbacks[eventName]; if (!callbacks) { callbacks = allCallbacks[eventName] = []; } if (indexOf(callbacks, callback) === -1) { callbacks.push([callback, binding]); } } }, off: function(eventNames, callback) { var allCallbacks = callbacksFor(this), callbacks, eventName, index; eventNames = eventNames.split(/\s+/); while (eventName = eventNames.shift()) { if (!callback) { allCallbacks[eventName] = []; continue; } callbacks = allCallbacks[eventName]; index = indexOf(callbacks, callback); if (index !== -1) { callbacks.splice(index, 1); } } }, trigger: function(eventName, options) { var allCallbacks = callbacksFor(this), callbacks, callbackTuple, callback, binding, event; if (callbacks = allCallbacks[eventName]) { for (var i=0, l=callbacks.length; i<l; i++) { callbackTuple = callbacks[i]; callback = callbackTuple[0]; binding = callbackTuple[1]; if (typeof options !== 'object') { options = { detail: options }; } event = new Event(eventName, options); callback.call(binding, event); } } } }; var Promise = function() { this.on('promise:resolved', function(event) { this.trigger('success', { detail: event.detail }); }, this); this.on('promise:failed', function(event) { this.trigger('error', { detail: event.detail }); }, this); }; var noop = function() {}; var invokeCallback = function(type, promise, callback, event) { var hasCallback = typeof callback === 'function', value, error, succeeded, failed; if (hasCallback) { try { value = callback(event.detail); succeeded = true; } catch(e) { failed = true; error = e; } } else { value = event.detail; succeeded = true; } if (value && typeof value.then === 'function') { value.then(function(value) { promise.resolve(value); }, function(error) { promise.reject(error); }); } else if (hasCallback && succeeded) { promise.resolve(value); } else if (failed) { promise.reject(error); } else { promise[type](value); } }; Promise.prototype = { then: function(done, fail) { var thenPromise = new Promise(); if (this.isResolved) { RSVP.async(function() { invokeCallback('resolve', thenPromise, done, { detail: this.resolvedValue }); }, this); } if (this.isRejected) { RSVP.async(function() { invokeCallback('reject', thenPromise, fail, { detail: this.rejectedValue }); }, this); } this.on('promise:resolved', function(event) { invokeCallback('resolve', thenPromise, done, event); }); this.on('promise:failed', function(event) { invokeCallback('reject', thenPromise, fail, event); }); return thenPromise; }, resolve: function(value) { resolve(this, value); this.resolve = noop; this.reject = noop; }, reject: function(value) { reject(this, value); this.resolve = noop; this.reject = noop; } }; function resolve(promise, value) { RSVP.async(function() { promise.trigger('promise:resolved', { detail: value }); promise.isResolved = true; promise.resolvedValue = value; }); } function reject(promise, value) { RSVP.async(function() { promise.trigger('promise:failed', { detail: value }); promise.isRejected = true; promise.rejectedValue = value; }); } EventTarget.mixin(Promise.prototype); RSVP = { async: async, Promise: Promise, Event: Event, EventTarget: EventTarget }; return RSVP; }); })(); (function() { define("container", [], function() { var objectCreate = Object.create || function(parent) { function F() {} F.prototype = parent; return new F(); }; function InheritingDict(parent) { this.parent = parent; this.dict = {}; } InheritingDict.prototype = { get: function(key) { var dict = this.dict; if (dict.hasOwnProperty(key)) { return dict[key]; } if (this.parent) { return this.parent.get(key); } }, set: function(key, value) { this.dict[key] = value; }, has: function(key) { var dict = this.dict; if (dict.hasOwnProperty(key)) { return true; } if (this.parent) { return this.parent.has(key); } return false; }, eachLocal: function(callback, binding) { var dict = this.dict; for (var prop in dict) { if (dict.hasOwnProperty(prop)) { callback.call(binding, prop, dict[prop]); } } } }; function Container(parent) { this.parent = parent; this.children = []; this.resolver = parent && parent.resolver || function() {}; this.registry = new InheritingDict(parent && parent.registry); this.cache = new InheritingDict(parent && parent.cache); this.typeInjections = new InheritingDict(parent && parent.typeInjections); this.injections = {}; this._options = new InheritingDict(parent && parent._options); this._typeOptions = new InheritingDict(parent && parent._typeOptions); } Container.prototype = { child: function() { var container = new Container(this); this.children.push(container); return container; }, set: function(object, key, value) { object[key] = value; }, register: function(type, name, factory, options) { var fullName; if (type.indexOf(':') !== -1){ options = factory; factory = name; fullName = type; } else { fullName = type + ":" + name; } this.registry.set(fullName, factory); this._options.set(fullName, options || {}); }, resolve: function(fullName) { return this.resolver(fullName) || this.registry.get(fullName); }, lookup: function(fullName) { if (this.cache.has(fullName)) { return this.cache.get(fullName); } var value = instantiate(this, fullName); if (!value) { return; } if (isSingleton(this, fullName)) { this.cache.set(fullName, value); } return value; }, has: function(fullName) { if (this.cache.has(fullName)) { return true; } return !!factoryFor(this, fullName); }, optionsForType: function(type, options) { if (this.parent) { illegalChildOperation('optionsForType'); } this._typeOptions.set(type, options); }, options: function(type, options) { this.optionsForType(type, options); }, typeInjection: function(type, property, fullName) { if (this.parent) { illegalChildOperation('typeInjection'); } var injections = this.typeInjections.get(type); if (!injections) { injections = []; this.typeInjections.set(type, injections); } injections.push({ property: property, fullName: fullName }); }, injection: function(factoryName, property, injectionName) { if (this.parent) { illegalChildOperation('injection'); } if (factoryName.indexOf(':') === -1) { return this.typeInjection(factoryName, property, injectionName); } var injections = this.injections[factoryName] = this.injections[factoryName] || []; injections.push({ property: property, fullName: injectionName }); }, destroy: function() { this.isDestroyed = true; for (var i=0, l=this.children.length; i<l; i++) { this.children[i].destroy(); } this.children = []; eachDestroyable(this, function(item) { item.isDestroying = true; }); eachDestroyable(this, function(item) { item.destroy(); }); delete this.parent; this.isDestroyed = true; }, reset: function() { for (var i=0, l=this.children.length; i<l; i++) { resetCache(this.children[i]); } resetCache(this); } }; function illegalChildOperation(operation) { throw new Error(operation + " is not currently supported on child containers"); } function isSingleton(container, fullName) { var singleton = option(container, fullName, 'singleton'); return singleton !== false; } function buildInjections(container, injections) { var hash = {}; if (!injections) { return hash; } var injection, lookup; for (var i=0, l=injections.length; i<l; i++) { injection = injections[i]; lookup = container.lookup(injection.fullName); hash[injection.property] = lookup; } return hash; } function option(container, fullName, optionName) { var options = container._options.get(fullName); if (options && options[optionName] !== undefined) { return options[optionName]; } var type = fullName.split(":")[0]; options = container._typeOptions.get(type); if (options) { return options[optionName]; } } function factoryFor(container, fullName) { return container.resolve(fullName); } function instantiate(container, fullName) { var factory = factoryFor(container, fullName); var splitName = fullName.split(":"), type = splitName[0], name = splitName[1], value; if (option(container, fullName, 'instantiate') === false) { return factory; } if (factory) { var injections = []; injections = injections.concat(container.typeInjections.get(type) || []); injections = injections.concat(container.injections[fullName] || []); var hash = buildInjections(container, injections); hash.container = container; value = factory.create(hash); return value; } } function eachDestroyable(container, callback) { container.cache.eachLocal(function(key, value) { if (option(container, key, 'instantiate') === false) { return; } callback(value); }); } function resetCache(container) { container.cache.eachLocal(function(key, value) { if (option(container, key, 'instantiate') === false) { return; } value.destroy(); }); container.cache.dict = {}; } return Container; }); })(); (function() { /*globals ENV */ /** @module ember @submodule ember-runtime */ var indexOf = Ember.EnumerableUtils.indexOf; // ........................................ // TYPING & ARRAY MESSAGING // var TYPE_MAP = {}; var t = "Boolean Number String Function Array Date RegExp Object".split(" "); Ember.ArrayPolyfills.forEach.call(t, function(name) { TYPE_MAP[ "[object " + name + "]" ] = name.toLowerCase(); }); var toString = Object.prototype.toString; /** Returns a consistent type for the passed item. Use this instead of the built-in `typeof` to get the type of an item. It will return the same result across all browsers and includes a bit more detail. Here is what will be returned: | Return Value | Meaning | |---------------|------------------------------------------------------| | 'string' | String primitive | | 'number' | Number primitive | | 'boolean' | Boolean primitive | | 'null' | Null value | | 'undefined' | Undefined value | | 'function' | A function | | 'array' | An instance of Array | | 'class' | A Ember class (created using Ember.Object.extend()) | | 'instance' | A Ember object instance | | 'error' | An instance of the Error object | | 'object' | A JavaScript object not inheriting from Ember.Object | Examples: ```javascript Ember.typeOf(); // 'undefined' Ember.typeOf(null); // 'null' Ember.typeOf(undefined); // 'undefined' Ember.typeOf('michael'); // 'string' Ember.typeOf(101); // 'number' Ember.typeOf(true); // 'boolean' Ember.typeOf(Ember.makeArray); // 'function' Ember.typeOf([1,2,90]); // 'array' Ember.typeOf(Ember.Object.extend()); // 'class' Ember.typeOf(Ember.Object.create()); // 'instance' Ember.typeOf(new Error('teamocil')); // 'error' // "normal" JavaScript object Ember.typeOf({a: 'b'}); // 'object' ``` @method typeOf @for Ember @param item {Object} the item to check @return {String} the type */ Ember.typeOf = function(item) { var ret; ret = (item === null || item === undefined) ? String(item) : TYPE_MAP[toString.call(item)] || 'object'; if (ret === 'function') { if (Ember.Object && Ember.Object.detect(item)) ret = 'class'; } else if (ret === 'object') { if (item instanceof Error) ret = 'error'; else if (Ember.Object && item instanceof Ember.Object) ret = 'instance'; else ret = 'object'; } return ret; }; /** Returns true if the passed value is null or undefined. This avoids errors from JSLint complaining about use of ==, which can be technically confusing. ```javascript Ember.isNone(); // true Ember.isNone(null); // true Ember.isNone(undefined); // true Ember.isNone(''); // false Ember.isNone([]); // false Ember.isNone(function(){}); // false ``` @method isNone @for Ember @param {Object} obj Value to test @return {Boolean} */ Ember.isNone = function(obj) { return obj === null || obj === undefined; }; Ember.none = Ember.deprecateFunc("Ember.none is deprecated. Please use Ember.isNone instead.", Ember.isNone); /** Verifies that a value is `null` or an empty string, empty array, or empty function. Constrains the rules on `Ember.isNone` by returning false for empty string and empty arrays. ```javascript Ember.isEmpty(); // true Ember.isEmpty(null); // true Ember.isEmpty(undefined); // true Ember.isEmpty(''); // true Ember.isEmpty([]); // true Ember.isEmpty('Adam Hawkins'); // false Ember.isEmpty([0,1,2]); // false ``` @method isEmpty @for Ember @param {Object} obj Value to test @return {Boolean} */ Ember.isEmpty = function(obj) { return obj === null || obj === undefined || (obj.length === 0 && typeof obj !== 'function') || (typeof obj === 'object' && Ember.get(obj, 'length') === 0); }; Ember.empty = Ember.deprecateFunc("Ember.empty is deprecated. Please use Ember.isEmpty instead.", Ember.isEmpty) ; /** This will compare two javascript values of possibly different types. It will tell you which one is greater than the other by returning: - -1 if the first is smaller than the second, - 0 if both are equal, - 1 if the first is greater than the second. The order is calculated based on `Ember.ORDER_DEFINITION`, if types are different. In case they have the same type an appropriate comparison for this type is made. ```javascript Ember.compare('hello', 'hello'); // 0 Ember.compare('abc', 'dfg'); // -1 Ember.compare(2, 1); // 1 ``` @method compare @for Ember @param {Object} v First value to compare @param {Object} w Second value to compare @return {Number} -1 if v < w, 0 if v = w and 1 if v > w. */ Ember.compare = function compare(v, w) { if (v === w) { return 0; } var type1 = Ember.typeOf(v); var type2 = Ember.typeOf(w); var Comparable = Ember.Comparable; if (Comparable) { if (type1==='instance' && Comparable.detect(v.constructor)) { return v.constructor.compare(v, w); } if (type2 === 'instance' && Comparable.detect(w.constructor)) { return 1-w.constructor.compare(w, v); } } // If we haven't yet generated a reverse-mapping of Ember.ORDER_DEFINITION, // do so now. var mapping = Ember.ORDER_DEFINITION_MAPPING; if (!mapping) { var order = Ember.ORDER_DEFINITION; mapping = Ember.ORDER_DEFINITION_MAPPING = {}; var idx, len; for (idx = 0, len = order.length; idx < len; ++idx) { mapping[order[idx]] = idx; } // We no longer need Ember.ORDER_DEFINITION. delete Ember.ORDER_DEFINITION; } var type1Index = mapping[type1]; var type2Index = mapping[type2]; if (type1Index < type2Index) { return -1; } if (type1Index > type2Index) { return 1; } // types are equal - so we have to check values now switch (type1) { case 'boolean': case 'number': if (v < w) { return -1; } if (v > w) { return 1; } return 0; case 'string': var comp = v.localeCompare(w); if (comp < 0) { return -1; } if (comp > 0) { return 1; } return 0; case 'array': var vLen = v.length; var wLen = w.length; var l = Math.min(vLen, wLen); var r = 0; var i = 0; while (r === 0 && i < l) { r = compare(v[i],w[i]); i++; } if (r !== 0) { return r; } // all elements are equal now // shorter array should be ordered first if (vLen < wLen) { return -1; } if (vLen > wLen) { return 1; } // arrays are equal now return 0; case 'instance': if (Ember.Comparable && Ember.Comparable.detect(v)) { return v.compare(v, w); } return 0; case 'date': var vNum = v.getTime(); var wNum = w.getTime(); if (vNum < wNum) { return -1; } if (vNum > wNum) { return 1; } return 0; default: return 0; } }; function _copy(obj, deep, seen, copies) { var ret, loc, key; // primitive data types are immutable, just return them. if ('object' !== typeof obj || obj===null) return obj; // avoid cyclical loops if (deep && (loc=indexOf(seen, obj))>=0) return copies[loc]; // IMPORTANT: this specific test will detect a native array only. Any other // object will need to implement Copyable. if (Ember.typeOf(obj) === 'array') { ret = obj.slice(); if (deep) { loc = ret.length; while(--loc>=0) ret[loc] = _copy(ret[loc], deep, seen, copies); } } else if (Ember.Copyable && Ember.Copyable.detect(obj)) { ret = obj.copy(deep, seen, copies); } else { ret = {}; for(key in obj) { if (!obj.hasOwnProperty(key)) continue; // Prevents browsers that don't respect non-enumerability from // copying internal Ember properties if (key.substring(0,2) === '__') continue; ret[key] = deep ? _copy(obj[key], deep, seen, copies) : obj[key]; } } if (deep) { seen.push(obj); copies.push(ret); } return ret; } /** Creates a clone of the passed object. This function can take just about any type of object and create a clone of it, including primitive values (which are not actually cloned because they are immutable). If the passed object implements the `clone()` method, then this function will simply call that method and return the result. @method copy @for Ember @param {Object} object The object to clone @param {Boolean} deep If true, a deep copy of the object is made @return {Object} The cloned object */ Ember.copy = function(obj, deep) { // fast paths if ('object' !== typeof obj || obj===null) return obj; // can't copy primitives if (Ember.Copyable && Ember.Copyable.detect(obj)) return obj.copy(deep); return _copy(obj, deep, deep ? [] : null, deep ? [] : null); }; /** Convenience method to inspect an object. This method will attempt to convert the object into a useful string description. It is a pretty simple implementation. If you want something more robust, use something like JSDump: https://github.com/NV/jsDump @method inspect @for Ember @param {Object} obj The object you want to inspect. @return {String} A description of the object */ Ember.inspect = function(obj) { if (typeof obj !== 'object' || obj === null) { return obj + ''; } var v, ret = []; for(var key in obj) { if (obj.hasOwnProperty(key)) { v = obj[key]; if (v === 'toString') { continue; } // ignore useless items if (Ember.typeOf(v) === 'function') { v = "function() { ... }"; } ret.push(key + ": " + v); } } return "{" + ret.join(", ") + "}"; }; /** Compares two objects, returning true if they are logically equal. This is a deeper comparison than a simple triple equal. For sets it will compare the internal objects. For any other object that implements `isEqual()` it will respect that method. ```javascript Ember.isEqual('hello', 'hello'); // true Ember.isEqual(1, 2); // false Ember.isEqual([4,2], [4,2]); // false ``` @method isEqual @for Ember @param {Object} a first object to compare @param {Object} b second object to compare @return {Boolean} */ Ember.isEqual = function(a, b) { if (a && 'function'===typeof a.isEqual) return a.isEqual(b); return a === b; }; // Used by Ember.compare Ember.ORDER_DEFINITION = Ember.ENV.ORDER_DEFINITION || [ 'undefined', 'null', 'boolean', 'number', 'string', 'array', 'object', 'instance', 'function', 'class', 'date' ]; /** Returns all of the keys defined on an object or hash. This is useful when inspecting objects for debugging. On browsers that support it, this uses the native `Object.keys` implementation. @method keys @for Ember @param {Object} obj @return {Array} Array containing keys of obj */ Ember.keys = Object.keys; if (!Ember.keys) { Ember.keys = function(obj) { var ret = []; for(var key in obj) { if (obj.hasOwnProperty(key)) { ret.push(key); } } return ret; }; } // .......................................................... // ERROR // var errorProps = ['description', 'fileName', 'lineNumber', 'message', 'name', 'number', 'stack']; /** A subclass of the JavaScript Error object for use in Ember. @class Error @namespace Ember @extends Error @constructor */ Ember.Error = function() { var tmp = Error.prototype.constructor.apply(this, arguments); // Unfortunately errors are not enumerable in Chrome (at least), so `for prop in tmp` doesn't work. for (var idx = 0; idx < errorProps.length; idx++) { this[errorProps[idx]] = tmp[errorProps[idx]]; } }; Ember.Error.prototype = Ember.create(Error.prototype); })(); (function() { /** @module ember @submodule ember-runtime */ var STRING_DASHERIZE_REGEXP = (/[ _]/g); var STRING_DASHERIZE_CACHE = {}; var STRING_DECAMELIZE_REGEXP = (/([a-z])([A-Z])/g); var STRING_CAMELIZE_REGEXP = (/(\-|_|\.|\s)+(.)?/g); var STRING_UNDERSCORE_REGEXP_1 = (/([a-z\d])([A-Z]+)/g); var STRING_UNDERSCORE_REGEXP_2 = (/\-|\s+/g); /** Defines the hash of localized strings for the current language. Used by the `Ember.String.loc()` helper. To localize, add string values to this hash. @property STRINGS @for Ember @type Hash */ Ember.STRINGS = {}; /** Defines string helper methods including string formatting and localization. Unless `Ember.EXTEND_PROTOTYPES.String` is `false` these methods will also be added to the `String.prototype` as well. @class String @namespace Ember @static */ Ember.String = { /** Apply formatting options to the string. This will look for occurrences of "%@" in your string and substitute them with the arguments you pass into this method. If you want to control the specific order of replacement, you can add a number after the key as well to indicate which argument you want to insert. Ordered insertions are most useful when building loc strings where values you need to insert may appear in different orders. ```javascript "Hello %@ %@".fmt('John', 'Doe'); // "Hello John Doe" "Hello %@2, %@1".fmt('John', 'Doe'); // "Hello Doe, John" ``` @method fmt @param {Object...} [args] @return {String} formatted string */ fmt: function(str, formats) { // first, replace any ORDERED replacements. var idx = 0; // the current index for non-numerical replacements return str.replace(/%@([0-9]+)?/g, function(s, argIndex) { argIndex = (argIndex) ? parseInt(argIndex,0) - 1 : idx++ ; s = formats[argIndex]; return ((s === null) ? '(null)' : (s === undefined) ? '' : s).toString(); }) ; }, /** Formats the passed string, but first looks up the string in the localized strings hash. This is a convenient way to localize text. See `Ember.String.fmt()` for more information on formatting. Note that it is traditional but not required to prefix localized string keys with an underscore or other character so you can easily identify localized strings. ```javascript Ember.STRINGS = { '_Hello World': 'Bonjour le monde', '_Hello %@ %@': 'Bonjour %@ %@' }; Ember.String.loc("_Hello World"); // 'Bonjour le monde'; Ember.String.loc("_Hello %@ %@", ["John", "Smith"]); // "Bonjour John Smith"; ``` @method loc @param {String} str The string to format @param {Array} formats Optional array of parameters to interpolate into string. @return {String} formatted string */ loc: function(str, formats) { str = Ember.STRINGS[str] || str; return Ember.String.fmt(str, formats) ; }, /** Splits a string into separate units separated by spaces, eliminating any empty strings in the process. This is a convenience method for split that is mostly useful when applied to the `String.prototype`. ```javascript Ember.String.w("alpha beta gamma").forEach(function(key) { console.log(key); }); // > alpha // > beta // > gamma ``` @method w @param {String} str The string to split @return {String} split string */ w: function(str) { return str.split(/\s+/); }, /** Converts a camelized string into all lower case separated by underscores. ```javascript 'innerHTML'.decamelize(); // 'inner_html' 'action_name'.decamelize(); // 'action_name' 'css-class-name'.decamelize(); // 'css-class-name' 'my favorite items'.decamelize(); // 'my favorite items' ``` @method decamelize @param {String} str The string to decamelize. @return {String} the decamelized string. */ decamelize: function(str) { return str.replace(STRING_DECAMELIZE_REGEXP, '$1_$2').toLowerCase(); }, /** Replaces underscores or spaces with dashes. ```javascript 'innerHTML'.dasherize(); // 'inner-html' 'action_name'.dasherize(); // 'action-name' 'css-class-name'.dasherize(); // 'css-class-name' 'my favorite items'.dasherize(); // 'my-favorite-items' ``` @method dasherize @param {String} str The string to dasherize. @return {String} the dasherized string. */ dasherize: function(str) { var cache = STRING_DASHERIZE_CACHE, ret = cache[str]; if (ret) { return ret; } else { ret = Ember.String.decamelize(str).replace(STRING_DASHERIZE_REGEXP,'-'); cache[str] = ret; } return ret; }, /** Returns the lowerCaseCamel form of a string. ```javascript 'innerHTML'.camelize(); // 'innerHTML' 'action_name'.camelize(); // 'actionName' 'css-class-name'.camelize(); // 'cssClassName' 'my favorite items'.camelize(); // 'myFavoriteItems' ``` @method camelize @param {String} str The string to camelize. @return {String} the camelized string. */ camelize: function(str) { return str.replace(STRING_CAMELIZE_REGEXP, function(match, separator, chr) { return chr ? chr.toUpperCase() : ''; }); }, /** Returns the UpperCamelCase form of a string. ```javascript 'innerHTML'.classify(); // 'InnerHTML' 'action_name'.classify(); // 'ActionName' 'css-class-name'.classify(); // 'CssClassName' 'my favorite items'.classify(); // 'MyFavoriteItems' ``` @method classify @param {String} str the string to classify @return {String} the classified string */ classify: function(str) { var parts = str.split("."), out = []; for (var i=0, l=parts.length; i<l; i++) { var camelized = Ember.String.camelize(parts[i]); out.push(camelized.charAt(0).toUpperCase() + camelized.substr(1)); } return out.join("."); }, /** More general than decamelize. Returns the lower\_case\_and\_underscored form of a string. ```javascript 'innerHTML'.underscore(); // 'inner_html' 'action_name'.underscore(); // 'action_name' 'css-class-name'.underscore(); // 'css_class_name' 'my favorite items'.underscore(); // 'my_favorite_items' ``` @method underscore @param {String} str The string to underscore. @return {String} the underscored string. */ underscore: function(str) { return str.replace(STRING_UNDERSCORE_REGEXP_1, '$1_$2'). replace(STRING_UNDERSCORE_REGEXP_2, '_').toLowerCase(); }, /** Returns the Capitalized form of a string 'innerHTML'.capitalize() => 'InnerHTML' 'action_name'.capitalize() => 'Action_name' 'css-class-name'.capitalize() => 'Css-class-name' 'my favorite items'.capitalize() => 'My favorite items' @method capitalize @param {String} str @return {String} */ capitalize: function(str) { return str.charAt(0).toUpperCase() + str.substr(1); } }; })(); (function() { /** @module ember @submodule ember-runtime */ var fmt = Ember.String.fmt, w = Ember.String.w, loc = Ember.String.loc, camelize = Ember.String.camelize, decamelize = Ember.String.decamelize, dasherize = Ember.String.dasherize, underscore = Ember.String.underscore, capitalize = Ember.String.capitalize, classify = Ember.String.classify; if (Ember.EXTEND_PROTOTYPES === true || Ember.EXTEND_PROTOTYPES.String) { /** See {{#crossLink "Ember.String/fmt"}}{{/crossLink}} @method fmt @for String */ String.prototype.fmt = function() { return fmt(this, arguments); }; /** See {{#crossLink "Ember.String/w"}}{{/crossLink}} @method w @for String */ String.prototype.w = function() { return w(this); }; /** See {{#crossLink "Ember.String/loc"}}{{/crossLink}} @method loc @for String */ String.prototype.loc = function() { return loc(this, arguments); }; /** See {{#crossLink "Ember.String/camelize"}}{{/crossLink}} @method camelize @for String */ String.prototype.camelize = function() { return camelize(this); }; /** See {{#crossLink "Ember.String/decamelize"}}{{/crossLink}} @method decamelize @for String */ String.prototype.decamelize = function() { return decamelize(this); }; /** See {{#crossLink "Ember.String/dasherize"}}{{/crossLink}} @method dasherize @for String */ String.prototype.dasherize = function() { return dasherize(this); }; /** See {{#crossLink "Ember.String/underscore"}}{{/crossLink}} @method underscore @for String */ String.prototype.underscore = function() { return underscore(this); }; /** See {{#crossLink "Ember.String/classify"}}{{/crossLink}} @method classify @for String */ String.prototype.classify = function() { return classify(this); }; /** See {{#crossLink "Ember.String/capitalize"}}{{/crossLink}} @method capitalize @for String */ String.prototype.capitalize = function() { return capitalize(this); }; } })(); (function() { /** @module ember @submodule ember-runtime */ var a_slice = Array.prototype.slice; if (Ember.EXTEND_PROTOTYPES === true || Ember.EXTEND_PROTOTYPES.Function) { /** The `property` extension of Javascript's Function prototype is available when `Ember.EXTEND_PROTOTYPES` or `Ember.EXTEND_PROTOTYPES.Function` is `true`, which is the default. Computed properties allow you to treat a function like a property: ```javascript MyApp.president = Ember.Object.create({ firstName: "Barack", lastName: "Obama", fullName: function() { return this.get('firstName') + ' ' + this.get('lastName'); // Call this flag to mark the function as a property }.property() }); MyApp.president.get('fullName'); // "Barack Obama" ``` Treating a function like a property is useful because they can work with bindings, just like any other property. Many computed properties have dependencies on other properties. For example, in the above example, the `fullName` property depends on `firstName` and `lastName` to determine its value. You can tell Ember about these dependencies like this: ```javascript MyApp.president = Ember.Object.create({ firstName: "Barack", lastName: "Obama", fullName: function() { return this.get('firstName') + ' ' + this.get('lastName'); // Tell Ember.js that this computed property depends on firstName // and lastName }.property('firstName', 'lastName') }); ``` Make sure you list these dependencies so Ember knows when to update bindings that connect to a computed property. Changing a dependency will not immediately trigger an update of the computed property, but will instead clear the cache so that it is updated when the next `get` is called on the property. See {{#crossLink "Ember.ComputedProperty"}}{{/crossLink}}, {{#crossLink "Ember/computed"}}{{/crossLink}} @method property @for Function */ Function.prototype.property = function() { var ret = Ember.computed(this); return ret.property.apply(ret, arguments); }; /** The `observes` extension of Javascript's Function prototype is available when `Ember.EXTEND_PROTOTYPES` or `Ember.EXTEND_PROTOTYPES.Function` is true, which is the default. You can observe property changes simply by adding the `observes` call to the end of your method declarations in classes that you write. For example: ```javascript Ember.Object.create({ valueObserver: function() { // Executes whenever the "value" property changes }.observes('value') }); ``` See {{#crossLink "Ember.Observable/observes"}}{{/crossLink}} @method observes @for Function */ Function.prototype.observes = function() { this.__ember_observes__ = a_slice.call(arguments); return this; }; /** The `observesBefore` extension of Javascript's Function prototype is available when `Ember.EXTEND_PROTOTYPES` or `Ember.EXTEND_PROTOTYPES.Function` is true, which is the default. You can get notified when a property changes is about to happen by by adding the `observesBefore` call to the end of your method declarations in classes that you write. For example: ```javascript Ember.Object.create({ valueObserver: function() { // Executes whenever the "value" property is about to change }.observesBefore('value') }); ``` See {{#crossLink "Ember.Observable/observesBefore"}}{{/crossLink}} @method observesBefore @for Function */ Function.prototype.observesBefore = function() { this.__ember_observesBefore__ = a_slice.call(arguments); return this; }; } })(); (function() { })(); (function() { /** @module ember @submodule ember-runtime */ // .......................................................... // HELPERS // var get = Ember.get, set = Ember.set; var a_slice = Array.prototype.slice; var a_indexOf = Ember.EnumerableUtils.indexOf; var contexts = []; function popCtx() { return contexts.length===0 ? {} : contexts.pop(); } function pushCtx(ctx) { contexts.push(ctx); return null; } function iter(key, value) { var valueProvided = arguments.length === 2; function i(item) { var cur = get(item, key); return valueProvided ? value===cur : !!cur; } return i ; } /** This mixin defines the common interface implemented by enumerable objects in Ember. Most of these methods follow the standard Array iteration API defined up to JavaScript 1.8 (excluding language-specific features that cannot be emulated in older versions of JavaScript). This mixin is applied automatically to the Array class on page load, so you can use any of these methods on simple arrays. If Array already implements one of these methods, the mixin will not override them. ## Writing Your Own Enumerable To make your own custom class enumerable, you need two items: 1. You must have a length property. This property should change whenever the number of items in your enumerable object changes. If you using this with an `Ember.Object` subclass, you should be sure to change the length property using `set().` 2. If you must implement `nextObject().` See documentation. Once you have these two methods implement, apply the `Ember.Enumerable` mixin to your class and you will be able to enumerate the contents of your object like any other collection. ## Using Ember Enumeration with Other Libraries Many other libraries provide some kind of iterator or enumeration like facility. This is often where the most common API conflicts occur. Ember's API is designed to be as friendly as possible with other libraries by implementing only methods that mostly correspond to the JavaScript 1.8 API. @class Enumerable @namespace Ember @extends Ember.Mixin @since Ember 0.9 */ Ember.Enumerable = Ember.Mixin.create( /** @scope Ember.Enumerable.prototype */ { // compatibility isEnumerable: true, /** Implement this method to make your class enumerable. This method will be call repeatedly during enumeration. The index value will always begin with 0 and increment monotonically. You don't have to rely on the index value to determine what object to return, but you should always check the value and start from the beginning when you see the requested index is 0. The `previousObject` is the object that was returned from the last call to `nextObject` for the current iteration. This is a useful way to manage iteration if you are tracing a linked list, for example. Finally the context parameter will always contain a hash you can use as a "scratchpad" to maintain any other state you need in order to iterate properly. The context object is reused and is not reset between iterations so make sure you setup the context with a fresh state whenever the index parameter is 0. Generally iterators will continue to call `nextObject` until the index reaches the your current length-1. If you run out of data before this time for some reason, you should simply return undefined. The default implementation of this method simply looks up the index. This works great on any Array-like objects. @method nextObject @param {Number} index the current index of the iteration @param {Object} previousObject the value returned by the last call to `nextObject`. @param {Object} context a context object you can use to maintain state. @return {Object} the next object in the iteration or undefined */ nextObject: Ember.required(Function), /** Helper method returns the first object from a collection. This is usually used by bindings and other parts of the framework to extract a single object if the enumerable contains only one item. If you override this method, you should implement it so that it will always return the same value each time it is called. If your enumerable contains only one object, this method should always return that object. If your enumerable is empty, this method should return `undefined`. ```javascript var arr = ["a", "b", "c"]; arr.firstObject(); // "a" var arr = []; arr.firstObject(); // undefined ``` @property firstObject @return {Object} the object or undefined */ firstObject: Ember.computed(function() { if (get(this, 'length')===0) return undefined ; // handle generic enumerables var context = popCtx(), ret; ret = this.nextObject(0, null, context); pushCtx(context); return ret ; }).property('[]'), /** Helper method returns the last object from a collection. If your enumerable contains only one object, this method should always return that object. If your enumerable is empty, this method should return `undefined`. ```javascript var arr = ["a", "b", "c"]; arr.lastObject(); // "c" var arr = []; arr.lastObject(); // undefined ``` @property lastObject @return {Object} the last object or undefined */ lastObject: Ember.computed(function() { var len = get(this, 'length'); if (len===0) return undefined ; var context = popCtx(), idx=0, cur, last = null; do { last = cur; cur = this.nextObject(idx++, last, context); } while (cur !== undefined); pushCtx(context); return last; }).property('[]'), /** Returns `true` if the passed object can be found in the receiver. The default version will iterate through the enumerable until the object is found. You may want to override this with a more efficient version. ```javascript var arr = ["a", "b", "c"]; arr.contains("a"); // true arr.contains("z"); // false ``` @method contains @param {Object} obj The object to search for. @return {Boolean} `true` if object is found in enumerable. */ contains: function(obj) { return this.find(function(item) { return item===obj; }) !== undefined; }, /** Iterates through the enumerable, calling the passed function on each item. This method corresponds to the `forEach()` method defined in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): ```javascript function(item, index, enumerable); ``` - `item` is the current item in the iteration. - `index` is the current index in the iteration. - `enumerable` is the enumerable object itself. Note that in addition to a callback, you can also pass an optional target object that will be set as `this` on the context. This is a good way to give your iterator function access to the current object. @method forEach @param {Function} callback The callback to execute @param {Object} [target] The target object to use @return {Object} receiver */ forEach: function(callback, target) { if (typeof callback !== "function") throw new TypeError() ; var len = get(this, 'length'), last = null, context = popCtx(); if (target === undefined) target = null; for(var idx=0;idx<len;idx++) { var next = this.nextObject(idx, last, context) ; callback.call(target, next, idx, this); last = next ; } last = null ; context = pushCtx(context); return this ; }, /** Alias for `mapProperty` @method getEach @param {String} key name of the property @return {Array} The mapped array. */ getEach: function(key) { return this.mapProperty(key); }, /** Sets the value on the named property for each member. This is more efficient than using other methods defined on this helper. If the object implements Ember.Observable, the value will be changed to `set(),` otherwise it will be set directly. `null` objects are skipped. @method setEach @param {String} key The key to set @param {Object} value The object to set @return {Object} receiver */ setEach: function(key, value) { return this.forEach(function(item) { set(item, key, value); }); }, /** Maps all of the items in the enumeration to another value, returning a new array. This method corresponds to `map()` defined in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): ```javascript function(item, index, enumerable); ``` - `item` is the current item in the iteration. - `index` is the current index in the iteration. - `enumerable` is the enumerable object itself. It should return the mapped value. Note that in addition to a callback, you can also pass an optional target object that will be set as `this` on the context. This is a good way to give your iterator function access to the current object. @method map @param {Function} callback The callback to execute @param {Object} [target] The target object to use @return {Array} The mapped array. */ map: function(callback, target) { var ret = []; this.forEach(function(x, idx, i) { ret[idx] = callback.call(target, x, idx,i); }); return ret ; }, /** Similar to map, this specialized function returns the value of the named property on all items in the enumeration. @method mapProperty @param {String} key name of the property @return {Array} The mapped array. */ mapProperty: function(key) { return this.map(function(next) { return get(next, key); }); }, /** Returns an array with all of the items in the enumeration that the passed function returns true for. This method corresponds to `filter()` defined in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): ```javascript function(item, index, enumerable); ``` - `item` is the current item in the iteration. - `index` is the current index in the iteration. - `enumerable` is the enumerable object itself. It should return the `true` to include the item in the results, `false` otherwise. Note that in addition to a callback, you can also pass an optional target object that will be set as `this` on the context. This is a good way to give your iterator function access to the current object. @method filter @param {Function} callback The callback to execute @param {Object} [target] The target object to use @return {Array} A filtered array. */ filter: function(callback, target) { var ret = []; this.forEach(function(x, idx, i) { if (callback.call(target, x, idx, i)) ret.push(x); }); return ret ; }, /** Returns an array with all of the items in the enumeration where the passed function returns false for. This method is the inverse of filter(). The callback method you provide should have the following signature (all parameters are optional): function(item, index, enumerable); - *item* is the current item in the iteration. - *index* is the current index in the iteration - *enumerable* is the enumerable object itself. It should return the a falsey value to include the item in the results. Note that in addition to a callback, you can also pass an optional target object that will be set as "this" on the context. This is a good way to give your iterator function access to the current object. @method reject @param {Function} callback The callback to execute @param {Object} [target] The target object to use @return {Array} A rejected array. */ reject: function(callback, target) { return this.filter(function() { return !(callback.apply(target, arguments)); }); }, /** Returns an array with just the items with the matched property. You can pass an optional second argument with the target value. Otherwise this will match any property that evaluates to `true`. @method filterProperty @param {String} key the property to test @param {String} [value] optional value to test against. @return {Array} filtered array */ filterProperty: function(key, value) { return this.filter(iter.apply(this, arguments)); }, /** Returns an array with the items that do not have truthy values for key. You can pass an optional second argument with the target value. Otherwise this will match any property that evaluates to false. @method rejectProperty @param {String} key the property to test @param {String} [value] optional value to test against. @return {Array} rejected array */ rejectProperty: function(key, value) { var exactValue = function(item) { return get(item, key) === value; }, hasValue = function(item) { return !!get(item, key); }, use = (arguments.length === 2 ? exactValue : hasValue); return this.reject(use); }, /** Returns the first item in the array for which the callback returns true. This method works similar to the `filter()` method defined in JavaScript 1.6 except that it will stop working on the array once a match is found. The callback method you provide should have the following signature (all parameters are optional): ```javascript function(item, index, enumerable); ``` - `item` is the current item in the iteration. - `index` is the current index in the iteration. - `enumerable` is the enumerable object itself. It should return the `true` to include the item in the results, `false` otherwise. Note that in addition to a callback, you can also pass an optional target object that will be set as `this` on the context. This is a good way to give your iterator function access to the current object. @method find @param {Function} callback The callback to execute @param {Object} [target] The target object to use @return {Object} Found item or `undefined`. */ find: function(callback, target) { var len = get(this, 'length') ; if (target === undefined) target = null; var last = null, next, found = false, ret ; var context = popCtx(); for(var idx=0;idx<len && !found;idx++) { next = this.nextObject(idx, last, context) ; if (found = callback.call(target, next, idx, this)) ret = next ; last = next ; } next = last = null ; context = pushCtx(context); return ret ; }, /** Returns the first item with a property matching the passed value. You can pass an optional second argument with the target value. Otherwise this will match any property that evaluates to `true`. This method works much like the more generic `find()` method. @method findProperty @param {String} key the property to test @param {String} [value] optional value to test against. @return {Object} found item or `undefined` */ findProperty: function(key, value) { return this.find(iter.apply(this, arguments)); }, /** Returns `true` if the passed function returns true for every item in the enumeration. This corresponds with the `every()` method in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): ```javascript function(item, index, enumerable); ``` - `item` is the current item in the iteration. - `index` is the current index in the iteration. - `enumerable` is the enumerable object itself. It should return the `true` or `false`. Note that in addition to a callback, you can also pass an optional target object that will be set as `this` on the context. This is a good way to give your iterator function access to the current object. Example Usage: ```javascript if (people.every(isEngineer)) { Paychecks.addBigBonus(); } ``` @method every @param {Function} callback The callback to execute @param {Object} [target] The target object to use @return {Boolean} */ every: function(callback, target) { return !this.find(function(x, idx, i) { return !callback.call(target, x, idx, i); }); }, /** Returns `true` if the passed property resolves to `true` for all items in the enumerable. This method is often simpler/faster than using a callback. @method everyProperty @param {String} key the property to test @param {String} [value] optional value to test against. @return {Boolean} */ everyProperty: function(key, value) { return this.every(iter.apply(this, arguments)); }, /** Returns `true` if the passed function returns true for any item in the enumeration. This corresponds with the `some()` method in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): ```javascript function(item, index, enumerable); ``` - `item` is the current item in the iteration. - `index` is the current index in the iteration. - `enumerable` is the enumerable object itself. It should return the `true` to include the item in the results, `false` otherwise. Note that in addition to a callback, you can also pass an optional target object that will be set as `this` on the context. This is a good way to give your iterator function access to the current object. Usage Example: ```javascript if (people.some(isManager)) { Paychecks.addBiggerBonus(); } ``` @method some @param {Function} callback The callback to execute @param {Object} [target] The target object to use @return {Array} A filtered array. */ some: function(callback, target) { return !!this.find(function(x, idx, i) { return !!callback.call(target, x, idx, i); }); }, /** Returns `true` if the passed property resolves to `true` for any item in the enumerable. This method is often simpler/faster than using a callback. @method someProperty @param {String} key the property to test @param {String} [value] optional value to test against. @return {Boolean} `true` */ someProperty: function(key, value) { return this.some(iter.apply(this, arguments)); }, /** This will combine the values of the enumerator into a single value. It is a useful way to collect a summary value from an enumeration. This corresponds to the `reduce()` method defined in JavaScript 1.8. The callback method you provide should have the following signature (all parameters are optional): ```javascript function(previousValue, item, index, enumerable); ``` - `previousValue` is the value returned by the last call to the iterator. - `item` is the current item in the iteration. - `index` is the current index in the iteration. - `enumerable` is the enumerable object itself. Return the new cumulative value. In addition to the callback you can also pass an `initialValue`. An error will be raised if you do not pass an initial value and the enumerator is empty. Note that unlike the other methods, this method does not allow you to pass a target object to set as this for the callback. It's part of the spec. Sorry. @method reduce @param {Function} callback The callback to execute @param {Object} initialValue Initial value for the reduce @param {String} reducerProperty internal use only. @return {Object} The reduced value. */ reduce: function(callback, initialValue, reducerProperty) { if (typeof callback !== "function") { throw new TypeError(); } var ret = initialValue; this.forEach(function(item, i) { ret = callback.call(null, ret, item, i, this, reducerProperty); }, this); return ret; }, /** Invokes the named method on every object in the receiver that implements it. This method corresponds to the implementation in Prototype 1.6. @method invoke @param {String} methodName the name of the method @param {Object...} args optional arguments to pass as well. @return {Array} return values from calling invoke. */ invoke: function(methodName) { var args, ret = []; if (arguments.length>1) args = a_slice.call(arguments, 1); this.forEach(function(x, idx) { var method = x && x[methodName]; if ('function' === typeof method) { ret[idx] = args ? method.apply(x, args) : method.call(x); } }, this); return ret; }, /** Simply converts the enumerable into a genuine array. The order is not guaranteed. Corresponds to the method implemented by Prototype. @method toArray @return {Array} the enumerable as an array. */ toArray: function() { var ret = []; this.forEach(function(o, idx) { ret[idx] = o; }); return ret ; }, /** Returns a copy of the array with all null elements removed. ```javascript var arr = ["a", null, "c", null]; arr.compact(); // ["a", "c"] ``` @method compact @return {Array} the array without null elements. */ compact: function() { return this.without(null); }, /** Returns a new enumerable that excludes the passed value. The default implementation returns an array regardless of the receiver type unless the receiver does not contain the value. ```javascript var arr = ["a", "b", "a", "c"]; arr.without("a"); // ["b", "c"] ``` @method without @param {Object} value @return {Ember.Enumerable} */ without: function(value) { if (!this.contains(value)) return this; // nothing to do var ret = [] ; this.forEach(function(k) { if (k !== value) ret[ret.length] = k; }) ; return ret ; }, /** Returns a new enumerable that contains only unique values. The default implementation returns an array regardless of the receiver type. ```javascript var arr = ["a", "a", "b", "b"]; arr.uniq(); // ["a", "b"] ``` @method uniq @return {Ember.Enumerable} */ uniq: function() { var ret = []; this.forEach(function(k){ if (a_indexOf(ret, k)<0) ret.push(k); }); return ret; }, /** This property will trigger anytime the enumerable's content changes. You can observe this property to be notified of changes to the enumerables content. For plain enumerables, this property is read only. `Ember.Array` overrides this method. @property [] @type Ember.Array */ '[]': Ember.computed(function(key, value) { return this; }), // .......................................................... // ENUMERABLE OBSERVERS // /** Registers an enumerable observer. Must implement `Ember.EnumerableObserver` mixin. @method addEnumerableObserver @param target {Object} @param opts {Hash} */ addEnumerableObserver: function(target, opts) { var willChange = (opts && opts.willChange) || 'enumerableWillChange', didChange = (opts && opts.didChange) || 'enumerableDidChange'; var hasObservers = get(this, 'hasEnumerableObservers'); if (!hasObservers) Ember.propertyWillChange(this, 'hasEnumerableObservers'); Ember.addListener(this, '@enumerable:before', target, willChange); Ember.addListener(this, '@enumerable:change', target, didChange); if (!hasObservers) Ember.propertyDidChange(this, 'hasEnumerableObservers'); return this; }, /** Removes a registered enumerable observer. @method removeEnumerableObserver @param target {Object} @param [opts] {Hash} */ removeEnumerableObserver: function(target, opts) { var willChange = (opts && opts.willChange) || 'enumerableWillChange', didChange = (opts && opts.didChange) || 'enumerableDidChange'; var hasObservers = get(this, 'hasEnumerableObservers'); if (hasObservers) Ember.propertyWillChange(this, 'hasEnumerableObservers'); Ember.removeListener(this, '@enumerable:before', target, willChange); Ember.removeListener(this, '@enumerable:change', target, didChange); if (hasObservers) Ember.propertyDidChange(this, 'hasEnumerableObservers'); return this; }, /** Becomes true whenever the array currently has observers watching changes on the array. @property hasEnumerableObservers @type Boolean */ hasEnumerableObservers: Ember.computed(function() { return Ember.hasListeners(this, '@enumerable:change') || Ember.hasListeners(this, '@enumerable:before'); }), /** Invoke this method just before the contents of your enumerable will change. You can either omit the parameters completely or pass the objects to be removed or added if available or just a count. @method enumerableContentWillChange @param {Ember.Enumerable|Number} removing An enumerable of the objects to be removed or the number of items to be removed. @param {Ember.Enumerable|Number} adding An enumerable of the objects to be added or the number of items to be added. @chainable */ enumerableContentWillChange: function(removing, adding) { var removeCnt, addCnt, hasDelta; if ('number' === typeof removing) removeCnt = removing; else if (removing) removeCnt = get(removing, 'length'); else removeCnt = removing = -1; if ('number' === typeof adding) addCnt = adding; else if (adding) addCnt = get(adding,'length'); else addCnt = adding = -1; hasDelta = addCnt<0 || removeCnt<0 || addCnt-removeCnt!==0; if (removing === -1) removing = null; if (adding === -1) adding = null; Ember.propertyWillChange(this, '[]'); if (hasDelta) Ember.propertyWillChange(this, 'length'); Ember.sendEvent(this, '@enumerable:before', [this, removing, adding]); return this; }, /** Invoke this method when the contents of your enumerable has changed. This will notify any observers watching for content changes. If your are implementing an ordered enumerable (such as an array), also pass the start and end values where the content changed so that it can be used to notify range observers. @method enumerableContentDidChange @param {Number} [start] optional start offset for the content change. For unordered enumerables, you should always pass -1. @param {Ember.Enumerable|Number} removing An enumerable of the objects to be removed or the number of items to be removed. @param {Ember.Enumerable|Number} adding An enumerable of the objects to be added or the number of items to be added. @chainable */ enumerableContentDidChange: function(removing, adding) { var notify = this.propertyDidChange, removeCnt, addCnt, hasDelta; if ('number' === typeof removing) removeCnt = removing; else if (removing) removeCnt = get(removing, 'length'); else removeCnt = removing = -1; if ('number' === typeof adding) addCnt = adding; else if (adding) addCnt = get(adding, 'length'); else addCnt = adding = -1; hasDelta = addCnt<0 || removeCnt<0 || addCnt-removeCnt!==0; if (removing === -1) removing = null; if (adding === -1) adding = null; Ember.sendEvent(this, '@enumerable:change', [this, removing, adding]); if (hasDelta) Ember.propertyDidChange(this, 'length'); Ember.propertyDidChange(this, '[]'); return this ; } }) ; })(); (function() { /** @module ember @submodule ember-runtime */ // .......................................................... // HELPERS // var get = Ember.get, set = Ember.set, meta = Ember.meta, map = Ember.EnumerableUtils.map, cacheFor = Ember.cacheFor; function none(obj) { return obj===null || obj===undefined; } // .......................................................... // ARRAY // /** This module implements Observer-friendly Array-like behavior. This mixin is picked up by the Array class as well as other controllers, etc. that want to appear to be arrays. Unlike `Ember.Enumerable,` this mixin defines methods specifically for collections that provide index-ordered access to their contents. When you are designing code that needs to accept any kind of Array-like object, you should use these methods instead of Array primitives because these will properly notify observers of changes to the array. Although these methods are efficient, they do add a layer of indirection to your application so it is a good idea to use them only when you need the flexibility of using both true JavaScript arrays and "virtual" arrays such as controllers and collections. You can use the methods defined in this module to access and modify array contents in a KVO-friendly way. You can also be notified whenever the membership if an array changes by changing the syntax of the property to `.observes('*myProperty.[]')`. To support `Ember.Array` in your own class, you must override two primitives to use it: `replace()` and `objectAt()`. Note that the Ember.Array mixin also incorporates the `Ember.Enumerable` mixin. All `Ember.Array`-like objects are also enumerable. @class Array @namespace Ember @extends Ember.Mixin @uses Ember.Enumerable @since Ember 0.9.0 */ Ember.Array = Ember.Mixin.create(Ember.Enumerable, /** @scope Ember.Array.prototype */ { // compatibility isSCArray: true, /** Your array must support the `length` property. Your replace methods should set this property whenever it changes. @property {Number} length */ length: Ember.required(), /** Returns the object at the given `index`. If the given `index` is negative or is greater or equal than the array length, returns `undefined`. This is one of the primitives you must implement to support `Ember.Array`. If your object supports retrieving the value of an array item using `get()` (i.e. `myArray.get(0)`), then you do not need to implement this method yourself. ```javascript var arr = ['a', 'b', 'c', 'd']; arr.objectAt(0); // "a" arr.objectAt(3); // "d" arr.objectAt(-1); // undefined arr.objectAt(4); // undefined arr.objectAt(5); // undefined ``` @method objectAt @param {Number} idx The index of the item to return. */ objectAt: function(idx) { if ((idx < 0) || (idx>=get(this, 'length'))) return undefined ; return get(this, idx); }, /** This returns the objects at the specified indexes, using `objectAt`. ```javascript var arr = ['a', 'b', 'c', 'd']; arr.objectsAt([0, 1, 2]); // ["a", "b", "c"] arr.objectsAt([2, 3, 4]); // ["c", "d", undefined] ``` @method objectsAt @param {Array} indexes An array of indexes of items to return. */ objectsAt: function(indexes) { var self = this; return map(indexes, function(idx){ return self.objectAt(idx); }); }, // overrides Ember.Enumerable version nextObject: function(idx) { return this.objectAt(idx); }, /** This is the handler for the special array content property. If you get this property, it will return this. If you set this property it a new array, it will replace the current content. This property overrides the default property defined in `Ember.Enumerable`. @property [] */ '[]': Ember.computed(function(key, value) { if (value !== undefined) this.replace(0, get(this, 'length'), value) ; return this ; }), firstObject: Ember.computed(function() { return this.objectAt(0); }), lastObject: Ember.computed(function() { return this.objectAt(get(this, 'length')-1); }), // optimized version from Enumerable contains: function(obj){ return this.indexOf(obj) >= 0; }, // Add any extra methods to Ember.Array that are native to the built-in Array. /** Returns a new array that is a slice of the receiver. This implementation uses the observable array methods to retrieve the objects for the new slice. ```javascript var arr = ['red', 'green', 'blue']; arr.slice(0); // ['red', 'green', 'blue'] arr.slice(0, 2); // ['red', 'green'] arr.slice(1, 100); // ['green', 'blue'] ``` @method slice @param beginIndex {Integer} (Optional) index to begin slicing from. @param endIndex {Integer} (Optional) index to end the slice at. @return {Array} New array with specified slice */ slice: function(beginIndex, endIndex) { var ret = []; var length = get(this, 'length') ; if (none(beginIndex)) beginIndex = 0 ; if (none(endIndex) || (endIndex > length)) endIndex = length ; while(beginIndex < endIndex) { ret[ret.length] = this.objectAt(beginIndex++) ; } return ret ; }, /** Returns the index of the given object's first occurrence. If no `startAt` argument is given, the starting location to search is 0. If it's negative, will count backward from the end of the array. Returns -1 if no match is found. ```javascript var arr = ["a", "b", "c", "d", "a"]; arr.indexOf("a"); // 0 arr.indexOf("z"); // -1 arr.indexOf("a", 2); // 4 arr.indexOf("a", -1); // 4 arr.indexOf("b", 3); // -1 arr.indexOf("a", 100); // -1 ``` @method indexOf @param {Object} object the item to search for @param {Number} startAt optional starting location to search, default 0 @return {Number} index or -1 if not found */ indexOf: function(object, startAt) { var idx, len = get(this, 'length'); if (startAt === undefined) startAt = 0; if (startAt < 0) startAt += len; for(idx=startAt;idx<len;idx++) { if (this.objectAt(idx, true) === object) return idx ; } return -1; }, /** Returns the index of the given object's last occurrence. If no `startAt` argument is given, the search starts from the last position. If it's negative, will count backward from the end of the array. Returns -1 if no match is found. ```javascript var arr = ["a", "b", "c", "d", "a"]; arr.lastIndexOf("a"); // 4 arr.lastIndexOf("z"); // -1 arr.lastIndexOf("a", 2); // 0 arr.lastIndexOf("a", -1); // 4 arr.lastIndexOf("b", 3); // 1 arr.lastIndexOf("a", 100); // 4 ``` @method lastIndexOf @param {Object} object the item to search for @param {Number} startAt optional starting location to search, default 0 @return {Number} index or -1 if not found */ lastIndexOf: function(object, startAt) { var idx, len = get(this, 'length'); if (startAt === undefined || startAt >= len) startAt = len-1; if (startAt < 0) startAt += len; for(idx=startAt;idx>=0;idx--) { if (this.objectAt(idx) === object) return idx ; } return -1; }, // .......................................................... // ARRAY OBSERVERS // /** Adds an array observer to the receiving array. The array observer object normally must implement two methods: * `arrayWillChange(start, removeCount, addCount)` - This method will be called just before the array is modified. * `arrayDidChange(start, removeCount, addCount)` - This method will be called just after the array is modified. Both callbacks will be passed the starting index of the change as well a a count of the items to be removed and added. You can use these callbacks to optionally inspect the array during the change, clear caches, or do any other bookkeeping necessary. In addition to passing a target, you can also include an options hash which you can use to override the method names that will be invoked on the target. @method addArrayObserver @param {Object} target The observer object. @param {Hash} opts Optional hash of configuration options including `willChange`, `didChange`, and a `context` option. @return {Ember.Array} receiver */ addArrayObserver: function(target, opts) { var willChange = (opts && opts.willChange) || 'arrayWillChange', didChange = (opts && opts.didChange) || 'arrayDidChange'; var hasObservers = get(this, 'hasArrayObservers'); if (!hasObservers) Ember.propertyWillChange(this, 'hasArrayObservers'); Ember.addListener(this, '@array:before', target, willChange); Ember.addListener(this, '@array:change', target, didChange); if (!hasObservers) Ember.propertyDidChange(this, 'hasArrayObservers'); return this; }, /** Removes an array observer from the object if the observer is current registered. Calling this method multiple times with the same object will have no effect. @method removeArrayObserver @param {Object} target The object observing the array. @return {Ember.Array} receiver */ removeArrayObserver: function(target, opts) { var willChange = (opts && opts.willChange) || 'arrayWillChange', didChange = (opts && opts.didChange) || 'arrayDidChange'; var hasObservers = get(this, 'hasArrayObservers'); if (hasObservers) Ember.propertyWillChange(this, 'hasArrayObservers'); Ember.removeListener(this, '@array:before', target, willChange); Ember.removeListener(this, '@array:change', target, didChange); if (hasObservers) Ember.propertyDidChange(this, 'hasArrayObservers'); return this; }, /** Becomes true whenever the array currently has observers watching changes on the array. @property Boolean */ hasArrayObservers: Ember.computed(function() { return Ember.hasListeners(this, '@array:change') || Ember.hasListeners(this, '@array:before'); }), /** If you are implementing an object that supports `Ember.Array`, call this method just before the array content changes to notify any observers and invalidate any related properties. Pass the starting index of the change as well as a delta of the amounts to change. @method arrayContentWillChange @param {Number} startIdx The starting index in the array that will change. @param {Number} removeAmt The number of items that will be removed. If you pass `null` assumes 0 @param {Number} addAmt The number of items that will be added If you pass `null` assumes 0. @return {Ember.Array} receiver */ arrayContentWillChange: function(startIdx, removeAmt, addAmt) { // if no args are passed assume everything changes if (startIdx===undefined) { startIdx = 0; removeAmt = addAmt = -1; } else { if (removeAmt === undefined) removeAmt=-1; if (addAmt === undefined) addAmt=-1; } // Make sure the @each proxy is set up if anyone is observing @each if (Ember.isWatching(this, '@each')) { get(this, '@each'); } Ember.sendEvent(this, '@array:before', [this, startIdx, removeAmt, addAmt]); var removing, lim; if (startIdx>=0 && removeAmt>=0 && get(this, 'hasEnumerableObservers')) { removing = []; lim = startIdx+removeAmt; for(var idx=startIdx;idx<lim;idx++) removing.push(this.objectAt(idx)); } else { removing = removeAmt; } this.enumerableContentWillChange(removing, addAmt); return this; }, arrayContentDidChange: function(startIdx, removeAmt, addAmt) { // if no args are passed assume everything changes if (startIdx===undefined) { startIdx = 0; removeAmt = addAmt = -1; } else { if (removeAmt === undefined) removeAmt=-1; if (addAmt === undefined) addAmt=-1; } var adding, lim; if (startIdx>=0 && addAmt>=0 && get(this, 'hasEnumerableObservers')) { adding = []; lim = startIdx+addAmt; for(var idx=startIdx;idx<lim;idx++) adding.push(this.objectAt(idx)); } else { adding = addAmt; } this.enumerableContentDidChange(removeAmt, adding); Ember.sendEvent(this, '@array:change', [this, startIdx, removeAmt, addAmt]); var length = get(this, 'length'), cachedFirst = cacheFor(this, 'firstObject'), cachedLast = cacheFor(this, 'lastObject'); if (this.objectAt(0) !== cachedFirst) { Ember.propertyWillChange(this, 'firstObject'); Ember.propertyDidChange(this, 'firstObject'); } if (this.objectAt(length-1) !== cachedLast) { Ember.propertyWillChange(this, 'lastObject'); Ember.propertyDidChange(this, 'lastObject'); } return this; }, // .......................................................... // ENUMERATED PROPERTIES // /** Returns a special object that can be used to observe individual properties on the array. Just get an equivalent property on this object and it will return an enumerable that maps automatically to the named key on the member objects. @property @each */ '@each': Ember.computed(function() { if (!this.__each) this.__each = new Ember.EachProxy(this); return this.__each; }) }) ; })(); (function() { /** @module ember @submodule ember-runtime */ /** Implements some standard methods for comparing objects. Add this mixin to any class you create that can compare its instances. You should implement the `compare()` method. @class Comparable @namespace Ember @extends Ember.Mixin @since Ember 0.9 */ Ember.Comparable = Ember.Mixin.create( /** @scope Ember.Comparable.prototype */{ /** walk like a duck. Indicates that the object can be compared. @property isComparable @type Boolean @default true */ isComparable: true, /** Override to return the result of the comparison of the two parameters. The compare method should return: - `-1` if `a < b` - `0` if `a == b` - `1` if `a > b` Default implementation raises an exception. @method compare @param a {Object} the first object to compare @param b {Object} the second object to compare @return {Integer} the result of the comparison */ compare: Ember.required(Function) }); })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, set = Ember.set; /** Implements some standard methods for copying an object. Add this mixin to any object you create that can create a copy of itself. This mixin is added automatically to the built-in array. You should generally implement the `copy()` method to return a copy of the receiver. Note that `frozenCopy()` will only work if you also implement `Ember.Freezable`. @class Copyable @namespace Ember @extends Ember.Mixin @since Ember 0.9 */ Ember.Copyable = Ember.Mixin.create( /** @scope Ember.Copyable.prototype */ { /** Override to return a copy of the receiver. Default implementation raises an exception. @method copy @param deep {Boolean} if `true`, a deep copy of the object should be made @return {Object} copy of receiver */ copy: Ember.required(Function), /** If the object implements `Ember.Freezable`, then this will return a new copy if the object is not frozen and the receiver if the object is frozen. Raises an exception if you try to call this method on a object that does not support freezing. You should use this method whenever you want a copy of a freezable object since a freezable object can simply return itself without actually consuming more memory. @method frozenCopy @return {Object} copy of receiver or receiver */ frozenCopy: function() { if (Ember.Freezable && Ember.Freezable.detect(this)) { return get(this, 'isFrozen') ? this : this.copy().freeze(); } else { throw new Error(Ember.String.fmt("%@ does not support freezing", [this])); } } }); })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, set = Ember.set; /** The `Ember.Freezable` mixin implements some basic methods for marking an object as frozen. Once an object is frozen it should be read only. No changes may be made the internal state of the object. ## Enforcement To fully support freezing in your subclass, you must include this mixin and override any method that might alter any property on the object to instead raise an exception. You can check the state of an object by checking the `isFrozen` property. Although future versions of JavaScript may support language-level freezing object objects, that is not the case today. Even if an object is freezable, it is still technically possible to modify the object, even though it could break other parts of your application that do not expect a frozen object to change. It is, therefore, very important that you always respect the `isFrozen` property on all freezable objects. ## Example Usage The example below shows a simple object that implement the `Ember.Freezable` protocol. ```javascript Contact = Ember.Object.extend(Ember.Freezable, { firstName: null, lastName: null, // swaps the names swapNames: function() { if (this.get('isFrozen')) throw Ember.FROZEN_ERROR; var tmp = this.get('firstName'); this.set('firstName', this.get('lastName')); this.set('lastName', tmp); return this; } }); c = Context.create({ firstName: "John", lastName: "Doe" }); c.swapNames(); // returns c c.freeze(); c.swapNames(); // EXCEPTION ``` ## Copying Usually the `Ember.Freezable` protocol is implemented in cooperation with the `Ember.Copyable` protocol, which defines a `frozenCopy()` method that will return a frozen object, if the object implements this method as well. @class Freezable @namespace Ember @extends Ember.Mixin @since Ember 0.9 */ Ember.Freezable = Ember.Mixin.create( /** @scope Ember.Freezable.prototype */ { /** Set to `true` when the object is frozen. Use this property to detect whether your object is frozen or not. @property isFrozen @type Boolean */ isFrozen: false, /** Freezes the object. Once this method has been called the object should no longer allow any properties to be edited. @method freeze @return {Object} receiver */ freeze: function() { if (get(this, 'isFrozen')) return this; set(this, 'isFrozen', true); return this; } }); Ember.FROZEN_ERROR = "Frozen object cannot be modified."; })(); (function() { /** @module ember @submodule ember-runtime */ var forEach = Ember.EnumerableUtils.forEach; /** This mixin defines the API for modifying generic enumerables. These methods can be applied to an object regardless of whether it is ordered or unordered. Note that an Enumerable can change even if it does not implement this mixin. For example, a MappedEnumerable cannot be directly modified but if its underlying enumerable changes, it will change also. ## Adding Objects To add an object to an enumerable, use the `addObject()` method. This method will only add the object to the enumerable if the object is not already present and the object if of a type supported by the enumerable. ```javascript set.addObject(contact); ``` ## Removing Objects To remove an object form an enumerable, use the `removeObject()` method. This will only remove the object if it is already in the enumerable, otherwise this method has no effect. ```javascript set.removeObject(contact); ``` ## Implementing In Your Own Code If you are implementing an object and want to support this API, just include this mixin in your class and implement the required methods. In your unit tests, be sure to apply the Ember.MutableEnumerableTests to your object. @class MutableEnumerable @namespace Ember @extends Ember.Mixin @uses Ember.Enumerable */ Ember.MutableEnumerable = Ember.Mixin.create(Ember.Enumerable, /** @scope Ember.MutableEnumerable.prototype */ { /** __Required.__ You must implement this method to apply this mixin. Attempts to add the passed object to the receiver if the object is not already present in the collection. If the object is present, this method has no effect. If the passed object is of a type not supported by the receiver then this method should raise an exception. @method addObject @param {Object} object The object to add to the enumerable. @return {Object} the passed object */ addObject: Ember.required(Function), /** Adds each object in the passed enumerable to the receiver. @method addObjects @param {Ember.Enumerable} objects the objects to add. @return {Object} receiver */ addObjects: function(objects) { Ember.beginPropertyChanges(this); forEach(objects, function(obj) { this.addObject(obj); }, this); Ember.endPropertyChanges(this); return this; }, /** __Required.__ You must implement this method to apply this mixin. Attempts to remove the passed object from the receiver collection if the object is in present in the collection. If the object is not present, this method has no effect. If the passed object is of a type not supported by the receiver then this method should raise an exception. @method removeObject @param {Object} object The object to remove from the enumerable. @return {Object} the passed object */ removeObject: Ember.required(Function), /** Removes each objects in the passed enumerable from the receiver. @method removeObjects @param {Ember.Enumerable} objects the objects to remove @return {Object} receiver */ removeObjects: function(objects) { Ember.beginPropertyChanges(this); forEach(objects, function(obj) { this.removeObject(obj); }, this); Ember.endPropertyChanges(this); return this; } }); })(); (function() { /** @module ember @submodule ember-runtime */ // .......................................................... // CONSTANTS // var OUT_OF_RANGE_EXCEPTION = "Index out of range" ; var EMPTY = []; // .......................................................... // HELPERS // var get = Ember.get, set = Ember.set, forEach = Ember.EnumerableUtils.forEach; /** This mixin defines the API for modifying array-like objects. These methods can be applied only to a collection that keeps its items in an ordered set. Note that an Array can change even if it does not implement this mixin. For example, one might implement a SparseArray that cannot be directly modified, but if its underlying enumerable changes, it will change also. @class MutableArray @namespace Ember @extends Ember.Mixin @uses Ember.Array @uses Ember.MutableEnumerable */ Ember.MutableArray = Ember.Mixin.create(Ember.Array, Ember.MutableEnumerable, /** @scope Ember.MutableArray.prototype */ { /** __Required.__ You must implement this method to apply this mixin. This is one of the primitives you must implement to support `Ember.Array`. You should replace amt objects started at idx with the objects in the passed array. You should also call `this.enumerableContentDidChange()` @method replace @param {Number} idx Starting index in the array to replace. If idx >= length, then append to the end of the array. @param {Number} amt Number of elements that should be removed from the array, starting at *idx*. @param {Array} objects An array of zero or more objects that should be inserted into the array at *idx* */ replace: Ember.required(), /** Remove all elements from self. This is useful if you want to reuse an existing array without having to recreate it. ```javascript var colors = ["red", "green", "blue"]; color.length(); // 3 colors.clear(); // [] colors.length(); // 0 ``` @method clear @return {Ember.Array} An empty Array. */ clear: function () { var len = get(this, 'length'); if (len === 0) return this; this.replace(0, len, EMPTY); return this; }, /** This will use the primitive `replace()` method to insert an object at the specified index. ```javascript var colors = ["red", "green", "blue"]; colors.insertAt(2, "yellow"); // ["red", "green", "yellow", "blue"] colors.insertAt(5, "orange"); // Error: Index out of range ``` @method insertAt @param {Number} idx index of insert the object at. @param {Object} object object to insert */ insertAt: function(idx, object) { if (idx > get(this, 'length')) throw new Error(OUT_OF_RANGE_EXCEPTION) ; this.replace(idx, 0, [object]) ; return this ; }, /** Remove an object at the specified index using the `replace()` primitive method. You can pass either a single index, or a start and a length. If you pass a start and length that is beyond the length this method will throw an `Ember.OUT_OF_RANGE_EXCEPTION` ```javascript var colors = ["red", "green", "blue", "yellow", "orange"]; colors.removeAt(0); // ["green", "blue", "yellow", "orange"] colors.removeAt(2, 2); // ["green", "blue"] colors.removeAt(4, 2); // Error: Index out of range ``` @method removeAt @param {Number} start index, start of range @param {Number} len length of passing range @return {Object} receiver */ removeAt: function(start, len) { if ('number' === typeof start) { if ((start < 0) || (start >= get(this, 'length'))) { throw new Error(OUT_OF_RANGE_EXCEPTION); } // fast case if (len === undefined) len = 1; this.replace(start, len, EMPTY); } return this ; }, /** Push the object onto the end of the array. Works just like `push()` but it is KVO-compliant. ```javascript var colors = ["red", "green", "blue"]; colors.pushObject("black"); // ["red", "green", "blue", "black"] colors.pushObject(["yellow", "orange"]); // ["red", "green", "blue", "black", ["yellow", "orange"]] ``` @method pushObject @param {anything} obj object to push */ pushObject: function(obj) { this.insertAt(get(this, 'length'), obj) ; return obj ; }, /** Add the objects in the passed numerable to the end of the array. Defers notifying observers of the change until all objects are added. ```javascript var colors = ["red", "green", "blue"]; colors.pushObjects("black"); // ["red", "green", "blue", "black"] colors.pushObjects(["yellow", "orange"]); // ["red", "green", "blue", "black", "yellow", "orange"] ``` @method pushObjects @param {Ember.Enumerable} objects the objects to add @return {Ember.Array} receiver */ pushObjects: function(objects) { this.replace(get(this, 'length'), 0, objects); return this; }, /** Pop object from array or nil if none are left. Works just like `pop()` but it is KVO-compliant. ```javascript var colors = ["red", "green", "blue"]; colors.popObject(); // "blue" console.log(colors); // ["red", "green"] ``` @method popObject @return object */ popObject: function() { var len = get(this, 'length') ; if (len === 0) return null ; var ret = this.objectAt(len-1) ; this.removeAt(len-1, 1) ; return ret ; }, /** Shift an object from start of array or nil if none are left. Works just like `shift()` but it is KVO-compliant. ```javascript var colors = ["red", "green", "blue"]; colors.shiftObject(); // "red" console.log(colors); // ["green", "blue"] ``` @method shiftObject @return object */ shiftObject: function() { if (get(this, 'length') === 0) return null ; var ret = this.objectAt(0) ; this.removeAt(0) ; return ret ; }, /** Unshift an object to start of array. Works just like `unshift()` but it is KVO-compliant. ```javascript var colors = ["red", "green", "blue"]; colors.unshiftObject("yellow"); // ["yellow", "red", "green", "blue"] colors.unshiftObject(["black", "white"]); // [["black", "white"], "yellow", "red", "green", "blue"] ``` @method unshiftObject @param {anything} obj object to unshift */ unshiftObject: function(obj) { this.insertAt(0, obj) ; return obj ; }, /** Adds the named objects to the beginning of the array. Defers notifying observers until all objects have been added. ```javascript var colors = ["red", "green", "blue"]; colors.unshiftObjects(["black", "white"]); // ["black", "white", "red", "green", "blue"] colors.unshiftObjects("yellow"); // Type Error: 'undefined' is not a function ``` @method unshiftObjects @param {Ember.Enumerable} objects the objects to add @return {Ember.Array} receiver */ unshiftObjects: function(objects) { this.replace(0, 0, objects); return this; }, /** Reverse objects in the array. Works just like `reverse()` but it is KVO-compliant. @method reverseObjects @return {Ember.Array} receiver */ reverseObjects: function() { var len = get(this, 'length'); if (len === 0) return this; var objects = this.toArray().reverse(); this.replace(0, len, objects); return this; }, /** Replace all the the receiver's content with content of the argument. If argument is an empty array receiver will be cleared. ```javascript var colors = ["red", "green", "blue"]; colors.setObjects(["black", "white"]); // ["black", "white"] colors.setObjects([]); // [] ``` @method setObjects @param {Ember.Array} objects array whose content will be used for replacing the content of the receiver @return {Ember.Array} receiver with the new content */ setObjects: function(objects) { if (objects.length === 0) return this.clear(); var len = get(this, 'length'); this.replace(0, len, objects); return this; }, // .......................................................... // IMPLEMENT Ember.MutableEnumerable // removeObject: function(obj) { var loc = get(this, 'length') || 0; while(--loc >= 0) { var curObject = this.objectAt(loc) ; if (curObject === obj) this.removeAt(loc) ; } return this ; }, addObject: function(obj) { if (!this.contains(obj)) this.pushObject(obj); return this ; } }); })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, set = Ember.set, defineProperty = Ember.defineProperty; /** ## Overview This mixin provides properties and property observing functionality, core features of the Ember object model. Properties and observers allow one object to observe changes to a property on another object. This is one of the fundamental ways that models, controllers and views communicate with each other in an Ember application. Any object that has this mixin applied can be used in observer operations. That includes `Ember.Object` and most objects you will interact with as you write your Ember application. Note that you will not generally apply this mixin to classes yourself, but you will use the features provided by this module frequently, so it is important to understand how to use it. ## Using `get()` and `set()` Because of Ember's support for bindings and observers, you will always access properties using the get method, and set properties using the set method. This allows the observing objects to be notified and computed properties to be handled properly. More documentation about `get` and `set` are below. ## Observing Property Changes You typically observe property changes simply by adding the `observes` call to the end of your method declarations in classes that you write. For example: ```javascript Ember.Object.create({ valueObserver: function() { // Executes whenever the "value" property changes }.observes('value') }); ``` Although this is the most common way to add an observer, this capability is actually built into the `Ember.Object` class on top of two methods defined in this mixin: `addObserver` and `removeObserver`. You can use these two methods to add and remove observers yourself if you need to do so at runtime. To add an observer for a property, call: ```javascript object.addObserver('propertyKey', targetObject, targetAction) ``` This will call the `targetAction` method on the `targetObject` to be called whenever the value of the `propertyKey` changes. Note that if `propertyKey` is a computed property, the observer will be called when any of the property dependencies are changed, even if the resulting value of the computed property is unchanged. This is necessary because computed properties are not computed until `get` is called. @class Observable @namespace Ember @extends Ember.Mixin */ Ember.Observable = Ember.Mixin.create(/** @scope Ember.Observable.prototype */ { /** Retrieves the value of a property from the object. This method is usually similar to using `object[keyName]` or `object.keyName`, however it supports both computed properties and the unknownProperty handler. Because `get` unifies the syntax for accessing all these kinds of properties, it can make many refactorings easier, such as replacing a simple property with a computed property, or vice versa. ### Computed Properties Computed properties are methods defined with the `property` modifier declared at the end, such as: ```javascript fullName: function() { return this.getEach('firstName', 'lastName').compact().join(' '); }.property('firstName', 'lastName') ``` When you call `get` on a computed property, the function will be called and the return value will be returned instead of the function itself. ### Unknown Properties Likewise, if you try to call `get` on a property whose value is `undefined`, the `unknownProperty()` method will be called on the object. If this method returns any value other than `undefined`, it will be returned instead. This allows you to implement "virtual" properties that are not defined upfront. @method get @param {String} key The property to retrieve @return {Object} The property value or undefined. */ get: function(keyName) { return get(this, keyName); }, /** To get multiple properties at once, call `getProperties` with a list of strings or an array: ```javascript record.getProperties('firstName', 'lastName', 'zipCode'); // { firstName: 'John', lastName: 'Doe', zipCode: '10011' } ``` is equivalent to: ```javascript record.getProperties(['firstName', 'lastName', 'zipCode']); // { firstName: 'John', lastName: 'Doe', zipCode: '10011' } ``` @method getProperties @param {String...|Array} list of keys to get @return {Hash} */ getProperties: function() { var ret = {}; var propertyNames = arguments; if (arguments.length === 1 && Ember.typeOf(arguments[0]) === 'array') { propertyNames = arguments[0]; } for(var i = 0; i < propertyNames.length; i++) { ret[propertyNames[i]] = get(this, propertyNames[i]); } return ret; }, /** Sets the provided key or path to the value. This method is generally very similar to calling `object[key] = value` or `object.key = value`, except that it provides support for computed properties, the `unknownProperty()` method and property observers. ### Computed Properties If you try to set a value on a key that has a computed property handler defined (see the `get()` method for an example), then `set()` will call that method, passing both the value and key instead of simply changing the value itself. This is useful for those times when you need to implement a property that is composed of one or more member properties. ### Unknown Properties If you try to set a value on a key that is undefined in the target object, then the `unknownProperty()` handler will be called instead. This gives you an opportunity to implement complex "virtual" properties that are not predefined on the object. If `unknownProperty()` returns undefined, then `set()` will simply set the value on the object. ### Property Observers In addition to changing the property, `set()` will also register a property change with the object. Unless you have placed this call inside of a `beginPropertyChanges()` and `endPropertyChanges(),` any "local" observers (i.e. observer methods declared on the same object), will be called immediately. Any "remote" observers (i.e. observer methods declared on another object) will be placed in a queue and called at a later time in a coalesced manner. ### Chaining In addition to property changes, `set()` returns the value of the object itself so you can do chaining like this: ```javascript record.set('firstName', 'Charles').set('lastName', 'Jolley'); ``` @method set @param {String} key The property to set @param {Object} value The value to set or `null`. @return {Ember.Observable} */ set: function(keyName, value) { set(this, keyName, value); return this; }, /** To set multiple properties at once, call `setProperties` with a Hash: ```javascript record.setProperties({ firstName: 'Charles', lastName: 'Jolley' }); ``` @method setProperties @param {Hash} hash the hash of keys and values to set @return {Ember.Observable} */ setProperties: function(hash) { return Ember.setProperties(this, hash); }, /** Begins a grouping of property changes. You can use this method to group property changes so that notifications will not be sent until the changes are finished. If you plan to make a large number of changes to an object at one time, you should call this method at the beginning of the changes to begin deferring change notifications. When you are done making changes, call `endPropertyChanges()` to deliver the deferred change notifications and end deferring. @method beginPropertyChanges @return {Ember.Observable} */ beginPropertyChanges: function() { Ember.beginPropertyChanges(); return this; }, /** Ends a grouping of property changes. You can use this method to group property changes so that notifications will not be sent until the changes are finished. If you plan to make a large number of changes to an object at one time, you should call `beginPropertyChanges()` at the beginning of the changes to defer change notifications. When you are done making changes, call this method to deliver the deferred change notifications and end deferring. @method endPropertyChanges @return {Ember.Observable} */ endPropertyChanges: function() { Ember.endPropertyChanges(); return this; }, /** Notify the observer system that a property is about to change. Sometimes you need to change a value directly or indirectly without actually calling `get()` or `set()` on it. In this case, you can use this method and `propertyDidChange()` instead. Calling these two methods together will notify all observers that the property has potentially changed value. Note that you must always call `propertyWillChange` and `propertyDidChange` as a pair. If you do not, it may get the property change groups out of order and cause notifications to be delivered more often than you would like. @method propertyWillChange @param {String} key The property key that is about to change. @return {Ember.Observable} */ propertyWillChange: function(keyName){ Ember.propertyWillChange(this, keyName); return this; }, /** Notify the observer system that a property has just changed. Sometimes you need to change a value directly or indirectly without actually calling `get()` or `set()` on it. In this case, you can use this method and `propertyWillChange()` instead. Calling these two methods together will notify all observers that the property has potentially changed value. Note that you must always call `propertyWillChange` and `propertyDidChange` as a pair. If you do not, it may get the property change groups out of order and cause notifications to be delivered more often than you would like. @method propertyDidChange @param {String} keyName The property key that has just changed. @return {Ember.Observable} */ propertyDidChange: function(keyName) { Ember.propertyDidChange(this, keyName); return this; }, /** Convenience method to call `propertyWillChange` and `propertyDidChange` in succession. @method notifyPropertyChange @param {String} keyName The property key to be notified about. @return {Ember.Observable} */ notifyPropertyChange: function(keyName) { this.propertyWillChange(keyName); this.propertyDidChange(keyName); return this; }, addBeforeObserver: function(key, target, method) { Ember.addBeforeObserver(this, key, target, method); }, /** Adds an observer on a property. This is the core method used to register an observer for a property. Once you call this method, anytime the key's value is set, your observer will be notified. Note that the observers are triggered anytime the value is set, regardless of whether it has actually changed. Your observer should be prepared to handle that. You can also pass an optional context parameter to this method. The context will be passed to your observer method whenever it is triggered. Note that if you add the same target/method pair on a key multiple times with different context parameters, your observer will only be called once with the last context you passed. ### Observer Methods Observer methods you pass should generally have the following signature if you do not pass a `context` parameter: ```javascript fooDidChange: function(sender, key, value, rev) { }; ``` The sender is the object that changed. The key is the property that changes. The value property is currently reserved and unused. The rev is the last property revision of the object when it changed, which you can use to detect if the key value has really changed or not. If you pass a `context` parameter, the context will be passed before the revision like so: ```javascript fooDidChange: function(sender, key, value, context, rev) { }; ``` Usually you will not need the value, context or revision parameters at the end. In this case, it is common to write observer methods that take only a sender and key value as parameters or, if you aren't interested in any of these values, to write an observer that has no parameters at all. @method addObserver @param {String} key The key to observer @param {Object} target The target object to invoke @param {String|Function} method The method to invoke. @return {Ember.Object} self */ addObserver: function(key, target, method) { Ember.addObserver(this, key, target, method); }, /** Remove an observer you have previously registered on this object. Pass the same key, target, and method you passed to `addObserver()` and your target will no longer receive notifications. @method removeObserver @param {String} key The key to observer @param {Object} target The target object to invoke @param {String|Function} method The method to invoke. @return {Ember.Observable} receiver */ removeObserver: function(key, target, method) { Ember.removeObserver(this, key, target, method); }, /** Returns `true` if the object currently has observers registered for a particular key. You can use this method to potentially defer performing an expensive action until someone begins observing a particular property on the object. @method hasObserverFor @param {String} key Key to check @return {Boolean} */ hasObserverFor: function(key) { return Ember.hasListeners(this, key+':change'); }, /** @deprecated @method getPath @param {String} path The property path to retrieve @return {Object} The property value or undefined. */ getPath: function(path) { return this.get(path); }, /** @deprecated @method setPath @param {String} path The path to the property that will be set @param {Object} value The value to set or `null`. @return {Ember.Observable} */ setPath: function(path, value) { return this.set(path, value); }, /** Retrieves the value of a property, or a default value in the case that the property returns `undefined`. ```javascript person.getWithDefault('lastName', 'Doe'); ``` @method getWithDefault @param {String} keyName The name of the property to retrieve @param {Object} defaultValue The value to return if the property value is undefined @return {Object} The property value or the defaultValue. */ getWithDefault: function(keyName, defaultValue) { return Ember.getWithDefault(this, keyName, defaultValue); }, /** Set the value of a property to the current value plus some amount. ```javascript person.incrementProperty('age'); team.incrementProperty('score', 2); ``` @method incrementProperty @param {String} keyName The name of the property to increment @param {Object} increment The amount to increment by. Defaults to 1 @return {Object} The new property value */ incrementProperty: function(keyName, increment) { if (!increment) { increment = 1; } set(this, keyName, (get(this, keyName) || 0)+increment); return get(this, keyName); }, /** Set the value of a property to the current value minus some amount. ```javascript player.decrementProperty('lives'); orc.decrementProperty('health', 5); ``` @method decrementProperty @param {String} keyName The name of the property to decrement @param {Object} increment The amount to decrement by. Defaults to 1 @return {Object} The new property value */ decrementProperty: function(keyName, increment) { if (!increment) { increment = 1; } set(this, keyName, (get(this, keyName) || 0)-increment); return get(this, keyName); }, /** Set the value of a boolean property to the opposite of it's current value. ```javascript starship.toggleProperty('warpDriveEnaged'); ``` @method toggleProperty @param {String} keyName The name of the property to toggle @return {Object} The new property value */ toggleProperty: function(keyName) { set(this, keyName, !get(this, keyName)); return get(this, keyName); }, /** Returns the cached value of a computed property, if it exists. This allows you to inspect the value of a computed property without accidentally invoking it if it is intended to be generated lazily. @method cacheFor @param {String} keyName @return {Object} The cached value of the computed property, if any */ cacheFor: function(keyName) { return Ember.cacheFor(this, keyName); }, // intended for debugging purposes observersForKey: function(keyName) { return Ember.observersFor(this, keyName); } }); })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, set = Ember.set; /** @class TargetActionSupport @namespace Ember @extends Ember.Mixin */ Ember.TargetActionSupport = Ember.Mixin.create({ target: null, action: null, targetObject: Ember.computed(function() { var target = get(this, 'target'); if (Ember.typeOf(target) === "string") { var value = get(this, target); if (value === undefined) { value = get(Ember.lookup, target); } return value; } else { return target; } }).property('target'), triggerAction: function() { var action = get(this, 'action'), target = get(this, 'targetObject'); if (target && action) { var ret; if (typeof target.send === 'function') { ret = target.send(action, this); } else { if (typeof action === 'string') { action = target[action]; } ret = action.call(target, this); } if (ret !== false) ret = true; return ret; } else { return false; } } }); })(); (function() { /** @module ember @submodule ember-runtime */ /** This mixin allows for Ember objects to subscribe to and emit events. ```javascript App.Person = Ember.Object.extend(Ember.Evented, { greet: function() { // ... this.trigger('greet'); } }); var person = App.Person.create(); person.on('greet', function() { console.log('Our person has greeted'); }); person.greet(); // outputs: 'Our person has greeted' ``` @class Evented @namespace Ember @extends Ember.Mixin */ Ember.Evented = Ember.Mixin.create({ /** Subscribes to a named event with given function. ```javascript person.on('didLoad', function() { // fired once the person has loaded }); ``` An optional target can be passed in as the 2nd argument that will be set as the "this" for the callback. This is a good way to give your function access to the object triggering the event. When the target parameter is used the callback becomes the third argument. @method on @param {String} name The name of the event @param {Object} [target] The "this" binding for the callback @param {Function} method The callback to execute */ on: function(name, target, method) { Ember.addListener(this, name, target, method); }, /** Subscribes a function to a named event and then cancels the subscription after the first time the event is triggered. It is good to use ``one`` when you only care about the first time an event has taken place. This function takes an optional 2nd argument that will become the "this" value for the callback. If this argument is passed then the 3rd argument becomes the function. @method one @param {String} name The name of the event @param {Object} [target] The "this" binding for the callback @param {Function} method The callback to execute */ one: function(name, target, method) { if (!method) { method = target; target = null; } Ember.addListener(this, name, target, method, true); }, /** Triggers a named event for the object. Any additional arguments will be passed as parameters to the functions that are subscribed to the event. ```javascript person.on('didEat', food) { console.log('person ate some ' + food); }); person.trigger('didEat', 'broccoli'); // outputs: person ate some broccoli ``` @method trigger @param {String} name The name of the event @param {Object...} args Optional arguments to pass on */ trigger: function(name) { var args = [], i, l; for (i = 1, l = arguments.length; i < l; i++) { args.push(arguments[i]); } Ember.sendEvent(this, name, args); }, fire: function(name) { this.trigger.apply(this, arguments); }, /** Cancels subscription for give name, target, and method. @method off @param {String} name The name of the event @param {Object} target The target of the subscription @param {Function} method The function of the subscription */ off: function(name, target, method) { Ember.removeListener(this, name, target, method); }, /** Checks to see if object has any subscriptions for named event. @method has @param {String} name The name of the event @return {Boolean} does the object have a subscription for event */ has: function(name) { return Ember.hasListeners(this, name); } }); })(); (function() { var RSVP = requireModule("rsvp"); RSVP.async = function(callback, binding) { Ember.run.schedule('actions', binding, callback); }; /** @module ember @submodule ember-runtime */ var get = Ember.get, slice = Array.prototype.slice; /** @class Deferred @namespace Ember @extends Ember.Mixin */ Ember.DeferredMixin = Ember.Mixin.create({ /** Add handlers to be called when the Deferred object is resolved or rejected. @method then @param {Function} doneCallback a callback function to be called when done @param {Function} failCallback a callback function to be called when failed */ then: function(doneCallback, failCallback) { var promise = get(this, 'promise'); return promise.then.apply(promise, arguments); }, /** Resolve a Deferred object and call any `doneCallbacks` with the given args. @method resolve */ resolve: function(value) { get(this, 'promise').resolve(value); }, /** Reject a Deferred object and call any `failCallbacks` with the given args. @method reject */ reject: function(value) { get(this, 'promise').reject(value); }, promise: Ember.computed(function() { return new RSVP.Promise(); }) }); })(); (function() { })(); (function() { Ember.Container = requireModule('container'); Ember.Container.set = Ember.set; })(); (function() { /** @module ember @submodule ember-runtime */ // NOTE: this object should never be included directly. Instead use Ember. // Ember.Object. We only define this separately so that Ember.Set can depend on it var set = Ember.set, get = Ember.get, o_create = Ember.create, o_defineProperty = Ember.platform.defineProperty, a_slice = Array.prototype.slice, GUID_KEY = Ember.GUID_KEY, guidFor = Ember.guidFor, generateGuid = Ember.generateGuid, meta = Ember.meta, rewatch = Ember.rewatch, finishChains = Ember.finishChains, destroy = Ember.destroy, schedule = Ember.run.schedule, Mixin = Ember.Mixin, applyMixin = Mixin._apply, finishPartial = Mixin.finishPartial, reopen = Mixin.prototype.reopen, MANDATORY_SETTER = Ember.ENV.MANDATORY_SETTER, indexOf = Ember.EnumerableUtils.indexOf; var undefinedDescriptor = { configurable: true, writable: true, enumerable: false, value: undefined }; function makeCtor() { // Note: avoid accessing any properties on the object since it makes the // method a lot faster. This is glue code so we want it to be as fast as // possible. var wasApplied = false, initMixins, initProperties; var Class = function() { if (!wasApplied) { Class.proto(); // prepare prototype... } o_defineProperty(this, GUID_KEY, undefinedDescriptor); o_defineProperty(this, '_super', undefinedDescriptor); var m = meta(this); m.proto = this; if (initMixins) { // capture locally so we can clear the closed over variable var mixins = initMixins; initMixins = null; this.reopen.apply(this, mixins); } if (initProperties) { // capture locally so we can clear the closed over variable var props = initProperties; initProperties = null; var concatenatedProperties = this.concatenatedProperties; for (var i = 0, l = props.length; i < l; i++) { var properties = props[i]; for (var keyName in properties) { if (!properties.hasOwnProperty(keyName)) { continue; } var value = properties[keyName], IS_BINDING = Ember.IS_BINDING; if (IS_BINDING.test(keyName)) { var bindings = m.bindings; if (!bindings) { bindings = m.bindings = {}; } else if (!m.hasOwnProperty('bindings')) { bindings = m.bindings = o_create(m.bindings); } bindings[keyName] = value; } var desc = m.descs[keyName]; if (concatenatedProperties && indexOf(concatenatedProperties, keyName) >= 0) { var baseValue = this[keyName]; if (baseValue) { if ('function' === typeof baseValue.concat) { value = baseValue.concat(value); } else { value = Ember.makeArray(baseValue).concat(value); } } else { value = Ember.makeArray(value); } } if (desc) { desc.set(this, keyName, value); } else { if (typeof this.setUnknownProperty === 'function' && !(keyName in this)) { this.setUnknownProperty(keyName, value); } else if (MANDATORY_SETTER) { Ember.defineProperty(this, keyName, null, value); // setup mandatory setter } else { this[keyName] = value; } } } } } finishPartial(this, m); delete m.proto; finishChains(this); this.init.apply(this, arguments); }; Class.toString = Mixin.prototype.toString; Class.willReopen = function() { if (wasApplied) { Class.PrototypeMixin = Mixin.create(Class.PrototypeMixin); } wasApplied = false; }; Class._initMixins = function(args) { initMixins = args; }; Class._initProperties = function(args) { initProperties = args; }; Class.proto = function() { var superclass = Class.superclass; if (superclass) { superclass.proto(); } if (!wasApplied) { wasApplied = true; Class.PrototypeMixin.applyPartial(Class.prototype); rewatch(Class.prototype); } return this.prototype; }; return Class; } var CoreObject = makeCtor(); CoreObject.toString = function() { return "Ember.CoreObject"; }; CoreObject.PrototypeMixin = Mixin.create({ reopen: function() { applyMixin(this, arguments, true); return this; }, isInstance: true, init: function() {}, /** Defines the properties that will be concatenated from the superclass (instead of overridden). By default, when you extend an Ember class a property defined in the subclass overrides a property with the same name that is defined in the superclass. However, there are some cases where it is preferable to build up a property's value by combining the superclass' property value with the subclass' value. An example of this in use within Ember is the `classNames` property of `Ember.View`. Here is some sample code showing the difference between a concatenated property and a normal one: ```javascript App.BarView = Ember.View.extend({ someNonConcatenatedProperty: ['bar'], classNames: ['bar'] }); App.FooBarView = App.BarView.extend({ someNonConcatenatedProperty: ['foo'], classNames: ['foo'], }); var fooBarView = App.FooBarView.create(); fooBarView.get('someNonConcatenatedProperty'); // ['foo'] fooBarView.get('classNames'); // ['ember-view', 'bar', 'foo'] ``` This behavior extends to object creation as well. Continuing the above example: ```javascript var view = App.FooBarView.create({ someNonConcatenatedProperty: ['baz'], classNames: ['baz'] }) view.get('someNonConcatenatedProperty'); // ['baz'] view.get('classNames'); // ['ember-view', 'bar', 'foo', 'baz'] ``` Adding a single property that is not an array will just add it in the array: ```javascript var view = App.FooBarView.create({ classNames: 'baz' }) view.get('classNames'); // ['ember-view', 'bar', 'foo', 'baz'] ``` Using the `concatenatedProperties` property, we can tell to Ember that mix the content of the properties. In `Ember.View` the `classNameBindings` and `attributeBindings` properties are also concatenated, in addition to `classNames`. This feature is available for you to use throughout the Ember object model, although typical app developers are likely to use it infrequently. @property concatenatedProperties @type Array @default null */ concatenatedProperties: null, /** @property isDestroyed @default false */ isDestroyed: false, /** @property isDestroying @default false */ isDestroying: false, /** Destroys an object by setting the `isDestroyed` flag and removing its metadata, which effectively destroys observers and bindings. If you try to set a property on a destroyed object, an exception will be raised. Note that destruction is scheduled for the end of the run loop and does not happen immediately. @method destroy @return {Ember.Object} receiver */ destroy: function() { if (this._didCallDestroy) { return; } this.isDestroying = true; this._didCallDestroy = true; if (this.willDestroy) { this.willDestroy(); } schedule('destroy', this, this._scheduledDestroy); return this; }, /** @private Invoked by the run loop to actually destroy the object. This is scheduled for execution by the `destroy` method. @method _scheduledDestroy */ _scheduledDestroy: function() { destroy(this); set(this, 'isDestroyed', true); if (this.didDestroy) { this.didDestroy(); } }, bind: function(to, from) { if (!(from instanceof Ember.Binding)) { from = Ember.Binding.from(from); } from.to(to).connect(this); return from; }, /** Returns a string representation which attempts to provide more information than Javascript's `toString` typically does, in a generic way for all Ember objects. App.Person = Em.Object.extend() person = App.Person.create() person.toString() //=> "<App.Person:ember1024>" If the object's class is not defined on an Ember namespace, it will indicate it is a subclass of the registered superclass: Student = App.Person.extend() student = Student.create() student.toString() //=> "<(subclass of App.Person):ember1025>" If the method `toStringExtension` is defined, its return value will be included in the output. App.Teacher = App.Person.extend({ toStringExtension: function(){ return this.get('fullName'); } }); teacher = App.Teacher.create() teacher.toString(); // #=> "<App.Teacher:ember1026:Tom Dale>" @method toString @return {String} string representation */ toString: function toString() { var hasToStringExtension = typeof this.toStringExtension === 'function', extension = hasToStringExtension ? ":" + this.toStringExtension() : ''; var ret = '<'+this.constructor.toString()+':'+guidFor(this)+extension+'>'; this.toString = makeToString(ret); return ret; } }); CoreObject.PrototypeMixin.ownerConstructor = CoreObject; function makeToString(ret) { return function() { return ret; }; } if (Ember.config.overridePrototypeMixin) { Ember.config.overridePrototypeMixin(CoreObject.PrototypeMixin); } CoreObject.__super__ = null; var ClassMixin = Mixin.create({ ClassMixin: Ember.required(), PrototypeMixin: Ember.required(), isClass: true, isMethod: false, extend: function() { var Class = makeCtor(), proto; Class.ClassMixin = Mixin.create(this.ClassMixin); Class.PrototypeMixin = Mixin.create(this.PrototypeMixin); Class.ClassMixin.ownerConstructor = Class; Class.PrototypeMixin.ownerConstructor = Class; reopen.apply(Class.PrototypeMixin, arguments); Class.superclass = this; Class.__super__ = this.prototype; proto = Class.prototype = o_create(this.prototype); proto.constructor = Class; generateGuid(proto, 'ember'); meta(proto).proto = proto; // this will disable observers on prototype Class.ClassMixin.apply(Class); return Class; }, createWithMixins: function() { var C = this; if (arguments.length>0) { this._initMixins(arguments); } return new C(); }, create: function() { var C = this; if (arguments.length>0) { this._initProperties(arguments); } return new C(); }, reopen: function() { this.willReopen(); reopen.apply(this.PrototypeMixin, arguments); return this; }, reopenClass: function() { reopen.apply(this.ClassMixin, arguments); applyMixin(this, arguments, false); return this; }, detect: function(obj) { if ('function' !== typeof obj) { return false; } while(obj) { if (obj===this) { return true; } obj = obj.superclass; } return false; }, detectInstance: function(obj) { return obj instanceof this; }, /** In some cases, you may want to annotate computed properties with additional metadata about how they function or what values they operate on. For example, computed property functions may close over variables that are then no longer available for introspection. You can pass a hash of these values to a computed property like this: ```javascript person: function() { var personId = this.get('personId'); return App.Person.create({ id: personId }); }.property().meta({ type: App.Person }) ``` Once you've done this, you can retrieve the values saved to the computed property from your class like this: ```javascript MyClass.metaForProperty('person'); ``` This will return the original hash that was passed to `meta()`. @method metaForProperty @param key {String} property name */ metaForProperty: function(key) { var desc = meta(this.proto(), false).descs[key]; return desc._meta || {}; }, /** Iterate over each computed property for the class, passing its name and any associated metadata (see `metaForProperty`) to the callback. @method eachComputedProperty @param {Function} callback @param {Object} binding */ eachComputedProperty: function(callback, binding) { var proto = this.proto(), descs = meta(proto).descs, empty = {}, property; for (var name in descs) { property = descs[name]; if (property instanceof Ember.ComputedProperty) { callback.call(binding || this, name, property._meta || empty); } } } }); ClassMixin.ownerConstructor = CoreObject; if (Ember.config.overrideClassMixin) { Ember.config.overrideClassMixin(ClassMixin); } CoreObject.ClassMixin = ClassMixin; ClassMixin.apply(CoreObject); /** @class CoreObject @namespace Ember */ Ember.CoreObject = CoreObject; })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, set = Ember.set, guidFor = Ember.guidFor, none = Ember.isNone; /** An unordered collection of objects. A Set works a bit like an array except that its items are not ordered. You can create a set to efficiently test for membership for an object. You can also iterate through a set just like an array, even accessing objects by index, however there is no guarantee as to their order. All Sets are observable via the Enumerable Observer API - which works on any enumerable object including both Sets and Arrays. ## Creating a Set You can create a set like you would most objects using `new Ember.Set()`. Most new sets you create will be empty, but you can also initialize the set with some content by passing an array or other enumerable of objects to the constructor. Finally, you can pass in an existing set and the set will be copied. You can also create a copy of a set by calling `Ember.Set#copy()`. ```javascript // creates a new empty set var foundNames = new Ember.Set(); // creates a set with four names in it. var names = new Ember.Set(["Charles", "Tom", "Juan", "Alex"]); // :P // creates a copy of the names set. var namesCopy = new Ember.Set(names); // same as above. var anotherNamesCopy = names.copy(); ``` ## Adding/Removing Objects You generally add or remove objects from a set using `add()` or `remove()`. You can add any type of object including primitives such as numbers, strings, and booleans. Unlike arrays, objects can only exist one time in a set. If you call `add()` on a set with the same object multiple times, the object will only be added once. Likewise, calling `remove()` with the same object multiple times will remove the object the first time and have no effect on future calls until you add the object to the set again. NOTE: You cannot add/remove `null` or `undefined` to a set. Any attempt to do so will be ignored. In addition to add/remove you can also call `push()`/`pop()`. Push behaves just like `add()` but `pop()`, unlike `remove()` will pick an arbitrary object, remove it and return it. This is a good way to use a set as a job queue when you don't care which order the jobs are executed in. ## Testing for an Object To test for an object's presence in a set you simply call `Ember.Set#contains()`. ## Observing changes When using `Ember.Set`, you can observe the `"[]"` property to be alerted whenever the content changes. You can also add an enumerable observer to the set to be notified of specific objects that are added and removed from the set. See `Ember.Enumerable` for more information on enumerables. This is often unhelpful. If you are filtering sets of objects, for instance, it is very inefficient to re-filter all of the items each time the set changes. It would be better if you could just adjust the filtered set based on what was changed on the original set. The same issue applies to merging sets, as well. ## Other Methods `Ember.Set` primary implements other mixin APIs. For a complete reference on the methods you will use with `Ember.Set`, please consult these mixins. The most useful ones will be `Ember.Enumerable` and `Ember.MutableEnumerable` which implement most of the common iterator methods you are used to on Array. Note that you can also use the `Ember.Copyable` and `Ember.Freezable` APIs on `Ember.Set` as well. Once a set is frozen it can no longer be modified. The benefit of this is that when you call `frozenCopy()` on it, Ember will avoid making copies of the set. This allows you to write code that can know with certainty when the underlying set data will or will not be modified. @class Set @namespace Ember @extends Ember.CoreObject @uses Ember.MutableEnumerable @uses Ember.Copyable @uses Ember.Freezable @since Ember 0.9 */ Ember.Set = Ember.CoreObject.extend(Ember.MutableEnumerable, Ember.Copyable, Ember.Freezable, /** @scope Ember.Set.prototype */ { // .......................................................... // IMPLEMENT ENUMERABLE APIS // /** This property will change as the number of objects in the set changes. @property length @type number @default 0 */ length: 0, /** Clears the set. This is useful if you want to reuse an existing set without having to recreate it. ```javascript var colors = new Ember.Set(["red", "green", "blue"]); colors.length; // 3 colors.clear(); colors.length; // 0 ``` @method clear @return {Ember.Set} An empty Set */ clear: function() { if (this.isFrozen) { throw new Error(Ember.FROZEN_ERROR); } var len = get(this, 'length'); if (len === 0) { return this; } var guid; this.enumerableContentWillChange(len, 0); Ember.propertyWillChange(this, 'firstObject'); Ember.propertyWillChange(this, 'lastObject'); for (var i=0; i < len; i++){ guid = guidFor(this[i]); delete this[guid]; delete this[i]; } set(this, 'length', 0); Ember.propertyDidChange(this, 'firstObject'); Ember.propertyDidChange(this, 'lastObject'); this.enumerableContentDidChange(len, 0); return this; }, /** Returns true if the passed object is also an enumerable that contains the same objects as the receiver. ```javascript var colors = ["red", "green", "blue"], same_colors = new Ember.Set(colors); same_colors.isEqual(colors); // true same_colors.isEqual(["purple", "brown"]); // false ``` @method isEqual @param {Ember.Set} obj the other object. @return {Boolean} */ isEqual: function(obj) { // fail fast if (!Ember.Enumerable.detect(obj)) return false; var loc = get(this, 'length'); if (get(obj, 'length') !== loc) return false; while(--loc >= 0) { if (!obj.contains(this[loc])) return false; } return true; }, /** Adds an object to the set. Only non-`null` objects can be added to a set and those can only be added once. If the object is already in the set or the passed value is null this method will have no effect. This is an alias for `Ember.MutableEnumerable.addObject()`. ```javascript var colors = new Ember.Set(); colors.add("blue"); // ["blue"] colors.add("blue"); // ["blue"] colors.add("red"); // ["blue", "red"] colors.add(null); // ["blue", "red"] colors.add(undefined); // ["blue", "red"] ``` @method add @param {Object} obj The object to add. @return {Ember.Set} The set itself. */ add: Ember.aliasMethod('addObject'), /** Removes the object from the set if it is found. If you pass a `null` value or an object that is already not in the set, this method will have no effect. This is an alias for `Ember.MutableEnumerable.removeObject()`. ```javascript var colors = new Ember.Set(["red", "green", "blue"]); colors.remove("red"); // ["blue", "green"] colors.remove("purple"); // ["blue", "green"] colors.remove(null); // ["blue", "green"] ``` @method remove @param {Object} obj The object to remove @return {Ember.Set} The set itself. */ remove: Ember.aliasMethod('removeObject'), /** Removes the last element from the set and returns it, or `null` if it's empty. ```javascript var colors = new Ember.Set(["green", "blue"]); colors.pop(); // "blue" colors.pop(); // "green" colors.pop(); // null ``` @method pop @return {Object} The removed object from the set or null. */ pop: function() { if (get(this, 'isFrozen')) throw new Error(Ember.FROZEN_ERROR); var obj = this.length > 0 ? this[this.length-1] : null; this.remove(obj); return obj; }, /** Inserts the given object on to the end of the set. It returns the set itself. This is an alias for `Ember.MutableEnumerable.addObject()`. ```javascript var colors = new Ember.Set(); colors.push("red"); // ["red"] colors.push("green"); // ["red", "green"] colors.push("blue"); // ["red", "green", "blue"] ``` @method push @return {Ember.Set} The set itself. */ push: Ember.aliasMethod('addObject'), /** Removes the last element from the set and returns it, or `null` if it's empty. This is an alias for `Ember.Set.pop()`. ```javascript var colors = new Ember.Set(["green", "blue"]); colors.shift(); // "blue" colors.shift(); // "green" colors.shift(); // null ``` @method shift @return {Object} The removed object from the set or null. */ shift: Ember.aliasMethod('pop'), /** Inserts the given object on to the end of the set. It returns the set itself. This is an alias of `Ember.Set.push()` ```javascript var colors = new Ember.Set(); colors.unshift("red"); // ["red"] colors.unshift("green"); // ["red", "green"] colors.unshift("blue"); // ["red", "green", "blue"] ``` @method unshift @return {Ember.Set} The set itself. */ unshift: Ember.aliasMethod('push'), /** Adds each object in the passed enumerable to the set. This is an alias of `Ember.MutableEnumerable.addObjects()` ```javascript var colors = new Ember.Set(); colors.addEach(["red", "green", "blue"]); // ["red", "green", "blue"] ``` @method addEach @param {Ember.Enumerable} objects the objects to add. @return {Ember.Set} The set itself. */ addEach: Ember.aliasMethod('addObjects'), /** Removes each object in the passed enumerable to the set. This is an alias of `Ember.MutableEnumerable.removeObjects()` ```javascript var colors = new Ember.Set(["red", "green", "blue"]); colors.removeEach(["red", "blue"]); // ["green"] ``` @method removeEach @param {Ember.Enumerable} objects the objects to remove. @return {Ember.Set} The set itself. */ removeEach: Ember.aliasMethod('removeObjects'), // .......................................................... // PRIVATE ENUMERABLE SUPPORT // init: function(items) { this._super(); if (items) this.addObjects(items); }, // implement Ember.Enumerable nextObject: function(idx) { return this[idx]; }, // more optimized version firstObject: Ember.computed(function() { return this.length > 0 ? this[0] : undefined; }), // more optimized version lastObject: Ember.computed(function() { return this.length > 0 ? this[this.length-1] : undefined; }), // implements Ember.MutableEnumerable addObject: function(obj) { if (get(this, 'isFrozen')) throw new Error(Ember.FROZEN_ERROR); if (none(obj)) return this; // nothing to do var guid = guidFor(obj), idx = this[guid], len = get(this, 'length'), added ; if (idx>=0 && idx<len && (this[idx] === obj)) return this; // added added = [obj]; this.enumerableContentWillChange(null, added); Ember.propertyWillChange(this, 'lastObject'); len = get(this, 'length'); this[guid] = len; this[len] = obj; set(this, 'length', len+1); Ember.propertyDidChange(this, 'lastObject'); this.enumerableContentDidChange(null, added); return this; }, // implements Ember.MutableEnumerable removeObject: function(obj) { if (get(this, 'isFrozen')) throw new Error(Ember.FROZEN_ERROR); if (none(obj)) return this; // nothing to do var guid = guidFor(obj), idx = this[guid], len = get(this, 'length'), isFirst = idx === 0, isLast = idx === len-1, last, removed; if (idx>=0 && idx<len && (this[idx] === obj)) { removed = [obj]; this.enumerableContentWillChange(removed, null); if (isFirst) { Ember.propertyWillChange(this, 'firstObject'); } if (isLast) { Ember.propertyWillChange(this, 'lastObject'); } // swap items - basically move the item to the end so it can be removed if (idx < len-1) { last = this[len-1]; this[idx] = last; this[guidFor(last)] = idx; } delete this[guid]; delete this[len-1]; set(this, 'length', len-1); if (isFirst) { Ember.propertyDidChange(this, 'firstObject'); } if (isLast) { Ember.propertyDidChange(this, 'lastObject'); } this.enumerableContentDidChange(removed, null); } return this; }, // optimized version contains: function(obj) { return this[guidFor(obj)]>=0; }, copy: function() { var C = this.constructor, ret = new C(), loc = get(this, 'length'); set(ret, 'length', loc); while(--loc>=0) { ret[loc] = this[loc]; ret[guidFor(this[loc])] = loc; } return ret; }, toString: function() { var len = this.length, idx, array = []; for(idx = 0; idx < len; idx++) { array[idx] = this[idx]; } return "Ember.Set<%@>".fmt(array.join(',')); } }); })(); (function() { /** @module ember @submodule ember-runtime */ /** `Ember.Object` is the main base class for all Ember objects. It is a subclass of `Ember.CoreObject` with the `Ember.Observable` mixin applied. For details, see the documentation for each of these. @class Object @namespace Ember @extends Ember.CoreObject @uses Ember.Observable */ Ember.Object = Ember.CoreObject.extend(Ember.Observable); Ember.Object.toString = function() { return "Ember.Object"; }; })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, indexOf = Ember.ArrayPolyfills.indexOf; /** A Namespace is an object usually used to contain other objects or methods such as an application or framework. Create a namespace anytime you want to define one of these new containers. # Example Usage ```javascript MyFramework = Ember.Namespace.create({ VERSION: '1.0.0' }); ``` @class Namespace @namespace Ember @extends Ember.Object */ var Namespace = Ember.Namespace = Ember.Object.extend({ isNamespace: true, init: function() { Ember.Namespace.NAMESPACES.push(this); Ember.Namespace.PROCESSED = false; }, toString: function() { var name = get(this, 'name'); if (name) { return name; } findNamespaces(); return this[Ember.GUID_KEY+'_name']; }, nameClasses: function() { processNamespace([this.toString()], this, {}); }, destroy: function() { var namespaces = Ember.Namespace.NAMESPACES; Ember.lookup[this.toString()] = undefined; namespaces.splice(indexOf.call(namespaces, this), 1); this._super(); } }); Namespace.reopenClass({ NAMESPACES: [Ember], PROCESSED: false, processAll: processAllNamespaces }); var hasOwnProp = ({}).hasOwnProperty, guidFor = Ember.guidFor; function processNamespace(paths, root, seen) { var idx = paths.length; // Loop over all of the keys in the namespace, looking for classes for(var key in root) { if (!hasOwnProp.call(root, key)) { continue; } var obj = root[key]; // If we are processing the `Ember` namespace, for example, the // `paths` will start with `["Ember"]`. Every iteration through // the loop will update the **second** element of this list with // the key, so processing `Ember.View` will make the Array // `['Ember', 'View']`. paths[idx] = key; // If we have found an unprocessed class if (obj && obj.toString === classToString) { // Replace the class' `toString` with the dot-separated path // and set its `NAME_KEY` obj.toString = makeToString(paths.join('.')); obj[NAME_KEY] = paths.join('.'); // Support nested namespaces } else if (obj && obj.isNamespace) { // Skip aliased namespaces if (seen[guidFor(obj)]) { continue; } seen[guidFor(obj)] = true; // Process the child namespace processNamespace(paths, obj, seen); } } paths.length = idx; // cut out last item } function findNamespaces() { var Namespace = Ember.Namespace, lookup = Ember.lookup, obj, isNamespace; if (Namespace.PROCESSED) { return; } for (var prop in lookup) { // These don't raise exceptions but can cause warnings if (prop === "parent" || prop === "top" || prop === "frameElement") { continue; } // get(window.globalStorage, 'isNamespace') would try to read the storage for domain isNamespace and cause exception in Firefox. // globalStorage is a storage obsoleted by the WhatWG storage specification. See https://developer.mozilla.org/en/DOM/Storage#globalStorage if (prop === "globalStorage" && lookup.StorageList && lookup.globalStorage instanceof lookup.StorageList) { continue; } // Unfortunately, some versions of IE don't support window.hasOwnProperty if (lookup.hasOwnProperty && !lookup.hasOwnProperty(prop)) { continue; } // At times we are not allowed to access certain properties for security reasons. // There are also times where even if we can access them, we are not allowed to access their properties. try { obj = Ember.lookup[prop]; isNamespace = obj && obj.isNamespace; } catch (e) { continue; } if (isNamespace) { obj[NAME_KEY] = prop; } } } var NAME_KEY = Ember.NAME_KEY = Ember.GUID_KEY + '_name'; function superClassString(mixin) { var superclass = mixin.superclass; if (superclass) { if (superclass[NAME_KEY]) { return superclass[NAME_KEY]; } else { return superClassString(superclass); } } else { return; } } function classToString() { if (!Ember.BOOTED && !this[NAME_KEY]) { processAllNamespaces(); } var ret; if (this[NAME_KEY]) { ret = this[NAME_KEY]; } else { var str = superClassString(this); if (str) { ret = "(subclass of " + str + ")"; } else { ret = "(unknown mixin)"; } this.toString = makeToString(ret); } return ret; } function processAllNamespaces() { if (!Namespace.PROCESSED) { findNamespaces(); Namespace.PROCESSED = true; } if (Ember.anyUnprocessedMixins) { var namespaces = Namespace.NAMESPACES, namespace; for (var i=0, l=namespaces.length; i<l; i++) { namespace = namespaces[i]; processNamespace([namespace.toString()], namespace, {}); } Ember.anyUnprocessedMixins = false; } } function makeToString(ret) { return function() { return ret; }; } Ember.Mixin.prototype.toString = classToString; })(); (function() { /** @module ember @submodule ember-runtime */ /** Defines a namespace that will contain an executable application. This is very similar to a normal namespace except that it is expected to include at least a 'ready' function which can be run to initialize the application. Currently `Ember.Application` is very similar to `Ember.Namespace.` However, this class may be augmented by additional frameworks so it is important to use this instance when building new applications. # Example Usage ```javascript MyApp = Ember.Application.create({ VERSION: '1.0.0', store: Ember.Store.create().from(Ember.fixtures) }); MyApp.ready = function() { //..init code goes here... } ``` @class Application @namespace Ember @extends Ember.Namespace */ Ember.Application = Ember.Namespace.extend(); })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, set = Ember.set; /** An ArrayProxy wraps any other object that implements `Ember.Array` and/or `Ember.MutableArray,` forwarding all requests. This makes it very useful for a number of binding use cases or other cases where being able to swap out the underlying array is useful. A simple example of usage: ```javascript var pets = ['dog', 'cat', 'fish']; var ap = Ember.ArrayProxy.create({ content: Ember.A(pets) }); ap.get('firstObject'); // 'dog' ap.set('content', ['amoeba', 'paramecium']); ap.get('firstObject'); // 'amoeba' ``` This class can also be useful as a layer to transform the contents of an array, as they are accessed. This can be done by overriding `objectAtContent`: ```javascript var pets = ['dog', 'cat', 'fish']; var ap = Ember.ArrayProxy.create({ content: Ember.A(pets), objectAtContent: function(idx) { return this.get('content').objectAt(idx).toUpperCase(); } }); ap.get('firstObject'); // . 'DOG' ``` @class ArrayProxy @namespace Ember @extends Ember.Object @uses Ember.MutableArray */ Ember.ArrayProxy = Ember.Object.extend(Ember.MutableArray, /** @scope Ember.ArrayProxy.prototype */ { /** The content array. Must be an object that implements `Ember.Array` and/or `Ember.MutableArray.` @property content @type Ember.Array */ content: null, /** The array that the proxy pretends to be. In the default `ArrayProxy` implementation, this and `content` are the same. Subclasses of `ArrayProxy` can override this property to provide things like sorting and filtering. @property arrangedContent */ arrangedContent: Ember.computed.alias('content'), /** Should actually retrieve the object at the specified index from the content. You can override this method in subclasses to transform the content item to something new. This method will only be called if content is non-`null`. @method objectAtContent @param {Number} idx The index to retrieve. @return {Object} the value or undefined if none found */ objectAtContent: function(idx) { return get(this, 'arrangedContent').objectAt(idx); }, /** Should actually replace the specified objects on the content array. You can override this method in subclasses to transform the content item into something new. This method will only be called if content is non-`null`. @method replaceContent @param {Number} idx The starting index @param {Number} amt The number of items to remove from the content. @param {Array} objects Optional array of objects to insert or null if no objects. @return {void} */ replaceContent: function(idx, amt, objects) { get(this, 'content').replace(idx, amt, objects); }, /** @private Invoked when the content property is about to change. Notifies observers that the entire array content will change. @method _contentWillChange */ _contentWillChange: Ember.beforeObserver(function() { this._teardownContent(); }, 'content'), _teardownContent: function() { var content = get(this, 'content'); if (content) { content.removeArrayObserver(this, { willChange: 'contentArrayWillChange', didChange: 'contentArrayDidChange' }); } }, contentArrayWillChange: Ember.K, contentArrayDidChange: Ember.K, /** @private Invoked when the content property changes. Notifies observers that the entire array content has changed. @method _contentDidChange */ _contentDidChange: Ember.observer(function() { var content = get(this, 'content'); this._setupContent(); }, 'content'), _setupContent: function() { var content = get(this, 'content'); if (content) { content.addArrayObserver(this, { willChange: 'contentArrayWillChange', didChange: 'contentArrayDidChange' }); } }, _arrangedContentWillChange: Ember.beforeObserver(function() { var arrangedContent = get(this, 'arrangedContent'), len = arrangedContent ? get(arrangedContent, 'length') : 0; this.arrangedContentArrayWillChange(this, 0, len, undefined); this.arrangedContentWillChange(this); this._teardownArrangedContent(arrangedContent); }, 'arrangedContent'), _arrangedContentDidChange: Ember.observer(function() { var arrangedContent = get(this, 'arrangedContent'), len = arrangedContent ? get(arrangedContent, 'length') : 0; this._setupArrangedContent(); this.arrangedContentDidChange(this); this.arrangedContentArrayDidChange(this, 0, undefined, len); }, 'arrangedContent'), _setupArrangedContent: function() { var arrangedContent = get(this, 'arrangedContent'); if (arrangedContent) { arrangedContent.addArrayObserver(this, { willChange: 'arrangedContentArrayWillChange', didChange: 'arrangedContentArrayDidChange' }); } }, _teardownArrangedContent: function() { var arrangedContent = get(this, 'arrangedContent'); if (arrangedContent) { arrangedContent.removeArrayObserver(this, { willChange: 'arrangedContentArrayWillChange', didChange: 'arrangedContentArrayDidChange' }); } }, arrangedContentWillChange: Ember.K, arrangedContentDidChange: Ember.K, objectAt: function(idx) { return get(this, 'content') && this.objectAtContent(idx); }, length: Ember.computed(function() { var arrangedContent = get(this, 'arrangedContent'); return arrangedContent ? get(arrangedContent, 'length') : 0; // No dependencies since Enumerable notifies length of change }), replace: function(idx, amt, objects) { if (get(this, 'content')) this.replaceContent(idx, amt, objects); return this; }, arrangedContentArrayWillChange: function(item, idx, removedCnt, addedCnt) { this.arrayContentWillChange(idx, removedCnt, addedCnt); }, arrangedContentArrayDidChange: function(item, idx, removedCnt, addedCnt) { this.arrayContentDidChange(idx, removedCnt, addedCnt); }, init: function() { this._super(); this._setupContent(); this._setupArrangedContent(); }, willDestroy: function() { this._teardownArrangedContent(); this._teardownContent(); } }); })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, set = Ember.set, fmt = Ember.String.fmt, addBeforeObserver = Ember.addBeforeObserver, addObserver = Ember.addObserver, removeBeforeObserver = Ember.removeBeforeObserver, removeObserver = Ember.removeObserver, propertyWillChange = Ember.propertyWillChange, propertyDidChange = Ember.propertyDidChange; function contentPropertyWillChange(content, contentKey) { var key = contentKey.slice(8); // remove "content." if (key in this) { return; } // if shadowed in proxy propertyWillChange(this, key); } function contentPropertyDidChange(content, contentKey) { var key = contentKey.slice(8); // remove "content." if (key in this) { return; } // if shadowed in proxy propertyDidChange(this, key); } /** `Ember.ObjectProxy` forwards all properties not defined by the proxy itself to a proxied `content` object. ```javascript object = Ember.Object.create({ name: 'Foo' }); proxy = Ember.ObjectProxy.create({ content: object }); // Access and change existing properties proxy.get('name') // 'Foo' proxy.set('name', 'Bar'); object.get('name') // 'Bar' // Create new 'description' property on `object` proxy.set('description', 'Foo is a whizboo baz'); object.get('description') // 'Foo is a whizboo baz' ``` While `content` is unset, setting a property to be delegated will throw an Error. ```javascript proxy = Ember.ObjectProxy.create({ content: null, flag: null }); proxy.set('flag', true); proxy.get('flag'); // true proxy.get('foo'); // undefined proxy.set('foo', 'data'); // throws Error ``` Delegated properties can be bound to and will change when content is updated. Computed properties on the proxy itself can depend on delegated properties. ```javascript ProxyWithComputedProperty = Ember.ObjectProxy.extend({ fullName: function () { var firstName = this.get('firstName'), lastName = this.get('lastName'); if (firstName && lastName) { return firstName + ' ' + lastName; } return firstName || lastName; }.property('firstName', 'lastName') }); proxy = ProxyWithComputedProperty.create(); proxy.get('fullName'); // undefined proxy.set('content', { firstName: 'Tom', lastName: 'Dale' }); // triggers property change for fullName on proxy proxy.get('fullName'); // 'Tom Dale' ``` @class ObjectProxy @namespace Ember @extends Ember.Object */ Ember.ObjectProxy = Ember.Object.extend( /** @scope Ember.ObjectProxy.prototype */ { /** The object whose properties will be forwarded. @property content @type Ember.Object @default null */ content: null, _contentDidChange: Ember.observer(function() { }, 'content'), isTruthy: Ember.computed.bool('content'), willWatchProperty: function (key) { var contentKey = 'content.' + key; addBeforeObserver(this, contentKey, null, contentPropertyWillChange); addObserver(this, contentKey, null, contentPropertyDidChange); }, didUnwatchProperty: function (key) { var contentKey = 'content.' + key; removeBeforeObserver(this, contentKey, null, contentPropertyWillChange); removeObserver(this, contentKey, null, contentPropertyDidChange); }, unknownProperty: function (key) { var content = get(this, 'content'); if (content) { return get(content, key); } }, setUnknownProperty: function (key, value) { var content = get(this, 'content'); return set(content, key, value); } }); })(); (function() { /** @module ember @submodule ember-runtime */ var set = Ember.set, get = Ember.get, guidFor = Ember.guidFor; var forEach = Ember.EnumerableUtils.forEach; var EachArray = Ember.Object.extend(Ember.Array, { init: function(content, keyName, owner) { this._super(); this._keyName = keyName; this._owner = owner; this._content = content; }, objectAt: function(idx) { var item = this._content.objectAt(idx); return item && get(item, this._keyName); }, length: Ember.computed(function() { var content = this._content; return content ? get(content, 'length') : 0; }) }); var IS_OBSERVER = /^.+:(before|change)$/; function addObserverForContentKey(content, keyName, proxy, idx, loc) { var objects = proxy._objects, guid; if (!objects) objects = proxy._objects = {}; while(--loc>=idx) { var item = content.objectAt(loc); if (item) { Ember.addBeforeObserver(item, keyName, proxy, 'contentKeyWillChange'); Ember.addObserver(item, keyName, proxy, 'contentKeyDidChange'); // keep track of the indicies each item was found at so we can map // it back when the obj changes. guid = guidFor(item); if (!objects[guid]) objects[guid] = []; objects[guid].push(loc); } } } function removeObserverForContentKey(content, keyName, proxy, idx, loc) { var objects = proxy._objects; if (!objects) objects = proxy._objects = {}; var indicies, guid; while(--loc>=idx) { var item = content.objectAt(loc); if (item) { Ember.removeBeforeObserver(item, keyName, proxy, 'contentKeyWillChange'); Ember.removeObserver(item, keyName, proxy, 'contentKeyDidChange'); guid = guidFor(item); indicies = objects[guid]; indicies[indicies.indexOf(loc)] = null; } } } /** This is the object instance returned when you get the `@each` property on an array. It uses the unknownProperty handler to automatically create EachArray instances for property names. @private @class EachProxy @namespace Ember @extends Ember.Object */ Ember.EachProxy = Ember.Object.extend({ init: function(content) { this._super(); this._content = content; content.addArrayObserver(this); // in case someone is already observing some keys make sure they are // added forEach(Ember.watchedEvents(this), function(eventName) { this.didAddListener(eventName); }, this); }, /** You can directly access mapped properties by simply requesting them. The `unknownProperty` handler will generate an EachArray of each item. @method unknownProperty @param keyName {String} @param value {anything} */ unknownProperty: function(keyName, value) { var ret; ret = new EachArray(this._content, keyName, this); Ember.defineProperty(this, keyName, null, ret); this.beginObservingContentKey(keyName); return ret; }, // .......................................................... // ARRAY CHANGES // Invokes whenever the content array itself changes. arrayWillChange: function(content, idx, removedCnt, addedCnt) { var keys = this._keys, key, array, lim; lim = removedCnt>0 ? idx+removedCnt : -1; Ember.beginPropertyChanges(this); for(key in keys) { if (!keys.hasOwnProperty(key)) { continue; } if (lim>0) removeObserverForContentKey(content, key, this, idx, lim); Ember.propertyWillChange(this, key); } Ember.propertyWillChange(this._content, '@each'); Ember.endPropertyChanges(this); }, arrayDidChange: function(content, idx, removedCnt, addedCnt) { var keys = this._keys, key, array, lim; lim = addedCnt>0 ? idx+addedCnt : -1; Ember.beginPropertyChanges(this); for(key in keys) { if (!keys.hasOwnProperty(key)) { continue; } if (lim>0) addObserverForContentKey(content, key, this, idx, lim); Ember.propertyDidChange(this, key); } Ember.propertyDidChange(this._content, '@each'); Ember.endPropertyChanges(this); }, // .......................................................... // LISTEN FOR NEW OBSERVERS AND OTHER EVENT LISTENERS // Start monitoring keys based on who is listening... didAddListener: function(eventName) { if (IS_OBSERVER.test(eventName)) { this.beginObservingContentKey(eventName.slice(0, -7)); } }, didRemoveListener: function(eventName) { if (IS_OBSERVER.test(eventName)) { this.stopObservingContentKey(eventName.slice(0, -7)); } }, // .......................................................... // CONTENT KEY OBSERVING // Actual watch keys on the source content. beginObservingContentKey: function(keyName) { var keys = this._keys; if (!keys) keys = this._keys = {}; if (!keys[keyName]) { keys[keyName] = 1; var content = this._content, len = get(content, 'length'); addObserverForContentKey(content, keyName, this, 0, len); } else { keys[keyName]++; } }, stopObservingContentKey: function(keyName) { var keys = this._keys; if (keys && (keys[keyName]>0) && (--keys[keyName]<=0)) { var content = this._content, len = get(content, 'length'); removeObserverForContentKey(content, keyName, this, 0, len); } }, contentKeyWillChange: function(obj, keyName) { Ember.propertyWillChange(this, keyName); }, contentKeyDidChange: function(obj, keyName) { Ember.propertyDidChange(this, keyName); } }); })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, set = Ember.set; // Add Ember.Array to Array.prototype. Remove methods with native // implementations and supply some more optimized versions of generic methods // because they are so common. var NativeArray = Ember.Mixin.create(Ember.MutableArray, Ember.Observable, Ember.Copyable, { // because length is a built-in property we need to know to just get the // original property. get: function(key) { if (key==='length') return this.length; else if ('number' === typeof key) return this[key]; else return this._super(key); }, objectAt: function(idx) { return this[idx]; }, // primitive for array support. replace: function(idx, amt, objects) { if (this.isFrozen) throw Ember.FROZEN_ERROR ; // if we replaced exactly the same number of items, then pass only the // replaced range. Otherwise, pass the full remaining array length // since everything has shifted var len = objects ? get(objects, 'length') : 0; this.arrayContentWillChange(idx, amt, len); if (!objects || objects.length === 0) { this.splice(idx, amt) ; } else { var args = [idx, amt].concat(objects) ; this.splice.apply(this,args) ; } this.arrayContentDidChange(idx, amt, len); return this ; }, // If you ask for an unknown property, then try to collect the value // from member items. unknownProperty: function(key, value) { var ret;// = this.reducedProperty(key, value) ; if ((value !== undefined) && ret === undefined) { ret = this[key] = value; } return ret ; }, // If browser did not implement indexOf natively, then override with // specialized version indexOf: function(object, startAt) { var idx, len = this.length; if (startAt === undefined) startAt = 0; else startAt = (startAt < 0) ? Math.ceil(startAt) : Math.floor(startAt); if (startAt < 0) startAt += len; for(idx=startAt;idx<len;idx++) { if (this[idx] === object) return idx ; } return -1; }, lastIndexOf: function(object, startAt) { var idx, len = this.length; if (startAt === undefined) startAt = len-1; else startAt = (startAt < 0) ? Math.ceil(startAt) : Math.floor(startAt); if (startAt < 0) startAt += len; for(idx=startAt;idx>=0;idx--) { if (this[idx] === object) return idx ; } return -1; }, copy: function(deep) { if (deep) { return this.map(function(item){ return Ember.copy(item, true); }); } return this.slice(); } }); // Remove any methods implemented natively so we don't override them var ignore = ['length']; Ember.EnumerableUtils.forEach(NativeArray.keys(), function(methodName) { if (Array.prototype[methodName]) ignore.push(methodName); }); if (ignore.length>0) { NativeArray = NativeArray.without.apply(NativeArray, ignore); } /** The NativeArray mixin contains the properties needed to to make the native Array support Ember.MutableArray and all of its dependent APIs. Unless you have `Ember.EXTEND_PROTOTYPES or `Ember.EXTEND_PROTOTYPES.Array` set to false, this will be applied automatically. Otherwise you can apply the mixin at anytime by calling `Ember.NativeArray.activate`. @class NativeArray @namespace Ember @extends Ember.Mixin @uses Ember.MutableArray @uses Ember.MutableEnumerable @uses Ember.Copyable @uses Ember.Freezable */ Ember.NativeArray = NativeArray; /** Creates an `Ember.NativeArray` from an Array like object. Does not modify the original object. @method A @for Ember @return {Ember.NativeArray} */ Ember.A = function(arr){ if (arr === undefined) { arr = []; } return Ember.Array.detect(arr) ? arr : Ember.NativeArray.apply(arr); }; /** Activates the mixin on the Array.prototype if not already applied. Calling this method more than once is safe. @method activate @for Ember.NativeArray @static @return {void} */ Ember.NativeArray.activate = function() { NativeArray.apply(Array.prototype); Ember.A = function(arr) { return arr || []; }; }; if (Ember.EXTEND_PROTOTYPES === true || Ember.EXTEND_PROTOTYPES.Array) { Ember.NativeArray.activate(); } })(); (function() { var DeferredMixin = Ember.DeferredMixin, // mixins/deferred EmberObject = Ember.Object, // system/object get = Ember.get; var Deferred = Ember.Object.extend(DeferredMixin); Deferred.reopenClass({ promise: function(callback, binding) { var deferred = Deferred.create(); callback.call(binding, deferred); return get(deferred, 'promise'); } }); Ember.Deferred = Deferred; })(); (function() { /** @module ember @submodule ember-runtime */ var loadHooks = Ember.ENV.EMBER_LOAD_HOOKS || {}; var loaded = {}; /** @method onLoad @for Ember @param name {String} name of hook @param callback {Function} callback to be called */ Ember.onLoad = function(name, callback) { var object; loadHooks[name] = loadHooks[name] || Ember.A(); loadHooks[name].pushObject(callback); if (object = loaded[name]) { callback(object); } }; /** @method runLoadHooks @for Ember @param name {String} name of hook @param object {Object} object to pass to callbacks */ Ember.runLoadHooks = function(name, object) { var hooks; loaded[name] = object; if (hooks = loadHooks[name]) { loadHooks[name].forEach(function(callback) { callback(object); }); } }; })(); (function() { })(); (function() { var get = Ember.get; /** @module ember @submodule ember-runtime */ /** `Ember.ControllerMixin` provides a standard interface for all classes that compose Ember's controller layer: `Ember.Controller`, `Ember.ArrayController`, and `Ember.ObjectController`. Within an `Ember.Router`-managed application single shared instaces of every Controller object in your application's namespace will be added to the application's `Ember.Router` instance. See `Ember.Application#initialize` for additional information. ## Views By default a controller instance will be the rendering context for its associated `Ember.View.` This connection is made during calls to `Ember.ControllerMixin#connectOutlet`. Within the view's template, the `Ember.View` instance can be accessed through the controller with `{{view}}`. ## Target Forwarding By default a controller will target your application's `Ember.Router` instance. Calls to `{{action}}` within the template of a controller's view are forwarded to the router. See `Ember.Handlebars.helpers.action` for additional information. @class ControllerMixin @namespace Ember @extends Ember.Mixin */ Ember.ControllerMixin = Ember.Mixin.create({ /* ducktype as a controller */ isController: true, /** The object to which events from the view should be sent. For example, when a Handlebars template uses the `{{action}}` helper, it will attempt to send the event to the view's controller's `target`. By default, a controller's `target` is set to the router after it is instantiated by `Ember.Application#initialize`. @property target @default null */ target: null, container: null, store: null, model: Ember.computed.alias('content'), send: function(actionName) { var args = [].slice.call(arguments, 1), target; if (this[actionName]) { this[actionName].apply(this, args); } else if(target = get(this, 'target')) { target.send.apply(target, arguments); } } }); /** @class Controller @namespace Ember @extends Ember.Object @uses Ember.ControllerMixin */ Ember.Controller = Ember.Object.extend(Ember.ControllerMixin); })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, set = Ember.set, forEach = Ember.EnumerableUtils.forEach; /** `Ember.SortableMixin` provides a standard interface for array proxies to specify a sort order and maintain this sorting when objects are added, removed, or updated without changing the implicit order of their underlying content array: ```javascript songs = [ {trackNumber: 4, title: 'Ob-La-Di, Ob-La-Da'}, {trackNumber: 2, title: 'Back in the U.S.S.R.'}, {trackNumber: 3, title: 'Glass Onion'}, ]; songsController = Ember.ArrayController.create({ content: songs, sortProperties: ['trackNumber'], sortAscending: true }); songsController.get('firstObject'); // {trackNumber: 2, title: 'Back in the U.S.S.R.'} songsController.addObject({trackNumber: 1, title: 'Dear Prudence'}); songsController.get('firstObject'); // {trackNumber: 1, title: 'Dear Prudence'} ``` @class SortableMixin @namespace Ember @extends Ember.Mixin @uses Ember.MutableEnumerable */ Ember.SortableMixin = Ember.Mixin.create(Ember.MutableEnumerable, { /** Specifies which properties dictate the arrangedContent's sort order. @property {Array} sortProperties */ sortProperties: null, /** Specifies the arrangedContent's sort direction @property {Boolean} sortAscending */ sortAscending: true, orderBy: function(item1, item2) { var result = 0, sortProperties = get(this, 'sortProperties'), sortAscending = get(this, 'sortAscending'); forEach(sortProperties, function(propertyName) { if (result === 0) { result = Ember.compare(get(item1, propertyName), get(item2, propertyName)); if ((result !== 0) && !sortAscending) { result = (-1) * result; } } }); return result; }, destroy: function() { var content = get(this, 'content'), sortProperties = get(this, 'sortProperties'); if (content && sortProperties) { forEach(content, function(item) { forEach(sortProperties, function(sortProperty) { Ember.removeObserver(item, sortProperty, this, 'contentItemSortPropertyDidChange'); }, this); }, this); } return this._super(); }, isSorted: Ember.computed.bool('sortProperties'), arrangedContent: Ember.computed('content', 'sortProperties.@each', function(key, value) { var content = get(this, 'content'), isSorted = get(this, 'isSorted'), sortProperties = get(this, 'sortProperties'), self = this; if (content && isSorted) { content = content.slice(); content.sort(function(item1, item2) { return self.orderBy(item1, item2); }); forEach(content, function(item) { forEach(sortProperties, function(sortProperty) { Ember.addObserver(item, sortProperty, this, 'contentItemSortPropertyDidChange'); }, this); }, this); return Ember.A(content); } return content; }), _contentWillChange: Ember.beforeObserver(function() { var content = get(this, 'content'), sortProperties = get(this, 'sortProperties'); if (content && sortProperties) { forEach(content, function(item) { forEach(sortProperties, function(sortProperty) { Ember.removeObserver(item, sortProperty, this, 'contentItemSortPropertyDidChange'); }, this); }, this); } this._super(); }, 'content'), sortAscendingWillChange: Ember.beforeObserver(function() { this._lastSortAscending = get(this, 'sortAscending'); }, 'sortAscending'), sortAscendingDidChange: Ember.observer(function() { if (get(this, 'sortAscending') !== this._lastSortAscending) { var arrangedContent = get(this, 'arrangedContent'); arrangedContent.reverseObjects(); } }, 'sortAscending'), contentArrayWillChange: function(array, idx, removedCount, addedCount) { var isSorted = get(this, 'isSorted'); if (isSorted) { var arrangedContent = get(this, 'arrangedContent'); var removedObjects = array.slice(idx, idx+removedCount); var sortProperties = get(this, 'sortProperties'); forEach(removedObjects, function(item) { arrangedContent.removeObject(item); forEach(sortProperties, function(sortProperty) { Ember.removeObserver(item, sortProperty, this, 'contentItemSortPropertyDidChange'); }, this); }, this); } return this._super(array, idx, removedCount, addedCount); }, contentArrayDidChange: function(array, idx, removedCount, addedCount) { var isSorted = get(this, 'isSorted'), sortProperties = get(this, 'sortProperties'); if (isSorted) { var addedObjects = array.slice(idx, idx+addedCount); var arrangedContent = get(this, 'arrangedContent'); forEach(addedObjects, function(item) { this.insertItemSorted(item); forEach(sortProperties, function(sortProperty) { Ember.addObserver(item, sortProperty, this, 'contentItemSortPropertyDidChange'); }, this); }, this); } return this._super(array, idx, removedCount, addedCount); }, insertItemSorted: function(item) { var arrangedContent = get(this, 'arrangedContent'); var length = get(arrangedContent, 'length'); var idx = this._binarySearch(item, 0, length); arrangedContent.insertAt(idx, item); }, contentItemSortPropertyDidChange: function(item) { var arrangedContent = get(this, 'arrangedContent'), oldIndex = arrangedContent.indexOf(item), leftItem = arrangedContent.objectAt(oldIndex - 1), rightItem = arrangedContent.objectAt(oldIndex + 1), leftResult = leftItem && this.orderBy(item, leftItem), rightResult = rightItem && this.orderBy(item, rightItem); if (leftResult < 0 || rightResult > 0) { arrangedContent.removeObject(item); this.insertItemSorted(item); } }, _binarySearch: function(item, low, high) { var mid, midItem, res, arrangedContent; if (low === high) { return low; } arrangedContent = get(this, 'arrangedContent'); mid = low + Math.floor((high - low) / 2); midItem = arrangedContent.objectAt(mid); res = this.orderBy(midItem, item); if (res < 0) { return this._binarySearch(item, mid+1, high); } else if (res > 0) { return this._binarySearch(item, low, mid); } return mid; } }); })(); (function() { /** @module ember @submodule ember-runtime */ var get = Ember.get, set = Ember.set, isGlobalPath = Ember.isGlobalPath, forEach = Ember.EnumerableUtils.forEach, replace = Ember.EnumerableUtils.replace; /** `Ember.ArrayController` provides a way for you to publish a collection of objects so that you can easily bind to the collection from a Handlebars `#each` helper, an `Ember.CollectionView`, or other controllers. The advantage of using an `ArrayController` is that you only have to set up your view bindings once; to change what's displayed, simply swap out the `content` property on the controller. For example, imagine you wanted to display a list of items fetched via an XHR request. Create an `Ember.ArrayController` and set its `content` property: ```javascript MyApp.listController = Ember.ArrayController.create(); $.get('people.json', function(data) { MyApp.listController.set('content', data); }); ``` Then, create a view that binds to your new controller: ```handlebars {{#each MyApp.listController}} {{firstName}} {{lastName}} {{/each}} ``` Although you are binding to the controller, the behavior of this controller is to pass through any methods or properties to the underlying array. This capability comes from `Ember.ArrayProxy`, which this class inherits from. Sometimes you want to display computed properties within the body of an `#each` helper that depend on the underlying items in `content`, but are not present on those items. To do this, set `itemController` to the name of a controller (probably an `ObjectController`) that will wrap each individual item. For example: ```handlebars {{#each post in controller}} <li>{{title}} ({{titleLength}} characters)</li> {{/each}} ``` ```javascript App.PostsController = Ember.ArrayController.extend({ itemController: 'post' }); App.PostController = Ember.ObjectController.extend({ // the `title` property will be proxied to the underlying post. titleLength: function() { return this.get('title').length; }.property('title') }); ``` In some cases it is helpful to return a different `itemController` depending on the particular item. Subclasses can do this by overriding `lookupItemController`. For example: ```javascript App.MyArrayController = Ember.ArrayController.extend({ lookupItemController: function( object ) { if (object.get('isSpecial')) { return "special"; // use App.SpecialController } else { return "regular"; // use App.RegularController } } }); ``` @class ArrayController @namespace Ember @extends Ember.ArrayProxy @uses Ember.SortableMixin @uses Ember.ControllerMixin */ Ember.ArrayController = Ember.ArrayProxy.extend(Ember.ControllerMixin, Ember.SortableMixin, { /** The controller used to wrap items, if any. @property itemController @type String @default null */ itemController: null, /** Return the name of the controller to wrap items, or `null` if items should be returned directly. The default implementation simply returns the `itemController` property, but subclasses can override this method to return different controllers for different objects. For example: ```javascript App.MyArrayController = Ember.ArrayController.extend({ lookupItemController: function( object ) { if (object.get('isSpecial')) { return "special"; // use App.SpecialController } else { return "regular"; // use App.RegularController } } }); ``` @method @type String @default null */ lookupItemController: function(object) { return get(this, 'itemController'); }, objectAtContent: function(idx) { var length = get(this, 'length'), object = get(this,'arrangedContent').objectAt(idx), controllerClass = this.lookupItemController(object); if (controllerClass && idx < length) { return this.controllerAt(idx, object, controllerClass); } else { // When controllerClass is falsy we have not opted in to using item // controllers, so return the object directly. However, when // controllerClass is defined but the index is out of range, we want to // return the "out of range" value, whatever that might be. Rather than // make assumptions (e.g. guessing `null` or `undefined`) we defer this to // `arrangedContent`. return object; } }, arrangedContentDidChange: function() { this._super(); this._resetSubContainers(); }, arrayContentDidChange: function(idx, removedCnt, addedCnt) { var subContainers = get(this, 'subContainers'), subContainersToRemove = subContainers.slice(idx, idx+removedCnt); forEach(subContainersToRemove, function(subContainer) { if (subContainer) { subContainer.destroy(); } }); replace(subContainers, idx, removedCnt, new Array(addedCnt)); // The shadow array of subcontainers must be updated before we trigger // observers, otherwise observers will get the wrong subcontainer when // calling `objectAt` this._super(idx, removedCnt, addedCnt); }, init: function() { this._super(); this._resetSubContainers(); }, controllerAt: function(idx, object, controllerClass) { var container = get(this, 'container'), subContainers = get(this, 'subContainers'), subContainer = subContainers[idx], controller; if (!subContainer) { subContainer = subContainers[idx] = container.child(); } controller = subContainer.lookup("controller:" + controllerClass); if (!controller) { throw new Error('Could not resolve itemController: "' + controllerClass + '"'); } controller.set('target', this); controller.set('content', object); return controller; }, subContainers: null, _resetSubContainers: function() { var subContainers = get(this, 'subContainers'); if (subContainers) { forEach(subContainers, function(subContainer) { if (subContainer) { subContainer.destroy(); } }); } this.set('subContainers', Ember.A()); } }); })(); (function() { /** @module ember @submodule ember-runtime */ /** `Ember.ObjectController` is part of Ember's Controller layer. A single shared instance of each `Ember.ObjectController` subclass in your application's namespace will be created at application initialization and be stored on your application's `Ember.Router` instance. `Ember.ObjectController` derives its functionality from its superclass `Ember.ObjectProxy` and the `Ember.ControllerMixin` mixin. @class ObjectController @namespace Ember @extends Ember.ObjectProxy @uses Ember.ControllerMixin **/ Ember.ObjectController = Ember.ObjectProxy.extend(Ember.ControllerMixin); })(); (function() { })(); (function() { /** Ember Runtime @module ember @submodule ember-runtime @requires ember-metal */ })(); (function() { /** @module ember @submodule ember-views */ var jQuery = Ember.imports.jQuery; /** Alias for jQuery @method $ @for Ember */ Ember.$ = jQuery; })(); (function() { /** @module ember @submodule ember-views */ // http://www.whatwg.org/specs/web-apps/current-work/multipage/dnd.html#dndevents var dragEvents = Ember.String.w('dragstart drag dragenter dragleave dragover drop dragend'); // Copies the `dataTransfer` property from a browser event object onto the // jQuery event object for the specified events Ember.EnumerableUtils.forEach(dragEvents, function(eventName) { Ember.$.event.fixHooks[eventName] = { props: ['dataTransfer'] }; }); })(); (function() { /** @module ember @submodule ember-views */ /*** BEGIN METAMORPH HELPERS ***/ // Internet Explorer prior to 9 does not allow setting innerHTML if the first element // is a "zero-scope" element. This problem can be worked around by making // the first node an invisible text node. We, like Modernizr, use &shy; var needsShy = (function(){ var testEl = document.createElement('div'); testEl.innerHTML = "<div></div>"; testEl.firstChild.innerHTML = "<script></script>"; return testEl.firstChild.innerHTML === ''; })(); // IE 8 (and likely earlier) likes to move whitespace preceeding // a script tag to appear after it. This means that we can // accidentally remove whitespace when updating a morph. var movesWhitespace = (function() { var testEl = document.createElement('div'); testEl.innerHTML = "Test: <script type='text/x-placeholder'></script>Value"; return testEl.childNodes[0].nodeValue === 'Test:' && testEl.childNodes[2].nodeValue === ' Value'; })(); // Use this to find children by ID instead of using jQuery var findChildById = function(element, id) { if (element.getAttribute('id') === id) { return element; } var len = element.childNodes.length, idx, node, found; for (idx=0; idx<len; idx++) { node = element.childNodes[idx]; found = node.nodeType === 1 && findChildById(node, id); if (found) { return found; } } }; var setInnerHTMLWithoutFix = function(element, html) { if (needsShy) { html = '&shy;' + html; } var matches = []; if (movesWhitespace) { // Right now we only check for script tags with ids with the // goal of targeting morphs. html = html.replace(/(\s+)(<script id='([^']+)')/g, function(match, spaces, tag, id) { matches.push([id, spaces]); return tag; }); } element.innerHTML = html; // If we have to do any whitespace adjustments do them now if (matches.length > 0) { var len = matches.length, idx; for (idx=0; idx<len; idx++) { var script = findChildById(element, matches[idx][0]), node = document.createTextNode(matches[idx][1]); script.parentNode.insertBefore(node, script); } } if (needsShy) { var shyElement = element.firstChild; while (shyElement.nodeType === 1 && !shyElement.nodeName) { shyElement = shyElement.firstChild; } if (shyElement.nodeType === 3 && shyElement.nodeValue.charAt(0) === "\u00AD") { shyElement.nodeValue = shyElement.nodeValue.slice(1); } } }; /*** END METAMORPH HELPERS */ var innerHTMLTags = {}; var canSetInnerHTML = function(tagName) { if (innerHTMLTags[tagName] !== undefined) { return innerHTMLTags[tagName]; } var canSet = true; // IE 8 and earlier don't allow us to do innerHTML on select if (tagName.toLowerCase() === 'select') { var el = document.createElement('select'); setInnerHTMLWithoutFix(el, '<option value="test">Test</option>'); canSet = el.options.length === 1; } innerHTMLTags[tagName] = canSet; return canSet; }; var setInnerHTML = function(element, html) { var tagName = element.tagName; if (canSetInnerHTML(tagName)) { setInnerHTMLWithoutFix(element, html); } else { var startTag = element.outerHTML.match(new RegExp("<"+tagName+"([^>]*)>", 'i'))[0], endTag = '</'+tagName+'>'; var wrapper = document.createElement('div'); setInnerHTMLWithoutFix(wrapper, startTag + html + endTag); element = wrapper.firstChild; while (element.tagName !== tagName) { element = element.nextSibling; } } return element; }; function isSimpleClick(event) { var modifier = event.shiftKey || event.metaKey || event.altKey || event.ctrlKey, secondaryClick = event.which > 1; // IE9 may return undefined return !modifier && !secondaryClick; } Ember.ViewUtils = { setInnerHTML: setInnerHTML, isSimpleClick: isSimpleClick }; })(); (function() { /** @module ember @submodule ember-views */ var get = Ember.get, set = Ember.set; var indexOf = Ember.ArrayPolyfills.indexOf; var ClassSet = function() { this.seen = {}; this.list = []; }; ClassSet.prototype = { add: function(string) { if (string in this.seen) { return; } this.seen[string] = true; this.list.push(string); }, toDOM: function() { return this.list.join(" "); } }; /** `Ember.RenderBuffer` gathers information regarding the a view and generates the final representation. `Ember.RenderBuffer` will generate HTML which can be pushed to the DOM. @class RenderBuffer @namespace Ember @constructor */ Ember.RenderBuffer = function(tagName) { return new Ember._RenderBuffer(tagName); }; Ember._RenderBuffer = function(tagName) { this.tagNames = [tagName || null]; this.buffer = []; }; Ember._RenderBuffer.prototype = /** @scope Ember.RenderBuffer.prototype */ { // The root view's element _element: null, /** @private An internal set used to de-dupe class names when `addClass()` is used. After each call to `addClass()`, the `classes` property will be updated. @property elementClasses @type Array @default [] */ elementClasses: null, /** Array of class names which will be applied in the class attribute. You can use `setClasses()` to set this property directly. If you use `addClass()`, it will be maintained for you. @property classes @type Array @default [] */ classes: null, /** The id in of the element, to be applied in the id attribute. You should not set this property yourself, rather, you should use the `id()` method of `Ember.RenderBuffer`. @property elementId @type String @default null */ elementId: null, /** A hash keyed on the name of the attribute and whose value will be applied to that attribute. For example, if you wanted to apply a `data-view="Foo.bar"` property to an element, you would set the elementAttributes hash to `{'data-view':'Foo.bar'}`. You should not maintain this hash yourself, rather, you should use the `attr()` method of `Ember.RenderBuffer`. @property elementAttributes @type Hash @default {} */ elementAttributes: null, /** The value for this attribute. Values cannot be set via attr after jQuery 1.9, they need to be set with val() instead. You should not maintain this value yourself, rather, you should use the `val()` method of `Ember.RenderBuffer`. @property elementValue @type String @default null */ elementValue: null, /** The tagname of the element an instance of `Ember.RenderBuffer` represents. Usually, this gets set as the first parameter to `Ember.RenderBuffer`. For example, if you wanted to create a `p` tag, then you would call ```javascript Ember.RenderBuffer('p') ``` @property elementTag @type String @default null */ elementTag: null, /** A hash keyed on the name of the style attribute and whose value will be applied to that attribute. For example, if you wanted to apply a `background-color:black;` style to an element, you would set the elementStyle hash to `{'background-color':'black'}`. You should not maintain this hash yourself, rather, you should use the `style()` method of `Ember.RenderBuffer`. @property elementStyle @type Hash @default {} */ elementStyle: null, /** Nested `RenderBuffers` will set this to their parent `RenderBuffer` instance. @property parentBuffer @type Ember._RenderBuffer */ parentBuffer: null, /** Adds a string of HTML to the `RenderBuffer`. @method push @param {String} string HTML to push into the buffer @chainable */ push: function(string) { this.buffer.push(string); return this; }, /** Adds a class to the buffer, which will be rendered to the class attribute. @method addClass @param {String} className Class name to add to the buffer @chainable */ addClass: function(className) { // lazily create elementClasses var elementClasses = this.elementClasses = (this.elementClasses || new ClassSet()); this.elementClasses.add(className); this.classes = this.elementClasses.list; return this; }, setClasses: function(classNames) { this.classes = classNames; }, /** Sets the elementID to be used for the element. @method id @param {String} id @chainable */ id: function(id) { this.elementId = id; return this; }, // duck type attribute functionality like jQuery so a render buffer // can be used like a jQuery object in attribute binding scenarios. /** Adds an attribute which will be rendered to the element. @method attr @param {String} name The name of the attribute @param {String} value The value to add to the attribute @chainable @return {Ember.RenderBuffer|String} this or the current attribute value */ attr: function(name, value) { var attributes = this.elementAttributes = (this.elementAttributes || {}); if (arguments.length === 1) { return attributes[name]; } else { attributes[name] = value; } return this; }, /** Adds an value which will be rendered to the element. @method val @param {String} value The value to set @chainable @return {Ember.RenderBuffer|String} this or the current value */ val: function(value) { var elementValue = this.elementValue; if (arguments.length === 0) { return elementValue; } else { this.elementValue = value; } return this; }, /** Remove an attribute from the list of attributes to render. @method removeAttr @param {String} name The name of the attribute @chainable */ removeAttr: function(name) { var attributes = this.elementAttributes; if (attributes) { delete attributes[name]; } return this; }, /** Adds a style to the style attribute which will be rendered to the element. @method style @param {String} name Name of the style @param {String} value @chainable */ style: function(name, value) { var style = this.elementStyle = (this.elementStyle || {}); this.elementStyle[name] = value; return this; }, begin: function(tagName) { this.tagNames.push(tagName || null); return this; }, pushOpeningTag: function() { var tagName = this.currentTagName(); if (!tagName) { return; } if (!this._element && this.buffer.length === 0) { this._element = this.generateElement(); return; } var buffer = this.buffer, id = this.elementId, classes = this.classes, attrs = this.elementAttributes, value = this.elementValue, style = this.elementStyle, prop; buffer.push('<' + tagName); if (id) { buffer.push(' id="' + this._escapeAttribute(id) + '"'); this.elementId = null; } if (classes) { buffer.push(' class="' + this._escapeAttribute(classes.join(' ')) + '"'); this.classes = null; } if (style) { buffer.push(' style="'); for (prop in style) { if (style.hasOwnProperty(prop)) { buffer.push(prop + ':' + this._escapeAttribute(style[prop]) + ';'); } } buffer.push('"'); this.elementStyle = null; } if (attrs) { for (prop in attrs) { if (attrs.hasOwnProperty(prop)) { buffer.push(' ' + prop + '="' + this._escapeAttribute(attrs[prop]) + '"'); } } this.elementAttributes = null; } if (value) { buffer.push(' value="' + this._escapeAttribute(value) + '"'); this.elementValue = null; } buffer.push('>'); }, pushClosingTag: function() { var tagName = this.tagNames.pop(); if (tagName) { this.buffer.push('</' + tagName + '>'); } }, currentTagName: function() { return this.tagNames[this.tagNames.length-1]; }, generateElement: function() { var tagName = this.tagNames.pop(), // pop since we don't need to close element = document.createElement(tagName), $element = Ember.$(element), id = this.elementId, classes = this.classes, attrs = this.elementAttributes, value = this.elementValue, style = this.elementStyle, styleBuffer = '', prop; if (id) { $element.attr('id', id); this.elementId = null; } if (classes) { $element.attr('class', classes.join(' ')); this.classes = null; } if (style) { for (prop in style) { if (style.hasOwnProperty(prop)) { styleBuffer += (prop + ':' + style[prop] + ';'); } } $element.attr('style', styleBuffer); this.elementStyle = null; } if (attrs) { for (prop in attrs) { if (attrs.hasOwnProperty(prop)) { $element.attr(prop, attrs[prop]); } } this.elementAttributes = null; } if (value) { $element.val(value); this.elementValue = null; } return element; }, /** @method element @return {DOMElement} The element corresponding to the generated HTML of this buffer */ element: function() { var html = this.innerString(); if (html) { this._element = Ember.ViewUtils.setInnerHTML(this._element, html); } return this._element; }, /** Generates the HTML content for this buffer. @method string @return {String} The generated HTML */ string: function() { if (this._element) { return this.element().outerHTML; } else { return this.innerString(); } }, innerString: function() { return this.buffer.join(''); }, _escapeAttribute: function(value) { // Stolen shamelessly from Handlebars var escape = { "<": "&lt;", ">": "&gt;", '"': "&quot;", "'": "&#x27;", "`": "&#x60;" }; var badChars = /&(?!\w+;)|[<>"'`]/g; var possible = /[&<>"'`]/; var escapeChar = function(chr) { return escape[chr] || "&amp;"; }; var string = value.toString(); if(!possible.test(string)) { return string; } return string.replace(badChars, escapeChar); } }; })(); (function() { /** @module ember @submodule ember-views */ var get = Ember.get, set = Ember.set, fmt = Ember.String.fmt; /** `Ember.EventDispatcher` handles delegating browser events to their corresponding `Ember.Views.` For example, when you click on a view, `Ember.EventDispatcher` ensures that that view's `mouseDown` method gets called. @class EventDispatcher @namespace Ember @private @extends Ember.Object */ Ember.EventDispatcher = Ember.Object.extend( /** @scope Ember.EventDispatcher.prototype */{ /** @private The root DOM element to which event listeners should be attached. Event listeners will be attached to the document unless this is overridden. Can be specified as a DOMElement or a selector string. The default body is a string since this may be evaluated before document.body exists in the DOM. @property rootElement @type DOMElement @default 'body' */ rootElement: 'body', /** @private Sets up event listeners for standard browser events. This will be called after the browser sends a `DOMContentReady` event. By default, it will set up all of the listeners on the document body. If you would like to register the listeners on a different element, set the event dispatcher's `root` property. @method setup @param addedEvents {Hash} */ setup: function(addedEvents) { var event, events = { touchstart : 'touchStart', touchmove : 'touchMove', touchend : 'touchEnd', touchcancel : 'touchCancel', keydown : 'keyDown', keyup : 'keyUp', keypress : 'keyPress', mousedown : 'mouseDown', mouseup : 'mouseUp', contextmenu : 'contextMenu', click : 'click', dblclick : 'doubleClick', mousemove : 'mouseMove', focusin : 'focusIn', focusout : 'focusOut', mouseenter : 'mouseEnter', mouseleave : 'mouseLeave', submit : 'submit', input : 'input', change : 'change', dragstart : 'dragStart', drag : 'drag', dragenter : 'dragEnter', dragleave : 'dragLeave', dragover : 'dragOver', drop : 'drop', dragend : 'dragEnd' }; Ember.$.extend(events, addedEvents || {}); var rootElement = Ember.$(get(this, 'rootElement')); rootElement.addClass('ember-application'); for (event in events) { if (events.hasOwnProperty(event)) { this.setupHandler(rootElement, event, events[event]); } } }, /** @private Registers an event listener on the document. If the given event is triggered, the provided event handler will be triggered on the target view. If the target view does not implement the event handler, or if the handler returns `false`, the parent view will be called. The event will continue to bubble to each successive parent view until it reaches the top. For example, to have the `mouseDown` method called on the target view when a `mousedown` event is received from the browser, do the following: ```javascript setupHandler('mousedown', 'mouseDown'); ``` @method setupHandler @param {Element} rootElement @param {String} event the browser-originated event to listen to @param {String} eventName the name of the method to call on the view */ setupHandler: function(rootElement, event, eventName) { var self = this; rootElement.delegate('.ember-view', event + '.ember', function(evt, triggeringManager) { return Ember.handleErrors(function() { var view = Ember.View.views[this.id], result = true, manager = null; manager = self._findNearestEventManager(view,eventName); if (manager && manager !== triggeringManager) { result = self._dispatchEvent(manager, evt, eventName, view); } else if (view) { result = self._bubbleEvent(view,evt,eventName); } else { evt.stopPropagation(); } return result; }, this); }); rootElement.delegate('[data-ember-action]', event + '.ember', function(evt) { return Ember.handleErrors(function() { var actionId = Ember.$(evt.currentTarget).attr('data-ember-action'), action = Ember.Handlebars.ActionHelper.registeredActions[actionId]; // We have to check for action here since in some cases, jQuery will trigger // an event on `removeChild` (i.e. focusout) after we've already torn down the // action handlers for the view. if (action && action.eventName === eventName) { return action.handler(evt); } }, this); }); }, _findNearestEventManager: function(view, eventName) { var manager = null; while (view) { manager = get(view, 'eventManager'); if (manager && manager[eventName]) { break; } view = get(view, 'parentView'); } return manager; }, _dispatchEvent: function(object, evt, eventName, view) { var result = true; var handler = object[eventName]; if (Ember.typeOf(handler) === 'function') { result = handler.call(object, evt, view); // Do not preventDefault in eventManagers. evt.stopPropagation(); } else { result = this._bubbleEvent(view, evt, eventName); } return result; }, _bubbleEvent: function(view, evt, eventName) { return Ember.run(function() { return view.handleEvent(eventName, evt); }); }, destroy: function() { var rootElement = get(this, 'rootElement'); Ember.$(rootElement).undelegate('.ember').removeClass('ember-application'); return this._super(); } }); })(); (function() { /** @module ember @submodule ember-views */ // Add a new named queue for rendering views that happens // after bindings have synced, and a queue for scheduling actions // that that should occur after view rendering. var queues = Ember.run.queues; queues.splice(Ember.$.inArray('actions', queues)+1, 0, 'render', 'afterRender'); })(); (function() { /** @module ember @submodule ember-views */ var get = Ember.get, set = Ember.set; // Original class declaration and documentation in runtime/lib/controllers/controller.js // NOTE: It may be possible with YUIDoc to combine docs in two locations /** Additional methods for the ControllerMixin @class ControllerMixin @namespace Ember */ Ember.ControllerMixin.reopen({ target: null, namespace: null, view: null, container: null, _childContainers: null, init: function() { this._super(); set(this, '_childContainers', {}); }, _modelDidChange: Ember.observer(function() { var containers = get(this, '_childContainers'), container; for (var prop in containers) { if (!containers.hasOwnProperty(prop)) { continue; } containers[prop].destroy(); } set(this, '_childContainers', {}); }, 'model') }); })(); (function() { })(); (function() { var states = {}; /** @module ember @submodule ember-views */ var get = Ember.get, set = Ember.set, addObserver = Ember.addObserver, removeObserver = Ember.removeObserver; var meta = Ember.meta, guidFor = Ember.guidFor, fmt = Ember.String.fmt; var a_slice = [].slice; var a_forEach = Ember.EnumerableUtils.forEach; var a_addObject = Ember.EnumerableUtils.addObject; var childViewsProperty = Ember.computed(function() { var childViews = this._childViews, ret = Ember.A(), view = this; a_forEach(childViews, function(view) { if (view.isVirtual) { ret.pushObjects(get(view, 'childViews')); } else { ret.push(view); } }); ret.replace = function (idx, removedCount, addedViews) { if (view instanceof Ember.ContainerView) { return view.replace(idx, removedCount, addedViews); } throw new Error("childViews is immutable"); }; return ret; }); /** Global hash of shared templates. This will automatically be populated by the build tools so that you can store your Handlebars templates in separate files that get loaded into JavaScript at buildtime. @property TEMPLATES @for Ember @type Hash */ Ember.TEMPLATES = {}; Ember.CoreView = Ember.Object.extend(Ember.Evented, { isView: true, states: states, init: function() { this._super(); // Register the view for event handling. This hash is used by // Ember.EventDispatcher to dispatch incoming events. if (!this.isVirtual) { Ember.View.views[this.elementId] = this; } this.addBeforeObserver('elementId', function() { throw new Error("Changing a view's elementId after creation is not allowed"); }); this.transitionTo('preRender'); }, /** If the view is currently inserted into the DOM of a parent view, this property will point to the parent of the view. @property parentView @type Ember.View @default null */ parentView: Ember.computed(function() { var parent = this._parentView; if (parent && parent.isVirtual) { return get(parent, 'parentView'); } else { return parent; } }).property('_parentView'), state: null, _parentView: null, // return the current view, not including virtual views concreteView: Ember.computed(function() { if (!this.isVirtual) { return this; } else { return get(this, 'parentView'); } }).property('parentView').volatile(), instrumentName: 'core_view', instrumentDetails: function(hash) { hash.object = this.toString(); }, /** @private Invoked by the view system when this view needs to produce an HTML representation. This method will create a new render buffer, if needed, then apply any default attributes, such as class names and visibility. Finally, the `render()` method is invoked, which is responsible for doing the bulk of the rendering. You should not need to override this method; instead, implement the `template` property, or if you need more control, override the `render` method. @method renderToBuffer @param {Ember.RenderBuffer} buffer the render buffer. If no buffer is passed, a default buffer, using the current view's `tagName`, will be used. */ renderToBuffer: function(parentBuffer, bufferOperation) { var name = 'render.' + this.instrumentName, details = {}; this.instrumentDetails(details); return Ember.instrument(name, details, function() { return this._renderToBuffer(parentBuffer, bufferOperation); }, this); }, _renderToBuffer: function(parentBuffer, bufferOperation) { Ember.run.sync(); // If this is the top-most view, start a new buffer. Otherwise, // create a new buffer relative to the original using the // provided buffer operation (for example, `insertAfter` will // insert a new buffer after the "parent buffer"). var tagName = this.tagName; if (tagName === null || tagName === undefined) { tagName = 'div'; } var buffer = this.buffer = parentBuffer && parentBuffer.begin(tagName) || Ember.RenderBuffer(tagName); this.transitionTo('inBuffer', false); this.beforeRender(buffer); this.render(buffer); this.afterRender(buffer); return buffer; }, /** @private Override the default event firing from `Ember.Evented` to also call methods with the given name. @method trigger @param name {String} */ trigger: function(name) { this._super.apply(this, arguments); var method = this[name]; if (method) { var args = [], i, l; for (i = 1, l = arguments.length; i < l; i++) { args.push(arguments[i]); } return method.apply(this, args); } }, has: function(name) { return Ember.typeOf(this[name]) === 'function' || this._super(name); }, willDestroy: function() { var parent = this._parentView; // destroy the element -- this will avoid each child view destroying // the element over and over again... if (!this.removedFromDOM) { this.destroyElement(); } // remove from parent if found. Don't call removeFromParent, // as removeFromParent will try to remove the element from // the DOM again. if (parent) { parent.removeChild(this); } this.transitionTo('destroyed'); // next remove view from global hash if (!this.isVirtual) delete Ember.View.views[this.elementId]; }, clearRenderedChildren: Ember.K, triggerRecursively: Ember.K, invokeRecursively: Ember.K, transitionTo: Ember.K, destroyElement: Ember.K }); /** `Ember.View` is the class in Ember responsible for encapsulating templates of HTML content, combining templates with data to render as sections of a page's DOM, and registering and responding to user-initiated events. ## HTML Tag The default HTML tag name used for a view's DOM representation is `div`. This can be customized by setting the `tagName` property. The following view class: ```javascript ParagraphView = Ember.View.extend({ tagName: 'em' }); ``` Would result in instances with the following HTML: ```html <em id="ember1" class="ember-view"></em> ``` ## HTML `class` Attribute The HTML `class` attribute of a view's tag can be set by providing a `classNames` property that is set to an array of strings: ```javascript MyView = Ember.View.extend({ classNames: ['my-class', 'my-other-class'] }); ``` Will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view my-class my-other-class"></div> ``` `class` attribute values can also be set by providing a `classNameBindings` property set to an array of properties names for the view. The return value of these properties will be added as part of the value for the view's `class` attribute. These properties can be computed properties: ```javascript MyView = Ember.View.extend({ classNameBindings: ['propertyA', 'propertyB'], propertyA: 'from-a', propertyB: function(){ if(someLogic){ return 'from-b'; } }.property() }); ``` Will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view from-a from-b"></div> ``` If the value of a class name binding returns a boolean the property name itself will be used as the class name if the property is true. The class name will not be added if the value is `false` or `undefined`. ```javascript MyView = Ember.View.extend({ classNameBindings: ['hovered'], hovered: true }); ``` Will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view hovered"></div> ``` When using boolean class name bindings you can supply a string value other than the property name for use as the `class` HTML attribute by appending the preferred value after a ":" character when defining the binding: ```javascript MyView = Ember.View.extend({ classNameBindings: ['awesome:so-very-cool'], awesome: true }); ``` Will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view so-very-cool"></div> ``` Boolean value class name bindings whose property names are in a camelCase-style format will be converted to a dasherized format: ```javascript MyView = Ember.View.extend({ classNameBindings: ['isUrgent'], isUrgent: true }); ``` Will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view is-urgent"></div> ``` Class name bindings can also refer to object values that are found by traversing a path relative to the view itself: ```javascript MyView = Ember.View.extend({ classNameBindings: ['messages.empty'] messages: Ember.Object.create({ empty: true }) }); ``` Will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view empty"></div> ``` If you want to add a class name for a property which evaluates to true and and a different class name if it evaluates to false, you can pass a binding like this: ```javascript // Applies 'enabled' class when isEnabled is true and 'disabled' when isEnabled is false Ember.View.create({ classNameBindings: ['isEnabled:enabled:disabled'] isEnabled: true }); ``` Will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view enabled"></div> ``` When isEnabled is `false`, the resulting HTML reprensentation looks like this: ```html <div id="ember1" class="ember-view disabled"></div> ``` This syntax offers the convenience to add a class if a property is `false`: ```javascript // Applies no class when isEnabled is true and class 'disabled' when isEnabled is false Ember.View.create({ classNameBindings: ['isEnabled::disabled'] isEnabled: true }); ``` Will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view"></div> ``` When the `isEnabled` property on the view is set to `false`, it will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view disabled"></div> ``` Updates to the the value of a class name binding will result in automatic update of the HTML `class` attribute in the view's rendered HTML representation. If the value becomes `false` or `undefined` the class name will be removed. Both `classNames` and `classNameBindings` are concatenated properties. See `Ember.Object` documentation for more information about concatenated properties. ## HTML Attributes The HTML attribute section of a view's tag can be set by providing an `attributeBindings` property set to an array of property names on the view. The return value of these properties will be used as the value of the view's HTML associated attribute: ```javascript AnchorView = Ember.View.extend({ tagName: 'a', attributeBindings: ['href'], href: 'http://google.com' }); ``` Will result in view instances with an HTML representation of: ```html <a id="ember1" class="ember-view" href="http://google.com"></a> ``` If the return value of an `attributeBindings` monitored property is a boolean the property will follow HTML's pattern of repeating the attribute's name as its value: ```javascript MyTextInput = Ember.View.extend({ tagName: 'input', attributeBindings: ['disabled'], disabled: true }); ``` Will result in view instances with an HTML representation of: ```html <input id="ember1" class="ember-view" disabled="disabled" /> ``` `attributeBindings` can refer to computed properties: ```javascript MyTextInput = Ember.View.extend({ tagName: 'input', attributeBindings: ['disabled'], disabled: function(){ if (someLogic) { return true; } else { return false; } }.property() }); ``` Updates to the the property of an attribute binding will result in automatic update of the HTML attribute in the view's rendered HTML representation. `attributeBindings` is a concatenated property. See `Ember.Object` documentation for more information about concatenated properties. ## Templates The HTML contents of a view's rendered representation are determined by its template. Templates can be any function that accepts an optional context parameter and returns a string of HTML that will be inserted within the view's tag. Most typically in Ember this function will be a compiled `Ember.Handlebars` template. ```javascript AView = Ember.View.extend({ template: Ember.Handlebars.compile('I am the template') }); ``` Will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view">I am the template</div> ``` Within an Ember application is more common to define a Handlebars templates as part of a page: ```html <script type='text/x-handlebars' data-template-name='some-template'> Hello </script> ``` And associate it by name using a view's `templateName` property: ```javascript AView = Ember.View.extend({ templateName: 'some-template' }); ``` Using a value for `templateName` that does not have a Handlebars template with a matching `data-template-name` attribute will throw an error. Assigning a value to both `template` and `templateName` properties will throw an error. For views classes that may have a template later defined (e.g. as the block portion of a `{{view}}` Handlebars helper call in another template or in a subclass), you can provide a `defaultTemplate` property set to compiled template function. If a template is not later provided for the view instance the `defaultTemplate` value will be used: ```javascript AView = Ember.View.extend({ defaultTemplate: Ember.Handlebars.compile('I was the default'), template: null, templateName: null }); ``` Will result in instances with an HTML representation of: ```html <div id="ember1" class="ember-view">I was the default</div> ``` If a `template` or `templateName` is provided it will take precedence over `defaultTemplate`: ```javascript AView = Ember.View.extend({ defaultTemplate: Ember.Handlebars.compile('I was the default') }); aView = AView.create({ template: Ember.Handlebars.compile('I was the template, not default') }); ``` Will result in the following HTML representation when rendered: ```html <div id="ember1" class="ember-view">I was the template, not default</div> ``` ## View Context The default context of the compiled template is the view's controller: ```javascript AView = Ember.View.extend({ template: Ember.Handlebars.compile('Hello {{excitedGreeting}}') }); aController = Ember.Object.create({ firstName: 'Barry', excitedGreeting: function(){ return this.get("content.firstName") + "!!!" }.property() }); aView = AView.create({ controller: aController, }); ``` Will result in an HTML representation of: ```html <div id="ember1" class="ember-view">Hello Barry!!!</div> ``` A context can also be explicitly supplied through the view's `context` property. If the view has neither `context` nor `controller` properties, the `parentView`'s context will be used. ## Layouts Views can have a secondary template that wraps their main template. Like primary templates, layouts can be any function that accepts an optional context parameter and returns a string of HTML that will be inserted inside view's tag. Views whose HTML element is self closing (e.g. `<input />`) cannot have a layout and this property will be ignored. Most typically in Ember a layout will be a compiled `Ember.Handlebars` template. A view's layout can be set directly with the `layout` property or reference an existing Handlebars template by name with the `layoutName` property. A template used as a layout must contain a single use of the Handlebars `{{yield}}` helper. The HTML contents of a view's rendered `template` will be inserted at this location: ```javascript AViewWithLayout = Ember.View.extend({ layout: Ember.Handlebars.compile("<div class='my-decorative-class'>{{yield}}</div>") template: Ember.Handlebars.compile("I got wrapped"), }); ``` Will result in view instances with an HTML representation of: ```html <div id="ember1" class="ember-view"> <div class="my-decorative-class"> I got wrapped </div> </div> ``` See `Handlebars.helpers.yield` for more information. ## Responding to Browser Events Views can respond to user-initiated events in one of three ways: method implementation, through an event manager, and through `{{action}}` helper use in their template or layout. ### Method Implementation Views can respond to user-initiated events by implementing a method that matches the event name. A `jQuery.Event` object will be passed as the argument to this method. ```javascript AView = Ember.View.extend({ click: function(event){ // will be called when when an instance's // rendered element is clicked } }); ``` ### Event Managers Views can define an object as their `eventManager` property. This object can then implement methods that match the desired event names. Matching events that occur on the view's rendered HTML or the rendered HTML of any of its DOM descendants will trigger this method. A `jQuery.Event` object will be passed as the first argument to the method and an `Ember.View` object as the second. The `Ember.View` will be the view whose rendered HTML was interacted with. This may be the view with the `eventManager` property or one of its descendent views. ```javascript AView = Ember.View.extend({ eventManager: Ember.Object.create({ doubleClick: function(event, view){ // will be called when when an instance's // rendered element or any rendering // of this views's descendent // elements is clicked } }) }); ``` An event defined for an event manager takes precedence over events of the same name handled through methods on the view. ```javascript AView = Ember.View.extend({ mouseEnter: function(event){ // will never trigger. }, eventManager: Ember.Object.create({ mouseEnter: function(event, view){ // takes presedence over AView#mouseEnter } }) }); ``` Similarly a view's event manager will take precedence for events of any views rendered as a descendent. A method name that matches an event name will not be called if the view instance was rendered inside the HTML representation of a view that has an `eventManager` property defined that handles events of the name. Events not handled by the event manager will still trigger method calls on the descendent. ```javascript OuterView = Ember.View.extend({ template: Ember.Handlebars.compile("outer {{#view InnerView}}inner{{/view}} outer"), eventManager: Ember.Object.create({ mouseEnter: function(event, view){ // view might be instance of either // OutsideView or InnerView depending on // where on the page the user interaction occured } }) }); InnerView = Ember.View.extend({ click: function(event){ // will be called if rendered inside // an OuterView because OuterView's // eventManager doesn't handle click events }, mouseEnter: function(event){ // will never be called if rendered inside // an OuterView. } }); ``` ### Handlebars `{{action}}` Helper See `Handlebars.helpers.action`. ### Event Names Possible events names for any of the responding approaches described above are: Touch events: * `touchStart` * `touchMove` * `touchEnd` * `touchCancel` Keyboard events * `keyDown` * `keyUp` * `keyPress` Mouse events * `mouseDown` * `mouseUp` * `contextMenu` * `click` * `doubleClick` * `mouseMove` * `focusIn` * `focusOut` * `mouseEnter` * `mouseLeave` Form events: * `submit` * `change` * `focusIn` * `focusOut` * `input` HTML5 drag and drop events: * `dragStart` * `drag` * `dragEnter` * `dragLeave` * `drop` * `dragEnd` ## Handlebars `{{view}}` Helper Other `Ember.View` instances can be included as part of a view's template by using the `{{view}}` Handlebars helper. See `Handlebars.helpers.view` for additional information. @class View @namespace Ember @extends Ember.Object @uses Ember.Evented */ Ember.View = Ember.CoreView.extend( /** @scope Ember.View.prototype */ { concatenatedProperties: ['classNames', 'classNameBindings', 'attributeBindings'], /** @property isView @type Boolean @default true @final */ isView: true, // .......................................................... // TEMPLATE SUPPORT // /** The name of the template to lookup if no template is provided. `Ember.View` will look for a template with this name in this view's `templates` object. By default, this will be a global object shared in `Ember.TEMPLATES`. @property templateName @type String @default null */ templateName: null, /** The name of the layout to lookup if no layout is provided. `Ember.View` will look for a template with this name in this view's `templates` object. By default, this will be a global object shared in `Ember.TEMPLATES`. @property layoutName @type String @default null */ layoutName: null, /** The hash in which to look for `templateName`. @property templates @type Ember.Object @default Ember.TEMPLATES */ templates: Ember.TEMPLATES, /** The template used to render the view. This should be a function that accepts an optional context parameter and returns a string of HTML that will be inserted into the DOM relative to its parent view. In general, you should set the `templateName` property instead of setting the template yourself. @property template @type Function */ template: Ember.computed(function(key, value) { if (value !== undefined) { return value; } var templateName = get(this, 'templateName'), template = this.templateForName(templateName, 'template'); return template || get(this, 'defaultTemplate'); }).property('templateName'), container: Ember.computed(function() { var parentView = get(this, '_parentView'); if (parentView) { return get(parentView, 'container'); } return Ember.Container && Ember.Container.defaultContainer; }), /** The controller managing this view. If this property is set, it will be made available for use by the template. @property controller @type Object */ controller: Ember.computed(function(key) { var parentView = get(this, '_parentView'); return parentView ? get(parentView, 'controller') : null; }).property('_parentView'), /** A view may contain a layout. A layout is a regular template but supersedes the `template` property during rendering. It is the responsibility of the layout template to retrieve the `template` property from the view (or alternatively, call `Handlebars.helpers.yield`, `{{yield}}`) to render it in the correct location. This is useful for a view that has a shared wrapper, but which delegates the rendering of the contents of the wrapper to the `template` property on a subclass. @property layout @type Function */ layout: Ember.computed(function(key) { var layoutName = get(this, 'layoutName'), layout = this.templateForName(layoutName, 'layout'); return layout || get(this, 'defaultLayout'); }).property('layoutName'), templateForName: function(name, type) { if (!name) { return; } var container = get(this, 'container'); if (container) { return container.lookup('template:' + name); } }, /** The object from which templates should access properties. This object will be passed to the template function each time the render method is called, but it is up to the individual function to decide what to do with it. By default, this will be the view's controller. @property context @type Object */ context: Ember.computed(function(key, value) { if (arguments.length === 2) { set(this, '_context', value); return value; } else { return get(this, '_context'); } }).volatile(), /** @private Private copy of the view's template context. This can be set directly by Handlebars without triggering the observer that causes the view to be re-rendered. The context of a view is looked up as follows: 1. Supplied context (usually by Handlebars) 2. Specified controller 3. `parentView`'s context (for a child of a ContainerView) The code in Handlebars that overrides the `_context` property first checks to see whether the view has a specified controller. This is something of a hack and should be revisited. @property _context */ _context: Ember.computed(function(key) { var parentView, controller; if (controller = get(this, 'controller')) { return controller; } parentView = this._parentView; if (parentView) { return get(parentView, '_context'); } return null; }), /** @private If a value that affects template rendering changes, the view should be re-rendered to reflect the new value. @method _displayPropertyDidChange */ _contextDidChange: Ember.observer(function() { this.rerender(); }, 'context'), /** If `false`, the view will appear hidden in DOM. @property isVisible @type Boolean @default null */ isVisible: true, /** @private Array of child views. You should never edit this array directly. Instead, use `appendChild` and `removeFromParent`. @property childViews @type Array @default [] */ childViews: childViewsProperty, _childViews: [], // When it's a virtual view, we need to notify the parent that their // childViews will change. _childViewsWillChange: Ember.beforeObserver(function() { if (this.isVirtual) { var parentView = get(this, 'parentView'); if (parentView) { Ember.propertyWillChange(parentView, 'childViews'); } } }, 'childViews'), // When it's a virtual view, we need to notify the parent that their // childViews did change. _childViewsDidChange: Ember.observer(function() { if (this.isVirtual) { var parentView = get(this, 'parentView'); if (parentView) { Ember.propertyDidChange(parentView, 'childViews'); } } }, 'childViews'), /** Return the nearest ancestor that is an instance of the provided class. @property nearestInstanceOf @param {Class} klass Subclass of Ember.View (or Ember.View itself) @return Ember.View @deprecated */ nearestInstanceOf: function(klass) { var view = get(this, 'parentView'); while (view) { if(view instanceof klass) { return view; } view = get(view, 'parentView'); } }, /** Return the nearest ancestor that is an instance of the provided class or mixin. @property nearestOfType @param {Class,Mixin} klass Subclass of Ember.View (or Ember.View itself), or an instance of Ember.Mixin. @return Ember.View */ nearestOfType: function(klass) { var view = get(this, 'parentView'), isOfType = klass instanceof Ember.Mixin ? function(view) { return klass.detect(view); } : function(view) { return klass.detect(view.constructor); }; while (view) { if( isOfType(view) ) { return view; } view = get(view, 'parentView'); } }, /** Return the nearest ancestor that has a given property. @property nearestWithProperty @param {String} property A property name @return Ember.View */ nearestWithProperty: function(property) { var view = get(this, 'parentView'); while (view) { if (property in view) { return view; } view = get(view, 'parentView'); } }, /** Return the nearest ancestor whose parent is an instance of `klass`. @property nearestChildOf @param {Class} klass Subclass of Ember.View (or Ember.View itself) @return Ember.View */ nearestChildOf: function(klass) { var view = get(this, 'parentView'); while (view) { if(get(view, 'parentView') instanceof klass) { return view; } view = get(view, 'parentView'); } }, /** @private When the parent view changes, recursively invalidate `controller` @method _parentViewDidChange */ _parentViewDidChange: Ember.observer(function() { if (this.isDestroying) { return; } if (get(this, 'parentView.controller') && !get(this, 'controller')) { this.notifyPropertyChange('controller'); } }, '_parentView'), _controllerDidChange: Ember.observer(function() { if (this.isDestroying) { return; } this.rerender(); this.forEachChildView(function(view) { view.propertyDidChange('controller'); }); }, 'controller'), cloneKeywords: function() { var templateData = get(this, 'templateData'); var keywords = templateData ? Ember.copy(templateData.keywords) : {}; set(keywords, 'view', get(this, 'concreteView')); set(keywords, '_view', this); set(keywords, 'controller', get(this, 'controller')); return keywords; }, /** Called on your view when it should push strings of HTML into a `Ember.RenderBuffer`. Most users will want to override the `template` or `templateName` properties instead of this method. By default, `Ember.View` will look for a function in the `template` property and invoke it with the value of `context`. The value of `context` will be the view's controller unless you override it. @method render @param {Ember.RenderBuffer} buffer The render buffer */ render: function(buffer) { // If this view has a layout, it is the responsibility of the // the layout to render the view's template. Otherwise, render the template // directly. var template = get(this, 'layout') || get(this, 'template'); if (template) { var context = get(this, 'context'); var keywords = this.cloneKeywords(); var output; var data = { view: this, buffer: buffer, isRenderData: true, keywords: keywords, insideGroup: get(this, 'templateData.insideGroup') }; // Invoke the template with the provided template context, which // is the view's controller by default. A hash of data is also passed that provides // the template with access to the view and render buffer. // The template should write directly to the render buffer instead // of returning a string. output = template(context, { data: data }); // If the template returned a string instead of writing to the buffer, // push the string onto the buffer. if (output !== undefined) { buffer.push(output); } } }, /** Renders the view again. This will work regardless of whether the view is already in the DOM or not. If the view is in the DOM, the rendering process will be deferred to give bindings a chance to synchronize. If children were added during the rendering process using `appendChild`, `rerender` will remove them, because they will be added again if needed by the next `render`. In general, if the display of your view changes, you should modify the DOM element directly instead of manually calling `rerender`, which can be slow. @method rerender */ rerender: function() { return this.currentState.rerender(this); }, clearRenderedChildren: function() { var lengthBefore = this.lengthBeforeRender, lengthAfter = this.lengthAfterRender; // If there were child views created during the last call to render(), // remove them under the assumption that they will be re-created when // we re-render. // VIEW-TODO: Unit test this path. var childViews = this._childViews; for (var i=lengthAfter-1; i>=lengthBefore; i--) { if (childViews[i]) { childViews[i].destroy(); } } }, /** @private Iterates over the view's `classNameBindings` array, inserts the value of the specified property into the `classNames` array, then creates an observer to update the view's element if the bound property ever changes in the future. @method _applyClassNameBindings */ _applyClassNameBindings: function(classBindings) { var classNames = this.classNames, elem, newClass, dasherizedClass; // Loop through all of the configured bindings. These will be either // property names ('isUrgent') or property paths relative to the view // ('content.isUrgent') a_forEach(classBindings, function(binding) { // Variable in which the old class value is saved. The observer function // closes over this variable, so it knows which string to remove when // the property changes. var oldClass; // Extract just the property name from bindings like 'foo:bar' var parsedPath = Ember.View._parsePropertyPath(binding); // Set up an observer on the context. If the property changes, toggle the // class name. var observer = function() { // Get the current value of the property newClass = this._classStringForProperty(binding); elem = this.$(); // If we had previously added a class to the element, remove it. if (oldClass) { elem.removeClass(oldClass); // Also remove from classNames so that if the view gets rerendered, // the class doesn't get added back to the DOM. classNames.removeObject(oldClass); } // If necessary, add a new class. Make sure we keep track of it so // it can be removed in the future. if (newClass) { elem.addClass(newClass); oldClass = newClass; } else { oldClass = null; } }; // Get the class name for the property at its current value dasherizedClass = this._classStringForProperty(binding); if (dasherizedClass) { // Ensure that it gets into the classNames array // so it is displayed when we render. a_addObject(classNames, dasherizedClass); // Save a reference to the class name so we can remove it // if the observer fires. Remember that this variable has // been closed over by the observer. oldClass = dasherizedClass; } this.registerObserver(this, parsedPath.path, observer); // Remove className so when the view is rerendered, // the className is added based on binding reevaluation this.one('willClearRender', function() { if (oldClass) { classNames.removeObject(oldClass); oldClass = null; } }); }, this); }, /** @private Iterates through the view's attribute bindings, sets up observers for each, then applies the current value of the attributes to the passed render buffer. @method _applyAttributeBindings @param {Ember.RenderBuffer} buffer */ _applyAttributeBindings: function(buffer, attributeBindings) { var attributeValue, elem, type; a_forEach(attributeBindings, function(binding) { var split = binding.split(':'), property = split[0], attributeName = split[1] || property; // Create an observer to add/remove/change the attribute if the // JavaScript property changes. var observer = function() { elem = this.$(); if (!elem) { return; } attributeValue = get(this, property); Ember.View.applyAttributeBindings(elem, attributeName, attributeValue); }; this.registerObserver(this, property, observer); // Determine the current value and add it to the render buffer // if necessary. attributeValue = get(this, property); Ember.View.applyAttributeBindings(buffer, attributeName, attributeValue); }, this); }, /** @private Given a property name, returns a dasherized version of that property name if the property evaluates to a non-falsy value. For example, if the view has property `isUrgent` that evaluates to true, passing `isUrgent` to this method will return `"is-urgent"`. @method _classStringForProperty @param property */ _classStringForProperty: function(property) { var parsedPath = Ember.View._parsePropertyPath(property); var path = parsedPath.path; var val = get(this, path); if (val === undefined && Ember.isGlobalPath(path)) { val = get(Ember.lookup, path); } return Ember.View._classStringForValue(path, val, parsedPath.className, parsedPath.falsyClassName); }, // .......................................................... // ELEMENT SUPPORT // /** Returns the current DOM element for the view. @property element @type DOMElement */ element: Ember.computed(function(key, value) { if (value !== undefined) { return this.currentState.setElement(this, value); } else { return this.currentState.getElement(this); } }).property('_parentView'), /** Returns a jQuery object for this view's element. If you pass in a selector string, this method will return a jQuery object, using the current element as its buffer. For example, calling `view.$('li')` will return a jQuery object containing all of the `li` elements inside the DOM element of this view. @property $ @param {String} [selector] a jQuery-compatible selector string @return {jQuery} the CoreQuery object for the DOM node */ $: function(sel) { return this.currentState.$(this, sel); }, mutateChildViews: function(callback) { var childViews = this._childViews, idx = childViews.length, view; while(--idx >= 0) { view = childViews[idx]; callback.call(this, view, idx); } return this; }, forEachChildView: function(callback) { var childViews = this._childViews; if (!childViews) { return this; } var len = childViews.length, view, idx; for(idx = 0; idx < len; idx++) { view = childViews[idx]; callback.call(this, view); } return this; }, /** Appends the view's element to the specified parent element. If the view does not have an HTML representation yet, `createElement()` will be called automatically. Note that this method just schedules the view to be appended; the DOM element will not be appended to the given element until all bindings have finished synchronizing. This is not typically a function that you will need to call directly when building your application. You might consider using `Ember.ContainerView` instead. If you do need to use `appendTo`, be sure that the target element you are providing is associated with an `Ember.Application` and does not have an ancestor element that is associated with an Ember view. @method appendTo @param {String|DOMElement|jQuery} A selector, element, HTML string, or jQuery object @return {Ember.View} receiver */ appendTo: function(target) { // Schedule the DOM element to be created and appended to the given // element after bindings have synchronized. this._insertElementLater(function() { this.$().appendTo(target); }); return this; }, /** Replaces the content of the specified parent element with this view's element. If the view does not have an HTML representation yet, `createElement()` will be called automatically. Note that this method just schedules the view to be appended; the DOM element will not be appended to the given element until all bindings have finished synchronizing @method replaceIn @param {String|DOMElement|jQuery} A selector, element, HTML string, or jQuery object @return {Ember.View} received */ replaceIn: function(target) { this._insertElementLater(function() { Ember.$(target).empty(); this.$().appendTo(target); }); return this; }, /** @private Schedules a DOM operation to occur during the next render phase. This ensures that all bindings have finished synchronizing before the view is rendered. To use, pass a function that performs a DOM operation. Before your function is called, this view and all child views will receive the `willInsertElement` event. After your function is invoked, this view and all of its child views will receive the `didInsertElement` event. ```javascript view._insertElementLater(function() { this.createElement(); this.$().appendTo('body'); }); ``` @method _insertElementLater @param {Function} fn the function that inserts the element into the DOM */ _insertElementLater: function(fn) { this._scheduledInsert = Ember.run.scheduleOnce('render', this, '_insertElement', fn); }, _insertElement: function (fn) { this._scheduledInsert = null; this.currentState.insertElement(this, fn); }, /** Appends the view's element to the document body. If the view does not have an HTML representation yet, `createElement()` will be called automatically. Note that this method just schedules the view to be appended; the DOM element will not be appended to the document body until all bindings have finished synchronizing. @method append @return {Ember.View} receiver */ append: function() { return this.appendTo(document.body); }, /** Removes the view's element from the element to which it is attached. @method remove @return {Ember.View} receiver */ remove: function() { // What we should really do here is wait until the end of the run loop // to determine if the element has been re-appended to a different // element. // In the interim, we will just re-render if that happens. It is more // important than elements get garbage collected. if (!this.removedFromDOM) { this.destroyElement(); } this.invokeRecursively(function(view) { if (view.clearRenderedChildren) { view.clearRenderedChildren(); } }); }, elementId: null, /** Attempts to discover the element in the parent element. The default implementation looks for an element with an ID of `elementId` (or the view's guid if `elementId` is null). You can override this method to provide your own form of lookup. For example, if you want to discover your element using a CSS class name instead of an ID. @method findElementInParentElement @param {DOMElement} parentElement The parent's DOM element @return {DOMElement} The discovered element */ findElementInParentElement: function(parentElem) { var id = "#" + this.elementId; return Ember.$(id)[0] || Ember.$(id, parentElem)[0]; }, /** Creates a DOM representation of the view and all of its child views by recursively calling the `render()` method. After the element has been created, `didInsertElement` will be called on this view and all of its child views. @method createElement @return {Ember.View} receiver */ createElement: function() { if (get(this, 'element')) { return this; } var buffer = this.renderToBuffer(); set(this, 'element', buffer.element()); return this; }, /** Called when a view is going to insert an element into the DOM. @event willInsertElement */ willInsertElement: Ember.K, /** Called when the element of the view has been inserted into the DOM. Override this function to do any set up that requires an element in the document body. @event didInsertElement */ didInsertElement: Ember.K, /** Called when the view is about to rerender, but before anything has been torn down. This is a good opportunity to tear down any manual observers you have installed based on the DOM state @event willClearRender */ willClearRender: Ember.K, /** @private Run this callback on the current view and recursively on child views. @method invokeRecursively @param fn {Function} */ invokeRecursively: function(fn) { var childViews = [this], currentViews, view; while (childViews.length) { currentViews = childViews.slice(); childViews = []; for (var i=0, l=currentViews.length; i<l; i++) { view = currentViews[i]; fn.call(view, view); if (view._childViews) { childViews.push.apply(childViews, view._childViews); } } } }, triggerRecursively: function(eventName) { var childViews = [this], currentViews, view; while (childViews.length) { currentViews = childViews.slice(); childViews = []; for (var i=0, l=currentViews.length; i<l; i++) { view = currentViews[i]; if (view.trigger) { view.trigger(eventName); } if (view._childViews) { childViews.push.apply(childViews, view._childViews); } } } }, /** Destroys any existing element along with the element for any child views as well. If the view does not currently have a element, then this method will do nothing. If you implement `willDestroyElement()` on your view, then this method will be invoked on your view before your element is destroyed to give you a chance to clean up any event handlers, etc. If you write a `willDestroyElement()` handler, you can assume that your `didInsertElement()` handler was called earlier for the same element. Normally you will not call or override this method yourself, but you may want to implement the above callbacks when it is run. @method destroyElement @return {Ember.View} receiver */ destroyElement: function() { return this.currentState.destroyElement(this); }, /** Called when the element of the view is going to be destroyed. Override this function to do any teardown that requires an element, like removing event listeners. @event willDestroyElement */ willDestroyElement: function() {}, /** @private Triggers the `willDestroyElement` event (which invokes the `willDestroyElement()` method if it exists) on this view and all child views. Before triggering `willDestroyElement`, it first triggers the `willClearRender` event recursively. @method _notifyWillDestroyElement */ _notifyWillDestroyElement: function() { this.triggerRecursively('willClearRender'); this.triggerRecursively('willDestroyElement'); }, _elementWillChange: Ember.beforeObserver(function() { this.forEachChildView(function(view) { Ember.propertyWillChange(view, 'element'); }); }, 'element'), /** @private If this view's element changes, we need to invalidate the caches of our child views so that we do not retain references to DOM elements that are no longer needed. @method _elementDidChange */ _elementDidChange: Ember.observer(function() { this.forEachChildView(function(view) { Ember.propertyDidChange(view, 'element'); }); }, 'element'), /** Called when the parentView property has changed. @event parentViewDidChange */ parentViewDidChange: Ember.K, instrumentName: 'view', instrumentDetails: function(hash) { hash.template = get(this, 'templateName'); this._super(hash); }, _renderToBuffer: function(parentBuffer, bufferOperation) { this.lengthBeforeRender = this._childViews.length; var buffer = this._super(parentBuffer, bufferOperation); this.lengthAfterRender = this._childViews.length; return buffer; }, renderToBufferIfNeeded: function () { return this.currentState.renderToBufferIfNeeded(this, this); }, beforeRender: function(buffer) { this.applyAttributesToBuffer(buffer); buffer.pushOpeningTag(); }, afterRender: function(buffer) { buffer.pushClosingTag(); }, applyAttributesToBuffer: function(buffer) { // Creates observers for all registered class name and attribute bindings, // then adds them to the element. var classNameBindings = get(this, 'classNameBindings'); if (classNameBindings.length) { this._applyClassNameBindings(classNameBindings); } // Pass the render buffer so the method can apply attributes directly. // This isn't needed for class name bindings because they use the // existing classNames infrastructure. var attributeBindings = get(this, 'attributeBindings'); if (attributeBindings.length) { this._applyAttributeBindings(buffer, attributeBindings); } buffer.setClasses(this.classNames); buffer.id(this.elementId); var role = get(this, 'ariaRole'); if (role) { buffer.attr('role', role); } if (get(this, 'isVisible') === false) { buffer.style('display', 'none'); } }, // .......................................................... // STANDARD RENDER PROPERTIES // /** Tag name for the view's outer element. The tag name is only used when an element is first created. If you change the `tagName` for an element, you must destroy and recreate the view element. By default, the render buffer will use a `<div>` tag for views. @property tagName @type String @default null */ // We leave this null by default so we can tell the difference between // the default case and a user-specified tag. tagName: null, /** The WAI-ARIA role of the control represented by this view. For example, a button may have a role of type 'button', or a pane may have a role of type 'alertdialog'. This property is used by assistive software to help visually challenged users navigate rich web applications. The full list of valid WAI-ARIA roles is available at: http://www.w3.org/TR/wai-aria/roles#roles_categorization @property ariaRole @type String @default null */ ariaRole: null, /** Standard CSS class names to apply to the view's outer element. This property automatically inherits any class names defined by the view's superclasses as well. @property classNames @type Array @default ['ember-view'] */ classNames: ['ember-view'], /** A list of properties of the view to apply as class names. If the property is a string value, the value of that string will be applied as a class name. ```javascript // Applies the 'high' class to the view element Ember.View.create({ classNameBindings: ['priority'] priority: 'high' }); ``` If the value of the property is a Boolean, the name of that property is added as a dasherized class name. ```javascript // Applies the 'is-urgent' class to the view element Ember.View.create({ classNameBindings: ['isUrgent'] isUrgent: true }); ``` If you would prefer to use a custom value instead of the dasherized property name, you can pass a binding like this: ```javascript // Applies the 'urgent' class to the view element Ember.View.create({ classNameBindings: ['isUrgent:urgent'] isUrgent: true }); ``` This list of properties is inherited from the view's superclasses as well. @property classNameBindings @type Array @default [] */ classNameBindings: [], /** A list of properties of the view to apply as attributes. If the property is a string value, the value of that string will be applied as the attribute. ```javascript // Applies the type attribute to the element // with the value "button", like <div type="button"> Ember.View.create({ attributeBindings: ['type'], type: 'button' }); ``` If the value of the property is a Boolean, the name of that property is added as an attribute. ```javascript // Renders something like <div enabled="enabled"> Ember.View.create({ attributeBindings: ['enabled'], enabled: true }); ``` @property attributeBindings */ attributeBindings: [], // ....................................................... // CORE DISPLAY METHODS // /** @private Setup a view, but do not finish waking it up. - configure `childViews` - register the view with the global views hash, which is used for event dispatch @method init */ init: function() { this.elementId = this.elementId || guidFor(this); this._super(); // setup child views. be sure to clone the child views array first this._childViews = this._childViews.slice(); this.classNameBindings = Ember.A(this.classNameBindings.slice()); this.classNames = Ember.A(this.classNames.slice()); var viewController = get(this, 'viewController'); if (viewController) { viewController = get(viewController); if (viewController) { set(viewController, 'view', this); } } }, appendChild: function(view, options) { return this.currentState.appendChild(this, view, options); }, /** Removes the child view from the parent view. @method removeChild @param {Ember.View} view @return {Ember.View} receiver */ removeChild: function(view) { // If we're destroying, the entire subtree will be // freed, and the DOM will be handled separately, // so no need to mess with childViews. if (this.isDestroying) { return; } // update parent node set(view, '_parentView', null); // remove view from childViews array. var childViews = this._childViews; Ember.EnumerableUtils.removeObject(childViews, view); this.propertyDidChange('childViews'); // HUH?! what happened to will change? return this; }, /** Removes all children from the `parentView`. @method removeAllChildren @return {Ember.View} receiver */ removeAllChildren: function() { return this.mutateChildViews(function(view) { this.removeChild(view); }); }, destroyAllChildren: function() { return this.mutateChildViews(function(view) { view.destroy(); }); }, /** Removes the view from its `parentView`, if one is found. Otherwise does nothing. @method removeFromParent @return {Ember.View} receiver */ removeFromParent: function() { var parent = this._parentView; // Remove DOM element from parent this.remove(); if (parent) { parent.removeChild(this); } return this; }, /** You must call `destroy` on a view to destroy the view (and all of its child views). This will remove the view from any parent node, then make sure that the DOM element managed by the view can be released by the memory manager. @method willDestroy */ willDestroy: function() { // calling this._super() will nuke computed properties and observers, // so collect any information we need before calling super. var childViews = this._childViews, parent = this._parentView, childLen, i; // destroy the element -- this will avoid each child view destroying // the element over and over again... if (!this.removedFromDOM) { this.destroyElement(); } childLen = childViews.length; for (i=childLen-1; i>=0; i--) { childViews[i].removedFromDOM = true; } // remove from non-virtual parent view if viewName was specified if (this.viewName) { var nonVirtualParentView = get(this, 'parentView'); if (nonVirtualParentView) { set(nonVirtualParentView, this.viewName, null); } } // remove from parent if found. Don't call removeFromParent, // as removeFromParent will try to remove the element from // the DOM again. if (parent) { parent.removeChild(this); } this.transitionTo('destroyed'); childLen = childViews.length; for (i=childLen-1; i>=0; i--) { childViews[i].destroy(); } // next remove view from global hash if (!this.isVirtual) delete Ember.View.views[get(this, 'elementId')]; }, /** Instantiates a view to be added to the childViews array during view initialization. You generally will not call this method directly unless you are overriding `createChildViews()`. Note that this method will automatically configure the correct settings on the new view instance to act as a child of the parent. @method createChildView @param {Class} viewClass @param {Hash} [attrs] Attributes to add @return {Ember.View} new instance */ createChildView: function(view, attrs) { if (view.isView && view._parentView === this) { return view; } if (Ember.CoreView.detect(view)) { attrs = attrs || {}; attrs._parentView = this; attrs.templateData = attrs.templateData || get(this, 'templateData'); view = view.create(attrs); // don't set the property on a virtual view, as they are invisible to // consumers of the view API if (view.viewName) { set(get(this, 'concreteView'), view.viewName, view); } } else { if (attrs) { view.setProperties(attrs); } if (!get(view, 'templateData')) { set(view, 'templateData', get(this, 'templateData')); } set(view, '_parentView', this); } return view; }, becameVisible: Ember.K, becameHidden: Ember.K, /** @private When the view's `isVisible` property changes, toggle the visibility element of the actual DOM element. @method _isVisibleDidChange */ _isVisibleDidChange: Ember.observer(function() { var $el = this.$(); if (!$el) { return; } var isVisible = get(this, 'isVisible'); $el.toggle(isVisible); if (this._isAncestorHidden()) { return; } if (isVisible) { this._notifyBecameVisible(); } else { this._notifyBecameHidden(); } }, 'isVisible'), _notifyBecameVisible: function() { this.trigger('becameVisible'); this.forEachChildView(function(view) { var isVisible = get(view, 'isVisible'); if (isVisible || isVisible === null) { view._notifyBecameVisible(); } }); }, _notifyBecameHidden: function() { this.trigger('becameHidden'); this.forEachChildView(function(view) { var isVisible = get(view, 'isVisible'); if (isVisible || isVisible === null) { view._notifyBecameHidden(); } }); }, _isAncestorHidden: function() { var parent = get(this, 'parentView'); while (parent) { if (get(parent, 'isVisible') === false) { return true; } parent = get(parent, 'parentView'); } return false; }, clearBuffer: function() { this.invokeRecursively(function(view) { view.buffer = null; }); }, transitionTo: function(state, children) { this.currentState = this.states[state]; this.state = state; if (children !== false) { this.forEachChildView(function(view) { view.transitionTo(state); }); } }, // ....................................................... // EVENT HANDLING // /** @private Handle events from `Ember.EventDispatcher` @method handleEvent @param eventName {String} @param evt {Event} */ handleEvent: function(eventName, evt) { return this.currentState.handleEvent(this, eventName, evt); }, registerObserver: function(root, path, target, observer) { Ember.addObserver(root, path, target, observer); this.one('willClearRender', function() { Ember.removeObserver(root, path, target, observer); }); } }); /* Describe how the specified actions should behave in the various states that a view can exist in. Possible states: * preRender: when a view is first instantiated, and after its element was destroyed, it is in the preRender state * inBuffer: once a view has been rendered, but before it has been inserted into the DOM, it is in the inBuffer state * inDOM: once a view has been inserted into the DOM it is in the inDOM state. A view spends the vast majority of its existence in this state. * destroyed: once a view has been destroyed (using the destroy method), it is in this state. No further actions can be invoked on a destroyed view. */ // in the destroyed state, everything is illegal // before rendering has begun, all legal manipulations are noops. // inside the buffer, legal manipulations are done on the buffer // once the view has been inserted into the DOM, legal manipulations // are done on the DOM element. var DOMManager = { prepend: function(view, html) { view.$().prepend(html); }, after: function(view, html) { view.$().after(html); }, html: function(view, html) { view.$().html(html); }, replace: function(view) { var element = get(view, 'element'); set(view, 'element', null); view._insertElementLater(function() { Ember.$(element).replaceWith(get(view, 'element')); }); }, remove: function(view) { view.$().remove(); }, empty: function(view) { view.$().empty(); } }; Ember.View.reopen({ domManager: DOMManager }); Ember.View.reopenClass({ /** @private Parse a path and return an object which holds the parsed properties. For example a path like "content.isEnabled:enabled:disabled" wil return the following object: ```javascript { path: "content.isEnabled", className: "enabled", falsyClassName: "disabled", classNames: ":enabled:disabled" } ``` @method _parsePropertyPath @static */ _parsePropertyPath: function(path) { var split = path.split(':'), propertyPath = split[0], classNames = "", className, falsyClassName; // check if the property is defined as prop:class or prop:trueClass:falseClass if (split.length > 1) { className = split[1]; if (split.length === 3) { falsyClassName = split[2]; } classNames = ':' + className; if (falsyClassName) { classNames += ":" + falsyClassName; } } return { path: propertyPath, classNames: classNames, className: (className === '') ? undefined : className, falsyClassName: falsyClassName }; }, /** @private Get the class name for a given value, based on the path, optional `className` and optional `falsyClassName`. - if a `className` or `falsyClassName` has been specified: - if the value is truthy and `className` has been specified, `className` is returned - if the value is falsy and `falsyClassName` has been specified, `falsyClassName` is returned - otherwise `null` is returned - if the value is `true`, the dasherized last part of the supplied path is returned - if the value is not `false`, `undefined` or `null`, the `value` is returned - if none of the above rules apply, `null` is returned @method _classStringForValue @param path @param val @param className @param falsyClassName @static */ _classStringForValue: function(path, val, className, falsyClassName) { // When using the colon syntax, evaluate the truthiness or falsiness // of the value to determine which className to return if (className || falsyClassName) { if (className && !!val) { return className; } else if (falsyClassName && !val) { return falsyClassName; } else { return null; } // If value is a Boolean and true, return the dasherized property // name. } else if (val === true) { // Normalize property path to be suitable for use // as a class name. For exaple, content.foo.barBaz // becomes bar-baz. var parts = path.split('.'); return Ember.String.dasherize(parts[parts.length-1]); // If the value is not false, undefined, or null, return the current // value of the property. } else if (val !== false && val !== undefined && val !== null) { return val; // Nothing to display. Return null so that the old class is removed // but no new class is added. } else { return null; } } }); /** Global views hash @property views @static @type Hash */ Ember.View.views = {}; // If someone overrides the child views computed property when // defining their class, we want to be able to process the user's // supplied childViews and then restore the original computed property // at view initialization time. This happens in Ember.ContainerView's init // method. Ember.View.childViewsProperty = childViewsProperty; Ember.View.applyAttributeBindings = function(elem, name, value) { if (name === 'value') { Ember.View.applyValueBinding(elem, value); } else { Ember.View.applyAttributeBinding(elem, name, value); } }; Ember.View.applyAttributeBinding = function(elem, name, value) { var type = Ember.typeOf(value); var currentValue = elem.attr(name); // if this changes, also change the logic in ember-handlebars/lib/helpers/binding.js if ( ( ( type === 'string' ) || ( type === 'number' && !isNaN(value) ) || ( type === 'boolean' && value ) ) && ( value !== currentValue ) ) { elem.attr(name, value); } else if (!value) { elem.removeAttr(name); } }; Ember.View.applyValueBinding = function(elem, value) { var type = Ember.typeOf(value); var currentValue = elem.val(); // if this changes, also change the logic in ember-handlebars/lib/helpers/binding.js if ( ( ( type === 'string' ) || ( type === 'number' && !isNaN(value) ) || ( type === 'boolean' && value ) ) && ( value !== currentValue ) ) { if (elem.caretPosition) { var caretPosition = elem.caretPosition(); elem.val(value); elem.setCaretPosition(caretPosition); } else { elem.val(value); } } else if (!value) { elem.val(''); } }; Ember.View.states = states; })(); (function() { /** @module ember @submodule ember-views */ var get = Ember.get, set = Ember.set; Ember.View.states._default = { // appendChild is only legal while rendering the buffer. appendChild: function() { throw "You can't use appendChild outside of the rendering process"; }, $: function() { return undefined; }, getElement: function() { return null; }, // Handle events from `Ember.EventDispatcher` handleEvent: function() { return true; // continue event propagation }, destroyElement: function(view) { set(view, 'element', null); if (view._scheduledInsert) { Ember.run.cancel(view._scheduledInsert); view._scheduledInsert = null; } return view; }, renderToBufferIfNeeded: function () { return false; }, rerender: Ember.K }; })(); (function() { /** @module ember @submodule ember-views */ var preRender = Ember.View.states.preRender = Ember.create(Ember.View.states._default); Ember.merge(preRender, { // a view leaves the preRender state once its element has been // created (createElement). insertElement: function(view, fn) { view.createElement(); view.triggerRecursively('willInsertElement'); // after createElement, the view will be in the hasElement state. fn.call(view); view.transitionTo('inDOM'); view.triggerRecursively('didInsertElement'); }, renderToBufferIfNeeded: function(view) { return view.renderToBuffer(); }, empty: Ember.K, setElement: function(view, value) { if (value !== null) { view.transitionTo('hasElement'); } return value; } }); })(); (function() { /** @module ember @submodule ember-views */ var get = Ember.get, set = Ember.set, meta = Ember.meta; var inBuffer = Ember.View.states.inBuffer = Ember.create(Ember.View.states._default); Ember.merge(inBuffer, { $: function(view, sel) { // if we don't have an element yet, someone calling this.$() is // trying to update an element that isn't in the DOM. Instead, // rerender the view to allow the render method to reflect the // changes. view.rerender(); return Ember.$(); }, // when a view is rendered in a buffer, rerendering it simply // replaces the existing buffer with a new one rerender: function(view) { throw new Ember.Error("Something you did caused a view to re-render after it rendered but before it was inserted into the DOM."); }, // when a view is rendered in a buffer, appending a child // view will render that view and append the resulting // buffer into its buffer. appendChild: function(view, childView, options) { var buffer = view.buffer; childView = view.createChildView(childView, options); view._childViews.push(childView); childView.renderToBuffer(buffer); view.propertyDidChange('childViews'); return childView; }, // when a view is rendered in a buffer, destroying the // element will simply destroy the buffer and put the // state back into the preRender state. destroyElement: function(view) { view.clearBuffer(); view._notifyWillDestroyElement(); view.transitionTo('preRender'); return view; }, empty: function() { }, renderToBufferIfNeeded: function (view) { return view.buffer; }, // It should be impossible for a rendered view to be scheduled for // insertion. insertElement: function() { throw "You can't insert an element that has already been rendered"; }, setElement: function(view, value) { if (value === null) { view.transitionTo('preRender'); } else { view.clearBuffer(); view.transitionTo('hasElement'); } return value; } }); })(); (function() { /** @module ember @submodule ember-views */ var get = Ember.get, set = Ember.set, meta = Ember.meta; var hasElement = Ember.View.states.hasElement = Ember.create(Ember.View.states._default); Ember.merge(hasElement, { $: function(view, sel) { var elem = get(view, 'element'); return sel ? Ember.$(sel, elem) : Ember.$(elem); }, getElement: function(view) { var parent = get(view, 'parentView'); if (parent) { parent = get(parent, 'element'); } if (parent) { return view.findElementInParentElement(parent); } return Ember.$("#" + get(view, 'elementId'))[0]; }, setElement: function(view, value) { if (value === null) { view.transitionTo('preRender'); } else { throw "You cannot set an element to a non-null value when the element is already in the DOM."; } return value; }, // once the view has been inserted into the DOM, rerendering is // deferred to allow bindings to synchronize. rerender: function(view) { view.triggerRecursively('willClearRender'); view.clearRenderedChildren(); view.domManager.replace(view); return view; }, // once the view is already in the DOM, destroying it removes it // from the DOM, nukes its element, and puts it back into the // preRender state if inDOM. destroyElement: function(view) { view._notifyWillDestroyElement(); view.domManager.remove(view); set(view, 'element', null); if (view._scheduledInsert) { Ember.run.cancel(view._scheduledInsert); view._scheduledInsert = null; } return view; }, empty: function(view) { var _childViews = view._childViews, len, idx; if (_childViews) { len = _childViews.length; for (idx = 0; idx < len; idx++) { _childViews[idx]._notifyWillDestroyElement(); } } view.domManager.empty(view); }, // Handle events from `Ember.EventDispatcher` handleEvent: function(view, eventName, evt) { if (view.has(eventName)) { // Handler should be able to re-dispatch events, so we don't // preventDefault or stopPropagation. return view.trigger(eventName, evt); } else { return true; // continue event propagation } } }); var inDOM = Ember.View.states.inDOM = Ember.create(hasElement); Ember.merge(inDOM, { insertElement: function(view, fn) { throw "You can't insert an element into the DOM that has already been inserted"; } }); })(); (function() { /** @module ember @submodule ember-views */ var destroyedError = "You can't call %@ on a destroyed view", fmt = Ember.String.fmt; var destroyed = Ember.View.states.destroyed = Ember.create(Ember.View.states._default); Ember.merge(destroyed, { appendChild: function() { throw fmt(destroyedError, ['appendChild']); }, rerender: function() { throw fmt(destroyedError, ['rerender']); }, destroyElement: function() { throw fmt(destroyedError, ['destroyElement']); }, empty: function() { throw fmt(destroyedError, ['empty']); }, setElement: function() { throw fmt(destroyedError, ["set('element', ...)"]); }, renderToBufferIfNeeded: function() { throw fmt(destroyedError, ["renderToBufferIfNeeded"]); }, // Since element insertion is scheduled, don't do anything if // the view has been destroyed between scheduling and execution insertElement: Ember.K }); })(); (function() { Ember.View.cloneStates = function(from) { var into = {}; into._default = {}; into.preRender = Ember.create(into._default); into.destroyed = Ember.create(into._default); into.inBuffer = Ember.create(into._default); into.hasElement = Ember.create(into._default); into.inDOM = Ember.create(into.hasElement); var viewState; for (var stateName in from) { if (!from.hasOwnProperty(stateName)) { continue; } Ember.merge(into[stateName], from[stateName]); } return into; }; })(); (function() { var states = Ember.View.cloneStates(Ember.View.states); /** @module ember @submodule ember-views */ var get = Ember.get, set = Ember.set, meta = Ember.meta; var forEach = Ember.EnumerableUtils.forEach; /** A `ContainerView` is an `Ember.View` subclass that implements `Ember.MutableArray` allowing programatic management of its child views. ## Setting Initial Child Views The initial array of child views can be set in one of two ways. You can provide a `childViews` property at creation time that contains instance of `Ember.View`: ```javascript aContainer = Ember.ContainerView.create({ childViews: [Ember.View.create(), Ember.View.create()] }); ``` You can also provide a list of property names whose values are instances of `Ember.View`: ```javascript aContainer = Ember.ContainerView.create({ childViews: ['aView', 'bView', 'cView'], aView: Ember.View.create(), bView: Ember.View.create(), cView: Ember.View.create() }); ``` The two strategies can be combined: ```javascript aContainer = Ember.ContainerView.create({ childViews: ['aView', Ember.View.create()], aView: Ember.View.create() }); ``` Each child view's rendering will be inserted into the container's rendered HTML in the same order as its position in the `childViews` property. ## Adding and Removing Child Views The container view implements `Ember.MutableArray` allowing programatic management of its child views. To remove a view, pass that view into a `removeObject` call on the container view. Given an empty `<body>` the following code ```javascript aContainer = Ember.ContainerView.create({ classNames: ['the-container'], childViews: ['aView', 'bView'], aView: Ember.View.create({ template: Ember.Handlebars.compile("A") }), bView: Ember.View.create({ template: Ember.Handlebars.compile("B") }) }); aContainer.appendTo('body'); ``` Results in the HTML ```html <div class="ember-view the-container"> <div class="ember-view">A</div> <div class="ember-view">B</div> </div> ``` Removing a view ```javascript aContainer.toArray(); // [aContainer.aView, aContainer.bView] aContainer.removeObject(aContainer.get('bView')); aContainer.toArray(); // [aContainer.aView] ``` Will result in the following HTML ```html <div class="ember-view the-container"> <div class="ember-view">A</div> </div> ``` Similarly, adding a child view is accomplished by adding `Ember.View` instances to the container view. Given an empty `<body>` the following code ```javascript aContainer = Ember.ContainerView.create({ classNames: ['the-container'], childViews: ['aView', 'bView'], aView: Ember.View.create({ template: Ember.Handlebars.compile("A") }), bView: Ember.View.create({ template: Ember.Handlebars.compile("B") }) }); aContainer.appendTo('body'); ``` Results in the HTML ```html <div class="ember-view the-container"> <div class="ember-view">A</div> <div class="ember-view">B</div> </div> ``` Adding a view ```javascript AnotherViewClass = Ember.View.extend({ template: Ember.Handlebars.compile("Another view") }); aContainer.toArray(); // [aContainer.aView, aContainer.bView] aContainer.pushObject(AnotherViewClass.create()); aContainer.toArray(); // [aContainer.aView, aContainer.bView, <AnotherViewClass instance>] ``` Will result in the following HTML ```html <div class="ember-view the-container"> <div class="ember-view">A</div> <div class="ember-view">B</div> <div class="ember-view">Another view</div> </div> ``` ## Templates and Layout A `template`, `templateName`, `defaultTemplate`, `layout`, `layoutName` or `defaultLayout` property on a container view will not result in the template or layout being rendered. The HTML contents of a `Ember.ContainerView`'s DOM representation will only be the rendered HTML of its child views. ## Binding a View to Display If you would like to display a single view in your ContainerView, you can set its `currentView` property. When the `currentView` property is set to a view instance, it will be added to the ContainerView. If the `currentView` property is later changed to a different view, the new view will replace the old view. If `currentView` is set to `null`, the last `currentView` will be removed. This functionality is useful for cases where you want to bind the display of a ContainerView to a controller or state manager. For example, you can bind the `currentView` of a container to a controller like this: ```javascript App.appController = Ember.Object.create({ view: Ember.View.create({ templateName: 'person_template' }) }); ``` ```handlebars {{view Ember.ContainerView currentViewBinding="App.appController.view"}} ``` @class ContainerView @namespace Ember @extends Ember.View */ Ember.ContainerView = Ember.View.extend(Ember.MutableArray, { states: states, init: function() { this._super(); var childViews = get(this, 'childViews'); // redefine view's childViews property that was obliterated Ember.defineProperty(this, 'childViews', Ember.View.childViewsProperty); var _childViews = this._childViews; forEach(childViews, function(viewName, idx) { var view; if ('string' === typeof viewName) { view = get(this, viewName); view = this.createChildView(view); set(this, viewName, view); } else { view = this.createChildView(viewName); } _childViews[idx] = view; }, this); var currentView = get(this, 'currentView'); if (currentView) { _childViews.push(this.createChildView(currentView)); } }, replace: function(idx, removedCount, addedViews) { var addedCount = addedViews ? get(addedViews, 'length') : 0; this.arrayContentWillChange(idx, removedCount, addedCount); this.childViewsWillChange(this._childViews, idx, removedCount); if (addedCount === 0) { this._childViews.splice(idx, removedCount) ; } else { var args = [idx, removedCount].concat(addedViews); this._childViews.splice.apply(this._childViews, args); } this.arrayContentDidChange(idx, removedCount, addedCount); this.childViewsDidChange(this._childViews, idx, removedCount, addedCount); return this; }, objectAt: function(idx) { return this._childViews[idx]; }, length: Ember.computed(function () { return this._childViews.length; }), /** @private Instructs each child view to render to the passed render buffer. @method render @param {Ember.RenderBuffer} buffer the buffer to render to */ render: function(buffer) { this.forEachChildView(function(view) { view.renderToBuffer(buffer); }); }, instrumentName: 'render.container', /** @private When a child view is removed, destroy its element so that it is removed from the DOM. The array observer that triggers this action is set up in the `renderToBuffer` method. @method childViewsWillChange @param {Ember.Array} views the child views array before mutation @param {Number} start the start position of the mutation @param {Number} removed the number of child views removed **/ childViewsWillChange: function(views, start, removed) { this.propertyWillChange('childViews'); if (removed > 0) { var changedViews = views.slice(start, start+removed); // transition to preRender before clearing parentView this.currentState.childViewsWillChange(this, views, start, removed); this.initializeViews(changedViews, null, null); } }, removeChild: function(child) { this.removeObject(child); return this; }, /** @private When a child view is added, make sure the DOM gets updated appropriately. If the view has already rendered an element, we tell the child view to create an element and insert it into the DOM. If the enclosing container view has already written to a buffer, but not yet converted that buffer into an element, we insert the string representation of the child into the appropriate place in the buffer. @method childViewsDidChange @param {Ember.Array} views the array of child views afte the mutation has occurred @param {Number} start the start position of the mutation @param {Number} removed the number of child views removed @param {Number} the number of child views added */ childViewsDidChange: function(views, start, removed, added) { if (added > 0) { var changedViews = views.slice(start, start+added); this.initializeViews(changedViews, this, get(this, 'templateData')); this.currentState.childViewsDidChange(this, views, start, added); } this.propertyDidChange('childViews'); }, initializeViews: function(views, parentView, templateData) { forEach(views, function(view) { set(view, '_parentView', parentView); if (!get(view, 'templateData')) { set(view, 'templateData', templateData); } }); }, currentView: null, _currentViewWillChange: Ember.beforeObserver(function() { var currentView = get(this, 'currentView'); if (currentView) { currentView.destroy(); } }, 'currentView'), _currentViewDidChange: Ember.observer(function() { var currentView = get(this, 'currentView'); if (currentView) { this.pushObject(currentView); } }, 'currentView'), _ensureChildrenAreInDOM: function () { this.currentState.ensureChildrenAreInDOM(this); } }); Ember.merge(states._default, { childViewsWillChange: Ember.K, childViewsDidChange: Ember.K, ensureChildrenAreInDOM: Ember.K }); Ember.merge(states.inBuffer, { childViewsDidChange: function(parentView, views, start, added) { throw new Error('You cannot modify child views while in the inBuffer state'); } }); Ember.merge(states.hasElement, { childViewsWillChange: function(view, views, start, removed) { for (var i=start; i<start+removed; i++) { views[i].remove(); } }, childViewsDidChange: function(view, views, start, added) { Ember.run.scheduleOnce('render', view, '_ensureChildrenAreInDOM'); }, ensureChildrenAreInDOM: function(view) { var childViews = view._childViews, i, len, childView, previous, buffer; for (i = 0, len = childViews.length; i < len; i++) { childView = childViews[i]; buffer = childView.renderToBufferIfNeeded(); if (buffer) { childView.triggerRecursively('willInsertElement'); if (previous) { previous.domManager.after(previous, buffer.string()); } else { view.domManager.prepend(view, buffer.string()); } childView.transitionTo('inDOM'); childView.propertyDidChange('element'); childView.triggerRecursively('didInsertElement'); } previous = childView; } } }); })(); (function() { /** @module ember @submodule ember-views */ var get = Ember.get, set = Ember.set, fmt = Ember.String.fmt; /** `Ember.CollectionView` is an `Ember.View` descendent responsible for managing a collection (an array or array-like object) by maintaing a child view object and associated DOM representation for each item in the array and ensuring that child views and their associated rendered HTML are updated when items in the array are added, removed, or replaced. ## Setting content The managed collection of objects is referenced as the `Ember.CollectionView` instance's `content` property. ```javascript someItemsView = Ember.CollectionView.create({ content: ['A', 'B','C'] }) ``` The view for each item in the collection will have its `content` property set to the item. ## Specifying itemViewClass By default the view class for each item in the managed collection will be an instance of `Ember.View`. You can supply a different class by setting the `CollectionView`'s `itemViewClass` property. Given an empty `<body>` and the following code: ```javascript someItemsView = Ember.CollectionView.create({ classNames: ['a-collection'], content: ['A','B','C'], itemViewClass: Ember.View.extend({ template: Ember.Handlebars.compile("the letter: {{view.content}}") }) }); someItemsView.appendTo('body'); ``` Will result in the following HTML structure ```html <div class="ember-view a-collection"> <div class="ember-view">the letter: A</div> <div class="ember-view">the letter: B</div> <div class="ember-view">the letter: C</div> </div> ``` ## Automatic matching of parent/child tagNames Setting the `tagName` property of a `CollectionView` to any of "ul", "ol", "table", "thead", "tbody", "tfoot", "tr", or "select" will result in the item views receiving an appropriately matched `tagName` property. Given an empty `<body>` and the following code: ```javascript anUndorderedListView = Ember.CollectionView.create({ tagName: 'ul', content: ['A','B','C'], itemViewClass: Ember.View.extend({ template: Ember.Handlebars.compile("the letter: {{view.content}}") }) }); anUndorderedListView.appendTo('body'); ``` Will result in the following HTML structure ```html <ul class="ember-view a-collection"> <li class="ember-view">the letter: A</li> <li class="ember-view">the letter: B</li> <li class="ember-view">the letter: C</li> </ul> ``` Additional `tagName` pairs can be provided by adding to `Ember.CollectionView.CONTAINER_MAP ` ```javascript Ember.CollectionView.CONTAINER_MAP['article'] = 'section' ``` ## Programatic creation of child views For cases where additional customization beyond the use of a single `itemViewClass` or `tagName` matching is required CollectionView's `createChildView` method can be overidden: ```javascript CustomCollectionView = Ember.CollectionView.extend({ createChildView: function(viewClass, attrs) { if (attrs.content.kind == 'album') { viewClass = App.AlbumView; } else { viewClass = App.SongView; } this._super(viewClass, attrs); } }); ``` ## Empty View You can provide an `Ember.View` subclass to the `Ember.CollectionView` instance as its `emptyView` property. If the `content` property of a `CollectionView` is set to `null` or an empty array, an instance of this view will be the `CollectionView`s only child. ```javascript aListWithNothing = Ember.CollectionView.create({ classNames: ['nothing'] content: null, emptyView: Ember.View.extend({ template: Ember.Handlebars.compile("The collection is empty") }) }); aListWithNothing.appendTo('body'); ``` Will result in the following HTML structure ```html <div class="ember-view nothing"> <div class="ember-view"> The collection is empty </div> </div> ``` ## Adding and Removing items The `childViews` property of a `CollectionView` should not be directly manipulated. Instead, add, remove, replace items from its `content` property. This will trigger appropriate changes to its rendered HTML. ## Use in templates via the `{{collection}}` `Ember.Handlebars` helper `Ember.Handlebars` provides a helper specifically for adding `CollectionView`s to templates. See `Ember.Handlebars.collection` for more details @class CollectionView @namespace Ember @extends Ember.ContainerView @since Ember 0.9 */ Ember.CollectionView = Ember.ContainerView.extend( /** @scope Ember.CollectionView.prototype */ { /** A list of items to be displayed by the `Ember.CollectionView`. @property content @type Ember.Array @default null */ content: null, /** @private This provides metadata about what kind of empty view class this collection would like if it is being instantiated from another system (like Handlebars) @property emptyViewClass */ emptyViewClass: Ember.View, /** An optional view to display if content is set to an empty array. @property emptyView @type Ember.View @default null */ emptyView: null, /** @property itemViewClass @type Ember.View @default Ember.View */ itemViewClass: Ember.View, init: function() { var ret = this._super(); this._contentDidChange(); return ret; }, _contentWillChange: Ember.beforeObserver(function() { var content = this.get('content'); if (content) { content.removeArrayObserver(this); } var len = content ? get(content, 'length') : 0; this.arrayWillChange(content, 0, len); }, 'content'), /** @private Check to make sure that the content has changed, and if so, update the children directly. This is always scheduled asynchronously, to allow the element to be created before bindings have synchronized and vice versa. @method _contentDidChange */ _contentDidChange: Ember.observer(function() { var content = get(this, 'content'); if (content) { content.addArrayObserver(this); } var len = content ? get(content, 'length') : 0; this.arrayDidChange(content, 0, null, len); }, 'content'), willDestroy: function() { var content = get(this, 'content'); if (content) { content.removeArrayObserver(this); } this._super(); if (this._createdEmptyView) { this._createdEmptyView.destroy(); } }, arrayWillChange: function(content, start, removedCount) { // If the contents were empty before and this template collection has an // empty view remove it now. var emptyView = get(this, 'emptyView'); if (emptyView && emptyView instanceof Ember.View) { emptyView.removeFromParent(); } // Loop through child views that correspond with the removed items. // Note that we loop from the end of the array to the beginning because // we are mutating it as we go. var childViews = this._childViews, childView, idx, len; len = this._childViews.length; var removingAll = removedCount === len; if (removingAll) { this.currentState.empty(this); } for (idx = start + removedCount - 1; idx >= start; idx--) { childView = childViews[idx]; if (removingAll) { childView.removedFromDOM = true; } childView.destroy(); } }, /** Called when a mutation to the underlying content array occurs. This method will replay that mutation against the views that compose the `Ember.CollectionView`, ensuring that the view reflects the model. This array observer is added in `contentDidChange`. @method arrayDidChange @param {Array} addedObjects the objects that were added to the content @param {Array} removedObjects the objects that were removed from the content @param {Number} changeIndex the index at which the changes occurred */ arrayDidChange: function(content, start, removed, added) { var itemViewClass = get(this, 'itemViewClass'), addedViews = [], view, item, idx, len, itemTagName; if ('string' === typeof itemViewClass) { itemViewClass = get(itemViewClass); } len = content ? get(content, 'length') : 0; if (len) { for (idx = start; idx < start+added; idx++) { item = content.objectAt(idx); view = this.createChildView(itemViewClass, { content: item, contentIndex: idx }); addedViews.push(view); } } else { var emptyView = get(this, 'emptyView'); if (!emptyView) { return; } var isClass = Ember.CoreView.detect(emptyView); emptyView = this.createChildView(emptyView); addedViews.push(emptyView); set(this, 'emptyView', emptyView); if (isClass) { this._createdEmptyView = emptyView; } } this.replace(start, 0, addedViews); }, createChildView: function(view, attrs) { view = this._super(view, attrs); var itemTagName = get(view, 'tagName'); var tagName = (itemTagName === null || itemTagName === undefined) ? Ember.CollectionView.CONTAINER_MAP[get(this, 'tagName')] : itemTagName; set(view, 'tagName', tagName); return view; } }); /** A map of parent tags to their default child tags. You can add additional parent tags if you want collection views that use a particular parent tag to default to a child tag. @property CONTAINER_MAP @type Hash @static @final */ Ember.CollectionView.CONTAINER_MAP = { ul: 'li', ol: 'li', table: 'tr', thead: 'tr', tbody: 'tr', tfoot: 'tr', tr: 'td', select: 'option' }; })(); (function() { })(); (function() { /*globals jQuery*/ /** Ember Views @module ember @submodule ember-views @requires ember-runtime @main ember-views */ })(); (function() { define("metamorph", [], function() { "use strict"; // ========================================================================== // Project: metamorph // Copyright: ©2011 My Company Inc. All rights reserved. // ========================================================================== var K = function(){}, guid = 0, document = window.document, // Feature-detect the W3C range API, the extended check is for IE9 which only partially supports ranges supportsRange = ('createRange' in document) && (typeof Range !== 'undefined') && Range.prototype.createContextualFragment, // Internet Explorer prior to 9 does not allow setting innerHTML if the first element // is a "zero-scope" element. This problem can be worked around by making // the first node an invisible text node. We, like Modernizr, use &shy; needsShy = (function(){ var testEl = document.createElement('div'); testEl.innerHTML = "<div></div>"; testEl.firstChild.innerHTML = "<script></script>"; return testEl.firstChild.innerHTML === ''; })(), // IE 8 (and likely earlier) likes to move whitespace preceeding // a script tag to appear after it. This means that we can // accidentally remove whitespace when updating a morph. movesWhitespace = (function() { var testEl = document.createElement('div'); testEl.innerHTML = "Test: <script type='text/x-placeholder'></script>Value"; return testEl.childNodes[0].nodeValue === 'Test:' && testEl.childNodes[2].nodeValue === ' Value'; })(); // Constructor that supports either Metamorph('foo') or new // Metamorph('foo'); // // Takes a string of HTML as the argument. var Metamorph = function(html) { var self; if (this instanceof Metamorph) { self = this; } else { self = new K(); } self.innerHTML = html; var myGuid = 'metamorph-'+(guid++); self.start = myGuid + '-start'; self.end = myGuid + '-end'; return self; }; K.prototype = Metamorph.prototype; var rangeFor, htmlFunc, removeFunc, outerHTMLFunc, appendToFunc, afterFunc, prependFunc, startTagFunc, endTagFunc; outerHTMLFunc = function() { return this.startTag() + this.innerHTML + this.endTag(); }; startTagFunc = function() { /* * We replace chevron by its hex code in order to prevent escaping problems. * Check this thread for more explaination: * http://stackoverflow.com/questions/8231048/why-use-x3c-instead-of-when-generating-html-from-javascript */ return "<script id='" + this.start + "' type='text/x-placeholder'>\x3C/script>"; }; endTagFunc = function() { /* * We replace chevron by its hex code in order to prevent escaping problems. * Check this thread for more explaination: * http://stackoverflow.com/questions/8231048/why-use-x3c-instead-of-when-generating-html-from-javascript */ return "<script id='" + this.end + "' type='text/x-placeholder'>\x3C/script>"; }; // If we have the W3C range API, this process is relatively straight forward. if (supportsRange) { // Get a range for the current morph. Optionally include the starting and // ending placeholders. rangeFor = function(morph, outerToo) { var range = document.createRange(); var before = document.getElementById(morph.start); var after = document.getElementById(morph.end); if (outerToo) { range.setStartBefore(before); range.setEndAfter(after); } else { range.setStartAfter(before); range.setEndBefore(after); } return range; }; htmlFunc = function(html, outerToo) { // get a range for the current metamorph object var range = rangeFor(this, outerToo); // delete the contents of the range, which will be the // nodes between the starting and ending placeholder. range.deleteContents(); // create a new document fragment for the HTML var fragment = range.createContextualFragment(html); // insert the fragment into the range range.insertNode(fragment); }; removeFunc = function() { // get a range for the current metamorph object including // the starting and ending placeholders. var range = rangeFor(this, true); // delete the entire range. range.deleteContents(); }; appendToFunc = function(node) { var range = document.createRange(); range.setStart(node); range.collapse(false); var frag = range.createContextualFragment(this.outerHTML()); node.appendChild(frag); }; afterFunc = function(html) { var range = document.createRange(); var after = document.getElementById(this.end); range.setStartAfter(after); range.setEndAfter(after); var fragment = range.createContextualFragment(html); range.insertNode(fragment); }; prependFunc = function(html) { var range = document.createRange(); var start = document.getElementById(this.start); range.setStartAfter(start); range.setEndAfter(start); var fragment = range.createContextualFragment(html); range.insertNode(fragment); }; } else { /** * This code is mostly taken from jQuery, with one exception. In jQuery's case, we * have some HTML and we need to figure out how to convert it into some nodes. * * In this case, jQuery needs to scan the HTML looking for an opening tag and use * that as the key for the wrap map. In our case, we know the parent node, and * can use its type as the key for the wrap map. **/ var wrapMap = { select: [ 1, "<select multiple='multiple'>", "</select>" ], fieldset: [ 1, "<fieldset>", "</fieldset>" ], table: [ 1, "<table>", "</table>" ], tbody: [ 2, "<table><tbody>", "</tbody></table>" ], tr: [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ], colgroup: [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ], map: [ 1, "<map>", "</map>" ], _default: [ 0, "", "" ] }; var findChildById = function(element, id) { if (element.getAttribute('id') === id) { return element; } var len = element.childNodes.length, idx, node, found; for (idx=0; idx<len; idx++) { node = element.childNodes[idx]; found = node.nodeType === 1 && findChildById(node, id); if (found) { return found; } } }; var setInnerHTML = function(element, html) { var matches = []; if (movesWhitespace) { // Right now we only check for script tags with ids with the // goal of targeting morphs. html = html.replace(/(\s+)(<script id='([^']+)')/g, function(match, spaces, tag, id) { matches.push([id, spaces]); return tag; }); } element.innerHTML = html; // If we have to do any whitespace adjustments do them now if (matches.length > 0) { var len = matches.length, idx; for (idx=0; idx<len; idx++) { var script = findChildById(element, matches[idx][0]), node = document.createTextNode(matches[idx][1]); script.parentNode.insertBefore(node, script); } } }; /** * Given a parent node and some HTML, generate a set of nodes. Return the first * node, which will allow us to traverse the rest using nextSibling. * * We need to do this because innerHTML in IE does not really parse the nodes. **/ var firstNodeFor = function(parentNode, html) { var arr = wrapMap[parentNode.tagName.toLowerCase()] || wrapMap._default; var depth = arr[0], start = arr[1], end = arr[2]; if (needsShy) { html = '&shy;'+html; } var element = document.createElement('div'); setInnerHTML(element, start + html + end); for (var i=0; i<=depth; i++) { element = element.firstChild; } // Look for &shy; to remove it. if (needsShy) { var shyElement = element; // Sometimes we get nameless elements with the shy inside while (shyElement.nodeType === 1 && !shyElement.nodeName) { shyElement = shyElement.firstChild; } // At this point it's the actual unicode character. if (shyElement.nodeType === 3 && shyElement.nodeValue.charAt(0) === "\u00AD") { shyElement.nodeValue = shyElement.nodeValue.slice(1); } } return element; }; /** * In some cases, Internet Explorer can create an anonymous node in * the hierarchy with no tagName. You can create this scenario via: * * div = document.createElement("div"); * div.innerHTML = "<table>&shy<script></script><tr><td>hi</td></tr></table>"; * div.firstChild.firstChild.tagName //=> "" * * If our script markers are inside such a node, we need to find that * node and use *it* as the marker. **/ var realNode = function(start) { while (start.parentNode.tagName === "") { start = start.parentNode; } return start; }; /** * When automatically adding a tbody, Internet Explorer inserts the * tbody immediately before the first <tr>. Other browsers create it * before the first node, no matter what. * * This means the the following code: * * div = document.createElement("div"); * div.innerHTML = "<table><script id='first'></script><tr><td>hi</td></tr><script id='last'></script></table> * * Generates the following DOM in IE: * * + div * + table * - script id='first' * + tbody * + tr * + td * - "hi" * - script id='last' * * Which means that the two script tags, even though they were * inserted at the same point in the hierarchy in the original * HTML, now have different parents. * * This code reparents the first script tag by making it the tbody's * first child. **/ var fixParentage = function(start, end) { if (start.parentNode !== end.parentNode) { end.parentNode.insertBefore(start, end.parentNode.firstChild); } }; htmlFunc = function(html, outerToo) { // get the real starting node. see realNode for details. var start = realNode(document.getElementById(this.start)); var end = document.getElementById(this.end); var parentNode = end.parentNode; var node, nextSibling, last; // make sure that the start and end nodes share the same // parent. If not, fix it. fixParentage(start, end); // remove all of the nodes after the starting placeholder and // before the ending placeholder. node = start.nextSibling; while (node) { nextSibling = node.nextSibling; last = node === end; // if this is the last node, and we want to remove it as well, // set the `end` node to the next sibling. This is because // for the rest of the function, we insert the new nodes // before the end (note that insertBefore(node, null) is // the same as appendChild(node)). // // if we do not want to remove it, just break. if (last) { if (outerToo) { end = node.nextSibling; } else { break; } } node.parentNode.removeChild(node); // if this is the last node and we didn't break before // (because we wanted to remove the outer nodes), break // now. if (last) { break; } node = nextSibling; } // get the first node for the HTML string, even in cases like // tables and lists where a simple innerHTML on a div would // swallow some of the content. node = firstNodeFor(start.parentNode, html); // copy the nodes for the HTML between the starting and ending // placeholder. while (node) { nextSibling = node.nextSibling; parentNode.insertBefore(node, end); node = nextSibling; } }; // remove the nodes in the DOM representing this metamorph. // // this includes the starting and ending placeholders. removeFunc = function() { var start = realNode(document.getElementById(this.start)); var end = document.getElementById(this.end); this.html(''); start.parentNode.removeChild(start); end.parentNode.removeChild(end); }; appendToFunc = function(parentNode) { var node = firstNodeFor(parentNode, this.outerHTML()); var nextSibling; while (node) { nextSibling = node.nextSibling; parentNode.appendChild(node); node = nextSibling; } }; afterFunc = function(html) { // get the real starting node. see realNode for details. var end = document.getElementById(this.end); var insertBefore = end.nextSibling; var parentNode = end.parentNode; var nextSibling; var node; // get the first node for the HTML string, even in cases like // tables and lists where a simple innerHTML on a div would // swallow some of the content. node = firstNodeFor(parentNode, html); // copy the nodes for the HTML between the starting and ending // placeholder. while (node) { nextSibling = node.nextSibling; parentNode.insertBefore(node, insertBefore); node = nextSibling; } }; prependFunc = function(html) { var start = document.getElementById(this.start); var parentNode = start.parentNode; var nextSibling; var node; node = firstNodeFor(parentNode, html); var insertBefore = start.nextSibling; while (node) { nextSibling = node.nextSibling; parentNode.insertBefore(node, insertBefore); node = nextSibling; } }; } Metamorph.prototype.html = function(html) { this.checkRemoved(); if (html === undefined) { return this.innerHTML; } htmlFunc.call(this, html); this.innerHTML = html; }; Metamorph.prototype.replaceWith = function(html) { this.checkRemoved(); htmlFunc.call(this, html, true); }; Metamorph.prototype.remove = removeFunc; Metamorph.prototype.outerHTML = outerHTMLFunc; Metamorph.prototype.appendTo = appendToFunc; Metamorph.prototype.after = afterFunc; Metamorph.prototype.prepend = prependFunc; Metamorph.prototype.startTag = startTagFunc; Metamorph.prototype.endTag = endTagFunc; Metamorph.prototype.isRemoved = function() { var before = document.getElementById(this.start); var after = document.getElementById(this.end); return !before || !after; }; Metamorph.prototype.checkRemoved = function() { if (this.isRemoved()) { throw new Error("Cannot perform operations on a Metamorph that is not in the DOM."); } }; return Metamorph; }); })(); (function() { /** @module ember @submodule ember-handlebars */ // Eliminate dependency on any Ember to simplify precompilation workflow var objectCreate = Object.create || function(parent) { function F() {} F.prototype = parent; return new F(); }; var Handlebars = this.Handlebars || Ember.imports.Handlebars; /** Prepares the Handlebars templating library for use inside Ember's view system. The `Ember.Handlebars` object is the standard Handlebars library, extended to use Ember's `get()` method instead of direct property access, which allows computed properties to be used inside templates. To create an `Ember.Handlebars` template, call `Ember.Handlebars.compile()`. This will return a function that can be used by `Ember.View` for rendering. @class Handlebars @namespace Ember */ Ember.Handlebars = objectCreate(Handlebars); /** @class helpers @namespace Ember.Handlebars */ Ember.Handlebars.helpers = objectCreate(Handlebars.helpers); /** Override the the opcode compiler and JavaScript compiler for Handlebars. @class Compiler @namespace Ember.Handlebars @private @constructor */ Ember.Handlebars.Compiler = function() {}; // Handlebars.Compiler doesn't exist in runtime-only if (Handlebars.Compiler) { Ember.Handlebars.Compiler.prototype = objectCreate(Handlebars.Compiler.prototype); } Ember.Handlebars.Compiler.prototype.compiler = Ember.Handlebars.Compiler; /** @class JavaScriptCompiler @namespace Ember.Handlebars @private @constructor */ Ember.Handlebars.JavaScriptCompiler = function() {}; // Handlebars.JavaScriptCompiler doesn't exist in runtime-only if (Handlebars.JavaScriptCompiler) { Ember.Handlebars.JavaScriptCompiler.prototype = objectCreate(Handlebars.JavaScriptCompiler.prototype); Ember.Handlebars.JavaScriptCompiler.prototype.compiler = Ember.Handlebars.JavaScriptCompiler; } Ember.Handlebars.JavaScriptCompiler.prototype.namespace = "Ember.Handlebars"; Ember.Handlebars.JavaScriptCompiler.prototype.initializeBuffer = function() { return "''"; }; /** @private Override the default buffer for Ember Handlebars. By default, Handlebars creates an empty String at the beginning of each invocation and appends to it. Ember's Handlebars overrides this to append to a single shared buffer. @method appendToBuffer @param string {String} */ Ember.Handlebars.JavaScriptCompiler.prototype.appendToBuffer = function(string) { return "data.buffer.push("+string+");"; }; var prefix = "ember" + (+new Date()), incr = 1; /** @private Rewrite simple mustaches from `{{foo}}` to `{{bind "foo"}}`. This means that all simple mustaches in Ember's Handlebars will also set up an observer to keep the DOM up to date when the underlying property changes. @method mustache @for Ember.Handlebars.Compiler @param mustache */ Ember.Handlebars.Compiler.prototype.mustache = function(mustache) { if (mustache.isHelper && mustache.id.string === 'control') { mustache.hash = mustache.hash || new Handlebars.AST.HashNode([]); mustache.hash.pairs.push(["controlID", new Handlebars.AST.StringNode(prefix + incr++)]); } else if (mustache.params.length || mustache.hash) { // no changes required } else { var id = new Handlebars.AST.IdNode(['_triageMustache']); // Update the mustache node to include a hash value indicating whether the original node // was escaped. This will allow us to properly escape values when the underlying value // changes and we need to re-render the value. if(!mustache.escaped) { mustache.hash = mustache.hash || new Handlebars.AST.HashNode([]); mustache.hash.pairs.push(["unescaped", new Handlebars.AST.StringNode("true")]); } mustache = new Handlebars.AST.MustacheNode([id].concat([mustache.id]), mustache.hash, !mustache.escaped); } return Handlebars.Compiler.prototype.mustache.call(this, mustache); }; /** Used for precompilation of Ember Handlebars templates. This will not be used during normal app execution. @method precompile @for Ember.Handlebars @static @param {String} string The template to precompile */ Ember.Handlebars.precompile = function(string) { var ast = Handlebars.parse(string); var options = { knownHelpers: { action: true, unbound: true, bindAttr: true, template: true, view: true, _triageMustache: true }, data: true, stringParams: true }; var environment = new Ember.Handlebars.Compiler().compile(ast, options); return new Ember.Handlebars.JavaScriptCompiler().compile(environment, options, undefined, true); }; // We don't support this for Handlebars runtime-only if (Handlebars.compile) { /** The entry point for Ember Handlebars. This replaces the default `Handlebars.compile` and turns on template-local data and String parameters. @method compile @for Ember.Handlebars @static @param {String} string The template to compile @return {Function} */ Ember.Handlebars.compile = function(string) { var ast = Handlebars.parse(string); var options = { data: true, stringParams: true }; var environment = new Ember.Handlebars.Compiler().compile(ast, options); var templateSpec = new Ember.Handlebars.JavaScriptCompiler().compile(environment, options, undefined, true); return Ember.Handlebars.template(templateSpec); }; } })(); (function() { var slice = Array.prototype.slice; /** @private If a path starts with a reserved keyword, returns the root that should be used. @method normalizePath @for Ember @param root {Object} @param path {String} @param data {Hash} */ var normalizePath = Ember.Handlebars.normalizePath = function(root, path, data) { var keywords = (data && data.keywords) || {}, keyword, isKeyword; // Get the first segment of the path. For example, if the // path is "foo.bar.baz", returns "foo". keyword = path.split('.', 1)[0]; // Test to see if the first path is a keyword that has been // passed along in the view's data hash. If so, we will treat // that object as the new root. if (keywords.hasOwnProperty(keyword)) { // Look up the value in the template's data hash. root = keywords[keyword]; isKeyword = true; // Handle cases where the entire path is the reserved // word. In that case, return the object itself. if (path === keyword) { path = ''; } else { // Strip the keyword from the path and look up // the remainder from the newly found root. path = path.substr(keyword.length+1); } } return { root: root, path: path, isKeyword: isKeyword }; }; /** Lookup both on root and on window. If the path starts with a keyword, the corresponding object will be looked up in the template's data hash and used to resolve the path. @method get @for Ember.Handlebars @param {Object} root The object to look up the property on @param {String} path The path to be lookedup @param {Object} options The template's option hash */ var handlebarsGet = Ember.Handlebars.get = function(root, path, options) { var data = options && options.data, normalizedPath = normalizePath(root, path, data), value; // In cases where the path begins with a keyword, change the // root to the value represented by that keyword, and ensure // the path is relative to it. root = normalizedPath.root; path = normalizedPath.path; value = Ember.get(root, path); // If the path starts with a capital letter, look it up on Ember.lookup, // which defaults to the `window` object in browsers. if (value === undefined && root !== Ember.lookup && Ember.isGlobalPath(path)) { value = Ember.get(Ember.lookup, path); } return value; }; Ember.Handlebars.getPath = Ember.deprecateFunc('`Ember.Handlebars.getPath` has been changed to `Ember.Handlebars.get` for consistency.', Ember.Handlebars.get); Ember.Handlebars.resolveParams = function(context, params, options) { var resolvedParams = [], types = options.types, param, type; for (var i=0, l=params.length; i<l; i++) { param = params[i]; type = types[i]; if (type === 'ID') { resolvedParams.push(handlebarsGet(context, param, options)); } else { resolvedParams.push(param); } } return resolvedParams; }; Ember.Handlebars.resolveHash = function(context, hash, options) { var resolvedHash = {}, types = options.hashTypes, type; for (var key in hash) { if (!hash.hasOwnProperty(key)) { continue; } type = types[key]; if (type === 'ID') { resolvedHash[key] = handlebarsGet(context, hash[key], options); } else { resolvedHash[key] = hash[key]; } } return resolvedHash; }; /** @private Registers a helper in Handlebars that will be called if no property with the given name can be found on the current context object, and no helper with that name is registered. This throws an exception with a more helpful error message so the user can track down where the problem is happening. @method helperMissing @for Ember.Handlebars.helpers @param {String} path @param {Hash} options */ Ember.Handlebars.registerHelper('helperMissing', function(path, options) { var error, view = ""; error = "%@ Handlebars error: Could not find property '%@' on object %@."; if (options.data){ view = options.data.view; } throw new Ember.Error(Ember.String.fmt(error, [view, path, this])); }); /** Register a bound handlebars helper. Bound helpers behave similarly to regular handlebars helpers, with the added ability to re-render when the underlying data changes. ## Simple example ```javascript Ember.Handlebars.registerBoundHelper('capitalize', function(value) { return value.toUpperCase(); }); ``` The above bound helper can be used inside of templates as follows: ```handlebars {{capitalize name}} ``` In this case, when the `name` property of the template's context changes, the rendered value of the helper will update to reflect this change. ## Example with options Like normal handlebars helpers, bound helpers have access to the options passed into the helper call. ```javascript Ember.Handlebars.registerBoundHelper('repeat', function(value, options) { var count = options.hash.count; var a = []; while(a.length < count){ a.push(value); } return a.join(''); }); ``` This helper could be used in a template as follows: ```handlebars {{repeat text count=3}} ``` ## Example with bound options Bound hash options are also supported. Example: ```handlebars {{repeat text countBinding="numRepeats"}} ``` In this example, count will be bound to the value of the `numRepeats` property on the context. If that property changes, the helper will be re-rendered. ## Example with extra dependencies The `Ember.Handlebars.registerBoundHelper` method takes a variable length third parameter which indicates extra dependencies on the passed in value. This allows the handlebars helper to update when these dependencies change. ```javascript Ember.Handlebars.registerBoundHelper('capitalizeName', function(value) { return value.get('name').toUpperCase(); }, 'name'); ``` ## Example with multiple bound properties `Ember.Handlebars.registerBoundHelper` supports binding to multiple properties, e.g.: ```javascript Ember.Handlebars.registerBoundHelper('concatenate', function() { var values = arguments[arguments.length - 1]; return values.join('||'); }); ``` Which allows for template syntax such as {{concatenate prop1 prop2}} or {{concatenate prop1 prop2 prop3}}. If any of the properties change, the helpr will re-render. Note that dependency keys cannot be using in conjunction with multi-property helpers, since it is ambiguous which property the dependent keys would belong to. ## Use with unbound helper The {{unbound}} helper can be used with bound helper invocations to render them in their unbound form, e.g. ```handlebars {{unbound capitalize name}} ``` In this example, if the name property changes, the helper will not re-render. @method registerBoundHelper @for Ember.Handlebars @param {String} name @param {Function} function @param {String} dependentKeys* */ Ember.Handlebars.registerBoundHelper = function(name, fn) { var dependentKeys = slice.call(arguments, 2); Ember.Handlebars.registerHelper(name, function() { var properties = slice.call(arguments, 0, -1), numProperties = properties.length, options = arguments[arguments.length - 1], normalizedProperties = [], data = options.data, hash = options.hash, view = data.view, currentContext = (options.contexts && options.contexts[0]) || this, normalized, pathRoot, path, loc, hashOption; // Detect bound options (e.g. countBinding="otherCount") hash.boundOptions = {}; for (hashOption in hash) { if (!hash.hasOwnProperty(hashOption)) { continue; } if (Ember.IS_BINDING.test(hashOption) && typeof hash[hashOption] === 'string') { // Lop off 'Binding' suffix. hash.boundOptions[hashOption.slice(0, -7)] = hash[hashOption]; } } // Expose property names on data.properties object. data.properties = []; for (loc = 0; loc < numProperties; ++loc) { data.properties.push(properties[loc]); normalizedProperties.push(normalizePath(currentContext, properties[loc], data)); } if (data.isUnbound) { return evaluateUnboundHelper(this, fn, normalizedProperties, options); } if (dependentKeys.length === 0) { return evaluateMultiPropertyBoundHelper(currentContext, fn, normalizedProperties, options); } normalized = normalizedProperties[0]; pathRoot = normalized.root; path = normalized.path; var bindView = new Ember._SimpleHandlebarsView( path, pathRoot, !options.hash.unescaped, options.data ); bindView.normalizedValue = function() { var value = Ember._SimpleHandlebarsView.prototype.normalizedValue.call(bindView); return fn.call(view, value, options); }; view.appendChild(bindView); view.registerObserver(pathRoot, path, bindView, rerenderBoundHelperView); for (var i=0, l=dependentKeys.length; i<l; i++) { view.registerObserver(pathRoot, path + '.' + dependentKeys[i], bindView, rerenderBoundHelperView); } }); }; /** @private Renders the unbound form of an otherwise bound helper function. @param {Function} fn @param {Object} context @param {Array} normalizedProperties @param {String} options */ function evaluateMultiPropertyBoundHelper(context, fn, normalizedProperties, options) { var numProperties = normalizedProperties.length, self = this, data = options.data, view = data.view, hash = options.hash, boundOptions = hash.boundOptions, watchedProperties, boundOption, bindView, loc, property, len; bindView = new Ember._SimpleHandlebarsView(null, null, !hash.unescaped, data); bindView.normalizedValue = function() { var args = [], value, boundOption; // Copy over bound options. for (boundOption in boundOptions) { if (!boundOptions.hasOwnProperty(boundOption)) { continue; } property = normalizePath(context, boundOptions[boundOption], data); bindView.path = property.path; bindView.pathRoot = property.root; hash[boundOption] = Ember._SimpleHandlebarsView.prototype.normalizedValue.call(bindView); } for (loc = 0; loc < numProperties; ++loc) { property = normalizedProperties[loc]; bindView.path = property.path; bindView.pathRoot = property.root; args.push(Ember._SimpleHandlebarsView.prototype.normalizedValue.call(bindView)); } args.push(options); return fn.apply(context, args); }; view.appendChild(bindView); // Assemble liast of watched properties that'll re-render this helper. watchedProperties = []; for (boundOption in boundOptions) { if (boundOptions.hasOwnProperty(boundOption)) { watchedProperties.push(normalizePath(context, boundOptions[boundOption], data)); } } watchedProperties = watchedProperties.concat(normalizedProperties); // Observe each property. for (loc = 0, len = watchedProperties.length; loc < len; ++loc) { property = watchedProperties[loc]; view.registerObserver(property.root, property.path, bindView, rerenderBoundHelperView); } } /** @private An observer function used with bound helpers which will schedule a re-render of the _SimpleHandlebarsView connected with the helper. */ function rerenderBoundHelperView() { Ember.run.scheduleOnce('render', this, 'rerender'); } /** @private Renders the unbound form of an otherwise bound helper function. @param {Function} fn @param {Object} context @param {Array} normalizedProperties @param {String} options */ function evaluateUnboundHelper(context, fn, normalizedProperties, options) { var args = [], hash = options.hash, boundOptions = hash.boundOptions, loc, len, property, boundOption; for (boundOption in boundOptions) { if (!boundOptions.hasOwnProperty(boundOption)) { continue; } hash[boundOption] = Ember.Handlebars.get(context, boundOptions[boundOption], options); } for(loc = 0, len = normalizedProperties.length; loc < len; ++loc) { property = normalizedProperties[loc]; args.push(Ember.Handlebars.get(context, property.path, options)); } args.push(options); return fn.apply(context, args); } /** @private Overrides Handlebars.template so that we can distinguish user-created, top-level templates from inner contexts. @method template @for Ember.Handlebars @param {String} template spec */ Ember.Handlebars.template = function(spec){ var t = Handlebars.template(spec); t.isTop = true; return t; }; })(); (function() { /** @method htmlSafe @for Ember.String @static */ Ember.String.htmlSafe = function(str) { return new Handlebars.SafeString(str); }; var htmlSafe = Ember.String.htmlSafe; if (Ember.EXTEND_PROTOTYPES === true || Ember.EXTEND_PROTOTYPES.String) { /** See {{#crossLink "Ember.String/htmlSafe"}}{{/crossLink}} @method htmlSafe @for String */ String.prototype.htmlSafe = function() { return htmlSafe(this); }; } })(); (function() { Ember.Handlebars.resolvePaths = function(options) { var ret = [], contexts = options.contexts, roots = options.roots, data = options.data; for (var i=0, l=contexts.length; i<l; i++) { ret.push( Ember.Handlebars.get(roots[i], contexts[i], { data: data }) ); } return ret; }; })(); (function() { /*jshint newcap:false*/ /** @module ember @submodule ember-handlebars */ var set = Ember.set, get = Ember.get; var Metamorph = requireModule('metamorph'); // DOMManager should just abstract dom manipulation between jquery and metamorph var DOMManager = { remove: function(view) { view.morph.remove(); }, prepend: function(view, html) { view.morph.prepend(html); }, after: function(view, html) { view.morph.after(html); }, html: function(view, html) { view.morph.html(html); }, // This is messed up. replace: function(view) { var morph = view.morph; view.transitionTo('preRender'); Ember.run.schedule('render', this, function() { if (view.isDestroying) { return; } view.clearRenderedChildren(); var buffer = view.renderToBuffer(); view.invokeRecursively(function(view) { view.propertyDidChange('element'); }); view.triggerRecursively('willInsertElement'); morph.replaceWith(buffer.string()); view.transitionTo('inDOM'); view.triggerRecursively('didInsertElement'); }); }, empty: function(view) { view.morph.html(""); } }; // The `morph` and `outerHTML` properties are internal only // and not observable. /** @class _Metamorph @namespace Ember @extends Ember.Mixin @private */ Ember._Metamorph = Ember.Mixin.create({ isVirtual: true, tagName: '', instrumentName: 'render.metamorph', init: function() { this._super(); this.morph = Metamorph(); }, beforeRender: function(buffer) { buffer.push(this.morph.startTag()); buffer.pushOpeningTag(); }, afterRender: function(buffer) { buffer.pushClosingTag(); buffer.push(this.morph.endTag()); }, createElement: function() { var buffer = this.renderToBuffer(); this.outerHTML = buffer.string(); this.clearBuffer(); }, domManager: DOMManager }); /** @class _MetamorphView @namespace Ember @extends Ember.View @uses Ember._Metamorph @private */ Ember._MetamorphView = Ember.View.extend(Ember._Metamorph); /** @class _SimpleMetamorphView @namespace Ember @extends Ember.View @uses Ember._Metamorph @private */ Ember._SimpleMetamorphView = Ember.CoreView.extend(Ember._Metamorph); })(); (function() { /*globals Handlebars */ /*jshint newcap:false*/ /** @module ember @submodule ember-handlebars */ var get = Ember.get, set = Ember.set, handlebarsGet = Ember.Handlebars.get; var Metamorph = requireModule('metamorph'); function SimpleHandlebarsView(path, pathRoot, isEscaped, templateData) { this.path = path; this.pathRoot = pathRoot; this.isEscaped = isEscaped; this.templateData = templateData; this.morph = Metamorph(); this.state = 'preRender'; this.updateId = null; } Ember._SimpleHandlebarsView = SimpleHandlebarsView; SimpleHandlebarsView.prototype = { isVirtual: true, isView: true, destroy: function () { if (this.updateId) { Ember.run.cancel(this.updateId); this.updateId = null; } this.morph = null; }, propertyDidChange: Ember.K, normalizedValue: function() { var path = this.path, pathRoot = this.pathRoot, result, templateData; // Use the pathRoot as the result if no path is provided. This // happens if the path is `this`, which gets normalized into // a `pathRoot` of the current Handlebars context and a path // of `''`. if (path === '') { result = pathRoot; } else { templateData = this.templateData; result = handlebarsGet(pathRoot, path, { data: templateData }); } return result; }, renderToBuffer: function(buffer) { var string = ''; string += this.morph.startTag(); string += this.render(); string += this.morph.endTag(); buffer.push(string); }, render: function() { // If not invoked via a triple-mustache ({{{foo}}}), escape // the content of the template. var escape = this.isEscaped; var result = this.normalizedValue(); if (result === null || result === undefined) { result = ""; } else if (!(result instanceof Handlebars.SafeString)) { result = String(result); } if (escape) { result = Handlebars.Utils.escapeExpression(result); } return result; }, rerender: function() { switch(this.state) { case 'preRender': case 'destroyed': break; case 'inBuffer': throw new Ember.Error("Something you did tried to replace an {{expression}} before it was inserted into the DOM."); case 'hasElement': case 'inDOM': this.updateId = Ember.run.scheduleOnce('render', this, 'update'); break; } return this; }, update: function () { this.updateId = null; this.morph.html(this.render()); }, transitionTo: function(state) { this.state = state; } }; var states = Ember.View.cloneStates(Ember.View.states), merge = Ember.merge; merge(states._default, { rerenderIfNeeded: Ember.K }); merge(states.inDOM, { rerenderIfNeeded: function(view) { if (get(view, 'normalizedValue') !== view._lastNormalizedValue) { view.rerender(); } } }); /** `Ember._HandlebarsBoundView` is a private view created by the Handlebars `{{bind}}` helpers that is used to keep track of bound properties. Every time a property is bound using a `{{mustache}}`, an anonymous subclass of `Ember._HandlebarsBoundView` is created with the appropriate sub-template and context set up. When the associated property changes, just the template for this view will re-render. @class _HandlebarsBoundView @namespace Ember @extends Ember._MetamorphView @private */ Ember._HandlebarsBoundView = Ember._MetamorphView.extend({ instrumentName: 'render.boundHandlebars', states: states, /** The function used to determine if the `displayTemplate` or `inverseTemplate` should be rendered. This should be a function that takes a value and returns a Boolean. @property shouldDisplayFunc @type Function @default null */ shouldDisplayFunc: null, /** Whether the template rendered by this view gets passed the context object of its parent template, or gets passed the value of retrieving `path` from the `pathRoot`. For example, this is true when using the `{{#if}}` helper, because the template inside the helper should look up properties relative to the same object as outside the block. This would be `false` when used with `{{#with foo}}` because the template should receive the object found by evaluating `foo`. @property preserveContext @type Boolean @default false */ preserveContext: false, /** If `preserveContext` is true, this is the object that will be used to render the template. @property previousContext @type Object */ previousContext: null, /** The template to render when `shouldDisplayFunc` evaluates to `true`. @property displayTemplate @type Function @default null */ displayTemplate: null, /** The template to render when `shouldDisplayFunc` evaluates to `false`. @property inverseTemplate @type Function @default null */ inverseTemplate: null, /** The path to look up on `pathRoot` that is passed to `shouldDisplayFunc` to determine which template to render. In addition, if `preserveContext` is `false,` the object at this path will be passed to the template when rendering. @property path @type String @default null */ path: null, /** The object from which the `path` will be looked up. Sometimes this is the same as the `previousContext`, but in cases where this view has been generated for paths that start with a keyword such as `view` or `controller`, the path root will be that resolved object. @property pathRoot @type Object */ pathRoot: null, normalizedValue: Ember.computed(function() { var path = get(this, 'path'), pathRoot = get(this, 'pathRoot'), valueNormalizer = get(this, 'valueNormalizerFunc'), result, templateData; // Use the pathRoot as the result if no path is provided. This // happens if the path is `this`, which gets normalized into // a `pathRoot` of the current Handlebars context and a path // of `''`. if (path === '') { result = pathRoot; } else { templateData = get(this, 'templateData'); result = handlebarsGet(pathRoot, path, { data: templateData }); } return valueNormalizer ? valueNormalizer(result) : result; }).property('path', 'pathRoot', 'valueNormalizerFunc').volatile(), rerenderIfNeeded: function() { this.currentState.rerenderIfNeeded(this); }, /** Determines which template to invoke, sets up the correct state based on that logic, then invokes the default `Ember.View` `render` implementation. This method will first look up the `path` key on `pathRoot`, then pass that value to the `shouldDisplayFunc` function. If that returns `true,` the `displayTemplate` function will be rendered to DOM. Otherwise, `inverseTemplate`, if specified, will be rendered. For example, if this `Ember._HandlebarsBoundView` represented the `{{#with foo}}` helper, it would look up the `foo` property of its context, and `shouldDisplayFunc` would always return true. The object found by looking up `foo` would be passed to `displayTemplate`. @method render @param {Ember.RenderBuffer} buffer */ render: function(buffer) { // If not invoked via a triple-mustache ({{{foo}}}), escape // the content of the template. var escape = get(this, 'isEscaped'); var shouldDisplay = get(this, 'shouldDisplayFunc'), preserveContext = get(this, 'preserveContext'), context = get(this, 'previousContext'); var inverseTemplate = get(this, 'inverseTemplate'), displayTemplate = get(this, 'displayTemplate'); var result = get(this, 'normalizedValue'); this._lastNormalizedValue = result; // First, test the conditional to see if we should // render the template or not. if (shouldDisplay(result)) { set(this, 'template', displayTemplate); // If we are preserving the context (for example, if this // is an #if block, call the template with the same object. if (preserveContext) { set(this, '_context', context); } else { // Otherwise, determine if this is a block bind or not. // If so, pass the specified object to the template if (displayTemplate) { set(this, '_context', result); } else { // This is not a bind block, just push the result of the // expression to the render context and return. if (result === null || result === undefined) { result = ""; } else if (!(result instanceof Handlebars.SafeString)) { result = String(result); } if (escape) { result = Handlebars.Utils.escapeExpression(result); } buffer.push(result); return; } } } else if (inverseTemplate) { set(this, 'template', inverseTemplate); if (preserveContext) { set(this, '_context', context); } else { set(this, '_context', result); } } else { set(this, 'template', function() { return ''; }); } return this._super(buffer); } }); })(); (function() { /** @module ember @submodule ember-handlebars */ var get = Ember.get, set = Ember.set, fmt = Ember.String.fmt; var handlebarsGet = Ember.Handlebars.get, normalizePath = Ember.Handlebars.normalizePath; var forEach = Ember.ArrayPolyfills.forEach; var EmberHandlebars = Ember.Handlebars, helpers = EmberHandlebars.helpers; // Binds a property into the DOM. This will create a hook in DOM that the // KVO system will look for and update if the property changes. function bind(property, options, preserveContext, shouldDisplay, valueNormalizer) { var data = options.data, fn = options.fn, inverse = options.inverse, view = data.view, currentContext = this, pathRoot, path, normalized, observer; normalized = normalizePath(currentContext, property, data); pathRoot = normalized.root; path = normalized.path; // Set up observers for observable objects if ('object' === typeof this) { if (data.insideGroup) { observer = function() { Ember.run.once(view, 'rerender'); }; var template, context, result = handlebarsGet(pathRoot, path, options); result = valueNormalizer(result); context = preserveContext ? currentContext : result; if (shouldDisplay(result)) { template = fn; } else if (inverse) { template = inverse; } template(context, { data: options.data }); } else { // Create the view that will wrap the output of this template/property // and add it to the nearest view's childViews array. // See the documentation of Ember._HandlebarsBoundView for more. var bindView = view.createChildView(Ember._HandlebarsBoundView, { preserveContext: preserveContext, shouldDisplayFunc: shouldDisplay, valueNormalizerFunc: valueNormalizer, displayTemplate: fn, inverseTemplate: inverse, path: path, pathRoot: pathRoot, previousContext: currentContext, isEscaped: !options.hash.unescaped, templateData: options.data }); view.appendChild(bindView); observer = function() { Ember.run.scheduleOnce('render', bindView, 'rerenderIfNeeded'); }; } // Observes the given property on the context and // tells the Ember._HandlebarsBoundView to re-render. If property // is an empty string, we are printing the current context // object ({{this}}) so updating it is not our responsibility. if (path !== '') { view.registerObserver(pathRoot, path, observer); } } else { // The object is not observable, so just render it out and // be done with it. data.buffer.push(handlebarsGet(pathRoot, path, options)); } } function simpleBind(property, options) { var data = options.data, view = data.view, currentContext = this, pathRoot, path, normalized, observer; normalized = normalizePath(currentContext, property, data); pathRoot = normalized.root; path = normalized.path; // Set up observers for observable objects if ('object' === typeof this) { if (data.insideGroup) { observer = function() { Ember.run.once(view, 'rerender'); }; var result = handlebarsGet(pathRoot, path, options); if (result === null || result === undefined) { result = ""; } data.buffer.push(result); } else { var bindView = new Ember._SimpleHandlebarsView( path, pathRoot, !options.hash.unescaped, options.data ); bindView._parentView = view; view.appendChild(bindView); observer = function() { Ember.run.scheduleOnce('render', bindView, 'rerender'); }; } // Observes the given property on the context and // tells the Ember._HandlebarsBoundView to re-render. If property // is an empty string, we are printing the current context // object ({{this}}) so updating it is not our responsibility. if (path !== '') { view.registerObserver(pathRoot, path, observer); } } else { // The object is not observable, so just render it out and // be done with it. data.buffer.push(handlebarsGet(pathRoot, path, options)); } } /** @private '_triageMustache' is used internally select between a binding and helper for the given context. Until this point, it would be hard to determine if the mustache is a property reference or a regular helper reference. This triage helper resolves that. This would not be typically invoked by directly. @method _triageMustache @for Ember.Handlebars.helpers @param {String} property Property/helperID to triage @param {Function} fn Context to provide for rendering @return {String} HTML string */ EmberHandlebars.registerHelper('_triageMustache', function(property, fn) { if (helpers[property]) { return helpers[property].call(this, fn); } else { return helpers.bind.apply(this, arguments); } }); /** @private `bind` can be used to display a value, then update that value if it changes. For example, if you wanted to print the `title` property of `content`: ```handlebars {{bind "content.title"}} ``` This will return the `title` property as a string, then create a new observer at the specified path. If it changes, it will update the value in DOM. Note that if you need to support IE7 and IE8 you must modify the model objects properties using `Ember.get()` and `Ember.set()` for this to work as it relies on Ember's KVO system. For all other browsers this will be handled for you automatically. @method bind @for Ember.Handlebars.helpers @param {String} property Property to bind @param {Function} fn Context to provide for rendering @return {String} HTML string */ EmberHandlebars.registerHelper('bind', function(property, options) { var context = (options.contexts && options.contexts[0]) || this; if (!options.fn) { return simpleBind.call(context, property, options); } return bind.call(context, property, options, false, function(result) { return !Ember.isNone(result); }); }); /** @private Use the `boundIf` helper to create a conditional that re-evaluates whenever the truthiness of the bound value changes. ```handlebars {{#boundIf "content.shouldDisplayTitle"}} {{content.title}} {{/boundIf}} ``` @method boundIf @for Ember.Handlebars.helpers @param {String} property Property to bind @param {Function} fn Context to provide for rendering @return {String} HTML string */ EmberHandlebars.registerHelper('boundIf', function(property, fn) { var context = (fn.contexts && fn.contexts[0]) || this; var func = function(result) { var truthy = result && get(result, 'isTruthy'); if (typeof truthy === 'boolean') { return truthy; } if (Ember.typeOf(result) === 'array') { return get(result, 'length') !== 0; } else { return !!result; } }; return bind.call(context, property, fn, true, func, func); }); /** @method with @for Ember.Handlebars.helpers @param {Function} context @param {Hash} options @return {String} HTML string */ EmberHandlebars.registerHelper('with', function(context, options) { if (arguments.length === 4) { var keywordName, path, rootPath, normalized; options = arguments[3]; keywordName = arguments[2]; path = arguments[0]; if (Ember.isGlobalPath(path)) { Ember.bind(options.data.keywords, keywordName, path); } else { normalized = normalizePath(this, path, options.data); path = normalized.path; rootPath = normalized.root; // This is a workaround for the fact that you cannot bind separate objects // together. When we implement that functionality, we should use it here. var contextKey = Ember.$.expando + Ember.guidFor(rootPath); options.data.keywords[contextKey] = rootPath; // if the path is '' ("this"), just bind directly to the current context var contextPath = path ? contextKey + '.' + path : contextKey; Ember.bind(options.data.keywords, keywordName, contextPath); } return bind.call(this, path, options, true, function(result) { return !Ember.isNone(result); }); } else { return helpers.bind.call(options.contexts[0], context, options); } }); /** See `boundIf` @method if @for Ember.Handlebars.helpers @param {Function} context @param {Hash} options @return {String} HTML string */ EmberHandlebars.registerHelper('if', function(context, options) { return helpers.boundIf.call(options.contexts[0], context, options); }); /** @method unless @for Ember.Handlebars.helpers @param {Function} context @param {Hash} options @return {String} HTML string */ EmberHandlebars.registerHelper('unless', function(context, options) { var fn = options.fn, inverse = options.inverse; options.fn = inverse; options.inverse = fn; return helpers.boundIf.call(options.contexts[0], context, options); }); /** `bindAttr` allows you to create a binding between DOM element attributes and Ember objects. For example: ```handlebars <img {{bindAttr src="imageUrl" alt="imageTitle"}}> ``` The above handlebars template will fill the `<img>`'s `src` attribute will the value of the property referenced with `"imageUrl"` and its `alt` attribute with the value of the property referenced with `"imageTitle"`. If the rendering context of this template is the following object: ```javascript { imageUrl: 'http://lolcats.info/haz-a-funny', imageTitle: 'A humorous image of a cat' } ``` The resulting HTML output will be: ```html <img src="http://lolcats.info/haz-a-funny" alt="A humorous image of a cat"> ``` `bindAttr` cannot redeclare existing DOM element attributes. The use of `src` in the following `bindAttr` example will be ignored and the hard coded value of `src="/failwhale.gif"` will take precedence: ```handlebars <img src="/failwhale.gif" {{bindAttr src="imageUrl" alt="imageTitle"}}> ``` ### `bindAttr` and the `class` attribute `bindAttr` supports a special syntax for handling a number of cases unique to the `class` DOM element attribute. The `class` attribute combines multiple discreet values into a single attribute as a space-delimited list of strings. Each string can be: * a string return value of an object's property. * a boolean return value of an object's property * a hard-coded value A string return value works identically to other uses of `bindAttr`. The return value of the property will become the value of the attribute. For example, the following view and template: ```javascript AView = Ember.View.extend({ someProperty: function(){ return "aValue"; }.property() }) ``` ```handlebars <img {{bindAttr class="view.someProperty}}> ``` Result in the following rendered output: ```html <img class="aValue"> ``` A boolean return value will insert a specified class name if the property returns `true` and remove the class name if the property returns `false`. A class name is provided via the syntax `somePropertyName:class-name-if-true`. ```javascript AView = Ember.View.extend({ someBool: true }) ``` ```handlebars <img {{bindAttr class="view.someBool:class-name-if-true"}}> ``` Result in the following rendered output: ```html <img class="class-name-if-true"> ``` An additional section of the binding can be provided if you want to replace the existing class instead of removing it when the boolean value changes: ```handlebars <img {{bindAttr class="view.someBool:class-name-if-true:class-name-if-false"}}> ``` A hard-coded value can be used by prepending `:` to the desired class name: `:class-name-to-always-apply`. ```handlebars <img {{bindAttr class=":class-name-to-always-apply"}}> ``` Results in the following rendered output: ```html <img class=":class-name-to-always-apply"> ``` All three strategies - string return value, boolean return value, and hard-coded value – can be combined in a single declaration: ```handlebars <img {{bindAttr class=":class-name-to-always-apply view.someBool:class-name-if-true view.someProperty"}}> ``` @method bindAttr @for Ember.Handlebars.helpers @param {Hash} options @return {String} HTML string */ EmberHandlebars.registerHelper('bindAttr', function(options) { var attrs = options.hash; var view = options.data.view; var ret = []; var ctx = this; // Generate a unique id for this element. This will be added as a // data attribute to the element so it can be looked up when // the bound property changes. var dataId = ++Ember.uuid; // Handle classes differently, as we can bind multiple classes var classBindings = attrs['class']; if (classBindings !== null && classBindings !== undefined) { var classResults = EmberHandlebars.bindClasses(this, classBindings, view, dataId, options); ret.push('class="' + Handlebars.Utils.escapeExpression(classResults.join(' ')) + '"'); delete attrs['class']; } var attrKeys = Ember.keys(attrs); // For each attribute passed, create an observer and emit the // current value of the property as an attribute. forEach.call(attrKeys, function(attr) { var path = attrs[attr], pathRoot, normalized; normalized = normalizePath(ctx, path, options.data); pathRoot = normalized.root; path = normalized.path; var value = (path === 'this') ? pathRoot : handlebarsGet(pathRoot, path, options), type = Ember.typeOf(value); var observer, invoker; observer = function observer() { var result = handlebarsGet(pathRoot, path, options); var elem = view.$("[data-bindattr-" + dataId + "='" + dataId + "']"); // If we aren't able to find the element, it means the element // to which we were bound has been removed from the view. // In that case, we can assume the template has been re-rendered // and we need to clean up the observer. if (!elem || elem.length === 0) { Ember.removeObserver(pathRoot, path, invoker); return; } Ember.View.applyAttributeBindings(elem, attr, result); }; invoker = function() { Ember.run.scheduleOnce('render', observer); }; // Add an observer to the view for when the property changes. // When the observer fires, find the element using the // unique data id and update the attribute to the new value. if (path !== 'this') { view.registerObserver(pathRoot, path, invoker); } // if this changes, also change the logic in ember-views/lib/views/view.js if ((type === 'string' || (type === 'number' && !isNaN(value)))) { ret.push(attr + '="' + Handlebars.Utils.escapeExpression(value) + '"'); } else if (value && type === 'boolean') { // The developer controls the attr name, so it should always be safe ret.push(attr + '="' + attr + '"'); } }, this); // Add the unique identifier // NOTE: We use all lower-case since Firefox has problems with mixed case in SVG ret.push('data-bindattr-' + dataId + '="' + dataId + '"'); return new EmberHandlebars.SafeString(ret.join(' ')); }); /** @private Helper that, given a space-separated string of property paths and a context, returns an array of class names. Calling this method also has the side effect of setting up observers at those property paths, such that if they change, the correct class name will be reapplied to the DOM element. For example, if you pass the string "fooBar", it will first look up the "fooBar" value of the context. If that value is true, it will add the "foo-bar" class to the current element (i.e., the dasherized form of "fooBar"). If the value is a string, it will add that string as the class. Otherwise, it will not add any new class name. @method bindClasses @for Ember.Handlebars @param {Ember.Object} context The context from which to lookup properties @param {String} classBindings A string, space-separated, of class bindings to use @param {Ember.View} view The view in which observers should look for the element to update @param {Srting} bindAttrId Optional bindAttr id used to lookup elements @return {Array} An array of class names to add */ EmberHandlebars.bindClasses = function(context, classBindings, view, bindAttrId, options) { var ret = [], newClass, value, elem; // Helper method to retrieve the property from the context and // determine which class string to return, based on whether it is // a Boolean or not. var classStringForPath = function(root, parsedPath, options) { var val, path = parsedPath.path; if (path === 'this') { val = root; } else if (path === '') { val = true; } else { val = handlebarsGet(root, path, options); } return Ember.View._classStringForValue(path, val, parsedPath.className, parsedPath.falsyClassName); }; // For each property passed, loop through and setup // an observer. forEach.call(classBindings.split(' '), function(binding) { // Variable in which the old class value is saved. The observer function // closes over this variable, so it knows which string to remove when // the property changes. var oldClass; var observer, invoker; var parsedPath = Ember.View._parsePropertyPath(binding), path = parsedPath.path, pathRoot = context, normalized; if (path !== '' && path !== 'this') { normalized = normalizePath(context, path, options.data); pathRoot = normalized.root; path = normalized.path; } // Set up an observer on the context. If the property changes, toggle the // class name. observer = function() { // Get the current value of the property newClass = classStringForPath(pathRoot, parsedPath, options); elem = bindAttrId ? view.$("[data-bindattr-" + bindAttrId + "='" + bindAttrId + "']") : view.$(); // If we can't find the element anymore, a parent template has been // re-rendered and we've been nuked. Remove the observer. if (!elem || elem.length === 0) { Ember.removeObserver(pathRoot, path, invoker); } else { // If we had previously added a class to the element, remove it. if (oldClass) { elem.removeClass(oldClass); } // If necessary, add a new class. Make sure we keep track of it so // it can be removed in the future. if (newClass) { elem.addClass(newClass); oldClass = newClass; } else { oldClass = null; } } }; invoker = function() { Ember.run.scheduleOnce('render', observer); }; if (path !== '' && path !== 'this') { view.registerObserver(pathRoot, path, invoker); } // We've already setup the observer; now we just need to figure out the // correct behavior right now on the first pass through. value = classStringForPath(pathRoot, parsedPath, options); if (value) { ret.push(value); // Make sure we save the current value so that it can be removed if the // observer fires. oldClass = value; } }); return ret; }; })(); (function() { /*globals Handlebars */ // TODO: Don't require the entire module /** @module ember @submodule ember-handlebars */ var get = Ember.get, set = Ember.set; var PARENT_VIEW_PATH = /^parentView\./; var EmberHandlebars = Ember.Handlebars; EmberHandlebars.ViewHelper = Ember.Object.create({ propertiesFromHTMLOptions: function(options, thisContext) { var hash = options.hash, data = options.data; var extensions = {}, classes = hash['class'], dup = false; if (hash.id) { extensions.elementId = hash.id; dup = true; } if (classes) { classes = classes.split(' '); extensions.classNames = classes; dup = true; } if (hash.classBinding) { extensions.classNameBindings = hash.classBinding.split(' '); dup = true; } if (hash.classNameBindings) { if (extensions.classNameBindings === undefined) extensions.classNameBindings = []; extensions.classNameBindings = extensions.classNameBindings.concat(hash.classNameBindings.split(' ')); dup = true; } if (hash.attributeBindings) { extensions.attributeBindings = null; dup = true; } if (dup) { hash = Ember.$.extend({}, hash); delete hash.id; delete hash['class']; delete hash.classBinding; } // Set the proper context for all bindings passed to the helper. This applies to regular attribute bindings // as well as class name bindings. If the bindings are local, make them relative to the current context // instead of the view. var path; // Evaluate the context of regular attribute bindings: for (var prop in hash) { if (!hash.hasOwnProperty(prop)) { continue; } // Test if the property ends in "Binding" if (Ember.IS_BINDING.test(prop) && typeof hash[prop] === 'string') { path = this.contextualizeBindingPath(hash[prop], data); if (path) { hash[prop] = path; } } } // Evaluate the context of class name bindings: if (extensions.classNameBindings) { for (var b in extensions.classNameBindings) { var full = extensions.classNameBindings[b]; if (typeof full === 'string') { // Contextualize the path of classNameBinding so this: // // classNameBinding="isGreen:green" // // is converted to this: // // classNameBinding="_parentView.context.isGreen:green" var parsedPath = Ember.View._parsePropertyPath(full); path = this.contextualizeBindingPath(parsedPath.path, data); if (path) { extensions.classNameBindings[b] = path + parsedPath.classNames; } } } } return Ember.$.extend(hash, extensions); }, // Transform bindings from the current context to a context that can be evaluated within the view. // Returns null if the path shouldn't be changed. // // TODO: consider the addition of a prefix that would allow this method to return `path`. contextualizeBindingPath: function(path, data) { var normalized = Ember.Handlebars.normalizePath(null, path, data); if (normalized.isKeyword) { return 'templateData.keywords.' + path; } else if (Ember.isGlobalPath(path)) { return null; } else if (path === 'this') { return '_parentView.context'; } else { return '_parentView.context.' + path; } }, helper: function(thisContext, path, options) { var inverse = options.inverse, data = options.data, view = data.view, fn = options.fn, hash = options.hash, newView; if ('string' === typeof path) { newView = EmberHandlebars.get(thisContext, path, options); } else { newView = path; } var viewOptions = this.propertiesFromHTMLOptions(options, thisContext); var currentView = data.view; viewOptions.templateData = options.data; var newViewProto = newView.proto ? newView.proto() : newView; if (fn) { viewOptions.template = fn; } // We only want to override the `_context` computed property if there is // no specified controller. See View#_context for more information. if (!newViewProto.controller && !newViewProto.controllerBinding && !viewOptions.controller && !viewOptions.controllerBinding) { viewOptions._context = thisContext; } currentView.appendChild(newView, viewOptions); } }); /** `{{view}}` inserts a new instance of `Ember.View` into a template passing its options to the `Ember.View`'s `create` method and using the supplied block as the view's own template. An empty `<body>` and the following template: ```handlebars A span: {{#view tagName="span"}} hello. {{/view}} ``` Will result in HTML structure: ```html <body> <!-- Note: the handlebars template script also results in a rendered Ember.View which is the outer <div> here --> <div class="ember-view"> A span: <span id="ember1" class="ember-view"> Hello. </span> </div> </body> ``` ### `parentView` setting The `parentView` property of the new `Ember.View` instance created through `{{view}}` will be set to the `Ember.View` instance of the template where `{{view}}` was called. ```javascript aView = Ember.View.create({ template: Ember.Handlebars.compile("{{#view}} my parent: {{parentView.elementId}} {{/view}}") }); aView.appendTo('body'); ``` Will result in HTML structure: ```html <div id="ember1" class="ember-view"> <div id="ember2" class="ember-view"> my parent: ember1 </div> </div> ``` ### Setting CSS id and class attributes The HTML `id` attribute can be set on the `{{view}}`'s resulting element with the `id` option. This option will _not_ be passed to `Ember.View.create`. ```handlebars {{#view tagName="span" id="a-custom-id"}} hello. {{/view}} ``` Results in the following HTML structure: ```html <div class="ember-view"> <span id="a-custom-id" class="ember-view"> hello. </span> </div> ``` The HTML `class` attribute can be set on the `{{view}}`'s resulting element with the `class` or `classNameBindings` options. The `class` option will directly set the CSS `class` attribute and will not be passed to `Ember.View.create`. `classNameBindings` will be passed to `create` and use `Ember.View`'s class name binding functionality: ```handlebars {{#view tagName="span" class="a-custom-class"}} hello. {{/view}} ``` Results in the following HTML structure: ```html <div class="ember-view"> <span id="ember2" class="ember-view a-custom-class"> hello. </span> </div> ``` ### Supplying a different view class `{{view}}` can take an optional first argument before its supplied options to specify a path to a custom view class. ```handlebars {{#view "MyApp.CustomView"}} hello. {{/view}} ``` The first argument can also be a relative path. Ember will search for the view class starting at the `Ember.View` of the template where `{{view}}` was used as the root object: ```javascript MyApp = Ember.Application.create({}); MyApp.OuterView = Ember.View.extend({ innerViewClass: Ember.View.extend({ classNames: ['a-custom-view-class-as-property'] }), template: Ember.Handlebars.compile('{{#view "innerViewClass"}} hi {{/view}}') }); MyApp.OuterView.create().appendTo('body'); ``` Will result in the following HTML: ```html <div id="ember1" class="ember-view"> <div id="ember2" class="ember-view a-custom-view-class-as-property"> hi </div> </div> ``` ### Blockless use If you supply a custom `Ember.View` subclass that specifies its own template or provide a `templateName` option to `{{view}}` it can be used without supplying a block. Attempts to use both a `templateName` option and supply a block will throw an error. ```handlebars {{view "MyApp.ViewWithATemplateDefined"}} ``` ### `viewName` property You can supply a `viewName` option to `{{view}}`. The `Ember.View` instance will be referenced as a property of its parent view by this name. ```javascript aView = Ember.View.create({ template: Ember.Handlebars.compile('{{#view viewName="aChildByName"}} hi {{/view}}') }); aView.appendTo('body'); aView.get('aChildByName') // the instance of Ember.View created by {{view}} helper ``` @method view @for Ember.Handlebars.helpers @param {String} path @param {Hash} options @return {String} HTML string */ EmberHandlebars.registerHelper('view', function(path, options) { // If no path is provided, treat path param as options. if (path && path.data && path.data.isRenderData) { options = path; path = "Ember.View"; } return EmberHandlebars.ViewHelper.helper(this, path, options); }); })(); (function() { /*globals Handlebars */ // TODO: Don't require all of this module /** @module ember @submodule ember-handlebars */ var get = Ember.get, handlebarsGet = Ember.Handlebars.get, fmt = Ember.String.fmt; /** `{{collection}}` is a `Ember.Handlebars` helper for adding instances of `Ember.CollectionView` to a template. See `Ember.CollectionView` for additional information on how a `CollectionView` functions. `{{collection}}`'s primary use is as a block helper with a `contentBinding` option pointing towards an `Ember.Array`-compatible object. An `Ember.View` instance will be created for each item in its `content` property. Each view will have its own `content` property set to the appropriate item in the collection. The provided block will be applied as the template for each item's view. Given an empty `<body>` the following template: ```handlebars {{#collection contentBinding="App.items"}} Hi {{view.content.name}} {{/collection}} ``` And the following application code ```javascript App = Ember.Application.create() App.items = [ Ember.Object.create({name: 'Dave'}), Ember.Object.create({name: 'Mary'}), Ember.Object.create({name: 'Sara'}) ] ``` Will result in the HTML structure below ```html <div class="ember-view"> <div class="ember-view">Hi Dave</div> <div class="ember-view">Hi Mary</div> <div class="ember-view">Hi Sara</div> </div> ``` ### Blockless Use If you provide an `itemViewClass` option that has its own `template` you can omit the block. The following template: ```handlebars {{collection contentBinding="App.items" itemViewClass="App.AnItemView"}} ``` And application code ```javascript App = Ember.Application.create(); App.items = [ Ember.Object.create({name: 'Dave'}), Ember.Object.create({name: 'Mary'}), Ember.Object.create({name: 'Sara'}) ]; App.AnItemView = Ember.View.extend({ template: Ember.Handlebars.compile("Greetings {{view.content.name}}") }); ``` Will result in the HTML structure below ```html <div class="ember-view"> <div class="ember-view">Greetings Dave</div> <div class="ember-view">Greetings Mary</div> <div class="ember-view">Greetings Sara</div> </div> ``` ### Specifying a CollectionView subclass By default the `{{collection}}` helper will create an instance of `Ember.CollectionView`. You can supply a `Ember.CollectionView` subclass to the helper by passing it as the first argument: ```handlebars {{#collection App.MyCustomCollectionClass contentBinding="App.items"}} Hi {{view.content.name}} {{/collection}} ``` ### Forwarded `item.*`-named Options As with the `{{view}}`, helper options passed to the `{{collection}}` will be set on the resulting `Ember.CollectionView` as properties. Additionally, options prefixed with `item` will be applied to the views rendered for each item (note the camelcasing): ```handlebars {{#collection contentBinding="App.items" itemTagName="p" itemClassNames="greeting"}} Howdy {{view.content.name}} {{/collection}} ``` Will result in the following HTML structure: ```html <div class="ember-view"> <p class="ember-view greeting">Howdy Dave</p> <p class="ember-view greeting">Howdy Mary</p> <p class="ember-view greeting">Howdy Sara</p> </div> ``` @method collection @for Ember.Handlebars.helpers @param {String} path @param {Hash} options @return {String} HTML string @deprecated Use `{{each}}` helper instead. */ Ember.Handlebars.registerHelper('collection', function(path, options) { // If no path is provided, treat path param as options. if (path && path.data && path.data.isRenderData) { options = path; path = undefined; } else { } var fn = options.fn; var data = options.data; var inverse = options.inverse; var view = options.data.view; // If passed a path string, convert that into an object. // Otherwise, just default to the standard class. var collectionClass; collectionClass = path ? handlebarsGet(this, path, options) : Ember.CollectionView; var hash = options.hash, itemHash = {}, match; // Extract item view class if provided else default to the standard class var itemViewClass, itemViewPath = hash.itemViewClass; var collectionPrototype = collectionClass.proto(); delete hash.itemViewClass; itemViewClass = itemViewPath ? handlebarsGet(collectionPrototype, itemViewPath, options) : collectionPrototype.itemViewClass; // Go through options passed to the {{collection}} helper and extract options // that configure item views instead of the collection itself. for (var prop in hash) { if (hash.hasOwnProperty(prop)) { match = prop.match(/^item(.)(.*)$/); if(match && prop !== 'itemController') { // Convert itemShouldFoo -> shouldFoo itemHash[match[1].toLowerCase() + match[2]] = hash[prop]; // Delete from hash as this will end up getting passed to the // {{view}} helper method. delete hash[prop]; } } } var tagName = hash.tagName || collectionPrototype.tagName; if (fn) { itemHash.template = fn; delete options.fn; } var emptyViewClass; if (inverse && inverse !== Handlebars.VM.noop) { emptyViewClass = get(collectionPrototype, 'emptyViewClass'); emptyViewClass = emptyViewClass.extend({ template: inverse, tagName: itemHash.tagName }); } else if (hash.emptyViewClass) { emptyViewClass = handlebarsGet(this, hash.emptyViewClass, options); } if (emptyViewClass) { hash.emptyView = emptyViewClass; } if(!hash.keyword){ itemHash._context = Ember.computed.alias('content'); } var viewString = view.toString(); var viewOptions = Ember.Handlebars.ViewHelper.propertiesFromHTMLOptions({ data: data, hash: itemHash }, this); hash.itemViewClass = itemViewClass.extend(viewOptions); return Ember.Handlebars.helpers.view.call(this, collectionClass, options); }); })(); (function() { /*globals Handlebars */ /** @module ember @submodule ember-handlebars */ var handlebarsGet = Ember.Handlebars.get; /** `unbound` allows you to output a property without binding. *Important:* The output will not be updated if the property changes. Use with caution. ```handlebars <div>{{unbound somePropertyThatDoesntChange}}</div> ``` `unbound` can also be used in conjunction with a bound helper to render it in its unbound form: ```handlebars <div>{{unbound helperName somePropertyThatDoesntChange}}</div> ``` @method unbound @for Ember.Handlebars.helpers @param {String} property @return {String} HTML string */ Ember.Handlebars.registerHelper('unbound', function(property, fn) { var options = arguments[arguments.length - 1], helper, context, out; if(arguments.length > 2) { // Unbound helper call. options.data.isUnbound = true; helper = Ember.Handlebars.helpers[arguments[0]] || Ember.Handlebars.helperMissing; out = helper.apply(this, Array.prototype.slice.call(arguments, 1)); delete options.data.isUnbound; return out; } context = (fn.contexts && fn.contexts[0]) || this; return handlebarsGet(context, property, fn); }); })(); (function() { /*jshint debug:true*/ /** @module ember @submodule ember-handlebars */ var handlebarsGet = Ember.Handlebars.get, normalizePath = Ember.Handlebars.normalizePath; /** `log` allows you to output the value of a value in the current rendering context. ```handlebars {{log myVariable}} ``` @method log @for Ember.Handlebars.helpers @param {String} property */ Ember.Handlebars.registerHelper('log', function(property, options) { var context = (options.contexts && options.contexts[0]) || this, normalized = normalizePath(context, property, options.data), pathRoot = normalized.root, path = normalized.path, value = (path === 'this') ? pathRoot : handlebarsGet(pathRoot, path, options); Ember.Logger.log(value); }); /** Execute the `debugger` statement in the current context. ```handlebars {{debugger}} ``` @method debugger @for Ember.Handlebars.helpers @param {String} property */ Ember.Handlebars.registerHelper('debugger', function() { debugger; }); })(); (function() { /** @module ember @submodule ember-handlebars */ var get = Ember.get, set = Ember.set; Ember.Handlebars.EachView = Ember.CollectionView.extend(Ember._Metamorph, { init: function() { var itemController = get(this, 'itemController'); var binding; if (itemController) { var controller = Ember.ArrayController.create(); set(controller, 'itemController', itemController); set(controller, 'container', get(this, 'controller.container')); set(controller, '_eachView', this); this.disableContentObservers(function() { set(this, 'content', controller); binding = new Ember.Binding('content', '_eachView.dataSource').oneWay(); binding.connect(controller); }); set(this, '_arrayController', controller); } else { this.disableContentObservers(function() { binding = new Ember.Binding('content', 'dataSource').oneWay(); binding.connect(this); }); } return this._super(); }, disableContentObservers: function(callback) { Ember.removeBeforeObserver(this, 'content', null, '_contentWillChange'); Ember.removeObserver(this, 'content', null, '_contentDidChange'); callback.apply(this); Ember.addBeforeObserver(this, 'content', null, '_contentWillChange'); Ember.addObserver(this, 'content', null, '_contentDidChange'); }, itemViewClass: Ember._MetamorphView, emptyViewClass: Ember._MetamorphView, createChildView: function(view, attrs) { view = this._super(view, attrs); // At the moment, if a container view subclass wants // to insert keywords, it is responsible for cloning // the keywords hash. This will be fixed momentarily. var keyword = get(this, 'keyword'); var content = get(view, 'content'); if (keyword) { var data = get(view, 'templateData'); data = Ember.copy(data); data.keywords = view.cloneKeywords(); set(view, 'templateData', data); // In this case, we do not bind, because the `content` of // a #each item cannot change. data.keywords[keyword] = content; } // If {{#each}} is looping over an array of controllers, // point each child view at their respective controller. if (content && get(content, 'isController')) { set(view, 'controller', content); } return view; }, willDestroy: function() { var arrayController = get(this, '_arrayController'); if (arrayController) { arrayController.destroy(); } return this._super(); } }); var GroupedEach = Ember.Handlebars.GroupedEach = function(context, path, options) { var self = this, normalized = Ember.Handlebars.normalizePath(context, path, options.data); this.context = context; this.path = path; this.options = options; this.template = options.fn; this.containingView = options.data.view; this.normalizedRoot = normalized.root; this.normalizedPath = normalized.path; this.content = this.lookupContent(); this.addContentObservers(); this.addArrayObservers(); this.containingView.on('willClearRender', function() { self.destroy(); }); }; GroupedEach.prototype = { contentWillChange: function() { this.removeArrayObservers(); }, contentDidChange: function() { this.content = this.lookupContent(); this.addArrayObservers(); this.rerenderContainingView(); }, contentArrayWillChange: Ember.K, contentArrayDidChange: function() { this.rerenderContainingView(); }, lookupContent: function() { return Ember.Handlebars.get(this.normalizedRoot, this.normalizedPath, this.options); }, addArrayObservers: function() { this.content.addArrayObserver(this, { willChange: 'contentArrayWillChange', didChange: 'contentArrayDidChange' }); }, removeArrayObservers: function() { this.content.removeArrayObserver(this, { willChange: 'contentArrayWillChange', didChange: 'contentArrayDidChange' }); }, addContentObservers: function() { Ember.addBeforeObserver(this.normalizedRoot, this.normalizedPath, this, this.contentWillChange); Ember.addObserver(this.normalizedRoot, this.normalizedPath, this, this.contentDidChange); }, removeContentObservers: function() { Ember.removeBeforeObserver(this.normalizedRoot, this.normalizedPath, this.contentWillChange); Ember.removeObserver(this.normalizedRoot, this.normalizedPath, this.contentDidChange); }, render: function() { var content = this.content, contentLength = get(content, 'length'), data = this.options.data, template = this.template; data.insideEach = true; for (var i = 0; i < contentLength; i++) { template(content.objectAt(i), { data: data }); } }, rerenderContainingView: function() { Ember.run.scheduleOnce('render', this.containingView, 'rerender'); }, destroy: function() { this.removeContentObservers(); this.removeArrayObservers(); } }; /** The `{{#each}}` helper loops over elements in a collection, rendering its block once for each item. It is an extension of the base Handlebars `{{#each}}` helper: ```javascript Developers = [{name: 'Yehuda'},{name: 'Tom'}, {name: 'Paul'}]; ``` ```handlebars {{#each Developers}} {{name}} {{/each}} ``` `{{each}}` supports an alternative syntax with element naming: ```handlebars {{#each person in Developers}} {{person.name}} {{/each}} ``` When looping over objects that do not have properties, `{{this}}` can be used to render the object: ```javascript DeveloperNames = ['Yehuda', 'Tom', 'Paul'] ``` ```handlebars {{#each DeveloperNames}} {{this}} {{/each}} ``` ### {{else}} condition `{{#each}}` can have a matching `{{else}}`. The contents of this block will render if the collection is empty. ``` {{#each person in Developers}} {{person.name}} {{else}} <p>Sorry, nobody is available for this task.</p> {{/each}} ``` ### Specifying a View class for items If you provide an `itemViewClass` option that references a view class with its own `template` you can omit the block. The following template: ```handlebars {{#view App.MyView }} {{each view.items itemViewClass="App.AnItemView"}} {{/view}} ``` And application code ```javascript App = Ember.Application.create({ MyView: Ember.View.extend({ items: [ Ember.Object.create({name: 'Dave'}), Ember.Object.create({name: 'Mary'}), Ember.Object.create({name: 'Sara'}) ] }) }); App.AnItemView = Ember.View.extend({ template: Ember.Handlebars.compile("Greetings {{name}}") }); ``` Will result in the HTML structure below ```html <div class="ember-view"> <div class="ember-view">Greetings Dave</div> <div class="ember-view">Greetings Mary</div> <div class="ember-view">Greetings Sara</div> </div> ``` ### Representing each item with a Controller. By default the controller lookup within an `{{#each}}` block will be the controller of the template where the `{{#each}}` was used. If each item needs to be presented by a custom controller you can provide a `itemController` option which references a controller by lookup name. Each item in the loop will be wrapped in an instance of this controller and the item itself will be set to the `content` property of that controller. This is useful in cases where properties of model objects need transformation or synthesis for display: ```javascript App.DeveloperController = Ember.ObjectController.extend({ isAvailableForHire: function(){ return !this.get('content.isEmployed') && this.get('content.isSeekingWork'); }.property('isEmployed', 'isSeekingWork') }) ``` ```handlebars {{#each person in Developers itemController="developer"}} {{person.name}} {{#if person.isAvailableForHire}}Hire me!{{/if}} {{/each}} ``` @method each @for Ember.Handlebars.helpers @param [name] {String} name for item (used with `in`) @param path {String} path @param [options] {Object} Handlebars key/value pairs of options @param [options.itemViewClass] {String} a path to a view class used for each item @param [options.itemController] {String} name of a controller to be created for each item */ Ember.Handlebars.registerHelper('each', function(path, options) { if (arguments.length === 4) { var keywordName = arguments[0]; options = arguments[3]; path = arguments[2]; if (path === '') { path = "this"; } options.hash.keyword = keywordName; } options.hash.dataSourceBinding = path; // Set up emptyView as a metamorph with no tag //options.hash.emptyViewClass = Ember._MetamorphView; if (options.data.insideGroup && !options.hash.groupedRows && !options.hash.itemViewClass) { new Ember.Handlebars.GroupedEach(this, path, options).render(); } else { return Ember.Handlebars.helpers.collection.call(this, 'Ember.Handlebars.EachView', options); } }); })(); (function() { /** @module ember @submodule ember-handlebars */ /** `template` allows you to render a template from inside another template. This allows you to re-use the same template in multiple places. For example: ```html <script type="text/x-handlebars" data-template-name="logged_in_user"> {{#with loggedInUser}} Last Login: {{lastLogin}} User Info: {{template "user_info"}} {{/with}} </script> ``` ```html <script type="text/x-handlebars" data-template-name="user_info"> Name: <em>{{name}}</em> Karma: <em>{{karma}}</em> </script> ``` This helper looks for templates in the global `Ember.TEMPLATES` hash. If you add `<script>` tags to your page with the `data-template-name` attribute set, they will be compiled and placed in this hash automatically. You can also manually register templates by adding them to the hash: ```javascript Ember.TEMPLATES["my_cool_template"] = Ember.Handlebars.compile('<b>{{user}}</b>'); ``` @method template @for Ember.Handlebars.helpers @param {String} templateName the template to render */ Ember.Handlebars.registerHelper('template', function(name, options) { var template = Ember.TEMPLATES[name]; Ember.TEMPLATES[name](this, { data: options.data }); }); Ember.Handlebars.registerHelper('partial', function(name, options) { var nameParts = name.split("/"), lastPart = nameParts[nameParts.length - 1]; nameParts[nameParts.length - 1] = "_" + lastPart; var underscoredName = nameParts.join("/"); var template = Ember.TEMPLATES[underscoredName], deprecatedTemplate = Ember.TEMPLATES[name]; template = template || deprecatedTemplate; template(this, { data: options.data }); }); })(); (function() { /** @module ember @submodule ember-handlebars */ var get = Ember.get, set = Ember.set; /** When used in a Handlebars template that is assigned to an `Ember.View` instance's `layout` property Ember will render the layout template first, inserting the view's own rendered output at the `{{yield}}` location. An empty `<body>` and the following application code: ```javascript AView = Ember.View.extend({ classNames: ['a-view-with-layout'], layout: Ember.Handlebars.compile('<div class="wrapper">{{yield}}</div>'), template: Ember.Handlebars.compile('<span>I am wrapped</span>') }); aView = AView.create(); aView.appendTo('body'); ``` Will result in the following HTML output: ```html <body> <div class='ember-view a-view-with-layout'> <div class="wrapper"> <span>I am wrapped</span> </div> </div> </body> ``` The `yield` helper cannot be used outside of a template assigned to an `Ember.View`'s `layout` property and will throw an error if attempted. ```javascript BView = Ember.View.extend({ classNames: ['a-view-with-layout'], template: Ember.Handlebars.compile('{{yield}}') }); bView = BView.create(); bView.appendTo('body'); // throws // Uncaught Error: assertion failed: You called yield in a template that was not a layout ``` @method yield @for Ember.Handlebars.helpers @param {Hash} options @return {String} HTML string */ Ember.Handlebars.registerHelper('yield', function(options) { var view = options.data.view, template; while (view && !get(view, 'layout')) { view = get(view, 'parentView'); } template = get(view, 'template'); if (template) { template(this, options); } }); })(); (function() { })(); (function() { })(); (function() { /** @module ember @submodule ember-handlebars */ var set = Ember.set, get = Ember.get; /** The `Ember.Checkbox` view class renders a checkbox [input](https://developer.mozilla.org/en/HTML/Element/Input) element. It allows for binding an Ember property (`checked`) to the status of the checkbox. Example: ```handlebars {{view Ember.Checkbox checkedBinding="receiveEmail"}} ``` You can add a `label` tag yourself in the template where the `Ember.Checkbox` is being used. ```html <label> {{view Ember.Checkbox classNames="applicaton-specific-checkbox"}} Some Title </label> ``` The `checked` attribute of an `Ember.Checkbox` object should always be set through the Ember object or by interacting with its rendered element representation via the mouse, keyboard, or touch. Updating the value of the checkbox via jQuery will result in the checked value of the object and its element losing synchronization. ## Layout and LayoutName properties Because HTML `input` elements are self closing `layout` and `layoutName` properties will not be applied. See `Ember.View`'s layout section for more information. @class Checkbox @namespace Ember @extends Ember.View */ Ember.Checkbox = Ember.View.extend({ classNames: ['ember-checkbox'], tagName: 'input', attributeBindings: ['type', 'checked', 'disabled', 'tabindex'], type: "checkbox", checked: false, disabled: false, init: function() { this._super(); this.on("change", this, this._updateElementValue); }, _updateElementValue: function() { set(this, 'checked', this.$().prop('checked')); } }); })(); (function() { /** @module ember @submodule ember-handlebars */ var get = Ember.get, set = Ember.set; /** Shared mixin used by `Ember.TextField` and `Ember.TextArea`. @class TextSupport @namespace Ember @extends Ember.Mixin @private */ Ember.TextSupport = Ember.Mixin.create({ value: "", attributeBindings: ['placeholder', 'disabled', 'maxlength', 'tabindex'], placeholder: null, disabled: false, maxlength: null, insertNewline: Ember.K, cancel: Ember.K, init: function() { this._super(); this.on("focusOut", this, this._elementValueDidChange); this.on("change", this, this._elementValueDidChange); this.on("paste", this, this._elementValueDidChange); this.on("cut", this, this._elementValueDidChange); this.on("input", this, this._elementValueDidChange); this.on("keyUp", this, this.interpretKeyEvents); }, interpretKeyEvents: function(event) { var map = Ember.TextSupport.KEY_EVENTS; var method = map[event.keyCode]; this._elementValueDidChange(); if (method) { return this[method](event); } }, _elementValueDidChange: function() { set(this, 'value', this.$().val()); } }); Ember.TextSupport.KEY_EVENTS = { 13: 'insertNewline', 27: 'cancel' }; })(); (function() { /** @module ember @submodule ember-handlebars */ var get = Ember.get, set = Ember.set; /** The `Ember.TextField` view class renders a text [input](https://developer.mozilla.org/en/HTML/Element/Input) element. It allows for binding Ember properties to the text field contents (`value`), live-updating as the user inputs text. Example: ```handlebars {{view Ember.TextField valueBinding="firstName"}} ``` ## Layout and LayoutName properties Because HTML `input` elements are self closing `layout` and `layoutName` properties will not be applied. See `Ember.View`'s layout section for more information. ## HTML Attributes By default `Ember.TextField` provides support for `type`, `value`, `size`, `placeholder`, `disabled`, `maxlength` and `tabindex` attributes on a test field. If you need to support more attributes have a look at the `attributeBindings` property in `Ember.View`'s HTML Attributes section. To globally add support for additional attributes you can reopen `Ember.TextField` or `Ember.TextSupport`. ```javascript Ember.TextSupport.reopen({ attributeBindings: ["required"] }) ``` @class TextField @namespace Ember @extends Ember.View @uses Ember.TextSupport */ Ember.TextField = Ember.View.extend(Ember.TextSupport, /** @scope Ember.TextField.prototype */ { classNames: ['ember-text-field'], tagName: "input", attributeBindings: ['type', 'value', 'size', 'pattern'], /** The `value` attribute of the input element. As the user inputs text, this property is updated live. @property value @type String @default "" */ value: "", /** The `type` attribute of the input element. @property type @type String @default "text" */ type: "text", /** The `size` of the text field in characters. @property size @type String @default null */ size: null, /** The `pattern` the pattern attribute of input element. @property pattern @type String @default null */ pattern: null, /** The action to be sent when the user presses the return key. This is similar to the `{{action}}` helper, but is fired when the user presses the return key when editing a text field, and sends the value of the field as the context. @property action @type String @default null */ action: null, /** Whether they `keyUp` event that triggers an `action` to be sent continues propagating to other views. By default, when the user presses the return key on their keyboard and the text field has an `action` set, the action will be sent to the view's controller and the key event will stop propagating. If you would like parent views to receive the `keyUp` event even after an action has been dispatched, set `bubbles` to true. @property bubbles @type Boolean @default false */ bubbles: false, insertNewline: function(event) { var controller = get(this, 'controller'), action = get(this, 'action'); if (action) { controller.send(action, get(this, 'value'), this); if (!get(this, 'bubbles')) { event.stopPropagation(); } } } }); })(); (function() { /** @module ember @submodule ember-handlebars */ var get = Ember.get, set = Ember.set; /** @class Button @namespace Ember @extends Ember.View @uses Ember.TargetActionSupport @deprecated */ Ember.Button = Ember.View.extend(Ember.TargetActionSupport, { classNames: ['ember-button'], classNameBindings: ['isActive'], tagName: 'button', propagateEvents: false, attributeBindings: ['type', 'disabled', 'href', 'tabindex'], /** @private Overrides `TargetActionSupport`'s `targetObject` computed property to use Handlebars-specific path resolution. @property targetObject */ targetObject: Ember.computed(function() { var target = get(this, 'target'), root = get(this, 'context'), data = get(this, 'templateData'); if (typeof target !== 'string') { return target; } return Ember.Handlebars.get(root, target, { data: data }); }).property('target'), // Defaults to 'button' if tagName is 'input' or 'button' type: Ember.computed(function(key) { var tagName = this.tagName; if (tagName === 'input' || tagName === 'button') { return 'button'; } }), disabled: false, // Allow 'a' tags to act like buttons href: Ember.computed(function() { return this.tagName === 'a' ? '#' : null; }), mouseDown: function() { if (!get(this, 'disabled')) { set(this, 'isActive', true); this._mouseDown = true; this._mouseEntered = true; } return get(this, 'propagateEvents'); }, mouseLeave: function() { if (this._mouseDown) { set(this, 'isActive', false); this._mouseEntered = false; } }, mouseEnter: function() { if (this._mouseDown) { set(this, 'isActive', true); this._mouseEntered = true; } }, mouseUp: function(event) { if (get(this, 'isActive')) { // Actually invoke the button's target and action. // This method comes from the Ember.TargetActionSupport mixin. this.triggerAction(); set(this, 'isActive', false); } this._mouseDown = false; this._mouseEntered = false; return get(this, 'propagateEvents'); }, keyDown: function(event) { // Handle space or enter if (event.keyCode === 13 || event.keyCode === 32) { this.mouseDown(); } }, keyUp: function(event) { // Handle space or enter if (event.keyCode === 13 || event.keyCode === 32) { this.mouseUp(); } }, // TODO: Handle proper touch behavior. Including should make inactive when // finger moves more than 20x outside of the edge of the button (vs mouse // which goes inactive as soon as mouse goes out of edges.) touchStart: function(touch) { return this.mouseDown(touch); }, touchEnd: function(touch) { return this.mouseUp(touch); }, init: function() { this._super(); } }); })(); (function() { /** @module ember @submodule ember-handlebars */ var get = Ember.get, set = Ember.set; /** The `Ember.TextArea` view class renders a [textarea](https://developer.mozilla.org/en/HTML/Element/textarea) element. It allows for binding Ember properties to the text area contents (`value`), live-updating as the user inputs text. ## Layout and LayoutName properties Because HTML `textarea` elements do not contain inner HTML the `layout` and `layoutName` properties will not be applied. See `Ember.View`'s layout section for more information. ## HTML Attributes By default `Ember.TextArea` provides support for `rows`, `cols`, `placeholder`, `disabled`, `maxlength` and `tabindex` attributes on a textarea. If you need to support more attributes have a look at the `attributeBindings` property in `Ember.View`'s HTML Attributes section. To globally add support for additional attributes you can reopen `Ember.TextArea` or `Ember.TextSupport`. ```javascript Ember.TextSupport.reopen({ attributeBindings: ["required"] }) ``` @class TextArea @namespace Ember @extends Ember.View @uses Ember.TextSupport */ Ember.TextArea = Ember.View.extend(Ember.TextSupport, { classNames: ['ember-text-area'], tagName: "textarea", attributeBindings: ['rows', 'cols'], rows: null, cols: null, _updateElementValue: Ember.observer(function() { // We do this check so cursor position doesn't get affected in IE var value = get(this, 'value'), $el = this.$(); if ($el && value !== $el.val()) { $el.val(value); } }, 'value'), init: function() { this._super(); this.on("didInsertElement", this, this._updateElementValue); } }); })(); (function() { /*jshint eqeqeq:false */ /** @module ember @submodule ember-handlebars */ var set = Ember.set, get = Ember.get, indexOf = Ember.EnumerableUtils.indexOf, indexesOf = Ember.EnumerableUtils.indexesOf, replace = Ember.EnumerableUtils.replace, isArray = Ember.isArray, precompileTemplate = Ember.Handlebars.compile; /** The `Ember.Select` view class renders a [select](https://developer.mozilla.org/en/HTML/Element/select) HTML element, allowing the user to choose from a list of options. The text and `value` property of each `<option>` element within the `<select>` element are populated from the objects in the `Element.Select`'s `content` property. The underlying data object of the selected `<option>` is stored in the `Element.Select`'s `value` property. ### `content` as an array of Strings The simplest version of an `Ember.Select` takes an array of strings as its `content` property. The string will be used as both the `value` property and the inner text of each `<option>` element inside the rendered `<select>`. Example: ```javascript App.names = ["Yehuda", "Tom"]; ``` ```handlebars {{view Ember.Select contentBinding="App.names"}} ``` Would result in the following HTML: ```html <select class="ember-select"> <option value="Yehuda">Yehuda</option> <option value="Tom">Tom</option> </select> ``` You can control which `<option>` is selected through the `Ember.Select`'s `value` property directly or as a binding: ```javascript App.names = Ember.Object.create({ selected: 'Tom', content: ["Yehuda", "Tom"] }); ``` ```handlebars {{view Ember.Select contentBinding="App.names.content" valueBinding="App.names.selected" }} ``` Would result in the following HTML with the `<option>` for 'Tom' selected: ```html <select class="ember-select"> <option value="Yehuda">Yehuda</option> <option value="Tom" selected="selected">Tom</option> </select> ``` A user interacting with the rendered `<select>` to choose "Yehuda" would update the value of `App.names.selected` to "Yehuda". ### `content` as an Array of Objects An `Ember.Select` can also take an array of JavaScript or Ember objects as its `content` property. When using objects you need to tell the `Ember.Select` which property should be accessed on each object to supply the `value` attribute of the `<option>` and which property should be used to supply the element text. The `optionValuePath` option is used to specify the path on each object to the desired property for the `value` attribute. The `optionLabelPath` specifies the path on each object to the desired property for the element's text. Both paths must reference each object itself as `content`: ```javascript App.programmers = [ Ember.Object.create({firstName: "Yehuda", id: 1}), Ember.Object.create({firstName: "Tom", id: 2}) ]; ``` ```handlebars {{view Ember.Select contentBinding="App.programmers" optionValuePath="content.id" optionLabelPath="content.firstName"}} ``` Would result in the following HTML: ```html <select class="ember-select"> <option value>Please Select</option> <option value="1">Yehuda</option> <option value="2">Tom</option> </select> ``` The `value` attribute of the selected `<option>` within an `Ember.Select` can be bound to a property on another object by providing a `valueBinding` option: ```javascript App.programmers = [ Ember.Object.create({firstName: "Yehuda", id: 1}), Ember.Object.create({firstName: "Tom", id: 2}) ]; App.currentProgrammer = Ember.Object.create({ id: 2 }); ``` ```handlebars {{view Ember.Select contentBinding="App.programmers" optionValuePath="content.id" optionLabelPath="content.firstName" valueBinding="App.currentProgrammer.id"}} ``` Would result in the following HTML with a selected option: ```html <select class="ember-select"> <option value>Please Select</option> <option value="1">Yehuda</option> <option value="2" selected="selected">Tom</option> </select> ``` Interacting with the rendered element by selecting the first option ('Yehuda') will update the `id` value of `App.currentProgrammer` to match the `value` property of the newly selected `<option>`. Alternatively, you can control selection through the underlying objects used to render each object providing a `selectionBinding`. When the selected `<option>` is changed, the property path provided to `selectionBinding` will be updated to match the content object of the rendered `<option>` element: ```javascript App.controller = Ember.Object.create({ selectedPerson: null, content: [ Ember.Object.create({firstName: "Yehuda", id: 1}), Ember.Object.create({firstName: "Tom", id: 2}) ] }); ``` ```handlebars {{view Ember.Select contentBinding="App.controller.content" optionValuePath="content.id" optionLabelPath="content.firstName" selectionBinding="App.controller.selectedPerson"}} ``` Would result in the following HTML with a selected option: ```html <select class="ember-select"> <option value>Please Select</option> <option value="1">Yehuda</option> <option value="2" selected="selected">Tom</option> </select> ``` Interacting with the rendered element by selecting the first option ('Yehuda') will update the `selectedPerson` value of `App.controller` to match the content object of the newly selected `<option>`. In this case it is the first object in the `App.content.content` ### Supplying a Prompt A `null` value for the `Ember.Select`'s `value` or `selection` property results in there being no `<option>` with a `selected` attribute: ```javascript App.controller = Ember.Object.create({ selected: null, content: [ "Yehuda", "Tom" ] }); ``` ``` handlebars {{view Ember.Select contentBinding="App.controller.content" valueBinding="App.controller.selected" }} ``` Would result in the following HTML: ```html <select class="ember-select"> <option value="Yehuda">Yehuda</option> <option value="Tom">Tom</option> </select> ``` Although `App.controller.selected` is `null` and no `<option>` has a `selected` attribute the rendered HTML will display the first item as though it were selected. You can supply a string value for the `Ember.Select` to display when there is no selection with the `prompt` option: ```javascript App.controller = Ember.Object.create({ selected: null, content: [ "Yehuda", "Tom" ] }); ``` ```handlebars {{view Ember.Select contentBinding="App.controller.content" valueBinding="App.controller.selected" prompt="Please select a name" }} ``` Would result in the following HTML: ```html <select class="ember-select"> <option>Please select a name</option> <option value="Yehuda">Yehuda</option> <option value="Tom">Tom</option> </select> ``` @class Select @namespace Ember @extends Ember.View */ Ember.Select = Ember.View.extend( /** @scope Ember.Select.prototype */ { tagName: 'select', classNames: ['ember-select'], defaultTemplate: Ember.Handlebars.template(function anonymous(Handlebars,depth0,helpers,partials,data) { helpers = helpers || Ember.Handlebars.helpers; data = data || {}; var buffer = '', stack1, hashTypes, escapeExpression=this.escapeExpression, self=this; function program1(depth0,data) { var buffer = '', stack1, hashTypes; data.buffer.push("<option value=\"\">"); stack1 = {}; hashTypes = {}; stack1 = helpers._triageMustache.call(depth0, "view.prompt", {hash:stack1,contexts:[depth0],types:["ID"],hashTypes:hashTypes,data:data}); data.buffer.push(escapeExpression(stack1) + "</option>"); return buffer;} function program3(depth0,data) { var stack1, hashTypes; stack1 = {}; hashTypes = {}; hashTypes['contentBinding'] = "STRING"; stack1['contentBinding'] = "this"; stack1 = helpers.view.call(depth0, "Ember.SelectOption", {hash:stack1,contexts:[depth0],types:["ID"],hashTypes:hashTypes,data:data}); data.buffer.push(escapeExpression(stack1));} stack1 = {}; hashTypes = {}; stack1 = helpers['if'].call(depth0, "view.prompt", {hash:stack1,inverse:self.noop,fn:self.program(1, program1, data),contexts:[depth0],types:["ID"],hashTypes:hashTypes,data:data}); if(stack1 || stack1 === 0) { data.buffer.push(stack1); } stack1 = {}; hashTypes = {}; stack1 = helpers.each.call(depth0, "view.content", {hash:stack1,inverse:self.noop,fn:self.program(3, program3, data),contexts:[depth0],types:["ID"],hashTypes:hashTypes,data:data}); if(stack1 || stack1 === 0) { data.buffer.push(stack1); } return buffer; }), attributeBindings: ['multiple', 'disabled', 'tabindex'], /** The `multiple` attribute of the select element. Indicates whether multiple options can be selected. @property multiple @type Boolean @default false */ multiple: false, disabled: false, /** The list of options. If `optionLabelPath` and `optionValuePath` are not overridden, this should be a list of strings, which will serve simultaneously as labels and values. Otherwise, this should be a list of objects. For instance: ```javascript Ember.Select.create({ content: Ember.A([ { id: 1, firstName: 'Yehuda' }, { id: 2, firstName: 'Tom' } ]), optionLabelPath: 'content.firstName', optionValuePath: 'content.id' }); ``` @property content @type Array @default null */ content: null, /** When `multiple` is `false`, the element of `content` that is currently selected, if any. When `multiple` is `true`, an array of such elements. @property selection @type Object or Array @default null */ selection: null, /** In single selection mode (when `multiple` is `false`), value can be used to get the current selection's value or set the selection by it's value. It is not currently supported in multiple selection mode. @property value @type String @default null */ value: Ember.computed(function(key, value) { if (arguments.length === 2) { return value; } var valuePath = get(this, 'optionValuePath').replace(/^content\.?/, ''); return valuePath ? get(this, 'selection.' + valuePath) : get(this, 'selection'); }).property('selection'), /** If given, a top-most dummy option will be rendered to serve as a user prompt. @property prompt @type String @default null */ prompt: null, /** The path of the option labels. See `content`. @property optionLabelPath @type String @default 'content' */ optionLabelPath: 'content', /** The path of the option values. See `content`. @property optionValuePath @type String @default 'content' */ optionValuePath: 'content', _change: function() { if (get(this, 'multiple')) { this._changeMultiple(); } else { this._changeSingle(); } }, selectionDidChange: Ember.observer(function() { var selection = get(this, 'selection'); if (get(this, 'multiple')) { if (!isArray(selection)) { set(this, 'selection', Ember.A([selection])); return; } this._selectionDidChangeMultiple(); } else { this._selectionDidChangeSingle(); } }, 'selection.@each'), valueDidChange: Ember.observer(function() { var content = get(this, 'content'), value = get(this, 'value'), valuePath = get(this, 'optionValuePath').replace(/^content\.?/, ''), selectedValue = (valuePath ? get(this, 'selection.' + valuePath) : get(this, 'selection')), selection; if (value !== selectedValue) { selection = content.find(function(obj) { return value === (valuePath ? get(obj, valuePath) : obj); }); this.set('selection', selection); } }, 'value'), _triggerChange: function() { var selection = get(this, 'selection'); var value = get(this, 'value'); if (selection) { this.selectionDidChange(); } if (value) { this.valueDidChange(); } this._change(); }, _changeSingle: function() { var selectedIndex = this.$()[0].selectedIndex, content = get(this, 'content'), prompt = get(this, 'prompt'); if (!get(content, 'length')) { return; } if (prompt && selectedIndex === 0) { set(this, 'selection', null); return; } if (prompt) { selectedIndex -= 1; } set(this, 'selection', content.objectAt(selectedIndex)); }, _changeMultiple: function() { var options = this.$('option:selected'), prompt = get(this, 'prompt'), offset = prompt ? 1 : 0, content = get(this, 'content'), selection = get(this, 'selection'); if (!content){ return; } if (options) { var selectedIndexes = options.map(function(){ return this.index - offset; }).toArray(); var newSelection = content.objectsAt(selectedIndexes); if (isArray(selection)) { replace(selection, 0, get(selection, 'length'), newSelection); } else { set(this, 'selection', newSelection); } } }, _selectionDidChangeSingle: function() { var el = this.get('element'); if (!el) { return; } var content = get(this, 'content'), selection = get(this, 'selection'), selectionIndex = content ? indexOf(content, selection) : -1, prompt = get(this, 'prompt'); if (prompt) { selectionIndex += 1; } if (el) { el.selectedIndex = selectionIndex; } }, _selectionDidChangeMultiple: function() { var content = get(this, 'content'), selection = get(this, 'selection'), selectedIndexes = content ? indexesOf(content, selection) : [-1], prompt = get(this, 'prompt'), offset = prompt ? 1 : 0, options = this.$('option'), adjusted; if (options) { options.each(function() { adjusted = this.index > -1 ? this.index - offset : -1; this.selected = indexOf(selectedIndexes, adjusted) > -1; }); } }, init: function() { this._super(); this.on("didInsertElement", this, this._triggerChange); this.on("change", this, this._change); } }); Ember.SelectOption = Ember.View.extend({ tagName: 'option', attributeBindings: ['value', 'selected'], defaultTemplate: function(context, options) { options = { data: options.data, hash: {} }; Ember.Handlebars.helpers.bind.call(context, "view.label", options); }, init: function() { this.labelPathDidChange(); this.valuePathDidChange(); this._super(); }, selected: Ember.computed(function() { var content = get(this, 'content'), selection = get(this, 'parentView.selection'); if (get(this, 'parentView.multiple')) { return selection && indexOf(selection, content.valueOf()) > -1; } else { // Primitives get passed through bindings as objects... since // `new Number(4) !== 4`, we use `==` below return content == selection; } }).property('content', 'parentView.selection').volatile(), labelPathDidChange: Ember.observer(function() { var labelPath = get(this, 'parentView.optionLabelPath'); if (!labelPath) { return; } Ember.defineProperty(this, 'label', Ember.computed(function() { return get(this, labelPath); }).property(labelPath)); }, 'parentView.optionLabelPath'), valuePathDidChange: Ember.observer(function() { var valuePath = get(this, 'parentView.optionValuePath'); if (!valuePath) { return; } Ember.defineProperty(this, 'value', Ember.computed(function() { return get(this, valuePath); }).property(valuePath)); }, 'parentView.optionValuePath') }); })(); (function() { })(); (function() { /*globals Handlebars */ /** @module ember @submodule ember-handlebars */ /** @private Find templates stored in the head tag as script tags and make them available to `Ember.CoreView` in the global `Ember.TEMPLATES` object. This will be run as as jQuery DOM-ready callback. Script tags with `text/x-handlebars` will be compiled with Ember's Handlebars and are suitable for use as a view's template. Those with type `text/x-raw-handlebars` will be compiled with regular Handlebars and are suitable for use in views' computed properties. @method bootstrap @for Ember.Handlebars @static @param ctx */ Ember.Handlebars.bootstrap = function(ctx) { var selectors = 'script[type="text/x-handlebars"], script[type="text/x-raw-handlebars"]'; Ember.$(selectors, ctx) .each(function() { // Get a reference to the script tag var script = Ember.$(this), type = script.attr('type'); var compile = (script.attr('type') === 'text/x-raw-handlebars') ? Ember.$.proxy(Handlebars.compile, Handlebars) : Ember.$.proxy(Ember.Handlebars.compile, Ember.Handlebars), // Get the name of the script, used by Ember.View's templateName property. // First look for data-template-name attribute, then fall back to its // id if no name is found. templateName = script.attr('data-template-name') || script.attr('id') || 'application', template = compile(script.html()); // For templates which have a name, we save them and then remove them from the DOM Ember.TEMPLATES[templateName] = template; // Remove script tag from DOM script.remove(); }); }; function bootstrap() { Ember.Handlebars.bootstrap( Ember.$(document) ); } /* We tie this to application.load to ensure that we've at least attempted to bootstrap at the point that the application is loaded. We also tie this to document ready since we're guaranteed that all the inline templates are present at this point. There's no harm to running this twice, since we remove the templates from the DOM after processing. */ Ember.onLoad('application', bootstrap); })(); (function() { /** Ember Handlebars @module ember @submodule ember-handlebars @requires ember-views */ Ember.runLoadHooks('Ember.Handlebars', Ember.Handlebars); })(); (function() { define("route-recognizer", [], function() { "use strict"; var specials = [ '/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\' ]; var escapeRegex = new RegExp('(\\' + specials.join('|\\') + ')', 'g'); // A Segment represents a segment in the original route description. // Each Segment type provides an `eachChar` and `regex` method. // // The `eachChar` method invokes the callback with one or more character // specifications. A character specification consumes one or more input // characters. // // The `regex` method returns a regex fragment for the segment. If the // segment is a dynamic of star segment, the regex fragment also includes // a capture. // // A character specification contains: // // * `validChars`: a String with a list of all valid characters, or // * `invalidChars`: a String with a list of all invalid characters // * `repeat`: true if the character specification can repeat function StaticSegment(string) { this.string = string; } StaticSegment.prototype = { eachChar: function(callback) { var string = this.string, char; for (var i=0, l=string.length; i<l; i++) { char = string.charAt(i); callback({ validChars: char }); } }, regex: function() { return this.string.replace(escapeRegex, '\\$1'); }, generate: function() { return this.string; } }; function DynamicSegment(name) { this.name = name; } DynamicSegment.prototype = { eachChar: function(callback) { callback({ invalidChars: "/", repeat: true }); }, regex: function() { return "([^/]+)"; }, generate: function(params) { return params[this.name]; } }; function StarSegment(name) { this.name = name; } StarSegment.prototype = { eachChar: function(callback) { callback({ invalidChars: "", repeat: true }); }, regex: function() { return "(.+)"; }, generate: function(params) { return params[this.name]; } }; function EpsilonSegment() {} EpsilonSegment.prototype = { eachChar: function() {}, regex: function() { return ""; }, generate: function() { return ""; } }; function parse(route, names, types) { // normalize route as not starting with a "/". Recognition will // also normalize. if (route.charAt(0) === "/") { route = route.substr(1); } var segments = route.split("/"), results = []; for (var i=0, l=segments.length; i<l; i++) { var segment = segments[i], match; if (match = segment.match(/^:([^\/]+)$/)) { results.push(new DynamicSegment(match[1])); names.push(match[1]); types.dynamics++; } else if (match = segment.match(/^\*([^\/]+)$/)) { results.push(new StarSegment(match[1])); names.push(match[1]); types.stars++; } else if(segment === "") { results.push(new EpsilonSegment()); } else { results.push(new StaticSegment(segment)); types.statics++; } } return results; } // A State has a character specification and (`charSpec`) and a list of possible // subsequent states (`nextStates`). // // If a State is an accepting state, it will also have several additional // properties: // // * `regex`: A regular expression that is used to extract parameters from paths // that reached this accepting state. // * `handlers`: Information on how to convert the list of captures into calls // to registered handlers with the specified parameters // * `types`: How many static, dynamic or star segments in this route. Used to // decide which route to use if multiple registered routes match a path. // // Currently, State is implemented naively by looping over `nextStates` and // comparing a character specification against a character. A more efficient // implementation would use a hash of keys pointing at one or more next states. function State(charSpec) { this.charSpec = charSpec; this.nextStates = []; } State.prototype = { get: function(charSpec) { var nextStates = this.nextStates; for (var i=0, l=nextStates.length; i<l; i++) { var child = nextStates[i]; var isEqual = child.charSpec.validChars === charSpec.validChars; isEqual = isEqual && child.charSpec.invalidChars === charSpec.invalidChars; if (isEqual) { return child; } } }, put: function(charSpec) { var state; // If the character specification already exists in a child of the current // state, just return that state. if (state = this.get(charSpec)) { return state; } // Make a new state for the character spec state = new State(charSpec); // Insert the new state as a child of the current state this.nextStates.push(state); // If this character specification repeats, insert the new state as a child // of itself. Note that this will not trigger an infinite loop because each // transition during recognition consumes a character. if (charSpec.repeat) { state.nextStates.push(state); } // Return the new state return state; }, // Find a list of child states matching the next character match: function(char) { // DEBUG "Processing `" + char + "`:" var nextStates = this.nextStates, child, charSpec, chars; // DEBUG " " + debugState(this) var returned = []; for (var i=0, l=nextStates.length; i<l; i++) { child = nextStates[i]; charSpec = child.charSpec; if (typeof (chars = charSpec.validChars) !== 'undefined') { if (chars.indexOf(char) !== -1) { returned.push(child); } } else if (typeof (chars = charSpec.invalidChars) !== 'undefined') { if (chars.indexOf(char) === -1) { returned.push(child); } } } return returned; } /** IF DEBUG , debug: function() { var charSpec = this.charSpec, debug = "[", chars = charSpec.validChars || charSpec.invalidChars; if (charSpec.invalidChars) { debug += "^"; } debug += chars; debug += "]"; if (charSpec.repeat) { debug += "+"; } return debug; } END IF **/ }; /** IF DEBUG function debug(log) { console.log(log); } function debugState(state) { return state.nextStates.map(function(n) { if (n.nextStates.length === 0) { return "( " + n.debug() + " [accepting] )"; } return "( " + n.debug() + " <then> " + n.nextStates.map(function(s) { return s.debug() }).join(" or ") + " )"; }).join(", ") } END IF **/ // This is a somewhat naive strategy, but should work in a lot of cases // A better strategy would properly resolve /posts/:id/new and /posts/edit/:id function sortSolutions(states) { return states.sort(function(a, b) { if (a.types.stars !== b.types.stars) { return a.types.stars - b.types.stars; } if (a.types.dynamics !== b.types.dynamics) { return a.types.dynamics - b.types.dynamics; } if (a.types.statics !== b.types.statics) { return a.types.statics - b.types.statics; } return 0; }); } function recognizeChar(states, char) { var nextStates = []; for (var i=0, l=states.length; i<l; i++) { var state = states[i]; nextStates = nextStates.concat(state.match(char)); } return nextStates; } function findHandler(state, path) { var handlers = state.handlers, regex = state.regex; var captures = path.match(regex), currentCapture = 1; var result = []; for (var i=0, l=handlers.length; i<l; i++) { var handler = handlers[i], names = handler.names, params = {}; for (var j=0, m=names.length; j<m; j++) { params[names[j]] = captures[currentCapture++]; } result.push({ handler: handler.handler, params: params, isDynamic: !!names.length }); } return result; } function addSegment(currentState, segment) { segment.eachChar(function(char) { var state; currentState = currentState.put(char); }); return currentState; } // The main interface var RouteRecognizer = function() { this.rootState = new State(); this.names = {}; }; RouteRecognizer.prototype = { add: function(routes, options) { var currentState = this.rootState, regex = "^", types = { statics: 0, dynamics: 0, stars: 0 }, handlers = [], allSegments = [], name; var isEmpty = true; for (var i=0, l=routes.length; i<l; i++) { var route = routes[i], names = []; var segments = parse(route.path, names, types); allSegments = allSegments.concat(segments); for (var j=0, m=segments.length; j<m; j++) { var segment = segments[j]; if (segment instanceof EpsilonSegment) { continue; } isEmpty = false; // Add a "/" for the new segment currentState = currentState.put({ validChars: "/" }); regex += "/"; // Add a representation of the segment to the NFA and regex currentState = addSegment(currentState, segment); regex += segment.regex(); } handlers.push({ handler: route.handler, names: names }); } if (isEmpty) { currentState = currentState.put({ validChars: "/" }); regex += "/"; } currentState.handlers = handlers; currentState.regex = new RegExp(regex + "$"); currentState.types = types; if (name = options && options.as) { this.names[name] = { segments: allSegments, handlers: handlers }; } }, handlersFor: function(name) { var route = this.names[name], result = []; if (!route) { throw new Error("There is no route named " + name); } for (var i=0, l=route.handlers.length; i<l; i++) { result.push(route.handlers[i]); } return result; }, hasRoute: function(name) { return !!this.names[name]; }, generate: function(name, params) { var route = this.names[name], output = ""; if (!route) { throw new Error("There is no route named " + name); } var segments = route.segments; for (var i=0, l=segments.length; i<l; i++) { var segment = segments[i]; if (segment instanceof EpsilonSegment) { continue; } output += "/"; output += segment.generate(params); } if (output.charAt(0) !== '/') { output = '/' + output; } return output; }, recognize: function(path) { var states = [ this.rootState ], i, l; // DEBUG GROUP path var pathLen = path.length; if (path.charAt(0) !== "/") { path = "/" + path; } if (pathLen > 1 && path.charAt(pathLen - 1) === "/") { path = path.substr(0, pathLen - 1); } for (i=0, l=path.length; i<l; i++) { states = recognizeChar(states, path.charAt(i)); if (!states.length) { break; } } // END DEBUG GROUP var solutions = []; for (i=0, l=states.length; i<l; i++) { if (states[i].handlers) { solutions.push(states[i]); } } states = sortSolutions(solutions); var state = solutions[0]; if (state && state.handlers) { return findHandler(state, path); } } }; function Target(path, matcher, delegate) { this.path = path; this.matcher = matcher; this.delegate = delegate; } Target.prototype = { to: function(target, callback) { var delegate = this.delegate; if (delegate && delegate.willAddRoute) { target = delegate.willAddRoute(this.matcher.target, target); } this.matcher.add(this.path, target); if (callback) { if (callback.length === 0) { throw new Error("You must have an argument in the function passed to `to`"); } this.matcher.addChild(this.path, target, callback, this.delegate); } } }; function Matcher(target) { this.routes = {}; this.children = {}; this.target = target; } Matcher.prototype = { add: function(path, handler) { this.routes[path] = handler; }, addChild: function(path, target, callback, delegate) { var matcher = new Matcher(target); this.children[path] = matcher; var match = generateMatch(path, matcher, delegate); if (delegate && delegate.contextEntered) { delegate.contextEntered(target, match); } callback(match); } }; function generateMatch(startingPath, matcher, delegate) { return function(path, nestedCallback) { var fullPath = startingPath + path; if (nestedCallback) { nestedCallback(generateMatch(fullPath, matcher, delegate)); } else { return new Target(startingPath + path, matcher, delegate); } }; } function addRoute(routeArray, path, handler) { var len = 0; for (var i=0, l=routeArray.length; i<l; i++) { len += routeArray[i].path.length; } path = path.substr(len); routeArray.push({ path: path, handler: handler }); } function eachRoute(baseRoute, matcher, callback, binding) { var routes = matcher.routes; for (var path in routes) { if (routes.hasOwnProperty(path)) { var routeArray = baseRoute.slice(); addRoute(routeArray, path, routes[path]); if (matcher.children[path]) { eachRoute(routeArray, matcher.children[path], callback, binding); } else { callback.call(binding, routeArray); } } } } RouteRecognizer.prototype.map = function(callback, addRouteCallback) { var matcher = new Matcher(); callback(generateMatch("", matcher, this.delegate)); eachRoute([], matcher, function(route) { if (addRouteCallback) { addRouteCallback(this, route); } else { this.add(route); } }, this); }; return RouteRecognizer; }); })(); (function() { define("router", ["route-recognizer"], function(RouteRecognizer) { "use strict"; /** @private This file references several internal structures: ## `RecognizedHandler` * `{String} handler`: A handler name * `{Object} params`: A hash of recognized parameters ## `UnresolvedHandlerInfo` * `{Boolean} isDynamic`: whether a handler has any dynamic segments * `{String} name`: the name of a handler * `{Object} context`: the active context for the handler ## `HandlerInfo` * `{Boolean} isDynamic`: whether a handler has any dynamic segments * `{String} name`: the original unresolved handler name * `{Object} handler`: a handler object * `{Object} context`: the active context for the handler */ function Router() { this.recognizer = new RouteRecognizer(); } Router.prototype = { /** The main entry point into the router. The API is essentially the same as the `map` method in `route-recognizer`. This method extracts the String handler at the last `.to()` call and uses it as the name of the whole route. @param {Function} callback */ map: function(callback) { this.recognizer.delegate = this.delegate; this.recognizer.map(callback, function(recognizer, route) { var lastHandler = route[route.length - 1].handler; var args = [route, { as: lastHandler }]; recognizer.add.apply(recognizer, args); }); }, hasRoute: function(route) { return this.recognizer.hasRoute(route); }, /** The entry point for handling a change to the URL (usually via the back and forward button). Returns an Array of handlers and the parameters associated with those parameters. @param {String} url a URL to process @return {Array} an Array of `[handler, parameter]` tuples */ handleURL: function(url) { var results = this.recognizer.recognize(url), objects = []; if (!results) { throw new Error("No route matched the URL '" + url + "'"); } collectObjects(this, results, 0, []); }, /** Hook point for updating the URL. @param {String} url a URL to update to */ updateURL: function() { throw "updateURL is not implemented"; }, /** Hook point for replacing the current URL, i.e. with replaceState By default this behaves the same as `updateURL` @param {String} url a URL to update to */ replaceURL: function(url) { this.updateURL(url); }, /** Transition into the specified named route. If necessary, trigger the exit callback on any handlers that are no longer represented by the target route. @param {String} name the name of the route */ transitionTo: function(name) { var args = Array.prototype.slice.call(arguments, 1); doTransition(this, name, this.updateURL, args); }, /** Identical to `transitionTo` except that the current URL will be replaced if possible. This method is intended primarily for use with `replaceState`. @param {String} name the name of the route */ replaceWith: function(name) { var args = Array.prototype.slice.call(arguments, 1); doTransition(this, name, this.replaceURL, args); }, /** @private This method takes a handler name and a list of contexts and returns a serialized parameter hash suitable to pass to `recognizer.generate()`. @param {String} handlerName @param {Array[Object]} contexts @return {Object} a serialized parameter hash */ paramsForHandler: function(handlerName, callback) { var output = this._paramsForHandler(handlerName, [].slice.call(arguments, 1)); return output.params; }, /** Take a named route and context objects and generate a URL. @param {String} name the name of the route to generate a URL for @param {...Object} objects a list of objects to serialize @return {String} a URL */ generate: function(handlerName) { var params = this.paramsForHandler.apply(this, arguments); return this.recognizer.generate(handlerName, params); }, /** @private Used internally by `generate` and `transitionTo`. */ _paramsForHandler: function(handlerName, objects, doUpdate) { var handlers = this.recognizer.handlersFor(handlerName), params = {}, toSetup = [], startIdx = handlers.length, objectsToMatch = objects.length, object, objectChanged, handlerObj, handler, names, i, len; // Find out which handler to start matching at for (i=handlers.length-1; i>=0 && objectsToMatch>0; i--) { if (handlers[i].names.length) { objectsToMatch--; startIdx = i; } } if (objectsToMatch > 0) { throw "More objects were passed than dynamic segments"; } // Connect the objects to the routes for (i=0, len=handlers.length; i<len; i++) { handlerObj = handlers[i]; handler = this.getHandler(handlerObj.handler); names = handlerObj.names; objectChanged = false; // If it's a dynamic segment if (names.length) { // If we have objects, use them if (i >= startIdx) { object = objects.shift(); objectChanged = true; // Otherwise use existing context } else { object = handler.context; } // Serialize to generate params if (handler.serialize) { merge(params, handler.serialize(object, names)); } // If it's not a dynamic segment and we're updating } else if (doUpdate) { // If we've passed the match point we need to deserialize again // or if we never had a context if (i > startIdx || !handler.hasOwnProperty('context')) { if (handler.deserialize) { object = handler.deserialize({}); objectChanged = true; } // Otherwise use existing context } else { object = handler.context; } } // Make sure that we update the context here so it's available to // subsequent deserialize calls if (doUpdate && objectChanged) { // TODO: It's a bit awkward to set the context twice, see if we can DRY things up setContext(handler, object); } toSetup.push({ isDynamic: !!handlerObj.names.length, handler: handlerObj.handler, name: handlerObj.name, context: object }); } return { params: params, toSetup: toSetup }; }, isActive: function(handlerName) { var contexts = [].slice.call(arguments, 1); var currentHandlerInfos = this.currentHandlerInfos, found = false, names, object, handlerInfo, handlerObj; for (var i=currentHandlerInfos.length-1; i>=0; i--) { handlerInfo = currentHandlerInfos[i]; if (handlerInfo.name === handlerName) { found = true; } if (found) { if (contexts.length === 0) { break; } if (handlerInfo.isDynamic) { object = contexts.pop(); if (handlerInfo.context !== object) { return false; } } } } return contexts.length === 0 && found; }, trigger: function(name) { var args = [].slice.call(arguments); trigger(this, args); } }; function merge(hash, other) { for (var prop in other) { if (other.hasOwnProperty(prop)) { hash[prop] = other[prop]; } } } function isCurrent(currentHandlerInfos, handlerName) { return currentHandlerInfos[currentHandlerInfos.length - 1].name === handlerName; } /** @private This function is called the first time the `collectObjects` function encounters a promise while converting URL parameters into objects. It triggers the `enter` and `setup` methods on the `loading` handler. @param {Router} router */ function loading(router) { if (!router.isLoading) { router.isLoading = true; var handler = router.getHandler('loading'); if (handler) { if (handler.enter) { handler.enter(); } if (handler.setup) { handler.setup(); } } } } /** @private This function is called if a promise was previously encountered once all promises are resolved. It triggers the `exit` method on the `loading` handler. @param {Router} router */ function loaded(router) { router.isLoading = false; var handler = router.getHandler('loading'); if (handler && handler.exit) { handler.exit(); } } /** @private This function is called if any encountered promise is rejected. It triggers the `exit` method on the `loading` handler, the `enter` method on the `failure` handler, and the `setup` method on the `failure` handler with the `error`. @param {Router} router @param {Object} error the reason for the promise rejection, to pass into the failure handler's `setup` method. */ function failure(router, error) { loaded(router); var handler = router.getHandler('failure'); if (handler && handler.setup) { handler.setup(error); } } /** @private */ function doTransition(router, name, method, args) { var output = router._paramsForHandler(name, args, true); var params = output.params, toSetup = output.toSetup; var url = router.recognizer.generate(name, params); method.call(router, url); setupContexts(router, toSetup); } /** @private This function is called after a URL change has been handled by `router.handleURL`. Takes an Array of `RecognizedHandler`s, and converts the raw params hashes into deserialized objects by calling deserialize on the handlers. This process builds up an Array of `HandlerInfo`s. It then calls `setupContexts` with the Array. If the `deserialize` method on a handler returns a promise (i.e. has a method called `then`), this function will pause building up the `HandlerInfo` Array until the promise is resolved. It will use the resolved value as the context of `HandlerInfo`. */ function collectObjects(router, results, index, objects) { if (results.length === index) { loaded(router); setupContexts(router, objects); return; } var result = results[index]; var handler = router.getHandler(result.handler); var object = handler.deserialize && handler.deserialize(result.params); if (object && typeof object.then === 'function') { loading(router); // The chained `then` means that we can also catch errors that happen in `proceed` object.then(proceed).then(null, function(error) { failure(router, error); }); } else { proceed(object); } function proceed(value) { if (handler.context !== object) { setContext(handler, object); } var updatedObjects = objects.concat([{ context: value, handler: result.handler, isDynamic: result.isDynamic }]); collectObjects(router, results, index + 1, updatedObjects); } } /** @private Takes an Array of `UnresolvedHandlerInfo`s, resolves the handler names into handlers, and then figures out what to do with each of the handlers. For example, consider the following tree of handlers. Each handler is followed by the URL segment it handles. ``` |~index ("/") | |~posts ("/posts") | | |-showPost ("/:id") | | |-newPost ("/new") | | |-editPost ("/edit") | |~about ("/about/:id") ``` Consider the following transitions: 1. A URL transition to `/posts/1`. 1. Triggers the `deserialize` callback on the `index`, `posts`, and `showPost` handlers 2. Triggers the `enter` callback on the same 3. Triggers the `setup` callback on the same 2. A direct transition to `newPost` 1. Triggers the `exit` callback on `showPost` 2. Triggers the `enter` callback on `newPost` 3. Triggers the `setup` callback on `newPost` 3. A direct transition to `about` with a specified context object 1. Triggers the `exit` callback on `newPost` and `posts` 2. Triggers the `serialize` callback on `about` 3. Triggers the `enter` callback on `about` 4. Triggers the `setup` callback on `about` @param {Router} router @param {Array[UnresolvedHandlerInfo]} handlerInfos */ function setupContexts(router, handlerInfos) { resolveHandlers(router, handlerInfos); var partition = partitionHandlers(router.currentHandlerInfos || [], handlerInfos); router.currentHandlerInfos = handlerInfos; eachHandler(partition.exited, function(handler, context) { delete handler.context; if (handler.exit) { handler.exit(); } }); eachHandler(partition.updatedContext, function(handler, context) { setContext(handler, context); if (handler.setup) { handler.setup(context); } }); var aborted = false; eachHandler(partition.entered, function(handler, context) { if (aborted) { return; } if (handler.enter) { handler.enter(); } setContext(handler, context); if (handler.setup) { if (false === handler.setup(context)) { aborted = true; } } }); if (router.didTransition) { router.didTransition(handlerInfos); } } /** @private Iterates over an array of `HandlerInfo`s, passing the handler and context into the callback. @param {Array[HandlerInfo]} handlerInfos @param {Function(Object, Object)} callback */ function eachHandler(handlerInfos, callback) { for (var i=0, l=handlerInfos.length; i<l; i++) { var handlerInfo = handlerInfos[i], handler = handlerInfo.handler, context = handlerInfo.context; callback(handler, context); } } /** @private Updates the `handler` field in each element in an Array of `UnresolvedHandlerInfo`s from a handler name to a resolved handler. When done, the Array will contain `HandlerInfo` structures. @param {Router} router @param {Array[UnresolvedHandlerInfo]} handlerInfos */ function resolveHandlers(router, handlerInfos) { var handlerInfo; for (var i=0, l=handlerInfos.length; i<l; i++) { handlerInfo = handlerInfos[i]; handlerInfo.name = handlerInfo.handler; handlerInfo.handler = router.getHandler(handlerInfo.handler); } } /** @private This function is called when transitioning from one URL to another to determine which handlers are not longer active, which handlers are newly active, and which handlers remain active but have their context changed. Take a list of old handlers and new handlers and partition them into four buckets: * unchanged: the handler was active in both the old and new URL, and its context remains the same * updated context: the handler was active in both the old and new URL, but its context changed. The handler's `setup` method, if any, will be called with the new context. * exited: the handler was active in the old URL, but is no longer active. * entered: the handler was not active in the old URL, but is now active. The PartitionedHandlers structure has three fields: * `updatedContext`: a list of `HandlerInfo` objects that represent handlers that remain active but have a changed context * `entered`: a list of `HandlerInfo` objects that represent handlers that are newly active * `exited`: a list of `HandlerInfo` objects that are no longer active. @param {Array[HandlerInfo]} oldHandlers a list of the handler information for the previous URL (or `[]` if this is the first handled transition) @param {Array[HandlerInfo]} newHandlers a list of the handler information for the new URL @return {Partition} */ function partitionHandlers(oldHandlers, newHandlers) { var handlers = { updatedContext: [], exited: [], entered: [] }; var handlerChanged, contextChanged, i, l; for (i=0, l=newHandlers.length; i<l; i++) { var oldHandler = oldHandlers[i], newHandler = newHandlers[i]; if (!oldHandler || oldHandler.handler !== newHandler.handler) { handlerChanged = true; } if (handlerChanged) { handlers.entered.push(newHandler); if (oldHandler) { handlers.exited.unshift(oldHandler); } } else if (contextChanged || oldHandler.context !== newHandler.context) { contextChanged = true; handlers.updatedContext.push(newHandler); } } for (i=newHandlers.length, l=oldHandlers.length; i<l; i++) { handlers.exited.unshift(oldHandlers[i]); } return handlers; } function trigger(router, args) { var currentHandlerInfos = router.currentHandlerInfos; var name = args.shift(); if (!currentHandlerInfos) { throw new Error("Could not trigger event '" + name + "'. There are no active handlers"); } for (var i=currentHandlerInfos.length-1; i>=0; i--) { var handlerInfo = currentHandlerInfos[i], handler = handlerInfo.handler; if (handler.events && handler.events[name]) { handler.events[name].apply(handler, args); return; } } throw new Error("Nothing handled the event '" + name + "'."); } function setContext(handler, context) { handler.context = context; if (handler.contextDidChange) { handler.contextDidChange(); } } return Router; }); })(); (function() { /** @module ember @submodule ember-routing */ function DSL(name) { this.parent = name; this.matches = []; } DSL.prototype = { resource: function(name, options, callback) { if (arguments.length === 2 && typeof options === 'function') { callback = options; options = {}; } if (arguments.length === 1) { options = {}; } if (typeof options.path !== 'string') { options.path = "/" + name; } if (callback) { var dsl = new DSL(name); callback.call(dsl); this.push(options.path, name, dsl.generate()); } else { this.push(options.path, name); } }, push: function(url, name, callback) { if (url === "" || url === "/") { this.explicitIndex = true; } this.matches.push([url, name, callback]); }, route: function(name, options) { options = options || {}; if (typeof options.path !== 'string') { options.path = "/" + name; } if (this.parent && this.parent !== 'application') { name = this.parent + "." + name; } this.push(options.path, name); }, generate: function() { var dslMatches = this.matches; if (!this.explicitIndex) { this.route("index", { path: "/" }); } return function(match) { for (var i=0, l=dslMatches.length; i<l; i++) { var dslMatch = dslMatches[i]; match(dslMatch[0]).to(dslMatch[1], dslMatch[2]); } }; } }; DSL.map = function(callback) { var dsl = new DSL(); callback.call(dsl); return dsl; }; Ember.RouterDSL = DSL; })(); (function() { /** @module ember @submodule ember-routing */ Ember.controllerFor = function(container, controllerName, context) { return container.lookup('controller:' + controllerName) || Ember.generateController(container, controllerName, context); }; Ember.generateController = function(container, controllerName, context) { var controller; if (context && Ember.isArray(context)) { controller = Ember.ArrayController.extend({ content: context }); } else if (context) { controller = Ember.ObjectController.extend({ content: context }); } else { controller = Ember.Controller.extend(); } controller.toString = function() { return "(generated " + controllerName + " controller)"; }; container.register('controller', controllerName, controller); return container.lookup('controller:' + controllerName); }; })(); (function() { /** @module ember @submodule ember-routing */ var Router = requireModule("router"); var get = Ember.get, set = Ember.set, classify = Ember.String.classify; var DefaultView = Ember._MetamorphView; function setupLocation(router) { var location = get(router, 'location'), rootURL = get(router, 'rootURL'); if ('string' === typeof location) { location = set(router, 'location', Ember.Location.create({ implementation: location })); if (typeof rootURL === 'string') { set(location, 'rootURL', rootURL); } } } /** The `Ember.Router` class manages the application state and URLs. Refer to the [routing guide](http://emberjs.com/guides/routing/) for documentation. @class Router @namespace Ember @extends Ember.Object */ Ember.Router = Ember.Object.extend({ location: 'hash', init: function() { this.router = this.constructor.router; this._activeViews = {}; setupLocation(this); }, startRouting: function() { this.router = this.router || this.constructor.map(Ember.K); var router = this.router, location = get(this, 'location'), container = this.container, self = this; setupRouter(this, router, location); container.register('view', 'default', DefaultView); container.register('view', 'toplevel', Ember.View.extend()); this.handleURL(location.getURL()); location.onUpdateURL(function(url) { self.handleURL(url); }); }, didTransition: function(infos) { // Don't do any further action here if we redirected for (var i=0, l=infos.length; i<l; i++) { if (infos[i].handler.transitioned) { return; } } var appController = this.container.lookup('controller:application'), path = routePath(infos); set(appController, 'currentPath', path); this.notifyPropertyChange('url'); if (get(this, 'namespace').LOG_TRANSITIONS) { Ember.Logger.log("Transitioned into '" + path + "'"); } }, handleURL: function(url) { this.router.handleURL(url); this.notifyPropertyChange('url'); }, transitionTo: function(name) { var args = [].slice.call(arguments); doTransition(this, 'transitionTo', args); }, replaceWith: function() { var args = [].slice.call(arguments); doTransition(this, 'replaceWith', args); }, generate: function() { var url = this.router.generate.apply(this.router, arguments); return this.location.formatURL(url); }, isActive: function(routeName) { var router = this.router; return router.isActive.apply(router, arguments); }, send: function(name, context) { if (Ember.$ && context instanceof Ember.$.Event) { context = context.context; } this.router.trigger(name, context); }, hasRoute: function(route) { return this.router.hasRoute(route); }, _lookupActiveView: function(templateName) { var active = this._activeViews[templateName]; return active && active[0]; }, _connectActiveView: function(templateName, view) { var existing = this._activeViews[templateName]; if (existing) { existing[0].off('willDestroyElement', this, existing[1]); } var disconnect = function() { delete this._activeViews[templateName]; }; this._activeViews[templateName] = [view, disconnect]; view.one('willDestroyElement', this, disconnect); } }); Ember.Router.reopenClass({ defaultFailureHandler: { setup: function(error) { Ember.Logger.error('Error while loading route:', error); // Using setTimeout allows us to escape from the Promise's try/catch block setTimeout(function() { throw error; }); } } }); function getHandlerFunction(router) { var seen = {}, container = router.container; return function(name) { var handler = container.lookup('route:' + name); if (seen[name]) { return handler; } seen[name] = true; if (!handler) { if (name === 'loading') { return {}; } if (name === 'failure') { return router.constructor.defaultFailureHandler; } container.register('route', name, Ember.Route.extend()); handler = container.lookup('route:' + name); } handler.routeName = name; return handler; }; } function handlerIsActive(router, handlerName) { var handler = router.container.lookup('route:' + handlerName), currentHandlerInfos = router.router.currentHandlerInfos, handlerInfo; for (var i=0, l=currentHandlerInfos.length; i<l; i++) { handlerInfo = currentHandlerInfos[i]; if (handlerInfo.handler === handler) { return true; } } return false; } function routePath(handlerInfos) { var path = []; for (var i=1, l=handlerInfos.length; i<l; i++) { var name = handlerInfos[i].name, nameParts = name.split("."); path.push(nameParts[nameParts.length - 1]); } return path.join("."); } function setupRouter(emberRouter, router, location) { var lastURL; router.getHandler = getHandlerFunction(emberRouter); var doUpdateURL = function() { location.setURL(lastURL); }; router.updateURL = function(path) { lastURL = path; Ember.run.once(doUpdateURL); }; if (location.replaceURL) { var doReplaceURL = function() { location.replaceURL(lastURL); }; router.replaceURL = function(path) { lastURL = path; Ember.run.once(doReplaceURL); }; } router.didTransition = function(infos) { emberRouter.didTransition(infos); }; } function doTransition(router, method, args) { var passedName = args[0], name; if (!router.router.hasRoute(args[0])) { name = args[0] = passedName + '.index'; } else { name = passedName; } router.router[method].apply(router.router, args); router.notifyPropertyChange('url'); } Ember.Router.reopenClass({ map: function(callback) { var router = this.router = new Router(); var dsl = Ember.RouterDSL.map(function() { this.resource('application', { path: "/" }, function() { callback.call(this); }); }); router.map(dsl.generate()); return router; } }); })(); (function() { /** @module ember @submodule ember-routing */ var get = Ember.get, set = Ember.set, classify = Ember.String.classify, decamelize = Ember.String.decamelize; Ember.Route = Ember.Object.extend({ exit: function() { this.deactivate(); teardownView(this); }, enter: function() { this.activate(); }, /** This hook is executed when the router completely exits this route. It is not executed when the model for the route changes. */ deactivate: Ember.K, /** This hook is executed when the router enters the route for the first time. It is not executed when the model for the route changes. */ activate: Ember.K, /** Transition into another route. Optionally supply a model for the route in question. The model will be serialized into the URL using the `serialize` hook. @method transitionTo @param {String} name the name of the route @param {...Object} models the */ transitionTo: function() { this.transitioned = true; return this.router.transitionTo.apply(this.router, arguments); }, /** Transition into another route while replacing the current URL if possible. Identical to `transitionTo` in all other respects. @method replaceWith @param {String} name the name of the route @param {...Object} models the */ replaceWith: function() { this.transitioned = true; return this.router.replaceWith.apply(this.router, arguments); }, send: function() { return this.router.send.apply(this.router, arguments); }, /** @private This hook is the entry point for router.js @method setup */ setup: function(context) { this.transitioned = false; this.redirect(context); if (this.transitioned) { return false; } var controller = this.controllerFor(this.routeName, context); if (controller) { this.controller = controller; set(controller, 'model', context); } if (this.setupControllers) { this.setupControllers(controller, context); } else { this.setupController(controller, context); } if (this.renderTemplates) { this.renderTemplates(context); } else { this.renderTemplate(controller, context); } }, /** A hook you can implement to optionally redirect to another route. If you call `this.transitionTo` from inside of this hook, this route will not be entered in favor of the other hook. @method redirect @param {Object} model the model for this route */ redirect: Ember.K, /** @private The hook called by `router.js` to convert parameters into the context for this handler. The public Ember hook is `model`. @method deserialize */ deserialize: function(params) { var model = this.model(params); return this.currentModel = model; }, /** @private Called when the context is changed by router.js. */ contextDidChange: function() { this.currentModel = this.context; }, /** A hook you can implement to convert the URL into the model for this route. ```js App.Route.map(function(match) { match("/posts/:post_id").to("post"); }); ``` The model for the `post` route is `App.Post.find(params.post_id)`. By default, if your route has a dynamic segment ending in `_id`: * The model class is determined from the segment (`post_id`'s class is `App.Post`) * The find method is called on the model class with the value of the dynamic segment. @method model @param {Object} params the parameters extracted from the URL */ model: function(params) { var match, name, sawParams, value; for (var prop in params) { if (match = prop.match(/^(.*)_id$/)) { name = match[1]; value = params[prop]; } sawParams = true; } if (!name && sawParams) { return params; } else if (!name) { return; } var className = classify(name), namespace = this.router.namespace, modelClass = namespace[className]; return modelClass.find(value); }, /** A hook you can implement to convert the route's model into parameters for the URL. ```js App.Route.map(function(match) { match("/posts/:post_id").to("post"); }); App.PostRoute = Ember.Route.extend({ model: function(params) { // the server returns `{ id: 12 }` return jQuery.getJSON("/posts/" + params.post_id); }, serialize: function(model) { // this will make the URL `/posts/12` return { post_id: model.id }; } }); ``` The default `serialize` method inserts the model's `id` into the route's dynamic segment (in this case, `:post_id`). This method is called when `transitionTo` is called with a context in order to populate the URL. @method serialize @param {Object} model the route's model @param {Array} params an Array of parameter names for the current route (in the example, `['post_id']`. @return {Object} the serialized parameters */ serialize: function(model, params) { if (params.length !== 1) { return; } var name = params[0], object = {}; if (/_id$/.test(name)) { object[name] = get(model, 'id'); } else { object[name] = model; } return object; }, /** A hook you can use to setup the controller for the current route. This method is called with the controller for the current route and the model supplied by the `model` hook. ```js App.Route.map(function(match) { match("/posts/:post_id").to("post"); }); ``` For the `post` route, the controller is `App.PostController`. By default, the `setupController` hook sets the `content` property of the controller to the `model`. If no explicit controller is defined, the route will automatically create an appropriate controller for the model: * if the model is an `Ember.Array` (including record arrays from Ember Data), the controller is an `Ember.ArrayController`. * otherwise, the controller is an `Ember.ObjectController`. This means that your template will get a proxy for the model as its context, and you can act as though the model itself was the context. @method setupController */ setupController: Ember.K, /** Returns the controller for a particular route. ```js App.PostRoute = Ember.Route.extend({ setupController: function(controller, post) { this._super(controller, post); this.controllerFor('posts').set('currentPost', post); } }); ``` By default, the controller for `post` is the shared instance of `App.PostController`. @method controllerFor @param {String} name the name of the route @param {Object} model the model associated with the route (optional) @return {Ember.Controller} */ controllerFor: function(name, model) { var container = this.router.container, controller = container.lookup('controller:' + name); if (!controller) { model = model || this.modelFor(name); controller = Ember.generateController(container, name, model); } return controller; }, /** Returns the current model for a given route. This is the object returned by the `model` hook of the route in question. @method modelFor @param {String} name the name of the route @return {Object} the model object */ modelFor: function(name) { var route = this.container.lookup('route:' + name); return route && route.currentModel; }, /** A hook you can use to render the template for the current route. This method is called with the controller for the current route and the model supplied by the `model` hook. By default, it renders the route's template, configured with the controller for the route. This method can be overridden to set up and render additional or alternative templates. @method renderTemplate @param {Object} controller the route's controller @param {Object} model the route's model */ renderTemplate: function(controller, model) { this.render(); }, /** Renders a template into an outlet. This method has a number of defaults, based on the name of the route specified in the router. For example: ```js App.Router.map(function(match) { match("/").to("index"); match("/posts/:post_id").to("post"); }); App.PostRoute = App.Route.extend({ renderTemplate: function() { this.render(); } }); ``` The name of the `PostRoute`, as defined by the router, is `post`. By default, render will: * render the `post` template * with the `post` view (`PostView`) for event handling, if one exists * and the `post` controller (`PostController`), if one exists * into the `main` outlet of the `application` template You can override this behavior: ```js App.PostRoute = App.Route.extend({ renderTemplate: function() { this.render('myPost', { // the template to render into: 'index', // the template to render into outlet: 'detail', // the name of the outlet in that template controller: 'blogPost' // the controller to use for the template }); } }); ``` Remember that the controller's `content` will be the route's model. In this case, the default model will be `App.Post.find(params.post_id)`. @method render @param {String} name the name of the template to render @param {Object} options the options */ render: function(name, options) { if (typeof name === 'object' && !options) { options = name; name = this.routeName; } name = name ? name.replace(/\//g, '.') : this.routeName; var container = this.container, view = container.lookup('view:' + name), template = container.lookup('template:' + name); if (!view && !template) { return; } options = normalizeOptions(this, name, template, options); view = setupView(view, container, options); if (options.outlet === 'main') { this.lastRenderedTemplate = name; } appendView(this, view, options); }, willDestroy: function() { teardownView(this); } }); function parentRoute(route) { var handlerInfos = route.router.router.currentHandlerInfos; var parent, current; for (var i=0, l=handlerInfos.length; i<l; i++) { current = handlerInfos[i].handler; if (current === route) { return parent; } parent = current; } } function parentTemplate(route, isRecursive) { var parent = parentRoute(route), template; if (!parent) { return; } if (template = parent.lastRenderedTemplate) { return template; } else { return parentTemplate(parent, true); } } function normalizeOptions(route, name, template, options) { options = options || {}; options.into = options.into ? options.into.replace(/\//g, '.') : parentTemplate(route); options.outlet = options.outlet || 'main'; options.name = name; options.template = template; var controller = options.controller, namedController; if (options.controller) { controller = options.controller; } else if (namedController = route.container.lookup('controller:' + name)) { controller = namedController; } else { controller = route.routeName; } if (typeof controller === 'string') { controller = route.container.lookup('controller:' + controller); } options.controller = controller; return options; } function setupView(view, container, options) { var defaultView = options.into ? 'view:default' : 'view:toplevel'; view = view || container.lookup(defaultView); if (!get(view, 'templateName')) { set(view, 'template', options.template); set(view, '_debugTemplateName', options.name); } set(view, 'renderedName', options.name); set(view, 'controller', options.controller); return view; } function appendView(route, view, options) { if (options.into) { var parentView = route.router._lookupActiveView(options.into); route.teardownView = teardownOutlet(parentView, options.outlet); parentView.connectOutlet(options.outlet, view); } else { var rootElement = get(route, 'router.namespace.rootElement'); route.router._connectActiveView(options.name, view); route.teardownView = teardownTopLevel(view); view.appendTo(rootElement); } } function teardownTopLevel(view) { return function() { view.destroy(); }; } function teardownOutlet(parentView, outlet) { return function() { parentView.disconnectOutlet(outlet); }; } function teardownView(route) { if (route.teardownView) { route.teardownView(); } delete route.teardownView; delete route.lastRenderedTemplate; } })(); (function() { })(); (function() { var get = Ember.get, set = Ember.set; Ember.onLoad('Ember.Handlebars', function(Handlebars) { var resolveParams = Ember.Handlebars.resolveParams, isSimpleClick = Ember.ViewUtils.isSimpleClick; function fullRouteName(router, name) { if (!router.hasRoute(name)) { name = name + '.index'; } return name; } function resolvedPaths(options) { var types = options.options.types.slice(1), data = options.options.data; return resolveParams(options.context, options.params, { types: types, data: data }); } function args(linkView, router, route) { var passedRouteName = route || linkView.namedRoute, routeName; routeName = fullRouteName(router, passedRouteName); var ret = [ routeName ]; return ret.concat(resolvedPaths(linkView.parameters)); } var LinkView = Ember.View.extend({ tagName: 'a', namedRoute: null, currentWhen: null, title: null, activeClass: 'active', replace: false, attributeBindings: ['href', 'title'], classNameBindings: 'active', active: Ember.computed(function() { var router = this.get('router'), params = resolvedPaths(this.parameters), currentWithIndex = this.currentWhen + '.index', isActive = router.isActive.apply(router, [this.currentWhen].concat(params)) || router.isActive.apply(router, [currentWithIndex].concat(params)); if (isActive) { return get(this, 'activeClass'); } }).property('namedRoute', 'router.url'), router: Ember.computed(function() { return this.get('controller').container.lookup('router:main'); }), click: function(event) { if (!isSimpleClick(event)) { return true; } event.preventDefault(); if (this.bubbles === false) { event.stopPropagation(); } var router = this.get('router'); if (this.get('replace')) { router.replaceWith.apply(router, args(this, router)); } else { router.transitionTo.apply(router, args(this, router)); } }, href: Ember.computed(function() { var router = this.get('router'); return router.generate.apply(router, args(this, router)); }) }); LinkView.toString = function() { return "LinkView"; }; Ember.Handlebars.registerHelper('linkTo', function(name) { var options = [].slice.call(arguments, -1)[0]; var params = [].slice.call(arguments, 1, -1); var hash = options.hash; hash.namedRoute = name; hash.currentWhen = hash.currentWhen || name; hash.parameters = { context: this, options: options, params: params }; return Ember.Handlebars.helpers.view.call(this, LinkView, options); }); }); })(); (function() { /** @module ember @submodule ember-routing */ var get = Ember.get, set = Ember.set; Ember.onLoad('Ember.Handlebars', function(Handlebars) { /** @module ember @submodule ember-handlebars */ Handlebars.OutletView = Ember.ContainerView.extend(Ember._Metamorph); /** The `outlet` helper allows you to specify that the current view's controller will fill in the view for a given area. ``` handlebars {{outlet}} ``` By default, when the the current controller's `view` property changes, the outlet will replace its current view with the new view. You can set the `view` property directly, but it's normally best to use `connectOutlet`. ``` javascript # Instantiate App.PostsView and assign to `view`, so as to render into outlet. controller.connectOutlet('posts'); ``` You can also specify a particular name other than `view`: ``` handlebars {{outlet masterView}} {{outlet detailView}} ``` Then, you can control several outlets from a single controller. ``` javascript # Instantiate App.PostsView and assign to controller.masterView. controller.connectOutlet('masterView', 'posts'); # Also, instantiate App.PostInfoView and assign to controller.detailView. controller.connectOutlet('detailView', 'postInfo'); ``` @method outlet @for Ember.Handlebars.helpers @param {String} property the property on the controller that holds the view for this outlet */ Handlebars.registerHelper('outlet', function(property, options) { var outletSource; if (property && property.data && property.data.isRenderData) { options = property; property = 'main'; } outletSource = options.data.view; while (!(outletSource.get('template.isTop'))){ outletSource = outletSource.get('_parentView'); } options.data.view.set('outletSource', outletSource); options.hash.currentViewBinding = '_view.outletSource._outlets.' + property; return Handlebars.helpers.view.call(this, Handlebars.OutletView, options); }); }); })(); (function() { /** @module ember @submodule ember-routing */ var get = Ember.get, set = Ember.set; Ember.onLoad('Ember.Handlebars', function(Handlebars) { /** Renders the named template in the current context using the singleton instance of the same-named controller. If a view class with the same name exists, uses the view class. If a `model` is specified, it becomes the model for that controller. The default target for `{{action}}`s in the rendered template is the named controller. @method action @for Ember.Handlebars.helpers @param {String} actionName @param {Object?} model @param {Hash} options */ Ember.Handlebars.registerHelper('render', function(name, contextString, options) { var container, router, controller, view, context; if (arguments.length === 2) { options = contextString; contextString = undefined; } if (typeof contextString === 'string') { context = Ember.Handlebars.get(options.contexts[1], contextString, options); } name = name.replace(/\//g, '.'); container = options.data.keywords.controller.container; router = container.lookup('router:main'); view = container.lookup('view:' + name) || container.lookup('view:default'); if (controller = options.hash.controller) { controller = container.lookup('controller:' + controller); } else { controller = Ember.controllerFor(container, name, context); } if (controller && context) { controller.set('model', context); } var root = options.contexts[1]; if (root) { view.registerObserver(root, contextString, function() { controller.set('model', Ember.Handlebars.get(root, contextString, options)); }); } controller.set('target', options.data.keywords.controller); options.hash.viewName = Ember.String.camelize(name); options.hash.template = container.lookup('template:' + name); options.hash.controller = controller; if (router) { router._connectActiveView(name, view); } Ember.Handlebars.helpers.view.call(this, view, options); }); }); })(); (function() { /** @module ember @submodule ember-routing */ Ember.onLoad('Ember.Handlebars', function(Handlebars) { var resolveParams = Ember.Handlebars.resolveParams, isSimpleClick = Ember.ViewUtils.isSimpleClick; var EmberHandlebars = Ember.Handlebars, handlebarsGet = EmberHandlebars.get, SafeString = EmberHandlebars.SafeString, get = Ember.get, a_slice = Array.prototype.slice; function args(options, actionName) { var ret = []; if (actionName) { ret.push(actionName); } var types = options.options.types.slice(1), data = options.options.data; return ret.concat(resolveParams(options.context, options.params, { types: types, data: data })); } var ActionHelper = EmberHandlebars.ActionHelper = { registeredActions: {} }; ActionHelper.registerAction = function(actionName, options) { var actionId = (++Ember.uuid).toString(); ActionHelper.registeredActions[actionId] = { eventName: options.eventName, handler: function(event) { if (!isSimpleClick(event)) { return true; } event.preventDefault(); if (options.bubbles === false) { event.stopPropagation(); } var view = options.view, contexts = options.contexts, target = options.target; if (target.target) { target = handlebarsGet(target.root, target.target, target.options); } else { target = target.root; } if (target.send) { return target.send.apply(target, args(options.parameters, actionName)); } else { return target[actionName].apply(target, args(options.parameters)); } } }; options.view.on('willClearRender', function() { delete ActionHelper.registeredActions[actionId]; }); return actionId; }; /** The `{{action}}` helper registers an HTML element within a template for DOM event handling and forwards that interaction to the view's controller or supplied `target` option (see 'Specifying a Target'). If the view's controller does not implement the event, the event is sent to the current route, and it bubbles up the route hierarchy from there. User interaction with that element will invoke the supplied action name on the appropriate target. Given the following Handlebars template on the page ```handlebars <script type="text/x-handlebars" data-template-name='a-template'> <div {{action anActionName}}> click me </div> </script> ``` And application code ```javascript AController = Ember.Controller.extend({ anActionName: function() {} }); AView = Ember.View.extend({ controller: AController.create(), templateName: 'a-template' }); aView = AView.create(); aView.appendTo('body'); ``` Will results in the following rendered HTML ```html <div class="ember-view"> <div data-ember-action="1"> click me </div> </div> ``` Clicking "click me" will trigger the `anActionName` method of the `AController`. In this case, no additional parameters will be passed. If you provide additional parameters to the helper: ```handlebars <button {{action 'edit' post}}>Edit</button> ``` Those parameters will be passed along as arguments to the JavaScript function implementing the action. ### Event Propagation Events triggered through the action helper will automatically have `.preventDefault()` called on them. You do not need to do so in your event handlers. To also disable bubbling, pass `bubbles=false` to the helper: ```handlebars <button {{action 'edit' post bubbles=false}}>Edit</button> ``` If you need the default handler to trigger you should either register your own event handler, or use event methods on your view class. See `Ember.View` 'Responding to Browser Events' for more information. ### Specifying DOM event type By default the `{{action}}` helper registers for DOM `click` events. You can supply an `on` option to the helper to specify a different DOM event name: ```handlebars <script type="text/x-handlebars" data-template-name='a-template'> <div {{action anActionName on="doubleClick"}}> click me </div> </script> ``` See `Ember.View` 'Responding to Browser Events' for a list of acceptable DOM event names. NOTE: Because `{{action}}` depends on Ember's event dispatch system it will only function if an `Ember.EventDispatcher` instance is available. An `Ember.EventDispatcher` instance will be created when a new `Ember.Application` is created. Having an instance of `Ember.Application` will satisfy this requirement. ### Specifying a Target There are several possible target objects for `{{action}}` helpers: In a typical Ember application, where views are managed through use of the `{{outlet}}` helper, actions will bubble to the current controller, then to the current route, and then up the route hierarchy. Alternatively, a `target` option can be provided to the helper to change which object will receive the method call. This option must be a path path to an object, accessible in the current context: ```handlebars <script type="text/x-handlebars" data-template-name='a-template'> <div {{action anActionName target="MyApplication.someObject"}}> click me </div> </script> ``` Clicking "click me" in the rendered HTML of the above template will trigger the `anActionName` method of the object at `MyApplication.someObject`. If an action's target does not implement a method that matches the supplied action name an error will be thrown. ```handlebars <script type="text/x-handlebars" data-template-name='a-template'> <div {{action aMethodNameThatIsMissing}}> click me </div> </script> ``` With the following application code ```javascript AView = Ember.View.extend({ templateName; 'a-template', // note: no method 'aMethodNameThatIsMissing' anActionName: function(event) {} }); aView = AView.create(); aView.appendTo('body'); ``` Will throw `Uncaught TypeError: Cannot call method 'call' of undefined` when "click me" is clicked. ### Additional Parameters You may specify additional parameters to the `{{action}}` helper. These parameters are passed along as the arguments to the JavaScript function implementing the action. ```handlebars <script type="text/x-handlebars" data-template-name='a-template'> {{#each person in people}} <div {{action edit person}}> click me </div> {{/each}} </script> ``` Clicking "click me" will trigger the `edit` method on the current view's controller with the current person as a parameter. @method action @for Ember.Handlebars.helpers @param {String} actionName @param {Object...} contexts @param {Hash} options */ EmberHandlebars.registerHelper('action', function(actionName) { var options = arguments[arguments.length - 1], contexts = a_slice.call(arguments, 1, -1); var hash = options.hash, view = options.data.view, controller, link; // create a hash to pass along to registerAction var action = { eventName: hash.on || "click" }; action.parameters = { context: this, options: options, params: contexts }; action.view = view = get(view, 'concreteView'); var root, target; if (hash.target) { root = this; target = hash.target; } else if (controller = options.data.keywords.controller) { root = controller; } action.target = { root: root, target: target, options: options }; action.bubbles = hash.bubbles; var actionId = ActionHelper.registerAction(actionName, action); return new SafeString('data-ember-action="' + actionId + '"'); }); }); })(); (function() { var get = Ember.get, set = Ember.set; Ember.Handlebars.registerHelper('control', function(path, modelPath, options) { if (arguments.length === 2) { options = modelPath; modelPath = undefined; } var model; if (modelPath) { model = Ember.Handlebars.get(this, modelPath, options); } var controller = options.data.keywords.controller, view = options.data.keywords.view, children = get(controller, '_childContainers'), controlID = options.hash.controlID, container, subContainer; if (children.hasOwnProperty(controlID)) { subContainer = children[controlID]; } else { container = get(controller, 'container'), subContainer = container.child(); children[controlID] = subContainer; } var normalizedPath = path.replace(/\//g, '.'); var childView = subContainer.lookup('view:' + normalizedPath) || subContainer.lookup('view:default'), childController = subContainer.lookup('controller:' + normalizedPath), childTemplate = subContainer.lookup('template:' + path); set(childController, 'target', controller); set(childController, 'model', model); options.hash.template = childTemplate; options.hash.controller = childController; function observer() { var model = Ember.Handlebars.get(this, modelPath, options); set(childController, 'model', model); childView.rerender(); } Ember.addObserver(this, modelPath, observer); childView.one('willDestroyElement', this, function() { Ember.removeObserver(this, modelPath, observer); }); Ember.Handlebars.helpers.view.call(this, childView, options); }); })(); (function() { })(); (function() { /** @module ember @submodule ember-routing */ var get = Ember.get, set = Ember.set; Ember.ControllerMixin.reopen({ transitionToRoute: function() { var target = get(this, 'target'); return target.transitionTo.apply(target, arguments); }, // TODO: Deprecate this, see https://github.com/emberjs/ember.js/issues/1785 transitionTo: function() { return this.transitionToRoute.apply(this, arguments); }, replaceRoute: function() { var target = get(this, 'target'); return target.replaceWith.apply(target, arguments); }, // TODO: Deprecate this, see https://github.com/emberjs/ember.js/issues/1785 replaceWith: function() { return this.replaceRoute.apply(this, arguments); } }); })(); (function() { /** @module ember @submodule ember-routing */ var get = Ember.get, set = Ember.set; Ember.View.reopen({ init: function() { set(this, '_outlets', {}); this._super(); }, connectOutlet: function(outletName, view) { var outlets = get(this, '_outlets'), container = get(this, 'container'), router = container && container.lookup('router:main'), renderedName = get(view, 'renderedName'); set(outlets, outletName, view); if (router && renderedName) { router._connectActiveView(renderedName, view); } }, disconnectOutlet: function(outletName) { var outlets = get(this, '_outlets'); set(outlets, outletName, null); } }); })(); (function() { })(); (function() { /** @module ember @submodule ember-routing */ var get = Ember.get, set = Ember.set; /* This file implements the `location` API used by Ember's router. That API is: getURL: returns the current URL setURL(path): sets the current URL replaceURL(path): replace the current URL (optional) onUpdateURL(callback): triggers the callback when the URL changes formatURL(url): formats `url` to be placed into `href` attribute Calling setURL or replaceURL will not trigger onUpdateURL callbacks. TODO: This should perhaps be moved so that it's visible in the doc output. */ /** Ember.Location returns an instance of the correct implementation of the `location` API. You can pass it a `implementation` ('hash', 'history', 'none') to force a particular implementation. @class Location @namespace Ember @static */ Ember.Location = { create: function(options) { var implementation = options && options.implementation; var implementationClass = this.implementations[implementation]; return implementationClass.create.apply(implementationClass, arguments); }, registerImplementation: function(name, implementation) { this.implementations[name] = implementation; }, implementations: {} }; })(); (function() { /** @module ember @submodule ember-routing */ var get = Ember.get, set = Ember.set; /** Ember.NoneLocation does not interact with the browser. It is useful for testing, or when you need to manage state with your Router, but temporarily don't want it to muck with the URL (for example when you embed your application in a larger page). @class NoneLocation @namespace Ember @extends Ember.Object */ Ember.NoneLocation = Ember.Object.extend({ path: '', getURL: function() { return get(this, 'path'); }, setURL: function(path) { set(this, 'path', path); }, onUpdateURL: function(callback) { // We are not wired up to the browser, so we'll never trigger the callback. }, formatURL: function(url) { // The return value is not overly meaningful, but we do not want to throw // errors when test code renders templates containing {{action href=true}} // helpers. return url; } }); Ember.Location.registerImplementation('none', Ember.NoneLocation); })(); (function() { /** @module ember @submodule ember-routing */ var get = Ember.get, set = Ember.set; /** Ember.HashLocation implements the location API using the browser's hash. At present, it relies on a hashchange event existing in the browser. @class HashLocation @namespace Ember @extends Ember.Object */ Ember.HashLocation = Ember.Object.extend({ init: function() { set(this, 'location', get(this, 'location') || window.location); }, /** @private Returns the current `location.hash`, minus the '#' at the front. @method getURL */ getURL: function() { return get(this, 'location').hash.substr(1); }, /** @private Set the `location.hash` and remembers what was set. This prevents `onUpdateURL` callbacks from triggering when the hash was set by `HashLocation`. @method setURL @param path {String} */ setURL: function(path) { get(this, 'location').hash = path; set(this, 'lastSetURL', path); }, /** @private Register a callback to be invoked when the hash changes. These callbacks will execute when the user presses the back or forward button, but not after `setURL` is invoked. @method onUpdateURL @param callback {Function} */ onUpdateURL: function(callback) { var self = this; var guid = Ember.guidFor(this); Ember.$(window).bind('hashchange.ember-location-'+guid, function() { var path = location.hash.substr(1); if (get(self, 'lastSetURL') === path) { return; } set(self, 'lastSetURL', null); callback(location.hash.substr(1)); }); }, /** @private Given a URL, formats it to be placed into the page as part of an element's `href` attribute. This is used, for example, when using the {{action}} helper to generate a URL based on an event. @method formatURL @param url {String} */ formatURL: function(url) { return '#'+url; }, willDestroy: function() { var guid = Ember.guidFor(this); Ember.$(window).unbind('hashchange.ember-location-'+guid); } }); Ember.Location.registerImplementation('hash', Ember.HashLocation); })(); (function() { /** @module ember @submodule ember-routing */ var get = Ember.get, set = Ember.set; var popstateReady = false; /** Ember.HistoryLocation implements the location API using the browser's history.pushState API. @class HistoryLocation @namespace Ember @extends Ember.Object */ Ember.HistoryLocation = Ember.Object.extend({ init: function() { set(this, 'location', get(this, 'location') || window.location); this.initState(); }, /** @private Used to set state on first call to setURL @method initState */ initState: function() { this.replaceState(this.formatURL(this.getURL())); set(this, 'history', window.history); }, /** Will be pre-pended to path upon state change @property rootURL @default '/' */ rootURL: '/', /** @private Returns the current `location.pathname` without rootURL @method getURL */ getURL: function() { var rootURL = get(this, 'rootURL'), url = get(this, 'location').pathname; rootURL = rootURL.replace(/\/$/, ''); url = url.replace(rootURL, ''); return url; }, /** @private Uses `history.pushState` to update the url without a page reload. @method setURL @param path {String} */ setURL: function(path) { path = this.formatURL(path); if (this.getState() && this.getState().path !== path) { popstateReady = true; this.pushState(path); } }, /** @private Uses `history.replaceState` to update the url without a page reload or history modification. @method replaceURL @param path {String} */ replaceURL: function(path) { path = this.formatURL(path); if (this.getState() && this.getState().path !== path) { popstateReady = true; this.replaceState(path); } }, /** @private Get the current `history.state` @method getState */ getState: function() { return get(this, 'history').state; }, /** @private Pushes a new state @method pushState @param path {String} */ pushState: function(path) { window.history.pushState({ path: path }, null, path); }, /** @private Replaces the current state @method replaceState @param path {String} */ replaceState: function(path) { window.history.replaceState({ path: path }, null, path); }, /** @private Register a callback to be invoked whenever the browser history changes, including using forward and back buttons. @method onUpdateURL @param callback {Function} */ onUpdateURL: function(callback) { var guid = Ember.guidFor(this), self = this; Ember.$(window).bind('popstate.ember-location-'+guid, function(e) { if(!popstateReady) { return; } callback(self.getURL()); }); }, /** @private Used when using `{{action}}` helper. The url is always appended to the rootURL. @method formatURL @param url {String} */ formatURL: function(url) { var rootURL = get(this, 'rootURL'); if (url !== '') { rootURL = rootURL.replace(/\/$/, ''); } return rootURL + url; }, willDestroy: function() { var guid = Ember.guidFor(this); Ember.$(window).unbind('popstate.ember-location-'+guid); } }); Ember.Location.registerImplementation('history', Ember.HistoryLocation); })(); (function() { })(); (function() { /** Ember Routing @module ember @submodule ember-routing @requires ember-states @requires ember-views */ })(); (function() { function visit(vertex, fn, visited, path) { var name = vertex.name, vertices = vertex.incoming, names = vertex.incomingNames, len = names.length, i; if (!visited) { visited = {}; } if (!path) { path = []; } if (visited.hasOwnProperty(name)) { return; } path.push(name); visited[name] = true; for (i = 0; i < len; i++) { visit(vertices[names[i]], fn, visited, path); } fn(vertex, path); path.pop(); } function DAG() { this.names = []; this.vertices = {}; } DAG.prototype.add = function(name) { if (!name) { return; } if (this.vertices.hasOwnProperty(name)) { return this.vertices[name]; } var vertex = { name: name, incoming: {}, incomingNames: [], hasOutgoing: false, value: null }; this.vertices[name] = vertex; this.names.push(name); return vertex; }; DAG.prototype.map = function(name, value) { this.add(name).value = value; }; DAG.prototype.addEdge = function(fromName, toName) { if (!fromName || !toName || fromName === toName) { return; } var from = this.add(fromName), to = this.add(toName); if (to.incoming.hasOwnProperty(fromName)) { return; } function checkCycle(vertex, path) { if (vertex.name === toName) { throw new Error("cycle detected: " + toName + " <- " + path.join(" <- ")); } } visit(from, checkCycle); from.hasOutgoing = true; to.incoming[fromName] = from; to.incomingNames.push(fromName); }; DAG.prototype.topsort = function(fn) { var visited = {}, vertices = this.vertices, names = this.names, len = names.length, i, vertex; for (i = 0; i < len; i++) { vertex = vertices[names[i]]; if (!vertex.hasOutgoing) { visit(vertex, fn, visited); } } }; DAG.prototype.addEdges = function(name, value, before, after) { var i; this.map(name, value); if (before) { if (typeof before === 'string') { this.addEdge(name, before); } else { for (i = 0; i < before.length; i++) { this.addEdge(name, before[i]); } } } if (after) { if (typeof after === 'string') { this.addEdge(after, name); } else { for (i = 0; i < after.length; i++) { this.addEdge(after[i], name); } } } }; Ember.DAG = DAG; })(); (function() { /** @module ember @submodule ember-application */ var get = Ember.get, set = Ember.set, classify = Ember.String.classify, decamelize = Ember.String.decamelize; /** An instance of `Ember.Application` is the starting point for every Ember application. It helps to instantiate, initialize and coordinate the many objects that make up your app. Each Ember app has one and only one `Ember.Application` object. In fact, the very first thing you should do in your application is create the instance: ```javascript window.App = Ember.Application.create(); ``` Typically, the application object is the only global variable. All other classes in your app should be properties on the `Ember.Application` instance, which highlights its first role: a global namespace. For example, if you define a view class, it might look like this: ```javascript App.MyView = Ember.View.extend(); ``` By default, calling `Ember.Application.create()` will automatically initialize your application by calling the `Ember.Application.initialize()` method. If you need to delay initialization, you can call your app's `deferReadiness()` method. When you are ready for your app to be initialized, call its `advanceReadiness()` method. Because `Ember.Application` inherits from `Ember.Namespace`, any classes you create will have useful string representations when calling `toString()`. See the `Ember.Namespace` documentation for more information. While you can think of your `Ember.Application` as a container that holds the other classes in your application, there are several other responsibilities going on under-the-hood that you may want to understand. ### Event Delegation Ember uses a technique called _event delegation_. This allows the framework to set up a global, shared event listener instead of requiring each view to do it manually. For example, instead of each view registering its own `mousedown` listener on its associated element, Ember sets up a `mousedown` listener on the `body`. If a `mousedown` event occurs, Ember will look at the target of the event and start walking up the DOM node tree, finding corresponding views and invoking their `mouseDown` method as it goes. `Ember.Application` has a number of default events that it listens for, as well as a mapping from lowercase events to camel-cased view method names. For example, the `keypress` event causes the `keyPress` method on the view to be called, the `dblclick` event causes `doubleClick` to be called, and so on. If there is a browser event that Ember does not listen for by default, you can specify custom events and their corresponding view method names by setting the application's `customEvents` property: ```javascript App = Ember.Application.create({ customEvents: { // add support for the loadedmetadata media // player event 'loadedmetadata': "loadedMetadata" } }); ``` By default, the application sets up these event listeners on the document body. However, in cases where you are embedding an Ember application inside an existing page, you may want it to set up the listeners on an element inside the body. For example, if only events inside a DOM element with the ID of `ember-app` should be delegated, set your application's `rootElement` property: ```javascript window.App = Ember.Application.create({ rootElement: '#ember-app' }); ``` The `rootElement` can be either a DOM element or a jQuery-compatible selector string. Note that *views appended to the DOM outside the root element will not receive events.* If you specify a custom root element, make sure you only append views inside it! To learn more about the advantages of event delegation and the Ember view layer, and a list of the event listeners that are setup by default, visit the [Ember View Layer guide](http://emberjs.com/guides/view_layer#toc_event-delegation). ### Initializers Libraries on top of Ember can register additional initializers, like so: ```javascript Ember.Application.initializer({ name: "store", initialize: function(container, application) { container.register('store', 'main', application.Store); } }); ``` ### Routing In addition to creating your application's router, `Ember.Application` is also responsible for telling the router when to start routing. By default, the router will begin trying to translate the current URL into application state once the browser emits the `DOMContentReady` event. If you need to defer routing, you can call the application's `deferReadiness()` method. Once routing can begin, call the `advanceReadiness()` method. If there is any setup required before routing begins, you can implement a `ready()` method on your app that will be invoked immediately before routing begins: ```javascript window.App = Ember.Application.create({ ready: function() { this.set('router.enableLogging', true); } }); To begin routing, you must have at a minimum a top-level controller and view. You define these as `App.ApplicationController` and `App.ApplicationView`, respectively. Your application will not work if you do not define these two mandatory classes. For example: ```javascript App.ApplicationView = Ember.View.extend({ templateName: 'application' }); App.ApplicationController = Ember.Controller.extend(); ``` @class Application @namespace Ember @extends Ember.Namespace */ var Application = Ember.Application = Ember.Namespace.extend( /** @scope Ember.Application.prototype */{ /** The root DOM element of the Application. This can be specified as an element or a [jQuery-compatible selector string](http://api.jquery.com/category/selectors/). This is the element that will be passed to the Application's, `eventDispatcher`, which sets up the listeners for event delegation. Every view in your application should be a child of the element you specify here. @property rootElement @type DOMElement @default 'body' */ rootElement: 'body', /** The `Ember.EventDispatcher` responsible for delegating events to this application's views. The event dispatcher is created by the application at initialization time and sets up event listeners on the DOM element described by the application's `rootElement` property. See the documentation for `Ember.EventDispatcher` for more information. @property eventDispatcher @type Ember.EventDispatcher @default null */ eventDispatcher: null, /** The DOM events for which the event dispatcher should listen. By default, the application's `Ember.EventDispatcher` listens for a set of standard DOM events, such as `mousedown` and `keyup`, and delegates them to your application's `Ember.View` instances. If you would like additional events to be delegated to your views, set your `Ember.Application`'s `customEvents` property to a hash containing the DOM event name as the key and the corresponding view method name as the value. For example: ```javascript App = Ember.Application.create({ customEvents: { // add support for the loadedmetadata media // player event 'loadedmetadata': "loadedMetadata" } }); ``` @property customEvents @type Object @default null */ customEvents: null, isInitialized: false, // Start off the number of deferrals at 1. This will be // decremented by the Application's own `initialize` method. _readinessDeferrals: 1, init: function() { if (!this.$) { this.$ = Ember.$; } this.__container__ = this.buildContainer(); this.Router = this.Router || this.defaultRouter(); if (this.Router) { this.Router.namespace = this; } this._super(); this.deferUntilDOMReady(); this.scheduleInitialize(); }, /** @private Build the container for the current application. Also register a default application view in case the application itself does not. @method buildContainer @return {Ember.Container} the configured container */ buildContainer: function() { var container = this.__container__ = Application.buildContainer(this); return container; }, /** @private If the application has not opted out of routing and has not explicitly defined a router, supply a default router for the application author to configure. This allows application developers to do: ```javascript App = Ember.Application.create(); App.Router.map(function(match) { match("/").to("index"); }); ``` @method defaultRouter @return {Ember.Router} the default router */ defaultRouter: function() { // Create a default App.Router if one was not supplied to make // it possible to do App.Router.map(...) without explicitly // creating a router first. if (this.router === undefined) { return Ember.Router.extend(); } }, /** @private Defer Ember readiness until DOM readiness. By default, Ember will wait for both DOM readiness and application initialization, as well as any deferrals registered by initializers. @method deferUntilDOMReady */ deferUntilDOMReady: function() { this.deferReadiness(); var self = this; this.$().ready(function() { self.advanceReadiness(); }); }, /** @private Automatically initialize the application once the DOM has become ready. The initialization itself is deferred using Ember.run.once, which ensures that application loading finishes before booting. If you are asynchronously loading code, you should call `deferReadiness()` to defer booting, and then call `advanceReadiness()` once all of your code has finished loading. @method scheduleInitialize */ scheduleInitialize: function() { var self = this; this.$().ready(function() { if (self.isDestroyed || self.isInitialized) return; Ember.run.once(self, 'initialize'); }); }, /** Use this to defer readiness until some condition is true. Example: ```javascript App = Ember.Application.create(); App.deferReadiness(); jQuery.getJSON("/auth-token", function(token) { App.token = token; App.advanceReadiness(); }); ``` This allows you to perform asynchronous setup logic and defer booting your application until the setup has finished. However, if the setup requires a loading UI, it might be better to use the router for this purpose. @method deferReadiness */ deferReadiness: function() { this._readinessDeferrals++; }, /** @method advanceReadiness @see {Ember.Application#deferReadiness} */ advanceReadiness: function() { this._readinessDeferrals--; if (this._readinessDeferrals === 0) { Ember.run.once(this, this.didBecomeReady); } }, /** registers a factory for later injection Example: ```javascript App = Ember.Application.create(); App.Person = Ember.Object.extend({}); App.Orange = Ember.Object.extend({}); App.Email = Ember.Object.extend({}); App.register('model:user', App.Person, {singleton: false }); App.register('fruit:favorite', App.Orange); App.register('communication:main', App.Email, {singleton: false}); ``` @method register @param type {String} @param name {String} @param factory {String} @param options {String} (optional) **/ register: function() { var container = this.__container__; container.register.apply(container, arguments); }, /** defines an injection or typeInjection Example: ```javascript App.inject(<full_name or type>, <property name>, <full_name>) App.inject('model:user', 'email', 'model:email') App.inject('model', 'source', 'source:main') ``` @method inject @param factoryNameOrType {String} @param property {String} @param injectionName {String} **/ inject: function(){ var container = this.__container__; container.injection.apply(container, arguments); }, /** @private Initialize the application. This happens automatically. Run any initializers and run the application load hook. These hooks may choose to defer readiness. For example, an authentication hook might want to defer readiness until the auth token has been retrieved. @method initialize */ initialize: function() { this.isInitialized = true; // At this point, the App.Router must already be assigned this.__container__.register('router', 'main', this.Router); this.runInitializers(); Ember.runLoadHooks('application', this); // At this point, any initializers or load hooks that would have wanted // to defer readiness have fired. In general, advancing readiness here // will proceed to didBecomeReady. this.advanceReadiness(); return this; }, /** @private @method runInitializers */ runInitializers: function() { var initializers = get(this.constructor, 'initializers'), container = this.__container__, graph = new Ember.DAG(), namespace = this, properties, i, initializer; for (i=0; i<initializers.length; i++) { initializer = initializers[i]; graph.addEdges(initializer.name, initializer.initialize, initializer.before, initializer.after); } graph.topsort(function (vertex) { var initializer = vertex.value; initializer(container, namespace); }); }, /** @private @method didBecomeReady */ didBecomeReady: function() { this.setupEventDispatcher(); this.ready(); // user hook this.startRouting(); if (!Ember.testing) { // Eagerly name all classes that are already loaded Ember.Namespace.processAll(); Ember.BOOTED = true; } }, /** @private Setup up the event dispatcher to receive events on the application's `rootElement` with any registered `customEvents`. @method setupEventDispatcher */ setupEventDispatcher: function() { var eventDispatcher = this.createEventDispatcher(), customEvents = get(this, 'customEvents'); eventDispatcher.setup(customEvents); }, /** @private Create an event dispatcher for the application's `rootElement`. @method createEventDispatcher */ createEventDispatcher: function() { var rootElement = get(this, 'rootElement'), eventDispatcher = Ember.EventDispatcher.create({ rootElement: rootElement }); set(this, 'eventDispatcher', eventDispatcher); return eventDispatcher; }, /** @private If the application has a router, use it to route to the current URL, and trigger a new call to `route` whenever the URL changes. @method startRouting @property router {Ember.Router} */ startRouting: function() { var router = this.__container__.lookup('router:main'); if (!router) { return; } router.startRouting(); }, /** Called when the Application has become ready. The call will be delayed until the DOM has become ready. @event ready */ ready: Ember.K, willDestroy: function() { Ember.BOOTED = false; var eventDispatcher = get(this, 'eventDispatcher'); if (eventDispatcher) { eventDispatcher.destroy(); } this.__container__.destroy(); }, initializer: function(options) { this.constructor.initializer(options); } }); Ember.Application.reopenClass({ concatenatedProperties: ['initializers'], initializers: Ember.A(), initializer: function(initializer) { var initializers = get(this, 'initializers'); initializers.push(initializer); }, /** @private This creates a container with the default Ember naming conventions. It also configures the container: * registered views are created every time they are looked up (they are not singletons) * registered templates are not factories; the registered value is returned directly. * the router receives the application as its `namespace` property * all controllers receive the router as their `target` and `controllers` properties * all controllers receive the application as their `namespace` property * the application view receives the application controller as its `controller` property * the application view receives the application template as its `defaultTemplate` property @method buildContainer @static @param {Ember.Application} namespace the application to build the container for. @return {Ember.Container} the built container */ buildContainer: function(namespace) { var container = new Ember.Container(); Ember.Container.defaultContainer = container; container.set = Ember.set; container.resolver = resolverFor(namespace); container.optionsForType('view', { singleton: false }); container.optionsForType('template', { instantiate: false }); container.register('application', 'main', namespace, { instantiate: false }); container.injection('router:main', 'namespace', 'application:main'); container.typeInjection('controller', 'target', 'router:main'); container.typeInjection('controller', 'namespace', 'application:main'); container.typeInjection('route', 'router', 'router:main'); return container; } }); /** @private This function defines the default lookup rules for container lookups: * templates are looked up on `Ember.TEMPLATES` * other names are looked up on the application after classifying the name. For example, `controller:post` looks up `App.PostController` by default. * if the default lookup fails, look for registered classes on the container This allows the application to register default injections in the container that could be overridden by the normal naming convention. @param {Ember.Namespace} namespace the namespace to look for classes @return {any} the resolved value for a given lookup */ function resolverFor(namespace) { return function(fullName) { var nameParts = fullName.split(":"), type = nameParts[0], name = nameParts[1]; if (type === 'template') { var templateName = name.replace(/\./g, '/'); if (Ember.TEMPLATES[templateName]) { return Ember.TEMPLATES[templateName]; } templateName = decamelize(templateName); if (Ember.TEMPLATES[templateName]) { return Ember.TEMPLATES[templateName]; } } if (type === 'controller' || type === 'route' || type === 'view') { name = name.replace(/\./g, '_'); } var className = classify(name) + classify(type); var factory = get(namespace, className); if (factory) { return factory; } }; } Ember.runLoadHooks('Ember.Application', Ember.Application); })(); (function() { })(); (function() { /** @module ember @submodule ember-routing */ var get = Ember.get, set = Ember.set; var ControllersProxy = Ember.Object.extend({ controller: null, unknownProperty: function(controllerName) { var controller = get(this, 'controller'), needs = get(controller, 'needs'), container = controller.get('container'), dependency; for (var i=0, l=needs.length; i<l; i++) { dependency = needs[i]; if (dependency === controllerName) { return container.lookup('controller:' + controllerName); } } } }); function verifyDependencies(controller) { var needs = get(controller, 'needs'), container = get(controller, 'container'), dependency, satisfied = true; for (var i=0, l=needs.length; i<l; i++) { dependency = needs[i]; if (dependency.indexOf(':') === -1) { dependency = "controller:" + dependency; } if (!container.has(dependency)) { satisfied = false; } } return satisfied; } Ember.ControllerMixin.reopen({ concatenatedProperties: ['needs'], needs: [], init: function() { this._super.apply(this, arguments); // Structure asserts to still do verification but not string concat in production if(!verifyDependencies(this)) { } }, controllerFor: function(controllerName) { var container = get(this, 'container'); return container.lookup('controller:' + controllerName); }, controllers: Ember.computed(function() { return ControllersProxy.create({ controller: this }); }) }); })(); (function() { })(); (function() { /** Ember Application @module ember @submodule ember-application @requires ember-views, ember-states, ember-routing */ })(); (function() { var get = Ember.get, set = Ember.set; /** @module ember @submodule ember-states */ /** @class State @namespace Ember @extends Ember.Object @uses Ember.Evented */ Ember.State = Ember.Object.extend(Ember.Evented, /** @scope Ember.State.prototype */{ isState: true, /** A reference to the parent state. @property parentState @type Ember.State */ parentState: null, start: null, /** The name of this state. @property name @type String */ name: null, /** The full path to this state. @property path @type String */ path: Ember.computed(function() { var parentPath = get(this, 'parentState.path'), path = get(this, 'name'); if (parentPath) { path = parentPath + '.' + path; } return path; }), /** @private Override the default event firing from `Ember.Evented` to also call methods with the given name. @method trigger @param name */ trigger: function(name) { if (this[name]) { this[name].apply(this, [].slice.call(arguments, 1)); } this._super.apply(this, arguments); }, init: function() { var states = get(this, 'states'), foundStates; set(this, 'childStates', Ember.A()); set(this, 'eventTransitions', get(this, 'eventTransitions') || {}); var name, value, transitionTarget; // As a convenience, loop over the properties // of this state and look for any that are other // Ember.State instances or classes, and move them // to the `states` hash. This avoids having to // create an explicit separate hash. if (!states) { states = {}; for (name in this) { if (name === "constructor") { continue; } if (value = this[name]) { if (transitionTarget = value.transitionTarget) { this.eventTransitions[name] = transitionTarget; } this.setupChild(states, name, value); } } set(this, 'states', states); } else { for (name in states) { this.setupChild(states, name, states[name]); } } set(this, 'pathsCache', {}); set(this, 'pathsCacheNoContext', {}); }, setupChild: function(states, name, value) { if (!value) { return false; } if (value.isState) { set(value, 'name', name); } else if (Ember.State.detect(value)) { value = value.create({ name: name }); } if (value.isState) { set(value, 'parentState', this); get(this, 'childStates').pushObject(value); states[name] = value; return value; } }, lookupEventTransition: function(name) { var path, state = this; while(state && !path) { path = state.eventTransitions[name]; state = state.get('parentState'); } return path; }, /** A Boolean value indicating whether the state is a leaf state in the state hierarchy. This is `false` if the state has child states; otherwise it is true. @property isLeaf @type Boolean */ isLeaf: Ember.computed(function() { return !get(this, 'childStates').length; }), /** A boolean value indicating whether the state takes a context. By default we assume all states take contexts. @property hasContext @default true */ hasContext: true, /** This is the default transition event. @event setup @param {Ember.StateManager} manager @param context @see Ember.StateManager#transitionEvent */ setup: Ember.K, /** This event fires when the state is entered. @event enter @param {Ember.StateManager} manager */ enter: Ember.K, /** This event fires when the state is exited. @event exit @param {Ember.StateManager} manager */ exit: Ember.K }); Ember.State.reopenClass({ /** Creates an action function for transitioning to the named state while preserving context. The following example StateManagers are equivalent: ```javascript aManager = Ember.StateManager.create({ stateOne: Ember.State.create({ changeToStateTwo: Ember.State.transitionTo('stateTwo') }), stateTwo: Ember.State.create({}) }) bManager = Ember.StateManager.create({ stateOne: Ember.State.create({ changeToStateTwo: function(manager, context){ manager.transitionTo('stateTwo', context) } }), stateTwo: Ember.State.create({}) }) ``` @method transitionTo @static @param {String} target */ transitionTo: function(target) { var transitionFunction = function(stateManager, contextOrEvent) { var contexts = [], transitionArgs, Event = Ember.$ && Ember.$.Event; if (contextOrEvent && (Event && contextOrEvent instanceof Event)) { if (contextOrEvent.hasOwnProperty('contexts')) { contexts = contextOrEvent.contexts.slice(); } } else { contexts = [].slice.call(arguments, 1); } contexts.unshift(target); stateManager.transitionTo.apply(stateManager, contexts); }; transitionFunction.transitionTarget = target; return transitionFunction; } }); })(); (function() { /** @module ember @submodule ember-states */ var get = Ember.get, set = Ember.set, fmt = Ember.String.fmt; var arrayForEach = Ember.ArrayPolyfills.forEach; /** A Transition takes the enter, exit and resolve states and normalizes them: * takes any passed in contexts into consideration * adds in `initialState`s @class Transition @private */ var Transition = function(raw) { this.enterStates = raw.enterStates.slice(); this.exitStates = raw.exitStates.slice(); this.resolveState = raw.resolveState; this.finalState = raw.enterStates[raw.enterStates.length - 1] || raw.resolveState; }; Transition.prototype = { /** Normalize the passed in enter, exit and resolve states. This process also adds `finalState` and `contexts` to the Transition object. @method normalize @param {Ember.StateManager} manager the state manager running the transition @param {Array} contexts a list of contexts passed into `transitionTo` */ normalize: function(manager, contexts) { this.matchContextsToStates(contexts); this.addInitialStates(); this.removeUnchangedContexts(manager); return this; }, /** Match each of the contexts passed to `transitionTo` to a state. This process may also require adding additional enter and exit states if there are more contexts than enter states. @method matchContextsToStates @param {Array} contexts a list of contexts passed into `transitionTo` */ matchContextsToStates: function(contexts) { var stateIdx = this.enterStates.length - 1, matchedContexts = [], state, context; // Next, we will match the passed in contexts to the states they // represent. // // First, assign a context to each enter state in reverse order. If // any contexts are left, add a parent state to the list of states // to enter and exit, and assign a context to the parent state. // // If there are still contexts left when the state manager is // reached, raise an exception. // // This allows the following: // // |- root // | |- post // | | |- comments // | |- about (* current state) // // For `transitionTo('post.comments', post, post.get('comments')`, // the first context (`post`) will be assigned to `root.post`, and // the second context (`post.get('comments')`) will be assigned // to `root.post.comments`. // // For the following: // // |- root // | |- post // | | |- index (* current state) // | | |- comments // // For `transitionTo('post.comments', otherPost, otherPost.get('comments')`, // the `<root.post>` state will be added to the list of enter and exit // states because its context has changed. while (contexts.length > 0) { if (stateIdx >= 0) { state = this.enterStates[stateIdx--]; } else { if (this.enterStates.length) { state = get(this.enterStates[0], 'parentState'); if (!state) { throw "Cannot match all contexts to states"; } } else { // If re-entering the current state with a context, the resolve // state will be the current state. state = this.resolveState; } this.enterStates.unshift(state); this.exitStates.unshift(state); } // in routers, only states with dynamic segments have a context if (get(state, 'hasContext')) { context = contexts.pop(); } else { context = null; } matchedContexts.unshift(context); } this.contexts = matchedContexts; }, /** Add any `initialState`s to the list of enter states. @method addInitialStates */ addInitialStates: function() { var finalState = this.finalState, initialState; while(true) { initialState = get(finalState, 'initialState') || 'start'; finalState = get(finalState, 'states.' + initialState); if (!finalState) { break; } this.finalState = finalState; this.enterStates.push(finalState); this.contexts.push(undefined); } }, /** Remove any states that were added because the number of contexts exceeded the number of explicit enter states, but the context has not changed since the last time the state was entered. @method removeUnchangedContexts @param {Ember.StateManager} manager passed in to look up the last context for a states */ removeUnchangedContexts: function(manager) { // Start from the beginning of the enter states. If the state was added // to the list during the context matching phase, make sure the context // has actually changed since the last time the state was entered. while (this.enterStates.length > 0) { if (this.enterStates[0] !== this.exitStates[0]) { break; } if (this.enterStates.length === this.contexts.length) { if (manager.getStateMeta(this.enterStates[0], 'context') !== this.contexts[0]) { break; } this.contexts.shift(); } this.resolveState = this.enterStates.shift(); this.exitStates.shift(); } } }; var sendRecursively = function(event, currentState, isUnhandledPass) { var log = this.enableLogging, eventName = isUnhandledPass ? 'unhandledEvent' : event, action = currentState[eventName], contexts, sendRecursiveArguments, actionArguments; contexts = [].slice.call(arguments, 3); // Test to see if the action is a method that // can be invoked. Don't blindly check just for // existence, because it is possible the state // manager has a child state of the given name, // and we should still raise an exception in that // case. if (typeof action === 'function') { if (log) { if (isUnhandledPass) { Ember.Logger.log(fmt("STATEMANAGER: Unhandled event '%@' being sent to state %@.", [event, get(currentState, 'path')])); } else { Ember.Logger.log(fmt("STATEMANAGER: Sending event '%@' to state %@.", [event, get(currentState, 'path')])); } } actionArguments = contexts; if (isUnhandledPass) { actionArguments.unshift(event); } actionArguments.unshift(this); return action.apply(currentState, actionArguments); } else { var parentState = get(currentState, 'parentState'); if (parentState) { sendRecursiveArguments = contexts; sendRecursiveArguments.unshift(event, parentState, isUnhandledPass); return sendRecursively.apply(this, sendRecursiveArguments); } else if (!isUnhandledPass) { return sendEvent.call(this, event, contexts, true); } } }; var sendEvent = function(eventName, sendRecursiveArguments, isUnhandledPass) { sendRecursiveArguments.unshift(eventName, get(this, 'currentState'), isUnhandledPass); return sendRecursively.apply(this, sendRecursiveArguments); }; /** StateManager is part of Ember's implementation of a finite state machine. A StateManager instance manages a number of properties that are instances of `Ember.State`, tracks the current active state, and triggers callbacks when states have changed. ## Defining States The states of StateManager can be declared in one of two ways. First, you can define a `states` property that contains all the states: ```javascript managerA = Ember.StateManager.create({ states: { stateOne: Ember.State.create(), stateTwo: Ember.State.create() } }) managerA.get('states') // { // stateOne: Ember.State.create(), // stateTwo: Ember.State.create() // } ``` You can also add instances of `Ember.State` (or an `Ember.State` subclass) directly as properties of a StateManager. These states will be collected into the `states` property for you. ```javascript managerA = Ember.StateManager.create({ stateOne: Ember.State.create(), stateTwo: Ember.State.create() }) managerA.get('states') // { // stateOne: Ember.State.create(), // stateTwo: Ember.State.create() // } ``` ## The Initial State When created a StateManager instance will immediately enter into the state defined as its `start` property or the state referenced by name in its `initialState` property: ```javascript managerA = Ember.StateManager.create({ start: Ember.State.create({}) }) managerA.get('currentState.name') // 'start' managerB = Ember.StateManager.create({ initialState: 'beginHere', beginHere: Ember.State.create({}) }) managerB.get('currentState.name') // 'beginHere' ``` Because it is a property you may also provide a computed function if you wish to derive an `initialState` programmatically: ```javascript managerC = Ember.StateManager.create({ initialState: function(){ if (someLogic) { return 'active'; } else { return 'passive'; } }.property(), active: Ember.State.create({}), passive: Ember.State.create({}) }) ``` ## Moving Between States A StateManager can have any number of `Ember.State` objects as properties and can have a single one of these states as its current state. Calling `transitionTo` transitions between states: ```javascript robotManager = Ember.StateManager.create({ initialState: 'poweredDown', poweredDown: Ember.State.create({}), poweredUp: Ember.State.create({}) }) robotManager.get('currentState.name') // 'poweredDown' robotManager.transitionTo('poweredUp') robotManager.get('currentState.name') // 'poweredUp' ``` Before transitioning into a new state the existing `currentState` will have its `exit` method called with the StateManager instance as its first argument and an object representing the transition as its second argument. After transitioning into a new state the new `currentState` will have its `enter` method called with the StateManager instance as its first argument and an object representing the transition as its second argument. ```javascript robotManager = Ember.StateManager.create({ initialState: 'poweredDown', poweredDown: Ember.State.create({ exit: function(stateManager){ console.log("exiting the poweredDown state") } }), poweredUp: Ember.State.create({ enter: function(stateManager){ console.log("entering the poweredUp state. Destroy all humans.") } }) }) robotManager.get('currentState.name') // 'poweredDown' robotManager.transitionTo('poweredUp') // will log // 'exiting the poweredDown state' // 'entering the poweredUp state. Destroy all humans.' ``` Once a StateManager is already in a state, subsequent attempts to enter that state will not trigger enter or exit method calls. Attempts to transition into a state that the manager does not have will result in no changes in the StateManager's current state: ```javascript robotManager = Ember.StateManager.create({ initialState: 'poweredDown', poweredDown: Ember.State.create({ exit: function(stateManager){ console.log("exiting the poweredDown state") } }), poweredUp: Ember.State.create({ enter: function(stateManager){ console.log("entering the poweredUp state. Destroy all humans.") } }) }) robotManager.get('currentState.name') // 'poweredDown' robotManager.transitionTo('poweredUp') // will log // 'exiting the poweredDown state' // 'entering the poweredUp state. Destroy all humans.' robotManager.transitionTo('poweredUp') // no logging, no state change robotManager.transitionTo('someUnknownState') // silently fails robotManager.get('currentState.name') // 'poweredUp' ``` Each state property may itself contain properties that are instances of `Ember.State`. The StateManager can transition to specific sub-states in a series of transitionTo method calls or via a single transitionTo with the full path to the specific state. The StateManager will also keep track of the full path to its currentState ```javascript robotManager = Ember.StateManager.create({ initialState: 'poweredDown', poweredDown: Ember.State.create({ charging: Ember.State.create(), charged: Ember.State.create() }), poweredUp: Ember.State.create({ mobile: Ember.State.create(), stationary: Ember.State.create() }) }) robotManager.get('currentState.name') // 'poweredDown' robotManager.transitionTo('poweredUp') robotManager.get('currentState.name') // 'poweredUp' robotManager.transitionTo('mobile') robotManager.get('currentState.name') // 'mobile' // transition via a state path robotManager.transitionTo('poweredDown.charging') robotManager.get('currentState.name') // 'charging' robotManager.get('currentState.path') // 'poweredDown.charging' ``` Enter transition methods will be called for each state and nested child state in their hierarchical order. Exit methods will be called for each state and its nested states in reverse hierarchical order. Exit transitions for a parent state are not called when entering into one of its child states, only when transitioning to a new section of possible states in the hierarchy. ```javascript robotManager = Ember.StateManager.create({ initialState: 'poweredDown', poweredDown: Ember.State.create({ enter: function(){}, exit: function(){ console.log("exited poweredDown state") }, charging: Ember.State.create({ enter: function(){}, exit: function(){} }), charged: Ember.State.create({ enter: function(){ console.log("entered charged state") }, exit: function(){ console.log("exited charged state") } }) }), poweredUp: Ember.State.create({ enter: function(){ console.log("entered poweredUp state") }, exit: function(){}, mobile: Ember.State.create({ enter: function(){ console.log("entered mobile state") }, exit: function(){} }), stationary: Ember.State.create({ enter: function(){}, exit: function(){} }) }) }) robotManager.get('currentState.path') // 'poweredDown' robotManager.transitionTo('charged') // logs 'entered charged state' // but does *not* log 'exited poweredDown state' robotManager.get('currentState.name') // 'charged robotManager.transitionTo('poweredUp.mobile') // logs // 'exited charged state' // 'exited poweredDown state' // 'entered poweredUp state' // 'entered mobile state' ``` During development you can set a StateManager's `enableLogging` property to `true` to receive console messages of state transitions. ```javascript robotManager = Ember.StateManager.create({ enableLogging: true }) ``` ## Managing currentState with Actions To control which transitions are possible for a given state, and appropriately handle external events, the StateManager can receive and route action messages to its states via the `send` method. Calling to `send` with an action name will begin searching for a method with the same name starting at the current state and moving up through the parent states in a state hierarchy until an appropriate method is found or the StateManager instance itself is reached. If an appropriately named method is found it will be called with the state manager as the first argument and an optional `context` object as the second argument. ```javascript managerA = Ember.StateManager.create({ initialState: 'stateOne.substateOne.subsubstateOne', stateOne: Ember.State.create({ substateOne: Ember.State.create({ anAction: function(manager, context){ console.log("an action was called") }, subsubstateOne: Ember.State.create({}) }) }) }) managerA.get('currentState.name') // 'subsubstateOne' managerA.send('anAction') // 'stateOne.substateOne.subsubstateOne' has no anAction method // so the 'anAction' method of 'stateOne.substateOne' is called // and logs "an action was called" // with managerA as the first argument // and no second argument someObject = {} managerA.send('anAction', someObject) // the 'anAction' method of 'stateOne.substateOne' is called again // with managerA as the first argument and // someObject as the second argument. ``` If the StateManager attempts to send an action but does not find an appropriately named method in the current state or while moving upwards through the state hierarchy, it will repeat the process looking for a `unhandledEvent` method. If an `unhandledEvent` method is found, it will be called with the original event name as the second argument. If an `unhandledEvent` method is not found, the StateManager will throw a new Ember.Error. ```javascript managerB = Ember.StateManager.create({ initialState: 'stateOne.substateOne.subsubstateOne', stateOne: Ember.State.create({ substateOne: Ember.State.create({ subsubstateOne: Ember.State.create({}), unhandledEvent: function(manager, eventName, context) { console.log("got an unhandledEvent with name " + eventName); } }) }) }) managerB.get('currentState.name') // 'subsubstateOne' managerB.send('anAction') // neither `stateOne.substateOne.subsubstateOne` nor any of it's // parent states have a handler for `anAction`. `subsubstateOne` // also does not have a `unhandledEvent` method, but its parent // state, `substateOne`, does, and it gets fired. It will log // "got an unhandledEvent with name anAction" ``` Action detection only moves upwards through the state hierarchy from the current state. It does not search in other portions of the hierarchy. ```javascript managerC = Ember.StateManager.create({ initialState: 'stateOne.substateOne.subsubstateOne', stateOne: Ember.State.create({ substateOne: Ember.State.create({ subsubstateOne: Ember.State.create({}) }) }), stateTwo: Ember.State.create({ anAction: function(manager, context){ // will not be called below because it is // not a parent of the current state } }) }) managerC.get('currentState.name') // 'subsubstateOne' managerC.send('anAction') // Error: <Ember.StateManager:ember132> could not // respond to event anAction in state stateOne.substateOne.subsubstateOne. ``` Inside of an action method the given state should delegate `transitionTo` calls on its StateManager. ```javascript robotManager = Ember.StateManager.create({ initialState: 'poweredDown.charging', poweredDown: Ember.State.create({ charging: Ember.State.create({ chargeComplete: function(manager, context){ manager.transitionTo('charged') } }), charged: Ember.State.create({ boot: function(manager, context){ manager.transitionTo('poweredUp') } }) }), poweredUp: Ember.State.create({ beginExtermination: function(manager, context){ manager.transitionTo('rampaging') }, rampaging: Ember.State.create() }) }) robotManager.get('currentState.name') // 'charging' robotManager.send('boot') // throws error, no boot action // in current hierarchy robotManager.get('currentState.name') // remains 'charging' robotManager.send('beginExtermination') // throws error, no beginExtermination // action in current hierarchy robotManager.get('currentState.name') // remains 'charging' robotManager.send('chargeComplete') robotManager.get('currentState.name') // 'charged' robotManager.send('boot') robotManager.get('currentState.name') // 'poweredUp' robotManager.send('beginExtermination', allHumans) robotManager.get('currentState.name') // 'rampaging' ``` Transition actions can also be created using the `transitionTo` method of the `Ember.State` class. The following example StateManagers are equivalent: ```javascript aManager = Ember.StateManager.create({ stateOne: Ember.State.create({ changeToStateTwo: Ember.State.transitionTo('stateTwo') }), stateTwo: Ember.State.create({}) }) bManager = Ember.StateManager.create({ stateOne: Ember.State.create({ changeToStateTwo: function(manager, context){ manager.transitionTo('stateTwo', context) } }), stateTwo: Ember.State.create({}) }) ``` @class StateManager @namespace Ember @extends Ember.State **/ Ember.StateManager = Ember.State.extend({ /** @private When creating a new statemanager, look for a default state to transition into. This state can either be named `start`, or can be specified using the `initialState` property. @method init */ init: function() { this._super(); set(this, 'stateMeta', Ember.Map.create()); var initialState = get(this, 'initialState'); if (!initialState && get(this, 'states.start')) { initialState = 'start'; } if (initialState) { this.transitionTo(initialState); } }, stateMetaFor: function(state) { var meta = get(this, 'stateMeta'), stateMeta = meta.get(state); if (!stateMeta) { stateMeta = {}; meta.set(state, stateMeta); } return stateMeta; }, setStateMeta: function(state, key, value) { return set(this.stateMetaFor(state), key, value); }, getStateMeta: function(state, key) { return get(this.stateMetaFor(state), key); }, /** The current state from among the manager's possible states. This property should not be set directly. Use `transitionTo` to move between states by name. @property currentState @type Ember.State */ currentState: null, /** The path of the current state. Returns a string representation of the current state. @property currentPath @type String */ currentPath: Ember.computed.alias('currentState.path'), /** The name of transitionEvent that this stateManager will dispatch @property transitionEvent @type String @default 'setup' */ transitionEvent: 'setup', /** If set to true, `errorOnUnhandledEvents` will cause an exception to be raised if you attempt to send an event to a state manager that is not handled by the current state or any of its parent states. @property errorOnUnhandledEvents @type Boolean @default true */ errorOnUnhandledEvent: true, send: function(event) { var contexts = [].slice.call(arguments, 1); return sendEvent.call(this, event, contexts, false); }, unhandledEvent: function(manager, event) { if (get(this, 'errorOnUnhandledEvent')) { throw new Ember.Error(this.toString() + " could not respond to event " + event + " in state " + get(this, 'currentState.path') + "."); } }, /** Finds a state by its state path. Example: ```javascript manager = Ember.StateManager.create({ root: Ember.State.create({ dashboard: Ember.State.create() }) }); manager.getStateByPath(manager, "root.dashboard") // returns the dashboard state ``` @method getStateByPath @param {Ember.State} root the state to start searching from @param {String} path the state path to follow @return {Ember.State} the state at the end of the path */ getStateByPath: function(root, path) { var parts = path.split('.'), state = root; for (var i=0, len=parts.length; i<len; i++) { state = get(get(state, 'states'), parts[i]); if (!state) { break; } } return state; }, findStateByPath: function(state, path) { var possible; while (!possible && state) { possible = this.getStateByPath(state, path); state = get(state, 'parentState'); } return possible; }, /** A state stores its child states in its `states` hash. This code takes a path like `posts.show` and looks up `root.states.posts.states.show`. It returns a list of all of the states from the root, which is the list of states to call `enter` on. @method getStatesInPath @param root @param path */ getStatesInPath: function(root, path) { if (!path || path === "") { return undefined; } var parts = path.split('.'), result = [], states, state; for (var i=0, len=parts.length; i<len; i++) { states = get(root, 'states'); if (!states) { return undefined; } state = get(states, parts[i]); if (state) { root = state; result.push(state); } else { return undefined; } } return result; }, goToState: function() { // not deprecating this yet so people don't constantly need to // make trivial changes for little reason. return this.transitionTo.apply(this, arguments); }, transitionTo: function(path, context) { // XXX When is transitionTo called with no path if (Ember.isEmpty(path)) { return; } // The ES6 signature of this function is `path, ...contexts` var contexts = context ? Array.prototype.slice.call(arguments, 1) : [], currentState = get(this, 'currentState') || this; // First, get the enter, exit and resolve states for the current state // and specified path. If possible, use an existing cache. var hash = this.contextFreeTransition(currentState, path); // Next, process the raw state information for the contexts passed in. var transition = new Transition(hash).normalize(this, contexts); this.enterState(transition); this.triggerSetupContext(transition); }, contextFreeTransition: function(currentState, path) { var cache = currentState.pathsCache[path]; if (cache) { return cache; } var enterStates = this.getStatesInPath(currentState, path), exitStates = [], resolveState = currentState; // Walk up the states. For each state, check whether a state matching // the `path` is nested underneath. This will find the closest // parent state containing `path`. // // This allows the user to pass in a relative path. For example, for // the following state hierarchy: // // | |root // | |- posts // | | |- show (* current) // | |- comments // | | |- show // // If the current state is `<root.posts.show>`, an attempt to // transition to `comments.show` will match `<root.comments.show>`. // // First, this code will look for root.posts.show.comments.show. // Next, it will look for root.posts.comments.show. Finally, // it will look for `root.comments.show`, and find the state. // // After this process, the following variables will exist: // // * resolveState: a common parent state between the current // and target state. In the above example, `<root>` is the // `resolveState`. // * enterStates: a list of all of the states represented // by the path from the `resolveState`. For example, for // the path `root.comments.show`, `enterStates` would have // `[<root.comments>, <root.comments.show>]` // * exitStates: a list of all of the states from the // `resolveState` to the `currentState`. In the above // example, `exitStates` would have // `[<root.posts>`, `<root.posts.show>]`. while (resolveState && !enterStates) { exitStates.unshift(resolveState); resolveState = get(resolveState, 'parentState'); if (!resolveState) { enterStates = this.getStatesInPath(this, path); if (!enterStates) { return; } } enterStates = this.getStatesInPath(resolveState, path); } // If the path contains some states that are parents of both the // current state and the target state, remove them. // // For example, in the following hierarchy: // // |- root // | |- post // | | |- index (* current) // | | |- show // // If the `path` is `root.post.show`, the three variables will // be: // // * resolveState: `<state manager>` // * enterStates: `[<root>, <root.post>, <root.post.show>]` // * exitStates: `[<root>, <root.post>, <root.post.index>]` // // The goal of this code is to remove the common states, so we // have: // // * resolveState: `<root.post>` // * enterStates: `[<root.post.show>]` // * exitStates: `[<root.post.index>]` // // This avoid unnecessary calls to the enter and exit transitions. while (enterStates.length > 0 && enterStates[0] === exitStates[0]) { resolveState = enterStates.shift(); exitStates.shift(); } // Cache the enterStates, exitStates, and resolveState for the // current state and the `path`. var transitions = currentState.pathsCache[path] = { exitStates: exitStates, enterStates: enterStates, resolveState: resolveState }; return transitions; }, triggerSetupContext: function(transitions) { var contexts = transitions.contexts, offset = transitions.enterStates.length - contexts.length, enterStates = transitions.enterStates, transitionEvent = get(this, 'transitionEvent'); arrayForEach.call(enterStates, function(state, idx) { state.trigger(transitionEvent, this, contexts[idx-offset]); }, this); }, getState: function(name) { var state = get(this, name), parentState = get(this, 'parentState'); if (state) { return state; } else if (parentState) { return parentState.getState(name); } }, enterState: function(transition) { var log = this.enableLogging; var exitStates = transition.exitStates.slice(0).reverse(); arrayForEach.call(exitStates, function(state) { state.trigger('exit', this); }, this); arrayForEach.call(transition.enterStates, function(state) { if (log) { Ember.Logger.log("STATEMANAGER: Entering " + get(state, 'path')); } state.trigger('enter', this); }, this); set(this, 'currentState', transition.finalState); } }); })(); (function() { /** Ember States @module ember @submodule ember-states @requires ember-runtime */ })(); })(); if (typeof location !== 'undefined' && (location.hostname === 'localhost' || location.hostname === '127.0.0.1')) { console.warn("You are running a production build of Ember on localhost and won't receive detailed error messages. "+ "If you want full error messages please use the non-minified build provided on the Ember website."); }<|fim▁end|>